Index: /issm/trunk/src/m/model/ismodelselfconsistent.m
===================================================================
--- /issm/trunk/src/m/model/ismodelselfconsistent.m	(revision 9220)
+++ /issm/trunk/src/m/model/ismodelselfconsistent.m	(revision 9221)
@@ -371,15 +371,4 @@
 			end
 
-			%DIRICHLET IF THICKNESS <= 0
-			%Check the size of spcthickness 
-			fields={'spcthickness'};
-			checksize(md,fields,[md.numberofnodes 1]);
-			if any(md.thickness<=0),
-				pos=find(md.thickness<=0);
-				if any(isnan(md.spcthickness(pos))),
-					message(['model not consistent: model ' md.name ' has some nodes with 0 thickness']);
-				end
-			end
-
 			%ROTATED SPC
 			%CHECK THAT EACH LINES CONTAINS ONLY NAN VALUES OR NO NAN VALUES
@@ -470,4 +459,18 @@
 			fields={'surface_mass_balance'};
 			checkforcing(md,fields);
+
+			%DIRICHLET
+			fields={'spcthickness'};
+			checkforcing(md,fields);
+
+			%DIRICHLET IF THICKNESS <= 0
+			%Check the size of spcthickness 
+			if any(md.thickness<=0),
+				pos=find(md.thickness<=0);
+				if any(isnan(md.spcthickness(pos))),
+					message(['model not consistent: model ' md.name ' has some nodes with 0 thickness']);
+				end
+			end
+
 			%}}}
 		case HydrologyAnalysisEnum,
Index: /issm/trunk/src/m/model/loadresultsfromdisk.m
===================================================================
--- /issm/trunk/src/m/model/loadresultsfromdisk.m	(revision 9220)
+++ /issm/trunk/src/m/model/loadresultsfromdisk.m	(revision 9221)
@@ -25,11 +25,4 @@
 	md.solution_type=structure(1).SolutionType;
 
-	%Check result is consistent, only if it exists
-	%disp(sprintf('%s\n','checking result consistency'));
-	%if ~isresultconsistent(md,structure(1).SolutionType), After many uses, found out its useless.
-	%	%it would be very cruel to use an error, it would kill the computed results (although they are not consistent...)
-	%	disp('!! results not consistent correct the model !!') 
-	%end
-
 %post processes qmu results if necessary
 else
Index: /issm/trunk/src/m/model/parseresultsfromdisk.m
===================================================================
--- /issm/trunk/src/m/model/parseresultsfromdisk.m	(revision 9220)
+++ /issm/trunk/src/m/model/parseresultsfromdisk.m	(revision 9221)
@@ -4,6 +4,4 @@
 %   Usage:
 %      results=parseresultsfromdisk(filename,iosplit)
-
-
 
 if iosplit,
