Overview
Comment: | Delete a.out after it has run. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bc3ca0fc46a1980703201c8f0eaedea1 |
User & Date: | gawthrop@users.sourceforge.net on 1997-03-05 08:24:09 |
Other Links: | branch diff | manifest | tags |
Context
1997-03-05
| ||
08:35:20 | Initial revision check-in: 3725821adb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:24:09 | Delete a.out after it has run. check-in: bc3ca0fc46 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-03-01
| ||
11:20:36 | Initial revision check-in: b7ee569db1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [fc0db14c8f] to [534919ee78].
︙ | |||
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.55 1997/02/24 19:31:10 peterg # Removed numpar.m requirement from .m files # ## Revision 1.54 1997/02/09 20:33:13 peterg ## Replaced a.out with ./a.out ## ## Revision 1.53 1997/02/09 20:30:04 peterg ## Copied from tweedledum. ## # Revision 1.54 1997/02/07 13:33:03 peterg |
︙ | |||
286 287 288 289 290 291 292 | 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | - + - + - + - + - + - + | 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 |
︙ | |||
509 510 511 512 513 514 515 516 517 518 519 520 521 522 | 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 | + | $1_params.c: echo Creating $1_params.c ( \ echo '/*'; \ echo "%% Parameter file for system $1 ($1_params.c)"; \ echo "%% This file provides the system params for simulation:";\ echo '*/'; \ echo "#include \"$1_sympar.c\""; \ echo '$1_params()'; \ echo '{'; \ echo '};'; \ )> $1_params.c #SUMMARY odes ODE simulation header file (h) $1_odes.h: |
︙ | |||
557 558 559 560 561 562 563 | 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 | - + + | )> $1_input.m #SUMMARY input input signal definition (c) $1_input.c: echo Creating $1_input.c ( \ echo "$1_input(t)"; \ |
︙ | |||
609 610 611 612 613 614 615 616 617 618 619 620 621 622 | 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 | + + + + + | #SUMMARY sympar symbolic parameters (r) # Lbl to sympar conversion $1_sympar.r: $1_lbl.txt $1_params.r lbl2sympar_txt2r $1 echo "IN \"$1_params.r\";" >> $1_sympar.r echo 'END;' >> $1_sympar.r #SUMMARY sympar symbolic parameters (c) # r to c sympar conversion -- its part of the ode_r2c tool $1_sympar.c: $1_sympar.r sympar_r2c $1 #SUMMARY abg acausal bond graph (m) #Raw bond graph to acausal bond graph: mfile $1_abg.m: $1_rbg.m $1_sub.sh sh $1_sub.sh "mtt -q -l $level+1 " ' abg m' rbg2abg_m $1 |
︙ | |||
678 679 680 681 682 683 684 | 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 | - + | #SUMMARY ode ordinary differential equations (view) #SUMMARY ode ordinary differential equations (ps) #Ordinary differential equations $1_ode.r: $1_cse.r $1_def.r $1_sympar.r cse2ode_r $1; tidy $1_ode.r $1_ode.m: $1_def.r $1_ode.r $1_sympar.r ode_r2m $1; matlab_tidy $1_ode.m; matlab_tidy $1_odeo.m |
︙ | |||
834 835 836 837 838 839 840 841 | 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 | + - - + + | 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) $1_odes.m: $1_odes.c $1_ode.c $1_numpar.c $1_odes.h $1_params.c $1_input.c echo Creating $1_odes.m echo Creating $1_odeso.m echo 'Compiling ...' |
︙ | |||
957 958 959 960 961 962 963 | 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 | + - + + + | #Default view ifeq ($REPTYPE,bg) $1_$2.view : $1_$2.pview endif ifeq ($REPTYPE,data) # This is the gnuplot version which leaves lots of defunct processes |
︙ |