Overview
Comment: | Changed function name to name() |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
436a0a6509aa547ba5f25702cd679e26 |
User & Date: | gawthrop@users.sourceforge.net on 2000-12-05 12:11:45 |
Other Links: | branch diff | manifest | tags |
Context
2000-12-05
| ||
12:12:39 | Initial revision check-in: f5def571c2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:11:45 | Changed function name to name() check-in: 436a0a6509 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:05:26 | Changed to () form check-in: 2f1942ae91 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cbg2ese_m2r from [0f74549f73] to [fd5b5dde90].
︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | + + + | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ ## Revision 1.26 2000/12/05 09:04:54 peterg ## *** empty log message *** ## ## Revision 1.25 2000/12/01 14:51:26 peterg ## Major changes towards partioning ## ## - generates sub ese, def and struc ## - generates indices for conversion of subsystem in/out/state - but not used yet ## ## Revision 1.24 2000/11/30 15:12:55 peterg |
︙ | |||
186 187 188 189 190 191 192 | 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | - + + | else # Partition the system # Save up the full def file mv $1_def.r mtt_all_def.r ## Recreate def file from the ese file directly |
︙ | |||
221 222 223 224 225 226 227 | 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | - + + - + + | makedef(structure,deffilenum); #Create definitions EOF echo "END;" >> $1_def.r } |
︙ |
Modified mttroot/mtt/bin/trans/make_ode2odes from [7cda0137f2] to [ebfab81400].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | + + + | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.43 2000/12/04 10:59:40 peterg ## *** empty log message *** ## ## Revision 1.42 2000/11/10 14:19:50 peterg ## Corrected the csex and cseo functions ## ## Revision 1.41 2000/11/09 17:06:39 peterg ## Now does euler for cc ## ## Revision 1.40 2000/10/17 09:55:00 peterg |
︙ | |||
163 164 165 166 167 168 169 | 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | - + + | algorithm="mtt_implicit(x,dx,AA,AAx,ddt,$Nx,open_switches)" else ode=ode odeo=odeo algorithm="mtt_euler(x,dx,ddt,$Nx,open_switches)" fi |
︙ | |||
232 233 234 235 236 237 238 | 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | - + + | X = MTT_data(:,4); endfunction EOF } # make_m |
︙ | |||
527 528 529 530 531 532 533 | 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 | - + | ColumnVector AAx (MTTNX); ColumnVector open_switches (MTTNX); register double t = 0.0; const double ddt = simpar ["dt"].double_value () / simpar ["stepfactor"].double_value (); |
︙ | |||
558 559 560 561 562 563 564 | 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 | - + | ## Common stuff cat <<EOF >> $filename open_switches = mtt_logic (x, u, t, par); x = $algorithm; t += ddt; j++; |
︙ |