Overview
Comment: | Creates csex (cse with dxe only) rep. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b0fa64f3c6c83f2367afe16cd2210557 |
User & Date: | gawthrop@users.sourceforge.net on 2000-10-11 08:52:46 |
Other Links: | branch diff | manifest | tags |
Context
2000-10-11
| ||
08:59:15 | Added csex rep check-in: 94b92b40c3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:52:46 | Creates csex (cse with dxe only) rep. check-in: b0fa64f3c6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:27:27 |
New piped version. any mttnn variable looks for () not [] check-in: 4ed20a8676 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/dae2cse_r from [b985fd846f] to [a8a0f34d9e].
︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 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.12 2000/10/10 21:00:58 peterg ## New code genration ## ## Revision 1.11 1998/11/26 09:18:55 peterg ## Incluse subs.r ## ## Revision 1.10 1998/11/18 13:50:29 peterg ## Removed writeing of EYz matrix ## ## Revision 1.9 1998/11/18 10:53:38 peterg |
︙ | |||
62 63 64 65 66 67 68 | 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 99 100 101 102 | - + + + + + | ## ## Revision 1.1 1996/08/15 16:47:02 peter ## Initial revision ## ############################################################### # Create the reduce output code |
︙ | |||
268 269 270 271 272 273 274 275 276 277 278 279 280 281 | 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | + + + + | % Create the matrix declarations OUT "$1_cse.r1"; write "MATRIX MTTEdx(", MTTNx, ",", 1, ")$"; write "MATRIX MTTE(", MTTNx, ",", MTTNx, ")$"; SHUT "$1_cse.r1"; OUT "$1_csex.r1"; write "MATRIX MTTEdx(", MTTNx, ",", 1, ")$"; SHUT "$1_csex.r1"; OUT "$1_cseo.r1"; write "MATRIX MTTY(", MTTNy, ",", MTTNx, ")$"; SHUT "$1_cseo.r1"; %%Create the _cse.r file OUT "$1_cse.r2"; write "%File: $1_cse.r"; |
︙ | |||
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | + + + + + + + | % MTT_Matrix_m := 1$ % Reduce_Matrix()$ write ";END;"; SHUT "$1_cse.r2"; OUT "$1_csex.r2"; write "%File: $1_cse.r"; in ("$1_csex_write.r"); write "END;"; SHUT "$1_csex.r2"; %Write out the output equations OUT "$1_cseo.r2"; write "%File: $1_cseo.r"; in ("$1_cseo_write.r"); write "END;"; SHUT "$1_cseo.r2"; quit; EOF cat $1_cse.r1 $1_cse.r2 > $1_cse.r cat $1_csex.r1 $1_csex.r2 > $1_csex.r cat $1_cseo.r1 $1_cseo.r2 > $1_cseo.r if [ "$solve" = "1" ]; then echo "Setting MTTNyz=0 in $1_def.r and removing other $1_def files" awk '{ if ($1=="MTTNyz") print "MTTNyz := 0;" |
︙ |