Overview
Comment: | Don't do ImplicitL |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b126ff16bfd3f46735562b877ed8ac2d |
User & Date: | gawthrop@users.sourceforge.net on 1998-08-15 14:07:11 |
Other Links: | branch diff | manifest | tags |
Context
1998-08-17
| ||
09:42:26 | Third argument gives the desired methods. check-in: 1eb75b2991 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-08-15
| ||
14:07:11 | Don't do ImplicitL check-in: b126ff16bf user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:58:27 | Initial revision check-in: 51bc7450b5 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/examples/Simulation/BigHeatedRod/Run from [d98ebed848] to [15b4b596fa].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #! /bin/sh # Shell script for running the large HeatedRod systems to compare # four integration methods. # Usage example: Run 100 0.25 runf the 100 segment example at interval 0.25 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### n=$1 DT=$2 if [ -z "$n" ]; then | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #! /bin/sh # Shell script for running the large HeatedRod systems to compare # four integration methods. # Usage example: Run 100 0.25 runf the 100 segment example at interval 0.25 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1998/08/15 13:58:27 peterg ## Initial revision ## ############################################################### n=$1 DT=$2 if [ -z "$n" ]; then |
︙ | ︙ | |||
64 65 66 67 68 69 70 | MinSTEPFACTOR=`awk '{if ($1=="STEPFACTOR") print $3}' HR$1.tmp1` SparseSTEPFACTOR=`awk '{if ($1=="SparseSTEPFACTOR") print $3}' HR$1.tmp1` rm -f HR$1_table.txt #Set the methods of interest | | | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | MinSTEPFACTOR=`awk '{if ($1=="STEPFACTOR") print $3}' HR$1.tmp1` SparseSTEPFACTOR=`awk '{if ($1=="SparseSTEPFACTOR") print $3}' HR$1.tmp1` rm -f HR$1_table.txt #Set the methods of interest METHODS='ImplicitS Euler Implicit' for METHOD in $METHODS; do case $METHOD in Euler) STEPFACTOR=$MinSTEPFACTOR ;; |
︙ | ︙ |