Index: /issm/trunk/src/c/modules/ConstraintsStatex/ThermalConstraintsState.cpp
===================================================================
--- /issm/trunk/src/c/modules/ConstraintsStatex/ThermalConstraintsState.cpp	(revision 8407)
+++ /issm/trunk/src/c/modules/ConstraintsStatex/ThermalConstraintsState.cpp	(revision 8408)
@@ -30,5 +30,5 @@
 
 				Pengrid* pengrid=(Pengrid*)object;
-				pengrid->PenaltyConstrain(&unstable);
+				pengrid->ConstraintActivate(&unstable);
 				num_unstable_constraints+=unstable;
 			}
Index: /issm/trunk/src/c/objects/Loads/Pengrid.cpp
===================================================================
--- /issm/trunk/src/c/objects/Loads/Pengrid.cpp	(revision 8407)
+++ /issm/trunk/src/c/objects/Loads/Pengrid.cpp	(revision 8408)
@@ -431,6 +431,6 @@
 
 /*Pengrid management:*/
-/*FUNCTION Pengrid::PenaltyConstrain {{{1*/
-void  Pengrid::PenaltyConstrain(int* punstable){
+/*FUNCTION Pengrid::ConstraintActivate {{{1*/
+void  Pengrid::ConstraintActivate(int* punstable){
 
 	int analysis_type;
@@ -444,5 +444,5 @@
 	}
 	else if (analysis_type==ThermalAnalysisEnum){
-		PenaltyConstrainThermal(punstable);
+		ConstraintActivateThermal(punstable);
 	}
 	else if (analysis_type==MeltingAnalysisEnum){
@@ -456,6 +456,6 @@
 }
 /*}}}1*/
-/*FUNCTION Pengrid::PenaltyConstrainThermal {{{1*/
-void  Pengrid::PenaltyConstrainThermal(int* punstable){
+/*FUNCTION Pengrid::ConstraintActivateThermal {{{1*/
+void  Pengrid::ConstraintActivateThermal(int* punstable){
 
 	//   The penalty is stable if it doesn't change during to successive iterations.   
Index: /issm/trunk/src/c/objects/Loads/Pengrid.h
===================================================================
--- /issm/trunk/src/c/objects/Loads/Pengrid.h	(revision 8407)
+++ /issm/trunk/src/c/objects/Loads/Pengrid.h	(revision 8408)
@@ -84,6 +84,6 @@
 		ElementVector* PenaltyCreatePVectorThermal(double kmax);
 		ElementVector* PenaltyCreatePVectorMelting(double kmax);
-		void  PenaltyConstrain(int* punstable);
-		void  PenaltyConstrainThermal(int* punstable);
+		void  ConstraintActivate(int* punstable);
+		void  ConstraintActivateThermal(int* punstable);
 		void  UpdateInputs(double* solution);
 		/*}}}*/
