Overview
Comment: | Added new VARs mttWSTEPS, MTTWMIN,mttWMAX |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5b1465cd01a2e7f815600a24a723f8ed |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-27 20:26:15 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-27
| ||
20:26:44 | Put in correct N and M values for dm rep check-in: b90651ef41 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
20:26:15 | Added new VARs mttWSTEPS, MTTWMIN,mttWMAX check-in: 5b1465cd01 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
20:25:15 | Sorted out new mtt_r2m check-in: 61125cc04d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_m2p from [070e0e398e] to [e32317caee].
︙ | ︙ | |||
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.8 1998/07/26 19:38:17 peterg ## Replaced t0..t9 by mtt_temp0.. ## ## Revision 1.7 1998/07/25 20:06:23 peterg ## Does the mtt_update function ## ## Revision 1.6 1998/07/25 16:59:40 peterg | > > > | 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.9 1998/07/27 17:20:42 peterg ## Allow , between () ## ## Revision 1.8 1998/07/26 19:38:17 peterg ## Replaced t0..t9 by mtt_temp0.. ## ## Revision 1.7 1998/07/25 20:06:23 peterg ## Does the mtt_update function ## ## Revision 1.6 1998/07/25 16:59:40 peterg |
︙ | ︙ | |||
88 89 90 91 92 93 94 95 96 97 | echo "TYPE" echo " StateVector =ARRAY[1..$Nx] OF REAL;" echo " InputVector =ARRAY[1..$Nu] OF REAL;" echo " OutputVector =ARRAY[1..$Ny] OF REAL;" echo " IntegrationMethod = (Euler,ImplicitL,Implicit);" echo "VAR" echo " MTTt,mttLAST,mttDT,mttDDT : REAL;" echo " mttx,mttdx : StateVector;" echo " mttu : InputVector;" echo " mtty : OutputVector;" | > | | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | echo "TYPE" echo " StateVector =ARRAY[1..$Nx] OF REAL;" echo " InputVector =ARRAY[1..$Nu] OF REAL;" echo " OutputVector =ARRAY[1..$Ny] OF REAL;" echo " IntegrationMethod = (Euler,ImplicitL,Implicit);" echo "VAR" echo " MTTt,mttLAST,mttDT,mttDDT : REAL;" echo " MTTWMIN,mttWMAX : REAL;" echo " mttx,mttdx : StateVector;" echo " mttu : InputVector;" echo " mtty : OutputVector;" echo " MTTi,MTTj,MTTit,MTTiLast,mttSTEPFACTOR,mttWSTEPS : INTEGER;" echo " mttMETHOD : STRING;" ;; switch) echo "PROCEDURE $Sys_rep(VAR mttxs : StateVector;" echo " mttx : StateVector);" echo "VAR" echo " MTTi,MTTj : INTEGER;" |
︙ | ︙ |