Changeset 4039 for issm/trunk/src/c/objects/Results/PentaVertexResult.cpp
- Timestamp:
- 06/11/10 11:10:11 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Results/PentaVertexResult.cpp
r4037 r4039 205 205 } 206 206 /*}}}*/ 207 207 /*FUNCTION PentaVertexResult::ProcessUnits(Parameters* parameters){{{1*/ 208 Result* PentaVertexResult::ProcessUnits(Parameters* parameters){ 209 210 NodalValuesUnitConversion(this->values,6,this->enum_type,parameters); 211 212 } 213 /*}}}*/ 214 /*FUNCTION PentaVertexResult::NumberOfNodalValues(void){{{1*/ 215 int PentaVertexResult::NumberOfNodalValues(void){ 216 return 6; 217 } 218 /*}}}*/ 219 /*FUNCTION PentaVertexResult::PentaVertexResult::PatchFill(int row, Patch* patch){{{1*/ 220 void PentaVertexResult::PatchFill(int row, Patch* patch){ 221 222 /*Here, we fill the result information into the patch object. First, let's remember what is in a row 223 * of the patch object: enum_type step time element_id interpolation vertices_ids nodal_values 224 * Here, we will supply the enum_type, step, time, interpolation and nodal_values: */ 225 patch->fillresultinfo(row,this->enum_type,this->step,this->time,P1Enum,this->values,6); 226 227 } 228 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.