11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.64 2001/02/03 14:00:01 gawthrop
## Geraint's temp. variable patch applied
##
## Revision 1.63 2000/12/04 08:24:29 peterg
## Added swithc logic declarations
##
## Revision 1.62 2000/12/03 17:15:18 peterg
|
>
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright (c) P.J.Gawthrop 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.65 2001/02/09 02:56:46 geraint
## Translate some binary operators
## Allows use of ! in logic.txt
##
## Revision 1.64 2001/02/03 14:00:01 gawthrop
## Geraint's temp. variable patch applied
##
## Revision 1.63 2000/12/04 08:24:29 peterg
## Added swithc logic declarations
##
## Revision 1.62 2000/12/03 17:15:18 peterg
|
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
|
echo " glnpbynp = StateMatrix;"
echo " glmpbynp = StateMatrix;"
## echo " IntegrationMethod = 1..4;"
echo ""
echo "VAR"
echo " simpar : SimulationParameters;"
echo " t,ddt : REAL;"
echo " x,dx,AAx : StateVector;"
echo " mttx,mttdx,mttAAx,mttedx : StateVector;"
echo " u,mttu : InputVector;"
echo " y,mtty : OutputVector;"
echo " par : ParameterVector;"
echo " mttpar : ParameterVector;"
echo " mttnpar : INTEGER;"
echo " AA,mtte : StateMatrix;"
|
|
|
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
|
echo " glnpbynp = StateMatrix;"
echo " glmpbynp = StateMatrix;"
## echo " IntegrationMethod = 1..4;"
echo ""
echo "VAR"
echo " simpar : SimulationParameters;"
echo " t,ddt : REAL;"
echo " x,x0,dx,AAx : StateVector;"
echo " mttx,mttdx,mttAAx,mttedx : StateVector;"
echo " u,mttu : InputVector;"
echo " y,mtty : OutputVector;"
echo " par : ParameterVector;"
echo " mttpar : ParameterVector;"
echo " mttnpar : INTEGER;"
echo " AA,mtte : StateMatrix;"
|