20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
FOR ALL gain_cause,r,rs,out_cause,inp,sinp,in_cause,temp,stemp
LET sRS(gain_cause,r,rs,out_cause,2,
inp,in_cause,1,
temp,effort,2,
sinp,in_cause,3,
stemp,effort,4
)
= lin(gain_cause,r,temp_cause,1,
inp,in_cause,1)/temp;
% Sensitivity ports
FOR ALL gain_cause,r,rs,out_cause,inp,sinp,in_cause,temp,stemp
LET sRS(gain_cause,r,rs,out_cause,3,
inp,in_cause,1,
temp,effort,2,
|
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
FOR ALL gain_cause,r,rs,out_cause,inp,sinp,in_cause,temp,stemp
LET sRS(gain_cause,r,rs,out_cause,2,
inp,in_cause,1,
temp,effort,2,
sinp,in_cause,3,
stemp,effort,4
)
= inp*lin(gain_cause,r,temp_cause,1,
inp,in_cause,1)/temp;
% Sensitivity ports
FOR ALL gain_cause,r,rs,out_cause,inp,sinp,in_cause,temp,stemp
LET sRS(gain_cause,r,rs,out_cause,3,
inp,in_cause,1,
temp,effort,2,
|
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
inp,flow,1,
temp,effort,2,
sinp,flow,3,
stemp,effort,4
)
= 2*inp*sinp*r/temp
+ (inp^2)*rs/temp
- (inp^2)*r*temps/(temp^2);
%% - effort in
FOR ALL gain_cause,r,rs,out_cause,inp,sinp,in_cause,temp,stemp
LET sRS(gain_cause,r,rs,out_cause,4,
inp,effort,1,
temp,effort,2,
sinp,effort,3,
|
|
|
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
inp,flow,1,
temp,effort,2,
sinp,flow,3,
stemp,effort,4
)
= 2*inp*sinp*r/temp
+ (inp^2)*rs/temp
- (inp^2)*r*stemp/(temp^2);
%% - effort in
FOR ALL gain_cause,r,rs,out_cause,inp,sinp,in_cause,temp,stemp
LET sRS(gain_cause,r,rs,out_cause,4,
inp,effort,1,
temp,effort,2,
sinp,effort,3,
|