Overview
| Comment: | Removed the mtt_solve include directive |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
02a04392178e64849ccc83099e4410bb |
| User & Date: | gawthrop@users.sourceforge.net on 1999-10-27 01:47:36.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1999-10-27
| ||
| 07:38:30 | Now does cse version -- but not needed now exept for Euler integration check-in: e414853868 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 01:47:36 | Removed the mtt_solve include directive check-in: 02a0439217 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 01:43:33 | Initial revision check-in: 80e80788f1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/p/mtt_implicit.p
from [03b794d400]
to [12eba8fbff].
1 2 3 4 5 6 7 8 9 10 11 12 | PROCEDURE mtt_implicit(VAR xnew,x,dx : StateVector; VAR AA : StateMatrix; VAR AAx : StateVector; dt : REAL; Nx : INTEGER; VAR open : StateVector); VAR i,ii,j,jj : INTEGER; BB,xsub : StateVector; AAsub : StateMatrix; | < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
PROCEDURE mtt_implicit(VAR xnew,x,dx : StateVector;
VAR AA : StateMatrix;
VAR AAx : StateVector;
dt : REAL;
Nx : INTEGER;
VAR open : StateVector);
VAR
i,ii,j,jj : INTEGER;
BB,xsub : StateVector;
AAsub : StateMatrix;
BEGIN{mtt_implicit}
ii := 0;
FOR i := 1 TO Nx DO {BB is (1-A*dt)*x +dx*dt}
BEGIN
IF open[i]<0.5 THEN
BEGIN
ii := ii+1; jj := 0;
|
| ︙ | ︙ |