Changeset 4164


Ignore:
Timestamp:
06/23/10 11:59:31 (15 years ago)
Author:
Mathieu Morlighem
Message:

updated UpdateGeometryx (moved to element level)

Location:
issm/trunk/src/c
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/modules/UpdateGeometryx/UpdateGeometryx.cpp

    r4156 r4164  
    2525        for (i=0;i<elements->Size();i++){
    2626                element=(Element*)elements->GetObjectByOffset(i);
    27                 //element->UpdateGeometry();
    28                 ISSMERROR("not implemented yet");
     27                element->UpdateGeometry();
    2928        }
    3029       
  • issm/trunk/src/c/objects/Elements/Beam.h

    r4091 r4164  
    4040                Beam();
    4141                ~Beam();
    42                 void   Update(int index, IoModel* iomodel,int analysis_counter,int analysis_type);
     42                void  Update(int index, IoModel* iomodel,int analysis_counter,int analysis_type);
     43                void  UpdateGeometry(void){ISSMERROR("not implemented yet");};
    4344                /*}}}*/
    4445                /*object management: {{{1*/
  • issm/trunk/src/c/objects/Elements/Element.h

    r4076 r4164  
    5151                virtual void   PatchFill(int* pcount, Patch* patch)=0;
    5252                virtual void   Update(int index, IoModel* iomodel,int analysis_counter,int analysis_type)=0;
     53                virtual void   UpdateGeometry(void)=0;
    5354                virtual void   InputToResult(int enum_type,int step,double time)=0;
    5455                virtual void   ProcessResultsUnits(void)=0;
  • issm/trunk/src/c/objects/Elements/Penta.h

    r4091 r4164  
    4545                Penta(int penta_id,int i, IoModel* iomodel,int nummodels);
    4646                void  Update(int index, IoModel* iomodel,int analysis_counter,int analysis_type);
     47                void  UpdateGeometry(void){ISSMERROR("not implemented yet");};
    4748                ~Penta();
    4849                /*}}}*/
  • issm/trunk/src/c/objects/Elements/Sing.h

    r4091 r4164  
    4040                Sing();
    4141                ~Sing();
    42                 void   Update(int index, IoModel* iomodel,int analysis_counter,int analysis_type);
     42                void  Update(int index, IoModel* iomodel,int analysis_counter,int analysis_type);
     43                void  UpdateGeometry(void){ISSMERROR("not implemented yet");};
    4344                /*}}}*/
    4445                /*object management: {{{1*/
  • issm/trunk/src/c/objects/Elements/Tria.h

    r4091 r4164  
    4040                Tria(int tria_id,int i, IoModel* iomodel,int nummodels);
    4141                void  Update(int index,IoModel* iomodel,int analysis_counter,int analysis_type);
     42                void  UpdateGeometry(void){ISSMERROR("not implemented yet, see UpdateGeometryx of issm2.2");};
    4243                ~Tria();
    4344                /*}}}*/
Note: See TracChangeset for help on using the changeset viewer.