Overview
Comment: | Now writes out modifies MTTNx and MTTNy |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
de2a9d1b20d772bfd138b2c7292ddb7f |
User & Date: | gawthrop@users.sourceforge.net on 1999-11-22 23:19:56 |
Other Links: | branch diff | manifest | tags |
Context
1999-11-22
| ||
23:38:51 |
Now does scse 2 scsm as well. Uses mkid. check-in: 95db99d485 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
23:19:56 | Now writes out modifies MTTNx and MTTNy check-in: de2a9d1b20 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
23:04:08 | *** empty log message *** check-in: 2b925d49fa user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cse2scse_r from [200b65d43e] to [73797dbbb0].
︙ | ︙ | |||
174 175 176 177 178 179 180 181 182 183 | OFF nat; OUT "$system_scse"; write "%File: $system_scse"; % E matrix MTT_Matrix := MTTsE$ | > > > > > | | | | 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | OFF nat; OUT "$system_scse"; write "%File: $system_scse"; % Constants write "% New constants"; write "MTTNx := ", MTTNx2, ";"; write "MTTNy := ", MTTNy2, ";"; % E matrix MTT_Matrix := MTTsE$ MTT_Matrix_name := "MTTE"$ MTT_Matrix_n := MTTNx2$ MTT_Matrix_m := MTTNx2$ Reduce_Matrix()$ % State derivative MTT_Matrix := MTTsEdX$ MTT_Matrix_name := "MTTEdX"$ MTT_Matrix_n := MTTNx2$ MTT_Matrix_m := 1$ Reduce_Matrix()$ % Output MTT_Matrix := MTTsY$ MTT_Matrix_name := "MTTY"$ MTT_Matrix_n := MTTNy2$ MTT_Matrix_m := 1$ Reduce_Matrix()$ write "END;"; SHUT "$system_scse"; |
︙ | ︙ |