Changeset 16137 for issm/trunk/src/c/modules/ResetConstraintsx
- Timestamp:
- 09/16/13 09:43:55 (12 years ago)
- Location:
- issm/trunk
- Files:
-
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 1 nightlylog 2 configure.sh 1 3 par 2 4 ad
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 15397-15401,15403-15487,15489-15701,15704-15735,15737-16076,16082-16133
- Property svn:ignore
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/c
- Property svn:ignore
-
old new 14 14 probe.results 15 15 stXXXX* 16 16 .deps 17 .dirstamp
-
- Property svn:ignore
-
issm/trunk/src/c/modules/ResetConstraintsx
-
Property svn:ignore
set to
.deps
.dirstamp
-
Property svn:ignore
set to
-
issm/trunk/src/c/modules/ResetConstraintsx/ResetConstraintsx.cpp
r15396 r16137 14 14 #include "../ConstraintsStatex/ConstraintsStatex.h" 15 15 16 void ResetConstraintsx( Elements* elements,Nodes* nodes, Vertices* vertices, Loads* loads,Materials* materials, Parameters* parameters){16 void ResetConstraintsx(FemModel* femmodel){ 17 17 18 /*output: */19 int analysis_type;20 18 21 19 /*Display message*/ … … 23 21 24 22 /*recover parameters: */ 25 parameters->FindParam(&analysis_type,AnalysisTypeEnum); 23 int analysis_type; 24 femmodel->parameters->FindParam(&analysis_type,AnalysisTypeEnum); 26 25 27 26 /*Do we have penalties linked to rifts? In this case, run our special rifts penalty 28 27 * management routine, otherwise, skip : */ 29 28 #ifdef _HAVE_RIFTS_ 30 if (RiftIsPresent(loads,analysis_type)){29 if(RiftIsPresent(femmodel->loads,analysis_type)){ 31 30 _error_("rift constraints reset not supported yet!"); 32 31 } 33 32 #endif 34 33 #ifdef _HAVE_THERMAL_ 35 if(ThermalIsPresent( loads,analysis_type)){36 ThermalConstraintsReset( loads,analysis_type);34 if(ThermalIsPresent(femmodel->loads,analysis_type)){ 35 ThermalConstraintsReset(femmodel->loads,analysis_type); 37 36 } 38 37 #endif 39 40 38 } -
issm/trunk/src/c/modules/ResetConstraintsx/ResetConstraintsx.h
r15396 r16137 9 9 10 10 /* local prototypes: */ 11 void 12 void ResetConstraintsx( Elements* elements,Nodes* nodes, Vertices* vertices, Loads* loads,Materials* materials, Parameters* parameters);11 void ThermalConstraintsReset(Loads* loads, int configuration_type); 12 void ResetConstraintsx(FemModel* femmodel); 13 13 14 14 #endif /* _RESETCONSTRAINTSX_H */
Note:
See TracChangeset
for help on using the changeset viewer.