Changeset 24713


Ignore:
Timestamp:
04/16/20 20:45:52 (5 years ago)
Author:
Mathieu Morlighem
Message:

CHG: simplifying (a little bit) FCT

Location:
issm/trunk-jpl/src/c
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/DamageEvolutionAnalysis.cpp

    r24335 r24713  
    894894        }
    895895}/*}}}*/
    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 }/*}}}*/
    918896void           DamageEvolutionAnalysis::MassMatrix(Matrix<IssmDouble>** pMff,FemModel* femmodel){/*{{{*/
    919897
  • issm/trunk-jpl/src/c/analyses/DamageEvolutionAnalysis.h

    r24335 r24713  
    4141                ElementMatrix* CreateMassMatrix(Element* element);
    4242                void           FctKMatrix(Matrix<IssmDouble>** pKff,Matrix<IssmDouble>** pKfs,FemModel* femmodel);
    43                 void           LumpedMassMatrix(Vector<IssmDouble>** pMLff,FemModel* femmodel);
    4443                void           MassMatrix(Matrix<IssmDouble>** pMff,FemModel* femmodel);
    4544};
  • issm/trunk-jpl/src/c/analyses/MasstransportAnalysis.cpp

    r24548 r24713  
    975975        /*Clean up and return*/
    976976        xDelete<IssmDouble>(xyz_list);
     977        xDelete<IssmDouble>(D);
    977978        xDelete<IssmDouble>(basis);
    978979        xDelete<IssmDouble>(dbasis);
     
    10481049        }
    10491050}/*}}}*/
    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 }/*}}}*/
    10721051void           MasstransportAnalysis::MassMatrix(Matrix<IssmDouble>** pMff,FemModel* femmodel){/*{{{*/
    10731052
  • issm/trunk-jpl/src/c/analyses/MasstransportAnalysis.h

    r24433 r24713  
    3939                ElementMatrix* CreateMassMatrix(Element* element);
    4040                void           FctKMatrix(Matrix<IssmDouble>** pKff,Matrix<IssmDouble>** pKfs,FemModel* femmodel);
    41                 void           LumpedMassMatrix(Vector<IssmDouble>** pMLff,FemModel* femmodel);
    4241                void           MassMatrix(Matrix<IssmDouble>** pMff,FemModel* femmodel);
    4342};
  • issm/trunk-jpl/src/c/solutionsequences/solutionsequence_fct.cpp

    r23588 r24713  
    338338        IssmDouble           theta,deltat,dmax;
    339339        int                  configuration_type,analysis_type;
    340         Vector<IssmDouble>*  Ml = NULL;
    341340        Matrix<IssmDouble>*  K  = NULL;
    342341        Matrix<IssmDouble>*  Mc = NULL;
     
    357356                case MasstransportAnalysisEnum:
    358357                        manalysis = new MasstransportAnalysis();
    359                         manalysis->LumpedMassMatrix(&Ml,femmodel);
    360358                        manalysis->MassMatrix(&Mc,femmodel);
    361359                        manalysis->FctKMatrix(&K,NULL,femmodel);
     
    363361                case DamageEvolutionAnalysisEnum:
    364362                        danalysis = new DamageEvolutionAnalysis();
    365                         danalysis->LumpedMassMatrix(&Ml,femmodel);
    366363                        danalysis->MassMatrix(&Mc,femmodel);
    367364                        danalysis->FctKMatrix(&K,NULL,femmodel);
     
    381378        Vec udot     = NULL;
    382379        Mat K_petsc  = K->pmatrix->matrix;
    383         Vec Ml_petsc = Ml->pvector->vector;
    384380        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);
    391381
    392382        /*Get previous solution u^n*/
     
    394384        Reducevectorgtofx(&uf, ug, femmodel->nodes,femmodel->parameters);
    395385        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);
    396397
    397398        /*Create RHS: [ML + (1 − theta) deltaT L^n] u^n */
     
    445446        VecFree(&Fbar);
    446447        VecFree(&udot);
    447         delete Ml;
     448        VecFree(&Ml_petsc);
    448449
    449450        /*Update Element inputs*/
Note: See TracChangeset for help on using the changeset viewer.