Overview
Comment: | Put in algebraic equation stuff |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
15bdf579e7dba7240498b86e6f057624 |
User & Date: | gawthrop@users.sourceforge.net on 1998-05-21 12:55:48 |
Other Links: | branch diff | manifest | tags |
Context
1998-05-21
| ||
16:20:27 | Modified to include explicit algebraic loop solution check-in: 4a33a9e021 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:55:48 | Put in algebraic equation stuff check-in: 15bdf579e7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:05:23 | Back under RCS check-in: 03f9899b7b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/ode_r2m from [4aa34d622e] to [a02e2cb627].
︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | + + + | # Copyright (c) P.J.Gawthrop 1991, 1994, 1995, 1996 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.11 1998/05/21 08:05:23 peterg ## Back under RCS ## ## Revision 1.10 1998/04/14 07:25:02 peterg ## _input now has arguments (x,t) ## ## Revision 1.9 1998/03/30 14:18:07 peterg ## Removed NERO command ## ## Revision 1.8 1998/02/25 18:03:49 peterg |
︙ | |||
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 | 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 99 100 | + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - | ## Revision 1.1 1996/08/18 12:03:49 peter ## Initial revision ## ############################################################### #Inform user echo Creating $1_ode.m echo Creating $1_odea.m echo Creating $1_odeo.m # Remove the old log file rm -f ode_r2m.log #Remove the temporary files rm -f $1_ode.mc rm -f $1_ode.m1 rm -f $1_ode.m2 rm -f $1_ode.m3 rm -f $1_ode.m4 rm -f $1_odea.m1; # Use reduce to accomplish the transformation reduce >ode_r2m.log << EOF %Read the reduce definitions file in "$1_def.r"; %Read the reduce ODE file in "$1_ode.r"; % Matrix output function in"$MTTPATH/trans/matlab_matrix.r"; %Set up the number of argument variables to zero in case the user has forgotten MTTNVar := 0; %Read the parameter file in "$1_sympar.r"; %ON NERO; % Suppress zero elements %Define the common part of the functions. PROCEDURE common; BEGIN |
︙ | |||
109 110 111 112 113 114 115 116 | 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | write "% Set up the Input variables"; IF MTTNu>0 THEN FOR i := 1:MTTNu DO BEGIN write "mttu", i, " = u(", i, ");"; END; END; |
︙ | |||
168 169 170 171 172 173 174 175 176 177 178 179 180 | 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | fortwidth!* := 500$ OFF period$ MTTy := MTTy; SHUT "$1_odeo.m"; EOF # Create the ode.m function cat <<EOF > $1_ode.m function mttdx = $1_ode(x,t); % mttdx = $1_ode(x,t); %ODE in Octave form for system $1; %File $1_ode.m; %Generated by MTT on `date`; EOF # Create the globals sympar2global_txt2m $1 >> $1_ode.m #Common bit cat $1_ode.mc >> $1_ode.m #Extract internal input from state vector cat $1_ode.m4 >> $1_ode.m cat <<EOF >> $1_ode.m % Solve the algebraic equations (if any) if nyz>0 global xx; xx = x; mttui = fsolve('$1_odea',mttui); end; EOF cat $1_ode.m3 >> $1_ode.m cat <<EOF >> $1_ode.m % The differential equations EOF cat $1_ode.m1 >> $1_ode.m cat <<EOF >> $1_ode.m % Append the internal inputs to the state derivative mttdx = [mttdx; mttui]; EOF # Create the odea.m function cat <<EOF > $1_odea.m function mttyz = $1_odea(mttui); % mttyz = $1_odea(mttui); %Algebraic equations in Octave form for system $1; %File $1_odea.m; %Generated by MTT on `date`; EOF # Create the globals sympar2global_txt2m $1 >> $1_odea.m cat <<EOF >> $1_odea.m global xx t; x = xx; EOF #Common bit cat $1_ode.mc >> $1_odea.m # Internal inputs cat $1_ode.m3 >> $1_odea.m cat <<EOF >> $1_odea.m % The algebraic equations EOF cat $1_odea.m1 >> $1_odea.m |