Overview
Comment:New CR for 2-port form of sC,sR etc
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 9346aac9b81783ac173a3ba71d56f146c1293f15e63c09e3224041444b6bbf86
User & Date: gawthrop@users.sourceforge.net on 2001-04-23 14:59:43
Other Links: branch diff | manifest | tags
Context
2001-04-23
15:06:21
Removed stdin bug workaround check-in: 86564c67a2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
14:59:43
New CR for 2-port form of sC,sR etc check-in: 9346aac9b8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
14:48:13
Now uses new 2-port C and R sensitivity components check-in: ab09ec2254 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/lib/cr/r/slin.cr from [77fadc096d] to [d6c337d46d].

1
2

3
4
5
6
7






















8
9
%DESCRIPTION Sensitivity version of lin


OPERATOR slin;
FOR ALL gain_causality, gain, causality, input, other_causality
LET slin(gain_causality, gain, other_causality, 1, input, causality, 1)
         = lin(gain_causality, gain, other_causality, 1, input,
	 causality, 1);






















END;;



>





>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
%DESCRIPTION Sensitivity version of lin

% One port version for historical reasons
OPERATOR slin;
FOR ALL gain_causality, gain, causality, input, other_causality
LET slin(gain_causality, gain, other_causality, 1, input, causality, 1)
         = lin(gain_causality, gain, other_causality, 1, input,
	 causality, 1);

% Two port version for sC,sI,sR 

% Port 1 - standard 
FOR ALL gain_causality, gain, sgain, causality, input, sinput, other_causality
LET slin(gain_causality, gain, sgain, other_causality, 1, 
       input, causality, 1,
       sinput, causality, 2)
         = lin(gain_causality, gain, other_causality, 1, 
               input, causality, 1); 


% Port 2 - sensitivity
FOR ALL gain_causality, gain, sgain, causality, input, sinput, other_causality
LET slin(gain_causality, gain, sgain, other_causality, 2, 
       input, causality, 1,
       sinput, causality, 2)
         = lin(gain_causality, gain, other_causality, 1, 
               sinput, causality, 1)
         + sgain*df(lin(gain_causality, gain, other_causality, 1, 
               input, causality, 1), gain); 

END;;


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]