Overview
Comment: | Commented out aej.r generation (not used yet). |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
722ebd2ecf72386e0db63469929bc367 |
User & Date: | geraint@users.sourceforge.net on 2002-06-28 15:35:47 |
Other Links: | branch diff | manifest | tags |
Context
2002-07-04
| ||
21:34:12 | Updated gnuplot view description to describe Tcl/Tk interface instead of obsolete txt method. check-in: 0e1bdb3793 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2002-06-28
| ||
15:35:47 | Commented out aej.r generation (not used yet). check-in: 722ebd2ecf user: geraint@users.sourceforge.net tags: origin/master, trunk | |
10:13:40 | Includes fix_c.r in ese2rdae and def2write_r to eliminate occurrances of x**y. check-in: c7118cc5e3 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/dae2cse_r from [19f9b6274c] to [fd1b6c751e].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop 1991, 1992, 1994. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.20 2002/04/28 18:41:26 geraint ## Fixed [ 549658 ] awk should be gawk. ## Replaced calls to awk with call to gawk. ## ## Revision 1.19 2001/10/26 01:01:49 geraint ## fixcc when rdae_is_dae (-cr). ## | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Copyright (c) P.J.Gawthrop 1991, 1992, 1994. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.21 2002/06/28 10:13:40 geraint ## Includes fix_c.r in ese2rdae and def2write_r to eliminate occurrances of x**y. ## ## Revision 1.20 2002/04/28 18:41:26 geraint ## Fixed [ 549658 ] awk should be gawk. ## Replaced calls to awk with call to gawk. ## ## Revision 1.19 2001/10/26 01:01:49 geraint ## fixcc when rdae_is_dae (-cr). ## |
︙ | ︙ | |||
333 334 335 336 337 338 339 | WRITE "%File: $1_ae.r"; FOR i := 1:MTTNyz DO WRITE "MTTyz(",i,",1) := ",MTTyz(i,1)," +0"; END; % if MTTNyz>0 (and !$solve) WRITE ";END;"; SHUT "$1_ae.r"; | | | | | | | | | | | | | | | | | 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | WRITE "%File: $1_ae.r"; FOR i := 1:MTTNyz DO WRITE "MTTyz(",i,",1) := ",MTTyz(i,1)," +0"; END; % if MTTNyz>0 (and !$solve) WRITE ";END;"; SHUT "$1_ae.r"; %OUT "$1_aej.r"; %IF (MTTNyz>0) THEN % as above %BEGIN % WRITE "MATRIX MTTyzj(",MTTNyz,",",MTTNyz,")"; % WRITE "%File: $1_aej.r"; % FOR i := 1:MTTNyz DO % FOR j := 1:MTTNyz DO % BEGIN % didj := df(MTTyz(i,1),mkid('mttui,j)); % IF (didj NEQ 0) THEN % WRITE "MTTyzj(",i,",",j,") := ",didj," +0"; % END; %END; %WRITE ";END;"; %SHUT "$1_aej.r"; % Create the matrix declarations OUT "$1_cse.r1"; write "%"; IF (MTTNx > 0) THEN BEGIN write "MATRIX MTTEdx(", MTTNx, ",", 1, ")$"; |
︙ | ︙ |