Overview
Comment: | Sorted out new mtt_r2m |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
61125cc04da24567afed21476a5de822 |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-27 20:25:15 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-27
| ||
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 | |
20:19:33 | Stopped it trying to fix its own causality. check-in: 3245ee9a06 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [1a6939aa80] to [11475ce108].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.174 1998/07/27 07:10:10 peterg ## Removed dummy global stuff. ## ## Revision 1.173 1998/07/26 14:38:20 peterg ## *** empty log message *** ## ## Revision 1.172 1998/07/26 11:13:38 peterg | > > > | 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.175 1998/07/27 18:49:09 peterg ## Fixed the frequency stuff ## ## Revision 1.174 1998/07/27 07:10:10 peterg ## Removed dummy global stuff. ## ## Revision 1.173 1998/07/26 14:38:20 peterg ## *** empty log message *** ## ## Revision 1.172 1998/07/26 11:13:38 peterg |
︙ | ︙ | |||
1352 1353 1354 1355 1356 1357 1358 | echo "# Simulation parameters for system $1 ($1_simpar.txt)"; \ echo "# Generated by MTT on" `date`.; \ cat $MTTPATH/trans/rcs_header.sh; \ echo ;\ echo 'LAST = 10.0; # Last time in simulation'; \ echo 'DT = 0.1; # Print interval'; \ echo 'STEPFACTOR = 1; # Integration steps per print interval'; \ | | | 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 | echo "# Simulation parameters for system $1 ($1_simpar.txt)"; \ echo "# Generated by MTT on" `date`.; \ cat $MTTPATH/trans/rcs_header.sh; \ echo ;\ echo 'LAST = 10.0; # Last time in simulation'; \ echo 'DT = 0.1; # Print interval'; \ echo 'STEPFACTOR = 1; # Integration steps per print interval'; \ echo 'METHOD = "Implicit"; # Integration method'; \ echo 'WMIN = -1; # Minimum frequency = 10^WMIN'; \ echo 'WMAX = 2; # Maximum frequency = 10^WMAX'; \ echo 'WSTEPS = 100; # Number of frequency steps'; \ )> $1_simpar.txt #SUMMARY simpar simulation information (m) $1_simpar.m: $1_simpar.txt |
︙ | ︙ |