Overview
| Comment: | Set inputs to zero as well. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
166267ebaf9a22d9f11c98de54594459 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-02-09 08:39:27.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-02-09
| ||
| 13:51:04 | Fixed directory string bug. check-in: 0cb11ee0c8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 08:39:27 | Set inputs to zero as well. check-in: 166267ebaf user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1998-02-06
| ||
| 15:53:49 | Initial revision check-in: ff1a1e28ec user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/makesspar
from [e39748f5b7]
to [940ae6900c].
| ︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1998. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### #Inform user echo Creating $1_sspar.r echo "% Steady-state parameters for system $1 ($1_sspar.r)"> $1_sspar.r echo "% Generated by MTT on" `date`. >> $1_sspar.r cat $MTTPATH/trans/m/rcs_header.txt >> $1_sspar.r | > > > | > > > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# Copyright (c) P.J.Gawthrop, 1998.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 1998/02/06 15:53:49 peterg
## Initial revision
##
###############################################################
#Inform user
echo Creating $1_sspar.r
echo "% Steady-state parameters for system $1 ($1_sspar.r)"> $1_sspar.r
echo "% Generated by MTT on" `date`. >> $1_sspar.r
cat $MTTPATH/trans/m/rcs_header.txt >> $1_sspar.r
echo "% Set all states and inputs to zero" >> $1_sspar.r
$MATRIX <<EOF #>> /dev/null
fnum=fopen("$1_sspar.r","a");
[nx,ny,nu,nz,nyz] = $1_def;
for i = 1:nx
fprintf(fnum,"MTTX%i := 0;\n", i);
end;
fprintf(fnum,"\n");
for i = 1:nu
fprintf(fnum,"MTTU%i := 0;\n", i);
end;
EOF
echo "END;;" >> $1_sspar.r
|