9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Acausal bond graph to causal bond graph: mfile format
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.6 1996/08/24 14:36:01 peter
## Error handling included.
##
## Revision 1.5 1996/08/19 15:38:31 peter
## Removed bug work round.
##
## Revision 1.4 1996/08/16 14:28:45 peter
|
>
>
>
>
|
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.7 1996/08/25 09:22:55 peter
## # Print errors, if any.
## mtt_error error.txt
##
## Revision 1.6 1996/08/24 14:36:01 peter
## Error handling included.
##
## Revision 1.5 1996/08/19 15:38:31 peter
## Removed bug work round.
##
## Revision 1.4 1996/08/16 14:28:45 peter
|
112
113
114
115
116
117
118
119
120
121
122
|
port_bonds = [];
[cbonds,status] = abg2cbg(system_name, '', '', port_bonds,infofile);
EOF
cat mtt_info.txt
cp $1_$1_cbg.m $1_cbg.m
# Print errors, if any.
mtt_error error.txt
|
|
|
|
116
117
118
119
120
121
122
123
124
125
126
|
port_bonds = [];
[cbonds,status] = abg2cbg(system_name, '', '', port_bonds,infofile);
EOF
cat mtt_info.txt
cp $1_$1_cbg.m $1_cbg.m 2>> mtt_error.txt
# Print errors, if any.
mtt_error mtt_error.txt
|