Overview
Comment: | Don't write END; any more - ese-tidy does this now! |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
93115d251d624d1cc0b347f43cb13eb8 |
User & Date: | gawthrop@users.sourceforge.net on 1998-05-12 14:49:10 |
Other Links: | branch diff | manifest | tags |
Context
1998-05-13
| ||
08:56:28 | Initial revision check-in: bfc0ab7267 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-05-12
| ||
14:49:10 | Don't write END; any more - ese-tidy does this now! check-in: 93115d251d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:42:07 |
Added ese_tidy and new method for organising ese files - Each subsystem has an array of variables - effort, flow and state for each bond check-in: 5c8d85f992 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cbg2ese_m2r from [ce64cc49eb] to [52836d7a05].
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ ## Revision 1.11 1997/12/16 18:05:03 peterg ## Increased size of structure vector by on to include unknown_inputs as ## 6th element ## ## Revision 1.10 1997/04/15 09:18:26 peterg ## Added structure file ## | > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ ## Revision 1.12 1998/01/23 13:30:46 peterg ## $RMATRIX --> $MATRIX ## ## Revision 1.11 1997/12/16 18:05:03 peterg ## Increased size of structure vector by on to include unknown_inputs as ## 6th element ## ## Revision 1.10 1997/04/15 09:18:26 peterg ## Added structure file ## |
︙ | ︙ | |||
57 58 59 60 61 62 63 | infofile='mtt_info.txt'; structurefile="$1_struc.txt"; eqnfile="$1_ese.r"; deffile="$1_def.r"; # Remove the old log file rm -f cbg2ese_m.log | > > | | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | infofile='mtt_info.txt'; structurefile="$1_struc.txt"; eqnfile="$1_ese.r"; deffile="$1_def.r"; # Remove the old log file rm -f cbg2ese_m.log # Remove relevent ese files rm -f $1_ese.r $1_*_ese.r #Inform user echo Creating $eqnfile echo Creating $deffile echo Creating $structurefile # Use matrix manipulation to accomplish the transformation |
︙ | ︙ | |||
95 96 97 98 99 100 101 | 1, structure, structurefilenum, infofilenum); makedef(structure,deffilenum); EOF cat $infofile | > | | < > > > | 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | 1, structure, structurefilenum, infofilenum); makedef(structure,deffilenum); EOF cat $infofile # Create the composite ese file cat $1_ese.r $1_*_ese.r > $1_ese.tmp 2>> /dev/null mv $1_ese.tmp $1_ese.r # Zap the sub ese files rm -f $1_*_ese.r # Sort the struc file mv $structurefile junk sort -k 1,1 -k 2,2n junk >$structurefile # Now invoke the standard error handling. mtt_error mtt_error.txt |