Differences From Artifact [e019adb924]:
- Executable file
mttroot/mtt/bin/trans/ese2rdae_r
— part of check-in
[c5e45d6145]
at
1998-03-07 12:51:20
on branch origin/master
— This is the new version of ese2dae - it does not do the CRs at this
stage to give reduce an easier time.rese2ese_r does the constitutive relationship bit (user: gawthrop@users.sourceforge.net, size: 3158) [annotate] [blame] [check-ins using]
To Artifact [eac1bd257e]:
- Executable file mttroot/mtt/bin/trans/ese2rdae_r — part of check-in [b93dd7e7a2] at 1998-03-07 12:57:19 on branch origin/master — Fixed logname bug (user: gawthrop@users.sourceforge.net, size: 3386) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1991, 1994, 1996 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1998/03/07 12:49:31 peterg ## Initial revision ## ## Revision 1.12 1998/01/31 16:22:59 peterg ## Added IF MTTNx>0 THEN and IF MTTNy>0 THEN before the relevant ## assignements of MTTdX and MTTY to themselves. ## | > > > > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Copyright (c) P.J.Gawthrop, 1991, 1994, 1996 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1998/03/07 12:51:20 peterg ## This is the new version of ese2dae - it does not do the CRs at this ## stage to give reduce an easier time. ## ## rese2ese_r does the constitutive relationship bit ## ## Revision 1.1 1998/03/07 12:49:31 peterg ## Initial revision ## ## Revision 1.12 1998/01/31 16:22:59 peterg ## Added IF MTTNx>0 THEN and IF MTTNy>0 THEN before the relevant ## assignements of MTTdX and MTTY to themselves. ## |
︙ | ︙ | |||
67 68 69 70 71 72 73 74 75 76 77 78 | fi defname=$topname"_def.r" crname=$topname"_cr.r" paramname=$topname"_params.r" daename=$sysname"_rdae.r" esename=$sysname"_ese.r" # Inform user echo Creating $daename # Remove the old log file | > | | | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | fi defname=$topname"_def.r" crname=$topname"_cr.r" paramname=$topname"_params.r" daename=$sysname"_rdae.r" esename=$sysname"_ese.r" logname=$sysname"_rdae.log" # Inform user echo Creating $daename # Remove the old log file rm -f $logname # Use symbolic algebra to accomplish the transformation $SYMBOLIC >$logname << EOF %Read the formatting function in "$MTTPATH/trans/reduce_matrix.r"; % Definitions in "$defname"; |
︙ | ︙ | |||
130 131 132 133 134 135 136 | write ";END;"; SHUT "$daename"; quit; EOF # Now invoke the standard error handling. | | | 137 138 139 140 141 142 143 144 145 | write ";END;"; SHUT "$daename"; quit; EOF # Now invoke the standard error handling. mtt_error_r $logname |