10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
# WARNING this is experimental!!
# It asumes that the output y is NOT dependent on derivatives of
# z or u.
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1996/08/15 16:46:06 peter
## Initial revision
##
###############################################################
# WARNING this is experimental!!
# It asumes that the output y is NOT dependent on derivatives of
# z or u.
|
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
FOR i := 1:MTTNvar DO
BEGIN
IF i<MTTNvar THEN write MTTVar(i,1), ",..."
ELSE write MTTVar(i,1), "] = $1_numpar"
END;
END;
write "% Read in the arguments";
write "$1_args";
write "% check that u is defined and default it if not";
write "if exist('u')==0";
write " u = ones(", MTTNu, ",1);";
write "end";
write "% Set up the State variables";
FOR i := 1:MTTNx DO
BEGIN
write "MTTx", i, " = MTTx(", i, ");";
END;
write "% Set up the non-state variables";
|
>
>
>
<
<
<
<
<
|
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
FOR i := 1:MTTNvar DO
BEGIN
IF i<MTTNvar THEN write MTTVar(i,1), ",..."
ELSE write MTTVar(i,1), "] = $1_numpar"
END;
END;
write "% Read in the input";
write "u = $1_input(t)";
write "% Read in the arguments";
write "$1_args";
write "% Set up the State variables";
FOR i := 1:MTTNx DO
BEGIN
write "MTTx", i, " = MTTx(", i, ");";
END;
write "% Set up the non-state variables";
|