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.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.
##
|
>
>
>
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Acausal bond graph to causal bond graph: mfile format
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.8 1996/08/25 09:31:49 peter
# More error handling.
#
## 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.
##
|
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
rm -f mtt_info.txt
#Inform user
echo Creating $1_cbg.m
# Use matrix manipulation to accomplish the transformation
$MATRIX >abg2cbg_m.log 2>mtt_error.txt << EOF
infofile= '$infofile';
%Convert from acausal to causal bond graph in m-file form.
system_name = '$1';
% THIS IS A NASTY BUG WORKROUND FOR OCTAVE
|
|
|
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
rm -f mtt_info.txt
#Inform user
echo Creating $1_cbg.m
# Use matrix manipulation to accomplish the transformation
$RMATRIX >abg2cbg_m.log 2>mtt_error.txt << EOF
infofile= '$infofile';
%Convert from acausal to causal bond graph in m-file form.
system_name = '$1';
% THIS IS A NASTY BUG WORKROUND FOR OCTAVE
|