Overview
| Comment: | Put in octave-mode line for Emacs |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
4bc9aef8bb1aed0c9aa41f9ac0430223 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-07-27 11:10:38.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-07-27
| ||
| 11:27:05 | Reformatted check-in: bbd6a4dbf2 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 11:10:38 | Put in octave-mode line for Emacs check-in: 4bc9aef8bb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 11:09:36 | Commented the aliases. check-in: ace0067753 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/struc2input_txt2txt
from [99cb485b0f]
to [b3aca80cc4].
| ︙ | ︙ | |||
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 | shift done # Inform user echo Creating $1_input.txt #Create the input file complete with headers. | > | | 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 '{
|
| ︙ | ︙ |