- Timestamp:
- 04/16/20 20:45:52 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/solutionsequences/solutionsequence_fct.cpp
r23588 r24713 338 338 IssmDouble theta,deltat,dmax; 339 339 int configuration_type,analysis_type; 340 Vector<IssmDouble>* Ml = NULL;341 340 Matrix<IssmDouble>* K = NULL; 342 341 Matrix<IssmDouble>* Mc = NULL; … … 357 356 case MasstransportAnalysisEnum: 358 357 manalysis = new MasstransportAnalysis(); 359 manalysis->LumpedMassMatrix(&Ml,femmodel);360 358 manalysis->MassMatrix(&Mc,femmodel); 361 359 manalysis->FctKMatrix(&K,NULL,femmodel); … … 363 361 case DamageEvolutionAnalysisEnum: 364 362 danalysis = new DamageEvolutionAnalysis(); 365 danalysis->LumpedMassMatrix(&Ml,femmodel);366 363 danalysis->MassMatrix(&Mc,femmodel); 367 364 danalysis->FctKMatrix(&K,NULL,femmodel); … … 381 378 Vec udot = NULL; 382 379 Mat K_petsc = K->pmatrix->matrix; 383 Vec Ml_petsc = Ml->pvector->vector;384 380 Mat Mc_petsc = Mc->pmatrix->matrix; 385 386 /*Create D Matrix*/387 CreateDMatrix(&D_petsc,K_petsc);388 389 /*Create LHS: [ML − theta*detlat *(K+D)^n+1]*/390 CreateLHS(&LHS,&dmax,K_petsc,D_petsc,Ml_petsc,theta,deltat,femmodel,configuration_type);391 381 392 382 /*Get previous solution u^n*/ … … 394 384 Reducevectorgtofx(&uf, ug, femmodel->nodes,femmodel->parameters); 395 385 delete ug; 386 387 /*Compute lumped mass matrix*/ 388 Vec Ml_petsc = NULL; 389 VecDuplicate(uf->pvector->vector,&Ml_petsc); 390 MatGetRowSum(Mc_petsc,Ml_petsc); 391 392 /*Create D Matrix*/ 393 CreateDMatrix(&D_petsc,K_petsc); 394 395 /*Create LHS: [ML − theta*detlat *(K+D)^n+1]*/ 396 CreateLHS(&LHS,&dmax,K_petsc,D_petsc,Ml_petsc,theta,deltat,femmodel,configuration_type); 396 397 397 398 /*Create RHS: [ML + (1 − theta) deltaT L^n] u^n */ … … 445 446 VecFree(&Fbar); 446 447 VecFree(&udot); 447 delete Ml;448 VecFree(&Ml_petsc); 448 449 449 450 /*Update Element inputs*/
Note:
See TracChangeset
for help on using the changeset viewer.