- Timestamp:
- 07/20/11 07:30:25 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/modules/ModelProcessorx/Thermal/CreateConstraintsThermal.cpp
r9002 r9081 27 27 if(!constraints) constraints = new Constraints(ConstraintsEnum); 28 28 29 /*return if 2d mesh*/ 30 if (iomodel->dim==2) goto cleanup_and_return; 31 32 /*Create constraints: */ 33 IoModelToConstraintsx(constraints,iomodel,iomodel_handle,SpctemperatureEnum,ThermalAnalysisEnum); 34 35 cleanup_and_return: 29 /*Only 3d mesh supported*/ 30 if (iomodel->dim==3){ 31 IoModelToConstraintsx(constraints,iomodel,iomodel_handle,SpctemperatureEnum,ThermalAnalysisEnum); 32 } 36 33 37 34 /*Assign output pointer: */
Note:
See TracChangeset
for help on using the changeset viewer.