Overview
| Comment: | Fixed various bugs etc. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2e5d817f6d839011bb54d606cf8c6163 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-05-13 16:42:03.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-05-13
| ||
| 16:43:03 |
Now uses matlab_matrix to write the matrices Various bug fixes New global generation method check-in: 2e64252bd0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 16:42:03 | Fixed various bugs etc. check-in: 2e5d817f6d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 12:39:23 | Added `unknown' to list od names to avoid check-in: c50c69217a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/dae2daes_m
from [df171652b5]
to [3f6f2d7c37].
| ︙ | ︙ | |||
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 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 1996/08/18 12:00:19 peter ## Unified format of responses. ## ## Revision 1.2 1996/08/16 13:17:57 peter ## Changed default args to include nx+nz ## Fixed bug with vector outputs. ## ## Revision 1.1 1996/08/15 16:24:55 peter ## Initial revision ## ############################################################### echo Creating $1_daes.m echo Creating $1_daeso.m rm -f dae2daes_m.log rm -f $1_daes.m rm -f $1_daeso.m | > > > > < < < < < < < < < < | > > < | | | | < < < | < | | < < < | 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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 |
# Copyright (c) P.J.Gawthrop, 1996.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.4 1996/08/24 14:27:59 peter
# Global parameters.
# Error handling.
#
## Revision 1.3 1996/08/18 12:00:19 peter
## Unified format of responses.
##
## Revision 1.2 1996/08/16 13:17:57 peter
## Changed default args to include nx+nz
## Fixed bug with vector outputs.
##
## Revision 1.1 1996/08/15 16:24:55 peter
## Initial revision
##
###############################################################
echo Creating $1_daes.m
echo Creating $1_daeso.m
rm -f dae2daes_m.log
rm -f $1_daes.m
rm -f $1_daeso.m
$MATRIX << EOF > dae2daes_m.log 2>mtt_error.txt
%Read the parameters
$1_numpar;
[nx,ny,nu,nz,nyz] = $1_def;
NX = nx+2*nz+nyz;
t=0; %Just in case its in the parameter list
%Defaults
if exist('T')==0
T=[0:0.1:10]
end;
if exist('x0')==0
x0 = zeros(NX,1);
end;
if exist('dx0')==0
dx0 = zeros(NX,1);
end;
[n,m]=size(T);
if m>n
T=T';
end;
if NX>0
x = dassl("$1_dae", x0, dx0, T);
write_matrix([T,x], '$1_daes');
else
x = zeros(size(T));
end;
if ny>0
i=0;
for tt=T'
i=i+1;
y(i,:) = $1_daeo(x(i,:),tt)';
end;
write_matrix([T,y], '$1_daeso');
end;
EOF
# Now invoke the standard error handling.
mtt_error mtt_error.txt
|