Changeset 4164
- Timestamp:
- 06/23/10 11:59:31 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/modules/UpdateGeometryx/UpdateGeometryx.cpp
r4156 r4164 25 25 for (i=0;i<elements->Size();i++){ 26 26 element=(Element*)elements->GetObjectByOffset(i); 27 //element->UpdateGeometry(); 28 ISSMERROR("not implemented yet"); 27 element->UpdateGeometry(); 29 28 } 30 29 -
issm/trunk/src/c/objects/Elements/Beam.h
r4091 r4164 40 40 Beam(); 41 41 ~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");}; 43 44 /*}}}*/ 44 45 /*object management: {{{1*/ -
issm/trunk/src/c/objects/Elements/Element.h
r4076 r4164 51 51 virtual void PatchFill(int* pcount, Patch* patch)=0; 52 52 virtual void Update(int index, IoModel* iomodel,int analysis_counter,int analysis_type)=0; 53 virtual void UpdateGeometry(void)=0; 53 54 virtual void InputToResult(int enum_type,int step,double time)=0; 54 55 virtual void ProcessResultsUnits(void)=0; -
issm/trunk/src/c/objects/Elements/Penta.h
r4091 r4164 45 45 Penta(int penta_id,int i, IoModel* iomodel,int nummodels); 46 46 void Update(int index, IoModel* iomodel,int analysis_counter,int analysis_type); 47 void UpdateGeometry(void){ISSMERROR("not implemented yet");}; 47 48 ~Penta(); 48 49 /*}}}*/ -
issm/trunk/src/c/objects/Elements/Sing.h
r4091 r4164 40 40 Sing(); 41 41 ~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");}; 43 44 /*}}}*/ 44 45 /*object management: {{{1*/ -
issm/trunk/src/c/objects/Elements/Tria.h
r4091 r4164 40 40 Tria(int tria_id,int i, IoModel* iomodel,int nummodels); 41 41 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");}; 42 43 ~Tria(); 43 44 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.