11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
+
+
+
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.48 2000/05/18 09:39:38 peterg
## Removed fifth argument from _input
##
## Revision 1.47 2000/05/16 18:56:03 peterg
## Upgraded for new simulation approach - uses data files to input
## parameters -- no more argv stuff
##
## Revision 1.46 2000/05/16 11:59:01 peterg
## Updated for new data file parameter/state update
##
|
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
-
+
|
simpar)
echo "PROCEDURE $Sys_rep(VAR mttsimpar : SimulationParameters);"
;;
input)
echo "PROCEDURE $Sys_rep(VAR mttu : InputVector;"
echo " mttt : REAL;"
echo " mttx : StateVector;"
echo " mtty : OutputVector)"
echo " mtty : OutputVector);"
;;
ode)
echo "PROCEDURE $Sys_rep(VAR mttdx: StateVector;"
echo " mttx : StateVector;"
echo " mttu : InputVector;"
echo " mttt : REAL;"
echo " mttpar : ParameterVector);"
|