15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996.
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
###############################################################
echo " ###################################################"
echo " ###### MTT (Model Transformation Tools) V2.0 ######"
echo " ###################################################"
|
>
>
>
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996.
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.1 1996/08/04 17:29:42 peter
## Initial revision
##
###############################################################
echo " ###################################################"
echo " ###### MTT (Model Transformation Tools) V2.0 ######"
echo " ###################################################"
|
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
echo Creating $1_sspar.r
echo "%% Reduce steady-state parameter file ($1_sspar.r)" > $1_sspar.r
#Raw bond graph: fig file to mfile
$1_rbg.m: $1_abg.fig $1_lbl.txt
rbg_fig2m $1
#Bond graph conversions using matlab
#Raw bond graph to acausal bond graph: mfile
$1_abg.m: $1_rbg.m
rbg2abg_m $1
#Component file
$1_cmp.m: $1_rbg.m
#Causal bond graph: mfile to fig conversion
$1_cbg.fig: $1_cbg.m
cbg_m2fig $1
#Causal bond graph: xfig display
#$1_cbg.view: $1_cbg.fig
# echo "Creating view of $1_cbg"; xfig $1_cbg.fig &
|
>
>
>
>
|
<
<
<
<
|
|
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
echo Creating $1_sspar.r
echo "%% Reduce steady-state parameter file ($1_sspar.r)" > $1_sspar.r
#Raw bond graph: fig file to mfile
$1_rbg.m: $1_abg.fig $1_lbl.txt
rbg_fig2m $1
$1_cmp.m: $1_rbg.m
$1_fig.fig: $1_rbg.m
#Bond graph conversions using matlab
#Raw bond graph to acausal bond graph: mfile
$1_abg.m: $1_rbg.m
rbg2abg_m $1
#Causal bond graph: mfile to fig conversion
$1_cbg.fig: $1_cbg.m $1_rbg.m $1_fig.fig
cbg_m2fig $1
#Causal bond graph: xfig display
#$1_cbg.view: $1_cbg.fig
# echo "Creating view of $1_cbg"; xfig $1_cbg.fig &
|