Changeset 9127
- Timestamp:
- 07/26/11 18:21:35 (14 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 4 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Makefile.am
r9110 r9127 668 668 ./modules/RequestedOutputsx/RequestedOutputsx.h\ 669 669 ./modules/RequestedOutputsx/RequestedOutputsx.cpp\ 670 ./modules/ResetConstraintsx/ResetConstraintsx.h\ 671 ./modules/ResetConstraintsx/ResetConstraintsx.cpp\ 672 ./modules/ResetConstraintsx/ThermalConstraintsReset.cpp\ 670 673 ./modules/Scotchx/Scotchx.cpp\ 671 674 ./modules/Scotchx/Scotchx.h\ … … 1345 1348 ./modules/RequestedOutputsx/RequestedOutputsx.h\ 1346 1349 ./modules/RequestedOutputsx/RequestedOutputsx.cpp\ 1350 ./modules/ResetConstraintsx/ResetConstraintsx.h\ 1351 ./modules/ResetConstraintsx/ResetConstraintsx.cpp\ 1352 ./modules/ResetConstraintsx/ThermalConstraintsReset.cpp\ 1347 1353 ./modules/Solverx/Solverx.cpp\ 1348 1354 ./modules/Solverx/Solverx.h\ -
issm/trunk/src/c/modules/ConstraintsStatex/ConstraintsStateLocal.h
r8410 r9127 11 11 /*melting: */ 12 12 void ThermalConstraintsState(Loads* loads, int* pconverged, int* pnum_unstable_constraints,int analysis_type); 13 int ThermalIsPresent(Loads* loads,int analysis_type);14 13 15 14 /*rifts module: */ 16 int RiftIsPresent(Loads* loads,int analysis_type);17 15 void RiftConstraintsState(int* pconverged, int* pnum_unstable_constraints,Loads* loads,int min_mechanical_constraints,int analysis_type); 18 16 void RiftConstrain(int* pnum_unstable_constraints,Loads* loads,int analysis_type); -
issm/trunk/src/c/modules/ConstraintsStatex/ConstraintsStatex.h
r8404 r9127 10 10 11 11 /* local prototypes: */ 12 int ThermalIsPresent(Loads* loads,int analysis_type); 13 int RiftIsPresent(Loads* loads,int analysis_type); 12 14 void ConstraintsStatex(int* pconverged, int* pnum_unstable_constraints, Elements* elements,Nodes* nodes, Vertices* vertices, Loads* loads,Materials* materials, Parameters* parameters); 13 15 -
issm/trunk/src/c/modules/modules.h
r9110 r9127 92 92 #include "./Reducevectorgtofx/Reducevectorgtofx.h" 93 93 #include "./RequestedOutputsx/RequestedOutputsx.h" 94 #include "./ResetConstraintsx/ResetConstraintsx.h" 94 95 #include "./Responsex/Responsex.h" 95 96 #include "./RheologyBbarx/RheologyBbarx.h" -
issm/trunk/src/c/objects/Loads/Pengrid.cpp
r8800 r9127 678 678 } 679 679 /*}}}1*/ 680 /*FUNCTION Pengrid::ResetConstraint {{{1*/ 681 void Pengrid::ResetConstraint(void){ 682 active=0; 683 zigzag_counter=0; 684 } 685 /*}}}1*/ -
issm/trunk/src/c/objects/Loads/Pengrid.h
r8800 r9127 87 87 void ConstraintActivateThermal(int* punstable); 88 88 void UpdateInputs(double* solution); 89 void ResetConstraint(void); 89 90 /*}}}*/ 90 91 -
issm/trunk/src/c/solutions/thermal_core.cpp
r9126 r9127 43 43 if(qmu_analysis){ 44 44 InputDuplicatex(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,QmuTemperatureEnum,TemperatureEnum); 45 InputDuplicatex(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,QmuTemperatureEnum,TemperaturePicardEnum); 46 ResetConstraintsx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters); 45 47 } 46 48
Note:
See TracChangeset
for help on using the changeset viewer.