Changeset 24713
- Timestamp:
- 04/16/20 20:45:52 (5 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/DamageEvolutionAnalysis.cpp
r24335 r24713 894 894 } 895 895 }/*}}}*/ 896 void DamageEvolutionAnalysis::LumpedMassMatrix(Vector<IssmDouble>** pMlff,FemModel* femmodel){/*{{{*/897 898 /*Initialize Lumped mass matrix (actually we just save its diagonal)*/899 int fsize = femmodel->nodes->NumberOfDofs(FsetEnum);900 int flocalsize = femmodel->nodes->NumberOfDofsLocal(FsetEnum);901 Vector<IssmDouble>* Mlff = new Vector<IssmDouble>(flocalsize,fsize);902 903 /*Create and assemble matrix*/904 for(int i=0;i<femmodel->elements->Size();i++){905 Element* element = xDynamicCast<Element*>(femmodel->elements->GetObjectByOffset(i));906 ElementMatrix* MLe = this->CreateMassMatrix(element);907 if(MLe){908 MLe->Lump();909 MLe->AddDiagonalToGlobal(Mlff);910 }911 delete MLe;912 }913 Mlff->Assemble();914 915 /*Assign output pointer*/916 *pMlff=Mlff;917 }/*}}}*/918 896 void DamageEvolutionAnalysis::MassMatrix(Matrix<IssmDouble>** pMff,FemModel* femmodel){/*{{{*/ 919 897 -
issm/trunk-jpl/src/c/analyses/DamageEvolutionAnalysis.h
r24335 r24713 41 41 ElementMatrix* CreateMassMatrix(Element* element); 42 42 void FctKMatrix(Matrix<IssmDouble>** pKff,Matrix<IssmDouble>** pKfs,FemModel* femmodel); 43 void LumpedMassMatrix(Vector<IssmDouble>** pMLff,FemModel* femmodel);44 43 void MassMatrix(Matrix<IssmDouble>** pMff,FemModel* femmodel); 45 44 }; -
issm/trunk-jpl/src/c/analyses/MasstransportAnalysis.cpp
r24548 r24713 975 975 /*Clean up and return*/ 976 976 xDelete<IssmDouble>(xyz_list); 977 xDelete<IssmDouble>(D); 977 978 xDelete<IssmDouble>(basis); 978 979 xDelete<IssmDouble>(dbasis); … … 1048 1049 } 1049 1050 }/*}}}*/ 1050 void MasstransportAnalysis::LumpedMassMatrix(Vector<IssmDouble>** pMlff,FemModel* femmodel){/*{{{*/1051 1052 /*Initialize Lumped mass matrix (actually we just save its diagonal)*/1053 int fsize = femmodel->nodes->NumberOfDofs(FsetEnum);1054 int flocalsize = femmodel->nodes->NumberOfDofsLocal(FsetEnum);1055 Vector<IssmDouble>* Mlff = new Vector<IssmDouble>(flocalsize,fsize);1056 1057 /*Create and assemble matrix*/1058 for(int i=0;i<femmodel->elements->Size();i++){1059 Element* element = xDynamicCast<Element*>(femmodel->elements->GetObjectByOffset(i));1060 ElementMatrix* MLe = this->CreateMassMatrix(element);1061 if(MLe){1062 MLe->Lump();1063 MLe->AddDiagonalToGlobal(Mlff);1064 }1065 delete MLe;1066 }1067 Mlff->Assemble();1068 1069 /*Assign output pointer*/1070 *pMlff=Mlff;1071 }/*}}}*/1072 1051 void MasstransportAnalysis::MassMatrix(Matrix<IssmDouble>** pMff,FemModel* femmodel){/*{{{*/ 1073 1052 -
issm/trunk-jpl/src/c/analyses/MasstransportAnalysis.h
r24433 r24713 39 39 ElementMatrix* CreateMassMatrix(Element* element); 40 40 void FctKMatrix(Matrix<IssmDouble>** pKff,Matrix<IssmDouble>** pKfs,FemModel* femmodel); 41 void LumpedMassMatrix(Vector<IssmDouble>** pMLff,FemModel* femmodel);42 41 void MassMatrix(Matrix<IssmDouble>** pMff,FemModel* femmodel); 43 42 }; -
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.