Changeset 4379
- Timestamp:
- 07/01/10 09:19:13 (15 years ago)
- Location:
- issm/trunk/src/c/objects/Elements
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Elements/Penta.cpp
r4378 r4379 337 337 InputUpdateFromSolutionDiagnosticStokes( solution); 338 338 } 339 else if (analysis_type==BedSlopeAnalysisEnum || analysis_type==SurfaceSlopeAnalysisEnum){ 340 InputUpdateFromSolutionSlopeCompute( solution); 339 else if (analysis_type==BedSlopeXAnalysisEnum){ 340 InputUpdateFromBedSlopeXCompute( solution); 341 } 342 else if (analysis_type==BedSlopeYAnalysisEnum){ 343 InputUpdateFromBedSlopeYCompute( solution); 344 } 345 else if (analysis_type==SurfaceSlopeXAnalysisEnum){ 346 InputUpdateFromSurfaceSlopeXCompute( solution); 347 } 348 else if (analysis_type==SurfaceSlopeYAnalysisEnum){ 349 InputUpdateFromSurfaceSlopeYCompute( solution); 341 350 } 342 351 else if (analysis_type==PrognosticAnalysisEnum){ … … 2127 2136 2128 2137 /*}}}*/ 2129 /*FUNCTION Penta::InputUpdateFromSolutionSlopeCompute {{{1*/ 2130 void Penta::InputUpdateFromSolutionSlopeCompute(double* solution){ 2138 /*FUNCTION Penta::InputUpdateFromBedSlopeXCompute {{{1*/ 2139 void Penta::InputUpdateFromBedSlopeXCompute(double* solution){ 2140 ISSMERROR(" not supported yet!"); 2141 } 2142 /*}}}*/ 2143 /*FUNCTION Penta::InputUpdateFromBedSlopeYCompute {{{1*/ 2144 void Penta::InputUpdateFromBedSlopeYCompute(double* solution){ 2145 ISSMERROR(" not supported yet!"); 2146 } 2147 /*}}}*/ 2148 /*FUNCTION Penta::InputUpdateFromSurfaceSlopeXCompute {{{1*/ 2149 void Penta::InputUpdateFromSurfaceSlopeXCompute(double* solution){ 2150 ISSMERROR(" not supported yet!"); 2151 } 2152 /*}}}*/ 2153 /*FUNCTION Penta::InputUpdateFromSurfaceSlopeYCompute {{{1*/ 2154 void Penta::InputUpdateFromSurfaceSlopeYCompute(double* solution){ 2131 2155 ISSMERROR(" not supported yet!"); 2132 2156 } -
issm/trunk/src/c/objects/Elements/Penta.h
r4280 r4379 174 174 void InputUpdateFromSolutionPrognostic( double* solutiong); 175 175 void InputUpdateFromSolutionPrognostic2(double* solutiong); 176 void InputUpdateFromSolutionSlopeCompute( double* solutiong); 176 void InputUpdateFromBedSlopeXCompute( double* solutiong); 177 void InputUpdateFromBedSlopeYCompute( double* solutiong); 178 void InputUpdateFromSurfaceSlopeXCompute( double* solutiong); 179 void InputUpdateFromSurfaceSlopeYCompute( double* solutiong); 177 180 bool IsInput(int name); 178 181 bool IsOnSurface(void);
Note:
See TracChangeset
for help on using the changeset viewer.