Ignore:
Timestamp:
01/02/19 20:33:39 (6 years ago)
Author:
Mathieu Morlighem
Message:

CHG: simplifying some functions now that nodes and loads are for one single analysis

File:
1 edited

Legend:

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

    r23585 r23587  
    792792void           DamageEvolutionAnalysis::LumpedMassMatrix(Vector<IssmDouble>** pMlff,FemModel* femmodel){/*{{{*/
    793793
    794         /*Intermediaries*/
    795         int  configuration_type;
    796 
    797794        /*Initialize Lumped mass matrix (actually we just save its diagonal)*/
    798         femmodel->parameters->FindParam(&configuration_type,ConfigurationTypeEnum);
    799         int fsize      = femmodel->nodes->NumberOfDofs(configuration_type,FsetEnum);
    800         int flocalsize = femmodel->nodes->NumberOfDofsLocal(configuration_type,FsetEnum);
     795        int fsize      = femmodel->nodes->NumberOfDofs(FsetEnum);
     796        int flocalsize = femmodel->nodes->NumberOfDofsLocal(FsetEnum);
    801797        Vector<IssmDouble>* Mlff = new Vector<IssmDouble>(flocalsize,fsize);
    802798
Note: See TracChangeset for help on using the changeset viewer.