10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 2002/04/28 18:41:26 geraint
## Fixed [ 549658 ] awk should be gawk.
## Replaced calls to awk with call to gawk.
##
## Revision 1.3 2001/07/12 04:02:53 gawthrop
## Now fixes multiports for input and output as well as state
##
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 2004/02/10 16:12:21 gawthrop
## Don't give details of Se De Sf Df INTF
##
## Revision 1.4 2002/04/28 18:41:26 geraint
## Fixed [ 549658 ] awk should be gawk.
## Replaced calls to awk with call to gawk.
##
## Revision 1.3 2001/07/12 04:02:53 gawthrop
## Now fixes multiports for input and output as well as state
##
|
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
##echo mtt -q -u $pdf $1 abg ps
mtt -q -u $pdf $1 abg ps
cat <<EOF >> $filename
\fig{`pwd`/$1_abg}{$1_abg.ps}{0.9}{System \textbf{$1}: acausal bond graph}
EOF
# Description
mtt -q -u $1 desc tex
# Put in absolute pathnames in figures -- and fix bug in old desc files
sed "s;fig{;fig{`pwd`/;g" < $1_desc.tex |\
sed "s/Ref{$1_abg}/Ref{fig:$1_abg.ps}/" >> $filename
|
>
>
>
>
>
>
>
>
>
>
>
|
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
##echo mtt -q -u $pdf $1 abg ps
mtt -q -u $pdf $1 abg ps
cat <<EOF >> $filename
\fig{`pwd`/$1_abg}{$1_abg.ps}{0.9}{System \textbf{$1}: acausal bond graph}
EOF
## Put a schematic if exists (_pic.fig)
if [ -e "$1_pic.fig" ]; then
echo Inserting $1_pic.fig
fig2dev -L eps $1_pic.fig > $1_pic.ps
cat <<EOF >> $filename
\fig{`pwd`/$1_pic}{$1_pic.ps}{0.9}{System \textbf{$1}: schematic diagram}
EOF
fi
# Description
mtt -q -u $1 desc tex
# Put in absolute pathnames in figures -- and fix bug in old desc files
sed "s;fig{;fig{`pwd`/;g" < $1_desc.tex |\
sed "s/Ref{$1_abg}/Ref{fig:$1_abg.ps}/" >> $filename
|