- Timestamp:
- 11/14/13 08:38:57 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/BalancevelocityAnalysis.cpp
r16684 r16753 63 63 }/*}}}*/ 64 64 void BalancevelocityAnalysis::InputUpdateFromSolution(IssmDouble* solution,Element* element){/*{{{*/ 65 _error_("not implemented yet"); 65 66 int meshtype; 67 element->FindParam(&meshtype,MeshTypeEnum); 68 switch(meshtype){ 69 case Mesh2DhorizontalEnum: 70 element->InputUpdateFromSolutionOneDof(solution,VelEnum); 71 break; 72 case Mesh3DEnum: 73 element->InputUpdateFromSolutionOneDofCollapsed(solution,VelEnum); 74 break; 75 default: _error_("mesh "<<EnumToStringx(meshtype)<<" not supported yet"); 76 } 66 77 }/*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.