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

CHG: simplifying (a little bit) FCT

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.