Overview
| Comment: | Now uses LUD in place of SVD - faster for N>100 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
735d80c692fa9bd04d7435f60d00782e |
| User & Date: | gawthrop@users.sourceforge.net on 1998-08-17 15:57:12.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-08-18
| ||
| 08:48:43 | Sorted out problem with ifeq ($REPTYPE,data) block - added else. check-in: 9dec4a73ba user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1998-08-17
| ||
| 15:57:12 | Now uses LUD in place of SVD - faster for N>100 check-in: 735d80c692 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 15:56:10 | Uses LU decomposition - much faster than SVD when N>100 check-in: 2ed6825306 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/p/mtt_update.p
from [69e39a967e]
to [36e3f6e075].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
{
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 1998/08/14 10:54:58 peterg
## Use sparse computation where possible
##
###############################################################
}
CONST
Small = 0.000001;
VAR
i,j : INTEGER;
BB : StateVector;
DDT : REAL;
| > > > | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
{
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 1998/08/15 13:48:35 peterg
## New update methods
##
## Revision 1.4 1998/08/14 10:54:58 peterg
## Use sparse computation where possible
##
###############################################################
}
CONST
Small = 0.000001;
VAR
i,j : INTEGER;
BB : StateVector;
DDT : REAL;
(*$I mtt_solve_lud.p *)
(*$I mtt_sparse.p *)
BEGIN{mtt_update}
IF Method=1 THEN {Euler}
BEGIN{Euler}
DDT := DT/STEPFACTOR;
FOR i := 1 TO Nx DO
xnew[i] := xnew[i] + dx[i]*DDT;
END {Euler}
ELSE IF (Method=2) OR (METHOD=3) OR (METHOD=4) THEN {Implicit}
BEGIN {Implicit methods}
FOR i := 1 TO Nx DO {BB is (1-A*dt)*x +dx*dt}
BB[i] := AAx[i] + DT*dx[i];
{Solve the equation AAx = B}
IF (Method=2) OR (METHOD=3) THEN {Use SVD}
mtt_solve_lud(xnew,AA,BB,Nx)
ELSE {Sparse CG solution}
mtt_sparse(BB,Nx,STEPFACTOR,xnew);
END{Implicit methods}
ELSE
Writeln("Method >4 is not defined");
END{mtt_update};
|