Changeset 24349


Ignore:
Timestamp:
11/18/19 08:08:43 (5 years ago)
Author:
Mathieu Morlighem
Message:

CHG: Gauss point should be provided

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

Legend:

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

    r24347 r24349  
    13071307void       Element::GetInputValue(IssmDouble* pvalue,int inputenum){/*{{{*/
    13081308
    1309         Input2* input=this->GetInput2(inputenum);
    1310         if(!input) _error_("Input " << EnumToStringx(inputenum) << " not found in element");
    1311         //input->GetInputValue(pvalue);
    1312         _error_("not supported yet (Trying to fetch "<<EnumToStringx(inputenum)<<")");
     1309        /*FIXME: function to delete!*/
     1310        _error_("Gauss point should be provided (Trying to fetch \""<<EnumToStringx(inputenum)<<"\", this function should be deleted)");
    13131311
    13141312}/*}}}*/
  • issm/trunk-jpl/src/c/classes/Loads/Friction.cpp

    r24337 r24349  
    499499        /*Recover parameters: */
    500500        element->GetInputValue(&C,gauss,FrictionCEnum);
    501         element->GetInputValue(&m,FrictionMEnum);
     501        element->GetInputValue(&m,gauss,FrictionMEnum);
    502502
    503503        /*Get velocity magnitude*/
Note: See TracChangeset for help on using the changeset viewer.