Overview
Comment: | Fixed missprint - mtt_err --> mtt_error |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
85c83285a0f44e7ee3e8b4916ff4a7b9 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-24 14:58:56 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-24
| ||
15:02:23 | Writes `END;' to keep reduce happy. check-in: 4a57e085b2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:58:56 | Fixed missprint - mtt_err --> mtt_error check-in: 85c83285a0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:53:06 | Initial revision check-in: 76b5921940 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/rbg2abg_m from [cf0f480a8c] to [00d3c2324e].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: rbg2abg_m # ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1996/08/05 12:22:16 peter ## Initial revision ## ############################################################### # Raw bond graph to structured acausal bond graph: mfile format # The structured BG is described by four matrices: | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: rbg2abg_m # ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1996/08/24 14:33:07 peter ## Error handling included. ## ## Revision 1.1 1996/08/05 12:22:16 peter ## Initial revision ## ############################################################### # Raw bond graph to structured acausal bond graph: mfile format # The structured BG is described by four matrices: |
︙ | ︙ | |||
64 65 66 67 68 69 70 | rm -f rbg2abg_m.log rm -f $1_abg.m #Inform user echo Creating $1_abg.m # Use matrix manipulation to accomplish the transformation | | | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | rm -f rbg2abg_m.log rm -f $1_abg.m #Inform user echo Creating $1_abg.m # Use matrix manipulation to accomplish the transformation $MATRIX > rbg2abg_m.log 2>mtt_error << EOF infofile = 'mtt_info.txt'; %Convert from the fig version of the bonds to a structured version [rbonds,rstrokes,rcomponents,rports,n_ports] = $1_rbg; [bonds,components] = rbg2abg(rbonds,rstrokes,rcomponents,rports,infofile); %Write the function m-file for the causal bond graph |
︙ | ︙ |