Index: /issm/trunk/test/Verification/test1_icesheet_noicefront/runme.m
===================================================================
--- /issm/trunk/test/Verification/test1_icesheet_noicefront/runme.m	(revision 43)
+++ /issm/trunk/test/Verification/test1_icesheet_noicefront/runme.m	(revision 44)
@@ -1,6 +1,5 @@
-
-% This file can be run to check that the current version of macayeal and ice models are giving 
+% This file can be run to check that the current version of macayeal and issm models are giving 
 % coherent results. This test deals with an icesheet without icefront for a 2d model. The geometry 
-% is square. Just run this file in Matlab, with a properly setup Ice code. 
+% is square. Just run this file in Matlab, with a properly setup ISSM code. 
 % The results of this test will indicate if there is a difference between current computations 
 % and archived results.
@@ -33,9 +32,4 @@
 md=solve(md,'diagnostic','ice');
 vel_ice=md.vel;
-
-%Compute solution with accelerated Ice model
-md.acceleration=1;
-md=solve(md,'diagnostic','ice');
-vel_acc=md.vel;
 
 %Compute solution with Hutter elements in Ice model
@@ -73,17 +67,4 @@
 end
 
-%Accelerated Ice
-load archive_acc
-pos=find(archive_acc-vel_acc);
-error_vel=abs(norm((archive_acc(pos)-vel_acc(pos))./archive_acc(pos),2));
-
-disp(sprintf('numerical difference between old and new version of Accelerated Ice is : %d', error_vel));
-
-if (error_vel>tolerance);
-	logoutput(logstring,sprintf('%s\n','    ERROR. Results from Accelerated Ice model differ from the archive version'));
-else
-	logoutput(logstring,sprintf('%s\n','    SUCCESS. Results from Accelerated Ice model are comform with the archive version'));
-end
-
 %Ice with Hutter elements
 load archive_hutter
Index: /issm/trunk/test/Verification/test1_icesheet_noicefront/updatearchive.m
===================================================================
--- /issm/trunk/test/Verification/test1_icesheet_noicefront/updatearchive.m	(revision 43)
+++ /issm/trunk/test/Verification/test1_icesheet_noicefront/updatearchive.m	(revision 44)
@@ -20,5 +20,4 @@
 
 %Compute solution with Ice model
-md.acceleration=0;
 md=solve(md,'diagnostic','ice');
 archive_ice=md.vel;
@@ -26,12 +25,4 @@
 %Save the solution in the directory
 save archive_ice archive_ice
-
-%Compute solution with accelerated Ice model
-md.acceleration=1;
-md=solve(md,'diagnostic','ice');
-archive_acc=md.vel;
-
-%Save the solution in the directory
-save archive_acc archive_acc
 
 %Compute solution with Hutter elements in Ice model
Index: /issm/trunk/test/Verification/test2_icesheet_icefront/runme.m
===================================================================
--- /issm/trunk/test/Verification/test2_icesheet_icefront/runme.m	(revision 43)
+++ /issm/trunk/test/Verification/test2_icesheet_icefront/runme.m	(revision 44)
@@ -16,5 +16,4 @@
 tolerance=10^-13;
 
-
 md=model;
 md=mesh(md,'DomainOutline.exp',50000);
@@ -28,12 +27,6 @@
 
 %Compute solution with Ice model
-md.acceleration=0;
 md=solve(md,'diagnostic','ice');
 vel_ice=md.vel;
-
-%Compute solution with accelerated Ice model
-md.acceleration=1;
-md=solve(md,'diagnostic','ice');
-vel_acc=md.vel;
 
 %Compute prognostic with Ice model
@@ -76,17 +69,4 @@
 end
 
-%Accelerated Ice
-load archive_acc
-pos=find(archive_acc-vel_acc);
-error_vel=abs(norm((archive_acc(pos)-vel_acc(pos))./archive_ice(pos),2));
-
-disp(sprintf('numerical difference between old and new version of Accelerated Ice is : %d', error_vel));
-
-if (error_vel>tolerance);
-	logoutput(logstring,sprintf('%s\n','    ERROR. Results from Accelerated Ice model differ from the archive version'));
-else
-	logoutput(logstring,sprintf('%s\n','    SUCCESS. Results from Accelerated Ice model are comform with the archive version'));
-end
-
 %Ice prognostic
 load archive_thickness
Index: /issm/trunk/test/Verification/test2_icesheet_icefront/updatearchive.m
===================================================================
--- /issm/trunk/test/Verification/test2_icesheet_icefront/updatearchive.m	(revision 43)
+++ /issm/trunk/test/Verification/test2_icesheet_icefront/updatearchive.m	(revision 44)
@@ -20,5 +20,4 @@
 
 %Compute solution with Ice model
-md.acceleration=0;
 md=solve(md,'diagnostic','ice');
 archive_ice=md.vel;
@@ -26,12 +25,4 @@
 %Save the solution in the directory
 save archive_ice archive_ice
-
-%Compute solution with accelerated Ice model
-md.acceleration=1;
-md=solve(md,'diagnostic','ice');
-archive_acc=md.vel;
-
-%Save the solution in the directory
-save archive_acc archive_acc
 
 %Compute prognostic with Ice model
Index: /issm/trunk/test/Verification/test3_iceshelf_icefront/runme.m
===================================================================
--- /issm/trunk/test/Verification/test3_iceshelf_icefront/runme.m	(revision 43)
+++ /issm/trunk/test/Verification/test3_iceshelf_icefront/runme.m	(revision 44)
@@ -29,12 +29,6 @@
 
 %Compute solution with Ice model
-md.acceleration=0;
 md=solve(md,'diagnostic','ice');
 vel_ice=md.vel;
-
-%Compute solution with accelerated Ice model
-md.acceleration=1;
-md=solve(md,'diagnostic','ice');
-vel_acc=md.vel;
 
 %Compute prognostic with Ice model
@@ -72,17 +66,4 @@
 end
 
-%Accelerated Ice
-load archive_acc
-pos=find(archive_acc-vel_acc);
-error_vel=abs(norm((archive_acc(pos)-vel_acc(pos))./archive_ice(pos),2));
-
-disp(sprintf('numerical difference between old and new version of Accelerated Ice is : %d', error_vel));
-
-if (error_vel>tolerance);
-	logoutput(logstring,sprintf('%s\n','    ERROR. Results from Accelerated Ice model differ from the archive version'));
-else
-	logoutput(logstring,sprintf('%s\n','    SUCCESS. Results from Accelerated Ice model are comform with the archive version'));
-end
-
 %Ice prognostic
 load archive_thickness
Index: /issm/trunk/test/Verification/test3_iceshelf_icefront/updatearchive.m
===================================================================
--- /issm/trunk/test/Verification/test3_iceshelf_icefront/updatearchive.m	(revision 43)
+++ /issm/trunk/test/Verification/test3_iceshelf_icefront/updatearchive.m	(revision 44)
@@ -20,5 +20,4 @@
 
 %Compute solution with Ice model
-md.acceleration=0;
 md=solve(md,'diagnostic','ice');
 archive_ice=md.vel;
@@ -26,12 +25,4 @@
 %Save the solution in the directory
 save archive_ice archive_ice
-
-%Compute solution with accelerated Ice model
-md.acceleration=1;
-md=solve(md,'diagnostic','ice');
-archive_acc=md.vel;
-
-%Save the solution in the directory
-save archive_acc archive_acc
 
 %Compute prognostic with Ice model
