Changeset 21873


Ignore:
Timestamp:
07/26/17 11:39:13 (8 years ago)
Author:
Mathieu Morlighem
Message:

CHG: added support for friction law 9

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

Legend:

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

    r21779 r21873  
    221221                        break;
    222222                default:
    223                         _error_("not supported");
     223                        _error_("friction law not supported");
    224224        }
    225225
  • issm/trunk-jpl/src/c/analyses/ThermalAnalysis.cpp

    r21740 r21873  
    197197                        iomodel->FetchDataToInput(elements,"md.initialization.temperature",TemperatureEnum);
    198198                        break;
     199                case 9:
     200                        iomodel->FetchDataToInput(elements,"md.friction.coefficient",FrictionCoefficientEnum);
     201                        iomodel->FetchDataToInput(elements,"md.friction.pressure_adjusted_temperature",FrictionPressureAdjustedTemperatureEnum);
     202                        InputUpdateFromConstantx(elements,1.,FrictionPEnum);
     203                        InputUpdateFromConstantx(elements,1.,FrictionQEnum);
     204                        break;
    199205                default:
    200                         _error_("not supported");
     206                        _error_("friction law not supported");
    201207        }
    202208}/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.