10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
# Inform user
echo Creating $1_numpar.c
# Remove the old log file
rm -f sympar2numpar_r2c.log
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (c) P.J.Gawthrop 1996
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1997/01/21 11:36:26 peterg
## Initial revision
##
###############################################################
# Inform user
echo Creating $1_numpar.c
# Remove the old log file
rm -f sympar2numpar_r2c.log
|
71
72
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
#Create the numpar file complete with headers.
echo "/*" > $1_numpar.c
echo "%% Numerical parameter file ($1_numpar.c)" >> $1_numpar.c
echo "%% Generated by MTT at `date`" >> $1_numpar.c
echo "*/" >> $1_numpar.c
echo "void $1_ode()" >> $1_numpar.c
echo "{" >> $1_numpar.c
cat $1_numpar1.c >> $1_numpar.c
echo "/*" >> $1_numpar.c
echo '%% Input the user-defined parameters' >> $1_numpar.c
echo "*/" >> $1_numpar.c
echo "$1_params;" >> $1_numpar.c
echo "};" >> $1_numpar.c
rm $1_numpar1.c
# Now invoke the standard error handling.
mtt_error_r sympar2numpar_r2c.log
|
|
>
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
#Create the numpar file complete with headers.
echo "/*" > $1_numpar.c
echo "%% Numerical parameter file ($1_numpar.c)" >> $1_numpar.c
echo "%% Generated by MTT at `date`" >> $1_numpar.c
echo "*/" >> $1_numpar.c
echo "$1_numpar()" >> $1_numpar.c
echo "{" >> $1_numpar.c
echo " extern $1_params();" >> $1_numpar.c
cat $1_numpar1.c >> $1_numpar.c
echo "/*" >> $1_numpar.c
echo '%% Input the user-defined parameters' >> $1_numpar.c
echo "*/" >> $1_numpar.c
echo "$1_params;" >> $1_numpar.c
echo "};" >> $1_numpar.c
rm $1_numpar1.c
# Now invoke the standard error handling.
mtt_error_r sympar2numpar_r2c.log
|