Overview
Comment: | Removed itime again., |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0e8d161965f7605632f65d4c329579ee |
User & Date: | gawthrop@users.sourceforge.net on 1997-05-12 16:00:54 |
Other Links: | branch diff | manifest | tags |
Context
1997-05-13
| ||
16:58:02 | Added -s switch to get mtt to search for (Bond Graph) switches check-in: c730c8ef17 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-05-12
| ||
16:00:54 | Removed itime again., check-in: 0e8d161965 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-05-10
| ||
10:05:15 | Put _input in inner loop in front of call to _ode check-in: 3abb8bc678 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/ode2odes_r2c from [7fb136b450] to [e440f7df4b].
︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | + + + | # Copyright (c) P.J.Gawthrop 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ # Revision 1.10 1997/05/10 10:05:15 peterg # Put _input in inner loop in front of call to _ode # ## Revision 1.9 1997/05/10 09:54:34 peterg ## Moved _input call to after the inner integration loop. ## ## Revision 1.8 1997/05/10 08:12:23 peterg ## Put second argument into _input. ## ## Revision 1.7 1997/05/10 07:01:15 peterg |
︙ | |||
127 128 129 130 131 132 133 | 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | - - - + | write " "$ write "{"$ write "/* Counters etc*/ "$ write " double time;"$ |
︙ | |||
196 197 198 199 200 201 202 | 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | - + - | write "/* Inner integration loop */"$ write " for (k=1; k<=STEPFACTOR; k++)"$ write " {"$ write " for (i=1; i<=MTTNX; i++)"$ write " x[i] = x[i] + dx[i]*dt;"$ write " /* Set up system inputs */"$ |
︙ |