Overview
| Comment: | Added INPUT to simpar |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8fbbb4631d29bfc4a4c728f1289eb27a |
| User & Date: | gawthrop@users.sourceforge.net on 1998-09-02 12:05:39.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-09-03
| ||
| 09:12:32 | Removed debugging lines check-in: b3e8a521c6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1998-09-02
| ||
| 12:05:39 | Added INPUT to simpar check-in: 8fbbb4631d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 12:02:14 | Added mttinput paramater check-in: aa043a1ff6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt
from [3dd5cc059d]
to [202f26c651].
| ︙ | |||
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 27 28 | + + + + + | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996. ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.190 1998/09/02 11:48:51 peterg ## VERSION 3.2 (Swansea) ## abg data structure now uses explicti port and subsystem lists so that ## processing is in predetermined order. ## ## Revision 1.189 1998/08/31 10:49:15 peterg ## Minor changes to -abg operation ## ## Revision 1.188 1998/08/27 08:33:21 peterg ## New reduce integration methods - euler/Implicit only ## ## Revision 1.187 1998/08/25 20:06:56 peterg |
| ︙ | |||
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 | 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 | + |
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'; \
echo 'INPUT = 1; # Index of the input'; \
)> $1_simpar.txt
#SUMMARY simpar simulation information (m)
$1_simpar.m: $1_simpar.txt
txt2m $1 simpar
#SUMMARY simpar simulation information c header file (h)
|
| ︙ |