9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
# Inform user
echo Creating $1_ctf.r
# Remove the old log file
|
>
>
>
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1998/02/09 13:54:34 peterg
## Initial revision
##
###############################################################
# Inform user
echo Creating $1_ctf.r
# Remove the old log file
|
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
MTTGc := C_d*((s*MTTI - A_d)^(-1))*B_d;
%Create the output file
OUT "$1_ctf.r";
%Write out the matrices.
write "% - Compensator TF";
MTT_Matrix := MTTGc$
MTT_Matrix_name := "MTTGc"$
MTT_Matrix_n := MTTNu$
MTT_Matrix_m := MTTNy$
Reduce_Matrix()$
SHUT "$1_ctf.r";
quit;
EOF
# Now invoke the standard error handling.
mtt_error_r ssk2ctf_r.log
|
|
|
|
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
MTTGc := C_d*((s*MTTI - A_d)^(-1))*B_d;
%Create the output file
OUT "$1_ctf.r";
%Write out the matrices.
write "% - Compensator TF";
MTT_Matrix := MTTcTF$
MTT_Matrix_name := "MTTcTF"$
MTT_Matrix_n := MTTNu$
MTT_Matrix_m := MTTNy$
Reduce_Matrix()$
SHUT "$1_ctf.r";
quit;
EOF
# Now invoke the standard error handling.
mtt_error_r ssk2ctf_r.log
|