Overview
| Comment: | Removed lines deleting _type.sh and cbg.m -- how did they get there ?? |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b7154ccc2d781d1fe42f01f2d5c4e9f3 |
| User & Date: | gawthrop@users.sourceforge.net on 2001-07-26 04:08:35.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2001-07-26
| ||
| 05:02:53 | Now writes cbg.fig when under-causal (again). check-in: 9a442e81f0 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 04:08:35 |
Removed lines deleting _type.sh and cbg.m -- how did they get there ?? check-in: b7154ccc2d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 04:07:28 |
Changed a to w on open (Geraint's suggestion) Explictly close files check-in: 26121c61ec user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/abg2lbl_fig2txt
from [05944f3223]
to [0368a79007].
| ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | + + + + | # Acausal bond graph to causal bond graph: mfile format ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.22 2001/07/08 03:28:11 gawthrop ## Fixed a bug: abg2sympar_m2txt neads a _lbl.txt file when using ## "usinglabel" option ## ## Revision 1.21 2001/07/06 00:46:50 gawthrop ## Added -cr option -- forces cr to be loaded before the ese.r file ## This avoids causality problems when using multi-port Rs to represent ## arbitary equations ## ## Revision 1.20 2001/07/04 05:19:57 gawthrop ## Added RT & CT to list |
| ︙ | |||
103 104 105 106 107 108 109 | 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | - - |
sys="-s ${system}"
else
sys=${system}
fi
# Remove unwanted files
rm -f abg2lbl_fig2txt.log
|
| ︙ | |||
229 230 231 232 233 234 235 236 237 238 239 240 241 242 | 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | + + |
cr["GY"] = "lin"; arg["GY"] = sprintf("flow,%s%s", Name, s_arg);
cr["AE"] = "lin"; arg["AE"] = sprintf("%s%s", Name, s_arg);
cr["AF"] = "lin"; arg["AF"] = sprintf("%s%s", Name, s_arg);
cr["CDx"] = "lin"; arg["CDx"] = sprintf("%s%s", Name, s_arg);
cr["FMR"] = lin; arg["FMR"] = sprintf("effort,%s%s", Name, s_arg);
cr["RS"] = lin; arg["RS"] = sprintf("flow,%s%s", Name, s_arg);
cr["RT"] = lin; arg["RT"] = sprintf("flow,%s%s", Name, s_arg);
cr["CT"] = lin; arg["CT"] = sprintf("effort,%s%s", Name, s_arg);
## Put in the explicit arguments
if (length(Arg)>0) {
|
| ︙ |