Index: /issm/trunk/src/m/classes/public/ismodelselfconsistent.m
===================================================================
--- /issm/trunk/src/m/classes/public/ismodelselfconsistent.m	(revision 1795)
+++ /issm/trunk/src/m/classes/public/ismodelselfconsistent.m	(revision 1796)
@@ -64,4 +64,16 @@
 end
 
+%ICEFRONT
+if strcmpi(md.type,'2d'),
+	if size(md.pressureload,2)~=3 ,
+		disp(['pressureload in ' md.name ' shoud have three columns']);
+		bool=0;return;
+	end
+elseif strcmpi(md.type,'3d'),
+	if size(md.pressureload,2)~=5 ,
+		disp(['pressureload in ' md.name ' shoud have five columns']);
+		bool=0;return;
+	end
+end
 
 %NO NAN
