Changeset 24020


Ignore:
Timestamp:
06/17/19 01:01:48 (6 years ago)
Author:
Mathieu Morlighem
Message:

CHG: working on basal stress

Location:
issm/trunk-jpl/src/c/classes/Elements
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Element.h

    r24010 r24020  
    209209                virtual void        CalvingRateLevermann(void)=0;
    210210                virtual IssmDouble CharacteristicLength(void)=0;
    211                 virtual void       ComputeBasalStress(Vector<IssmDouble>* sigma_b)=0;
     211                virtual void       ComputeBasalStress(void){_error_("not implemented yet");};
    212212                virtual void       ComputeDeviatoricStressTensor(void)=0;
    213213                virtual void       ComputeSigmaNN(void)=0;
  • issm/trunk-jpl/src/c/classes/Elements/Penta.cpp

    r23893 r24020  
    331331}
    332332/*}}}*/
    333 void       Penta::ComputeBasalStress(Vector<IssmDouble>* sigma_b){/*{{{*/
    334 
     333void       Penta::ComputeBasalStress(void){/*{{{*/
     334
     335        _error_("not implemented (needs to be redone)");
    335336        int         i,j;
    336337        int         dofv[3]={0,1,2};
  • issm/trunk-jpl/src/c/classes/Elements/Penta.h

    r24010 r24020  
    5151                void           CalvingRateLevermann();
    5252                IssmDouble     CharacteristicLength(void){_error_("not implemented yet");};
    53                 void           ComputeBasalStress(Vector<IssmDouble>* sigma_b);
     53                void           ComputeBasalStress(void);
    5454                void           ComputeDeviatoricStressTensor();
    5555                void           ComputeEsaStrainAndVorticity(){_error_("not implemented yet!");};
  • issm/trunk-jpl/src/c/classes/Elements/Seg.h

    r24010 r24020  
    4545                void        CalvingRateLevermann(void){_error_("not implemented yet");};
    4646                IssmDouble  CharacteristicLength(void);
    47                 void        ComputeBasalStress(Vector<IssmDouble>* sigma_b){_error_("not implemented yet");};
    4847                void        ComputeDeviatoricStressTensor(){_error_("not implemented yet");};
    4948                void        ComputeEsaStrainAndVorticity(){_error_("not implemented yet!");};
  • issm/trunk-jpl/src/c/classes/Elements/Tetra.h

    r24010 r24020  
    4545                void        CalvingRateLevermann(void){_error_("not implemented yet");};
    4646                IssmDouble  CharacteristicLength(void){_error_("not implemented yet");};
    47                 void        ComputeBasalStress(Vector<IssmDouble>* sigma_b){_error_("not implemented yet");};
    4847                void        ComputeSigmaNN(){_error_("not implemented yet");};
    4948                void        ComputeStressTensor(){_error_("not implemented yet");};
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r24010 r24020  
    489489}
    490490/*}}}*/
    491 void       Tria::ComputeBasalStress(Vector<IssmDouble>* eps){/*{{{*/
     491void       Tria::ComputeBasalStress(void){/*{{{*/
    492492        _error_("Not Implemented yet");
    493493}
  • issm/trunk-jpl/src/c/classes/Elements/Tria.h

    r24010 r24020  
    5555                void                    CalvingRateLevermann();
    5656                IssmDouble  CharacteristicLength(void);
    57                 void        ComputeBasalStress(Vector<IssmDouble>* sigma_b);
     57                void        ComputeBasalStress(void);
    5858                void        ComputeDeviatoricStressTensor();
    5959                void        ComputeEsaStrainAndVorticity();
Note: See TracChangeset for help on using the changeset viewer.