Changeset 24715
- Timestamp:
- 04/17/20 08:06:57 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/solutionsequences/solutionsequence_fct.cpp
r24714 r24715 63 63 /*Create Left Hand side of Lower order solution 64 64 * 65 * LHS = [ML −theta*detlat *(K+D)^n+1]65 * LHS = [ML - theta*detlat *(K+D)^n+1] 66 66 * 67 67 */ … … 147 147 /*Create Right Hand side of Lower order solution 148 148 * 149 * RHS = [ML + (1 −theta) deltaT L^n] u^n149 * RHS = [ML + (1 - theta) deltaT L^n] u^n 150 150 * 151 151 * where L = K + D … … 445 445 CreateDMatrix(&D_petsc,K_petsc); 446 446 447 /*Create LHS: [ML −theta*detlat *(K+D)^n+1]*/447 /*Create LHS: [ML - theta*detlat *(K+D)^n+1]*/ 448 448 CreateLHS(&LHS,&dmax,K_petsc,D_petsc,Ml_petsc,theta,deltat,femmodel,configuration_type); 449 449 450 /*Create RHS: [ML + (1 −theta) deltaT L^n] u^n */450 /*Create RHS: [ML + (1 - theta) deltaT L^n] u^n */ 451 451 CreateRHS(&RHS,K_petsc,D_petsc,Ml_petsc,uf->pvector->vector,theta,deltat,dmax,femmodel,configuration_type); 452 452 delete uf;
Note:
See TracChangeset
for help on using the changeset viewer.