Ignore:
Timestamp:
06/11/10 11:10:11 (15 years ago)
Author:
Eric.Larour
Message:

New OutputResults module, relying on patches, and embedded element results

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Results/PentaVertexResult.cpp

    r4037 r4039  
    205205}
    206206/*}}}*/
    207 
     207/*FUNCTION PentaVertexResult::ProcessUnits(Parameters* parameters){{{1*/
     208Result* PentaVertexResult::ProcessUnits(Parameters* parameters){
     209       
     210        NodalValuesUnitConversion(this->values,6,this->enum_type,parameters);
     211
     212}
     213/*}}}*/
     214/*FUNCTION PentaVertexResult::NumberOfNodalValues(void){{{1*/
     215int PentaVertexResult::NumberOfNodalValues(void){
     216        return 6;
     217}
     218/*}}}*/
     219/*FUNCTION PentaVertexResult::PentaVertexResult::PatchFill(int row, Patch* patch){{{1*/
     220void 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.