10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop, 1991, 1994, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 2000/12/28 12:39:02 peterg
## Put under RCS
##
## Revision 1.4 2000/09/04 08:42:53 peterg
## Put in extra echo to space output
##
## Revision 1.3 2000/09/02 15:55:11 peterg
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (c) P.J.Gawthrop, 1991, 1994, 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.6 2001/02/03 13:40:45 gawthrop
## Added explicit MTTNu
##
## Revision 1.5 2000/12/28 12:39:02 peterg
## Put under RCS
##
## Revision 1.4 2000/09/04 08:42:53 peterg
## Put in extra echo to space output
##
## Revision 1.3 2000/09/02 15:55:11 peterg
|
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
case $1 in
-I )
info=info;;
-partition )
partition=yes;
blurb='with partitioning';
;;
*)
echo "$1 is an invalid argument - ignoring";
exit ;;
esac
shift
done
|
>
>
>
>
|
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
case $1 in
-I )
info=info;;
-partition )
partition=yes;
blurb='with partitioning';
;;
-fixcc )
include=`echo 'in "'$MTT_LIB'/reduce/fix_c.r";'`
blurb2='fixing c and cc code';
;;
*)
echo "$1 is an invalid argument - ignoring";
exit ;;
esac
shift
done
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
crname=$topname"_cr.r"
subsname=$topname"_subs.r"
rdaename=$sysname"_rdae.r"
daename=$sysname"_dae.r"
logname="rdae2dae.log"
# Inform user
echo Creating $daename
# Remove the old log file
rm -f $logname
# Use symbolic algebra to accomplish the transformation
$SYMBOLIC >$logname << EOF
%Read the formatting function
in "$MTTPATH/trans/reduce_matrix.r";
% CRs
in "$crname";
|
|
>
>
>
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
crname=$topname"_cr.r"
subsname=$topname"_subs.r"
rdaename=$sysname"_rdae.r"
daename=$sysname"_dae.r"
logname="rdae2dae.log"
# Inform user
echo Creating $daename $blurb $blurb2
# Remove the old log file
rm -f $logname
# Use symbolic algebra to accomplish the transformation
$SYMBOLIC >$logname << EOF
% Fix c code if required
$include
%Read the formatting function
in "$MTTPATH/trans/reduce_matrix.r";
% CRs
in "$crname";
|