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.8 1998/07/25 09:42:09 peterg
## Just sets finrst input to 1 - rest to zero
##
## Revision 1.7 1998/07/25 08:05:41 peterg
## Reverted to original default - not using SS mechanism
##
## Revision 1.6 1998/02/24 10:14:56 peterg
|
>
>
>
|
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.9 1998/07/25 20:10:37 peterg
## lower case mttu
##
## Revision 1.8 1998/07/25 09:42:09 peterg
## Just sets finrst input to 1 - rest to zero
##
## Revision 1.7 1998/07/25 08:05:41 peterg
## Reverted to original default - not using SS mechanism
##
## Revision 1.6 1998/02/24 10:14:56 peterg
|
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
shift
done
# Inform user
echo Creating $1_input.txt
#Create the input file complete with headers.
echo "# Numerical parameter file ($1_input.txt)" > $1_input.txt
echo "# Generated by MTT at `date`" >> $1_input.txt
cat $MTTPATH/trans/rcs_header.sh >> $1_input.txt
#Write out the defaults -- inputs to steady-state values
#echo "# Set the inputs" >> $1_input.txt
#cat $1_ss.r $1_struc.txt | sed 's/\$//' |\
#awk '{
|
>
|
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
shift
done
# Inform user
echo Creating $1_input.txt
#Create the input file complete with headers.
echo '# -*-octave-*- Put Emacs into octave-mode' > $1_input.txt
echo "# Numerical parameter file ($1_input.txt)" >> $1_input.txt
echo "# Generated by MTT at `date`" >> $1_input.txt
cat $MTTPATH/trans/rcs_header.sh >> $1_input.txt
#Write out the defaults -- inputs to steady-state values
#echo "# Set the inputs" >> $1_input.txt
#cat $1_ss.r $1_struc.txt | sed 's/\$//' |\
#awk '{
|