Overview
| Comment: | Now operates on ordinary differential equation file. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
d6246479fadb800f20683ddfbdf75c11 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-07-22 15:47:28.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-07-24
| ||
| 17:10:34 | *** empty log message *** check-in: e2daf5a27a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1998-07-22
| ||
| 15:47:28 | Now operates on ordinary differential equation file. check-in: d6246479fa user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 15:20:06 | Added state.txt check-in: d8a4b3ebc7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/sspar2ss_r
from [55395e3ee1]
to [a962e03b00].
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | + + + - + - - + + + + | # Copyright (c) P.J.Gawthrop, 1990, 1994. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1996/08/25 09:52:20 peter ## Initial revision ## ############################################################### #Inform user echo Creating $1_ss.r # Remove the old log file rm -f sspar2ss_r.log # Use reduce to accomplish the transformation reduce >sspar2ss_r.log << EOF %Read the definition file in "$1_def.r"; %Read the constitutive relationships (May be used in rss file). |
| ︙ | |||
60 61 62 63 64 65 66 | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | + + - + + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + |
IF MTTNy>0 THEN
BEGIN
write "matrix MTTY0(", MTTNy, ",1)";
END;
MTTY0 := MTTY;
IF MTTNx>0 THEN
write "matrix MTTdX0(", MTTNx, ",1)";
|