Changeset 16778


Ignore:
Timestamp:
11/15/13 09:05:51 (11 years ago)
Author:
Mathieu Morlighem
Message:

BUG: fixed leak, spawned element need to delete its materials

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

Legend:

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

    r16761 r16778  
    196196        xDelete<IssmDouble>(residual);
    197197        xDelete<int>(doflist);
    198         if(meshtype!=Mesh2DhorizontalEnum) delete basalelement;
     198        if(meshtype!=Mesh2DhorizontalEnum){basalelement->DeleteMaterials(); delete basalelement;};
    199199}/*}}}*/
  • TabularUnified issm/trunk-jpl/src/c/analyses/MasstransportAnalysis.cpp

    r16727 r16778  
    297297        xDelete<IssmDouble>(phi);
    298298        xDelete<int>(doflist);
    299         if(meshtype!=Mesh2DhorizontalEnum) delete basalelement;
    300 }/*}}}*/
     299        if(meshtype!=Mesh2DhorizontalEnum){basalelement->DeleteMaterials(); delete basalelement;};
     300}/*}}}*/
  • TabularUnified issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp

    r16777 r16778  
    13251325        xDelete<IssmDouble>(xyz_list);
    13261326        xDelete<int>(doflist);
    1327         if(meshtype!=Mesh2DhorizontalEnum) delete basalelement;
     1327        if(meshtype!=Mesh2DhorizontalEnum){basalelement->DeleteMaterials(); delete basalelement;};
    13281328}/*}}}*/
    13291329void StressbalanceAnalysis::InputUpdateFromSolutionSSA(IssmDouble* solution,Element* element){/*{{{*/
     
    14241424        xDelete<IssmDouble>(xyz_list);
    14251425        xDelete<int>(doflist);
    1426         if(meshtype!=Mesh2DhorizontalEnum) delete basalelement;
     1426        if(meshtype!=Mesh2DhorizontalEnum){basalelement->DeleteMaterials(); delete basalelement;};
    14271427}/*}}}*/
    14281428void StressbalanceAnalysis::InputUpdateFromSolutionSSAFS(IssmDouble* solution,Element* element){/*{{{*/
  • TabularUnified issm/trunk-jpl/src/c/classes/Elements/Element.h

    r16775 r16778  
    4646                virtual void   CreatePVector(Vector<IssmDouble>* pf)=0;
    4747                virtual void   CreateJacobianMatrix(Matrix<IssmDouble>* Jff)=0;
     48                virtual void   DeleteMaterials(void)=0;
    4849                virtual void   EnthalpyToThermal(IssmDouble* ptemperature,IssmDouble* pwaterfraction,IssmDouble enthalpy,IssmDouble pressure)=0;
    4950                virtual void   FindParam(int* pvalue,int paramenum)=0;
  • TabularUnified issm/trunk-jpl/src/c/classes/Elements/Penta.h

    r16775 r16778  
    7474                void   ComputeStressTensor();
    7575                void   Configure(Elements* elements,Loads* loads,Nodes* nodes,Vertices* vertices,Materials* materials,Parameters* parameters);
     76                void   DeleteMaterials(void){_error_("not implemented yet");};
    7677                void   FindParam(int* pvalue,int paramenum);
    7778                void   FindParam(IssmDouble* pvalue,int paramenum);
  • TabularUnified issm/trunk-jpl/src/c/classes/Elements/Seg.h

    r16775 r16778  
    7575                void        ComputeStressTensor(){_error_("not implemented yet");};
    7676                void        Configure(Elements* elements,Loads* loads,Nodes* nodesin,Vertices* verticesin,Materials* materials,Parameters* parameters){_error_("not implemented yet");};
     77                void        DeleteMaterials(void){_error_("not implemented yet");};
    7778                void        SetCurrentConfiguration(Elements* elements,Loads* loads,Nodes* nodes,Materials* materials,Parameters* parameters){_error_("not implemented yet");};
    7879                void        SetwiseNodeConnectivity(int* d_nz,int* o_nz,Node* node,bool* flags,int* flagsindices,int set1_enum,int set2_enum){_error_("not implemented yet");};
  • TabularUnified issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r16761 r16778  
    804804
    805805        return;
     806}
     807/*}}}*/
     808/*FUNCTION Tria::DeleteMaterials{{{*/
     809void Tria::DeleteMaterials(void){
     810        delete this->material;
    806811}
    807812/*}}}*/
  • TabularUnified issm/trunk-jpl/src/c/classes/Elements/Tria.h

    r16775 r16778  
    7878                void        CreatePVector(Vector<IssmDouble>* pf);
    7979                void        CreateJacobianMatrix(Matrix<IssmDouble>* Jff);
     80                void        DeleteMaterials(void);
    8081                void        Delta18oParameterization(void);
    8182                void        EnthalpyToThermal(IssmDouble* ptemperature,IssmDouble* pwaterfraction,IssmDouble enthalpy,IssmDouble pressure){_error_("not implemented yet");};
Note: See TracChangeset for help on using the changeset viewer.