Overview
Comment: | Generates c files using include statements. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
95b6c7dce0b016db39ea47645864e348 |
User & Date: | gawthrop@users.sourceforge.net on 1997-03-20 16:53:01 |
Other Links: | branch diff | manifest | tags |
Context
1997-03-20
| ||
17:48:50 | Better _input.c file default. check-in: 28e47527b8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
16:53:01 | Generates c files using include statements. check-in: 95b6c7dce0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
15:17:45 | All variables are in lower case. check-in: 600d128f3b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [7a866c9a48] to [ad67216230].
︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | + + + | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ # Revision 1.60 1997/03/20 10:25:41 peterg # Generates a compehensive default params file. # # Revision 1.59 1997/03/19 10:14:04 peterg # Now produces a stripped acausal bond graph. # # Revision 1.58 1997/03/18 17:58:12 peterg # Generates label files containing all variables in fig file. # Generates sympar file for all levels in system. # Generates txt version of sympar file. |
︙ | |||
303 304 305 306 307 308 309 | 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | - + - + | exit fi # Clean up if [ "$1" = "clean" ] && [ "$2" = "" ]; then echo 'Removing all generated files for all systems' rm -f *.log mtt_info.txt warning.txt |
︙ | |||
468 469 470 471 472 473 474 | 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 | - - + + - - + - + - - - + - + - + - - - - + + + - | touch $1_args.m #Create empty files (with titles) if not already there #SUMMARY lbl label file (txt) $1_lbl.txt: abg2lbl_fig2txt $1 |
︙ | |||
523 524 525 526 527 528 529 | 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 | - - - - + + + + + | # ## echo 'END;' >> $1_sympar.r #SUMMARY sympar symbolic parameters (r) $1_sympar.r: $1_sympar.txt sympar_txt2r $1 #SUMMARY sympar symbolic parameters (c) |
︙ | |||
880 881 882 883 884 885 886 | 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 | - + + + | $1_odes.c: $1_ode.c $1_def.r $1_sympar.r ode2odes_r2c $1 ifeq ($computation,octave) $1_odes.m: $1_ode.m $1_numpar.m $1_params.m $1_args.m $1_def.m $1_input.m ode2odes_m $1 '$ARGS' endif ifeq ($computation,c) |
︙ |