Index: /issm/trunk-jpl/src/m/solve/solve.m
===================================================================
--- /issm/trunk-jpl/src/m/solve/solve.m	(revision 21055)
+++ /issm/trunk-jpl/src/m/solve/solve.m	(revision 21056)
@@ -7,17 +7,17 @@
 %
 %   solution types available comprise:
-%		 - 'StressbalanceSolution'		or 'sb'
-%		 - 'MasstransportSolution'		or 'mt'
-%		 - 'ThermalSolution'				or 'th'
-%		 - 'SteadystateSolution'		or 'st'
-%		 - 'TransientSolution'			or 'tr'
-%		 - 'BalancethicknessSolution' or 'mc'
-%      - 'BalancevelocitySolution'	or 'bv'
-%		 - 'BedSlopeSolution'			or 'bs'
-%		 - 'SurfaceSlopeSolution'		or 'ss'
-%		 - 'HydrologySolution'			or 'hy'
-%      - 'DamageEvolutionSolution'	or 'da'
-%		 - 'GiaSolution'					or 'gi'
-%		 - 'SealevelriseSolution'		or 'sl'
+%		 - 'Stressbalance'      or 'sb'
+%		 - 'Masstransport'      or 'mt'
+%		 - 'Thermal'            or 'th'
+%		 - 'Steadystate'        or 'st'
+%		 - 'Transient'          or 'tr'
+%		 - 'Balancethickness'   or 'mc'
+%      - 'Balancevelocity'    or 'bv'
+%		 - 'BedSlope'           or 'bs'
+%		 - 'SurfaceSlope'       or 'ss'
+%		 - 'Hydrology'          or 'hy'
+%      - 'DamageEvolution'    or 'da'
+%		 - 'Gia'                or 'gi'
+%		 - 'Sealevelrise'       or 'sl'
 %
 %  extra options:
@@ -28,6 +28,6 @@
 %
 %   Examples:
-%      md=solve(md,'StressbalanceSolution');
-%		 md=solve(md,'sb');
+%      md=solve(md,'Stressbalance');
+%      md=solve(md,'sb');
 
 if ~ischar(solutionstring)
Index: /issm/trunk-jpl/src/m/solve/solve.py
===================================================================
--- /issm/trunk-jpl/src/m/solve/solve.py	(revision 21055)
+++ /issm/trunk-jpl/src/m/solve/solve.py	(revision 21056)
@@ -20,26 +20,26 @@
  
 		solution types available comprise:
-		 - 'StressbalanceSolution'		or 'sb'
-		 - 'MasstransportSolution'		or 'mt'
-		 - 'ThermalSolution'				or 'th'
-		 - 'SteadystateSolution'		or 'st'
-		 - 'TransientSolution'			or 'tr'
-		 - 'BalancethicknessSolution' or 'mc'
-		 - 'BalancevelocitySolution'	or 'bv'
-		 - 'BedSlopeSolution'			or 'bs'
-		 - 'SurfaceSlopeSolution'		or 'ss'
-		 - 'HydrologySolution'			or 'hy'
-		 - 'DamageEvolutionSolution'	or 'da'
-		 - 'GiaSolution'					or 'gi'
-		 - 'SealevelriseSolution'		or 'sl'
+		 - 'Stressbalance'    or 'sb'
+		 - 'Masstransport'    or 'mt'
+		 - 'Thermal'          or 'th'
+		 - 'Steadystate'      or 'st'
+		 - 'Transient'        or 'tr'
+		 - 'Balancethickness' or 'mc'
+		 - 'Balancevelocity'  or 'bv'
+		 - 'BedSlope'         or 'bs'
+		 - 'SurfaceSlope'     or 'ss'
+		 - 'Hydrology'        or 'hy'
+		 - 'DamageEvolution'  or 'da'
+		 - 'Gia'              or 'gi'
+		 - 'Sealevelrise'     or 'sl'
 
 	   extra options:
-	      - loadonly : does not solve. only load results
+        - loadonly : does not solve. only load results
 		  - checkconsistency : 'yes' or 'no' (default is 'yes'), ensures checks on consistency of model
 		  - restart: 'directory name (relative to the execution directory) where the restart file is located.
  
 	   Examples:
-	      md=solve(md,'StressbalanceSolution');
-			md=solve(md,'sb');
+	      md=solve(md,'Stressbalance');
+         md=solve(md,'sb');
 	"""
 
Index: /issm/trunk-jpl/test/NightlyRun/test101.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test101.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test101.m	(revision 21056)
@@ -17,5 +17,5 @@
 	};
 
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test101.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test101.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test101.py	(revision 21056)
@@ -28,5 +28,5 @@
 		]
 
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test102.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test102.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test102.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test102.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test102.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test102.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test103.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test103.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test103.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.stressbalance.requested_outputs=['default','StressTensorxx','StressTensoryy','StressTensorzz','StressTensorxy','StressTensorxz','StressTensoryz']
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test104.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test104.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test104.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'FS','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test104.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test104.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test104.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'FS','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test105.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test105.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test105.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test105.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test105.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test105.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test106.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test106.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test106.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.masstransport.stabilization=3;
 md.masstransport.spcthickness=md.geometry.thickness;
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test106.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test106.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test106.py	(revision 21056)
@@ -18,5 +18,5 @@
 md.masstransport.stabilization=3
 md.masstransport.spcthickness=md.geometry.thickness
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test107.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test107.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test107.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=extrude(md,5,3.);
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test107.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test107.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test107.py	(revision 21056)
@@ -15,5 +15,5 @@
 md.extrude(5,3.)
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test108.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test108.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test108.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.timestepping.time_step=0;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test108.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test108.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test108.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.timestepping.time_step=0
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test109.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test109.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test109.m	(revision 21056)
@@ -11,5 +11,5 @@
 md.transient.isthermal=1;
 md.transient.isgroundingline=0;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test109.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test109.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test109.py	(revision 21056)
@@ -20,5 +20,5 @@
 md.transient.isthermal=True
 md.transient.isgroundingline=False
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test110.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test110.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test110.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.transient.requested_outputs={'IceVolume'};
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test110.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test110.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test110.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.transient.requested_outputs=['IceVolume']
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test1101.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1101.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1101.m	(revision 21056)
@@ -42,5 +42,5 @@
 	%Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8);
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 
 	%Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1101.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1101.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1101.py	(revision 21056)
@@ -55,5 +55,5 @@
 	#Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8)
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 
 	#Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1102.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1102.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1102.m	(revision 21056)
@@ -51,5 +51,5 @@
 	md.stressbalance.restol=1.;
 	md.cluster=generic('name',oshostname(),'np',8);
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 
 	%Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1102.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1102.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1102.py	(revision 21056)
@@ -64,5 +64,5 @@
 	md.stressbalance.restol=1.
 	md.cluster=generic('name',oshostname(),'np',8)
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 
 	#Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1103.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1103.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1103.m	(revision 21056)
@@ -41,5 +41,5 @@
 	%Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8);
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 
 	%Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1103.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1103.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1103.py	(revision 21056)
@@ -54,5 +54,5 @@
 	#Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8)
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 
 	#Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1104.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1104.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1104.m	(revision 21056)
@@ -39,5 +39,5 @@
 	md.stressbalance.abstol=NaN;
 	md.cluster=generic('name',oshostname(),'np',8);
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 	pos=find(md.mesh.x==0. | md.mesh.y==0. | md.mesh.x==max(md.mesh.x) | md.mesh.y==max(md.mesh.y));
 	md.stressbalance.spcvx(pos)=md.results.StressbalanceSolution.Vx(pos);
@@ -45,5 +45,5 @@
 	md.stressbalance.vertex_pairing=[];
 	md=setflowequation(md,'FS','all');
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 
 	%Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1104.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1104.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1104.py	(revision 21056)
@@ -50,5 +50,5 @@
 	md.stressbalance.abstol=float('NaN')
 	md.cluster=generic('name',oshostname(),'np',8)
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 	pos=numpy.nonzero(logical_or_n(md.mesh.x==0.,md.mesh.y==0.,md.mesh.x==numpy.max(md.mesh.x),md.mesh.y==numpy.max(md.mesh.y)))
 	md.stressbalance.spcvx[pos]=md.results.StressbalanceSolution.Vx[pos]
@@ -56,5 +56,5 @@
 	md.stressbalance.vertex_pairing=numpy.empty((0,2),int)
 	md=setflowequation(md,'FS','all')
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 
 	#Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1105.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1105.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1105.m	(revision 21056)
@@ -65,5 +65,5 @@
 	%Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8);
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 
 	%Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1105.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1105.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1105.py	(revision 21056)
@@ -77,5 +77,5 @@
 	#Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8)
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 
 	#Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1106.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1106.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1106.m	(revision 21056)
@@ -43,5 +43,5 @@
 	%Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8);
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 
 	%Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1106.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1106.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1106.py	(revision 21056)
@@ -53,5 +53,5 @@
 	#Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8)
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 
 	#Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1107.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1107.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1107.m	(revision 21056)
@@ -60,5 +60,5 @@
 	%Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8);
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 
 	%Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1107.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1107.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1107.py	(revision 21056)
@@ -74,5 +74,5 @@
 	#Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8)
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 
 	#Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1108.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1108.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1108.m	(revision 21056)
@@ -40,5 +40,5 @@
 	%Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8);
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 	md.stressbalance.reltol=NaN;
 	md.stressbalance.abstol=NaN;
@@ -52,5 +52,5 @@
 	md.stressbalance.spcvy(pos)=md.results.StressbalanceSolution.Vy(pos);
 	md=setflowequation(md,'FS','all');
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 
 	%Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1108.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1108.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1108.py	(revision 21056)
@@ -52,5 +52,5 @@
 	md.cluster=generic('name',oshostname(),'np',8)
 	md.verbose=verbose('convergence',True)
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 	md.stressbalance.reltol=float('NaN')
 	md.stressbalance.abstol=float('NaN')
@@ -64,5 +64,5 @@
 	md.stressbalance.spcvy[pos]=md.results.StressbalanceSolution.Vy[pos]
 	md=setflowequation(md,'FS','all')
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 
 	#Plot the results and save them
Index: /issm/trunk-jpl/test/NightlyRun/test1109.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1109.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1109.m	(revision 21056)
@@ -50,5 +50,5 @@
 	%Compute the stressbalance
 	md.cluster=generic('name',oshostname(),'np',8);
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 
 	vx=(md.results.StressbalanceSolution.Vx);
Index: /issm/trunk-jpl/test/NightlyRun/test111.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test111.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test111.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.transient.requested_outputs={'IceVolume'};
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test111.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test111.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test111.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.transient.requested_outputs=['IceVolume']
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test1110.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1110.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1110.m	(revision 21056)
@@ -59,5 +59,5 @@
 	md.cluster=generic('name',oshostname(),'np',8);
 	md.verbose=verbose('convergence',true,'solution',true);
-	md=solve(md,'TransientSolution');
+	md=solve(md,'Transient');
 
 	%save the results
Index: /issm/trunk-jpl/test/NightlyRun/test112.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test112.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test112.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'SurfaceSlopeSolution');
+md=solve(md,'SurfaceSlope');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test112.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test112.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test112.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'SurfaceSlopeSolution')
+md=solve(md,'SurfaceSlope')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test113.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test113.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test113.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'SurfaceSlopeSolution');
+md=solve(md,'SurfaceSlope');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test113.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test113.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test113.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'SurfaceSlopeSolution')
+md=solve(md,'SurfaceSlope')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test114.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test114.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test114.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'BedSlopeSolution');
+md=solve(md,'BedSlope');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test114.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test114.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test114.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'BedSlopeSolution')
+md=solve(md,'BedSlope')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test115.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test115.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test115.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'BedSlopeSolution');
+md=solve(md,'BedSlope');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test115.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test115.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test115.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'BedSlopeSolution')
+md=solve(md,'BedSlope')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test116.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test116.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test116.m	(revision 21056)
@@ -8,5 +8,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'BalancethicknessSolution');
+md=solve(md,'Balancethickness');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test116.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test116.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test116.py	(revision 21056)
@@ -18,5 +18,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'BalancethicknessSolution')
+md=solve(md,'Balancethickness')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test120.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test120.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test120.m	(revision 21056)
@@ -12,5 +12,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test120.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test120.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test120.py	(revision 21056)
@@ -22,5 +22,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test1201.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1201.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1201.m	(revision 21056)
@@ -39,5 +39,5 @@
 	md.settings.output_frequency=500; %keep only last step
 	md.verbose=verbose();
-	md=solve(md,'TransientSolution');
+	md=solve(md,'Transient');
 	results{stabilization}=(md.results.TransientSolution(end).Thickness);
 end
Index: /issm/trunk-jpl/test/NightlyRun/test1201.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1201.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1201.py	(revision 21056)
@@ -51,5 +51,5 @@
 	md.settings.output_frequency=500    #keep only last step
 	md.verbose=verbose()
-	md=solve(md,'TransientSolution')
+	md=solve(md,'Transient')
 	results.append(md.results.TransientSolution[-1].Thickness)
 
Index: /issm/trunk-jpl/test/NightlyRun/test1202.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1202.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1202.m	(revision 21056)
@@ -12,5 +12,5 @@
 %Compute solution for SSA's model 
 md.cluster=generic('name',oshostname(),'np',8);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %plot results
Index: /issm/trunk-jpl/test/NightlyRun/test1202.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1202.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1202.py	(revision 21056)
@@ -25,5 +25,5 @@
 #Compute solution for SSA's model 
 md.cluster=generic('name',oshostname(),'np',8)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #plot results
Index: /issm/trunk-jpl/test/NightlyRun/test1203.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1203.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1203.m	(revision 21056)
@@ -16,5 +16,5 @@
 %Compute solution for SSA's model 
 md.cluster=generic('name',oshostname(),'np',8);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 vx=(md.results.StressbalanceSolution.Vx);
Index: /issm/trunk-jpl/test/NightlyRun/test1203.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1203.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1203.py	(revision 21056)
@@ -30,5 +30,5 @@
 #Compute solution for SSA's model 
 md.cluster=generic('name',oshostname(),'np',8)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 vx=md.results.StressbalanceSolution.Vx
Index: /issm/trunk-jpl/test/NightlyRun/test1204.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1204.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1204.m	(revision 21056)
@@ -16,5 +16,5 @@
 %Compute solution for SSA's model 
 md.cluster=generic('name',oshostname(),'np',8);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %plot results
@@ -25,5 +25,5 @@
 md.timestepping.final_time=5000.;
 md.masstransport.stabilization=1;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 plotmodel(md,'data',(md.results.TransientSolution(end).Vx))
Index: /issm/trunk-jpl/test/NightlyRun/test1204.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1204.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1204.py	(revision 21056)
@@ -30,5 +30,5 @@
 #Compute solution for SSA's model 
 md.cluster=generic('name',oshostname(),'np',8)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #plot results
@@ -39,5 +39,5 @@
 md.timestepping.final_time=5000.
 md.masstransport.stabilization=1
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #plotmodel(md,'data',(md.results.TransientSolution(end).Vx))
Index: /issm/trunk-jpl/test/NightlyRun/test1205.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1205.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1205.m	(revision 21056)
@@ -30,5 +30,5 @@
 %Now we can solve the problem 
 md.cluster=generic('name',oshostname(),'np',8);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Calculate the depth averaged velocity field (2d):
Index: /issm/trunk-jpl/test/NightlyRun/test1205.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1205.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1205.py	(revision 21056)
@@ -43,5 +43,5 @@
 #Now we can solve the problem 
 md.cluster=generic('name',oshostname(),'np',8)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Calculate the depth averaged velocity field (2d):
Index: /issm/trunk-jpl/test/NightlyRun/test1206.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1206.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1206.m	(revision 21056)
@@ -30,5 +30,5 @@
 %Now we can solve the problem 
 md.cluster=generic('name',oshostname(),'np',8);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Calculate the depth averaged velocity field (2d):
Index: /issm/trunk-jpl/test/NightlyRun/test1206.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1206.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1206.py	(revision 21056)
@@ -43,5 +43,5 @@
 #Now we can solve the problem 
 md.cluster=generic('name',oshostname(),'np',8)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Calculate the depth averaged velocity field (2d):
Index: /issm/trunk-jpl/test/NightlyRun/test1207.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1207.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1207.m	(revision 21056)
@@ -30,5 +30,5 @@
 %Now we can solve the problem 
 md.cluster=generic('name',oshostname(),'np',8);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Calculate the depth averaged velocity field (2d):
Index: /issm/trunk-jpl/test/NightlyRun/test1207.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1207.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1207.py	(revision 21056)
@@ -43,5 +43,5 @@
 #Now we can solve the problem 
 md.cluster=generic('name',oshostname(),'np',8)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Calculate the depth averaged velocity field (2d):
Index: /issm/trunk-jpl/test/NightlyRun/test1208.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1208.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1208.m	(revision 21056)
@@ -28,5 +28,5 @@
 %Now we can solve the problem 
 md.cluster=generic('name',oshostname(),'np',8);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test1208.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1208.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1208.py	(revision 21056)
@@ -41,5 +41,5 @@
 #Now we can solve the problem 
 md.cluster=generic('name',oshostname(),'np',8)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test121.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test121.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test121.m	(revision 21056)
@@ -15,5 +15,5 @@
 md.thermal.isenthalpy=1;
 md.thermal.isdynamicbasalspc=1;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test121.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test121.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test121.py	(revision 21056)
@@ -24,5 +24,5 @@
 md.thermal.isenthalpy=1
 md.thermal.isdynamicbasalspc=1
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test122.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test122.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test122.m	(revision 21056)
@@ -11,5 +11,5 @@
 md.thermal.stabilization=2;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test122.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test122.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test122.py	(revision 21056)
@@ -20,5 +20,5 @@
 md.thermal.stabilization=2
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test123.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test123.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test123.m	(revision 21056)
@@ -14,5 +14,5 @@
 md.outputdefinition.definitions={misfit('name','SurfaceMisfit', 'definitionstring','Outputdefinition1','model_string','Surface','observation_string','SurfaceObservation','observation',fake_surface,'timeinterpolation','nearestneighbor','weights',ones(md.mesh.numberofvertices,1),'weights_string','WeightsSurfaceObservation')};
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test124.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test124.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test124.m	(revision 21056)
@@ -13,5 +13,5 @@
 %Go solve
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test125.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test125.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test125.m	(revision 21056)
@@ -13,6 +13,6 @@
 md.timestepping.final_time=8;
 
-md=solve(md,'TransientSolution');
-md2=solve(md,'TransientSolution','restart',1);
+md=solve(md,'Transient');
+md2=solve(md,'Transient','restart',1);
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test125.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test125.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test125.py	(revision 21056)
@@ -25,7 +25,7 @@
 md.timestepping.final_time=8
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 md2=copy.deepcopy(md)
-md=solve(md,'TransientSolution','restart',1)
+md=solve(md,'Transient','restart',1)
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test126.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test126.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test126.m	(revision 21056)
@@ -14,6 +14,6 @@
 md.timestepping.final_time=8;
 
-md=solve(md,'TransientSolution');
-md2=solve(md,'TransientSolution','restart',1);
+md=solve(md,'Transient');
+md2=solve(md,'Transient','restart',1);
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test126.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test126.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test126.py	(revision 21056)
@@ -26,7 +26,7 @@
 md.timestepping.final_time=8
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 md2=copy.deepcopy(md)
-md=solve(md,'TransientSolution','restart',1)
+md=solve(md,'Transient','restart',1)
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test1301.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1301.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1301.m	(revision 21056)
@@ -27,5 +27,5 @@
 %modeled results
 md.cluster=generic('name',oshostname(),'np',2);
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %plot results
Index: /issm/trunk-jpl/test/NightlyRun/test1301.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1301.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1301.py	(revision 21056)
@@ -41,5 +41,5 @@
 #modeled results
 md.cluster=generic('name',oshostname(),'np',2)
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #plot results
Index: /issm/trunk-jpl/test/NightlyRun/test1302.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1302.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1302.m	(revision 21056)
@@ -29,5 +29,5 @@
 %modeled results
 md.cluster=generic('name',oshostname(),'np',2);
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %plot results
Index: /issm/trunk-jpl/test/NightlyRun/test1302.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1302.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1302.py	(revision 21056)
@@ -45,5 +45,5 @@
 #modeled results
 md.cluster=generic('name',oshostname(),'np',2)
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #plot results
Index: /issm/trunk-jpl/test/NightlyRun/test1303.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1303.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1303.m	(revision 21056)
@@ -24,5 +24,5 @@
 %modeled results
 md.cluster=generic('name',oshostname(),'np',2);
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %plot results
Index: /issm/trunk-jpl/test/NightlyRun/test1303.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1303.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1303.py	(revision 21056)
@@ -40,5 +40,5 @@
 #modeled results
 md.cluster=generic('name',oshostname(),'np',2)
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #plot results
Index: /issm/trunk-jpl/test/NightlyRun/test1304.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1304.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1304.m	(revision 21056)
@@ -24,5 +24,5 @@
 %modeled results
 md.cluster=generic('name',oshostname(),'np',2);
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %plot results
Index: /issm/trunk-jpl/test/NightlyRun/test1304.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1304.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1304.py	(revision 21056)
@@ -39,5 +39,5 @@
 #modeled results
 md.cluster=generic('name',oshostname(),'np',2)
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #plot results
Index: /issm/trunk-jpl/test/NightlyRun/test1501.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1501.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1501.m	(revision 21056)
@@ -18,8 +18,8 @@
 md.basalforcings.groundedice_melting_rate= smb;
 
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 for i=1:10
-	 md=solve(md,'MasstransportSolution');
+	 md=solve(md,'Masstransport');
 	 md.smb.mass_balance= md.smb.mass_balance - ((md.results.MasstransportSolution.Thickness)-md.geometry.thickness);
 end
@@ -34,5 +34,5 @@
 md.smb.mass_balance(end+1,:)=[1.:2000.];
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test1501.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1501.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1501.py	(revision 21056)
@@ -29,8 +29,8 @@
 md.basalforcings.groundedice_melting_rate= smb
 
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 for i in xrange(1,11):
-	 md=solve(md,'MasstransportSolution')
+	 md=solve(md,'Masstransport')
 	 md.smb.mass_balance= md.smb.mass_balance - ((md.results.MasstransportSolution.Thickness)-md.geometry.thickness)
 
@@ -47,5 +47,5 @@
 md.smb.mass_balance=numpy.vstack((smb,numpy.arange(1,2001)))
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test1502.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1502.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1502.m	(revision 21056)
@@ -19,8 +19,8 @@
 md.basalforcings.groundedice_melting_rate= smb;
 
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 for i=1:10
-	 md=solve(md,'MasstransportSolution');
+	 md=solve(md,'Masstransport');
 	 md.smb.mass_balance= md.smb.mass_balance - ((md.results.MasstransportSolution.Thickness)-md.geometry.thickness);
 end
@@ -35,5 +35,5 @@
 md.smb.mass_balance(end+1,:)=[1.:2000.];
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test1502.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1502.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1502.py	(revision 21056)
@@ -30,8 +30,8 @@
 md.basalforcings.groundedice_melting_rate= smb
 
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 for i in xrange(1,11):
-	 md=solve(md,'MasstransportSolution')
+	 md=solve(md,'Masstransport')
 	 md.smb.mass_balance= md.smb.mass_balance - ((md.results.MasstransportSolution.Thickness)-md.geometry.thickness)
 
@@ -48,5 +48,5 @@
 md.smb.mass_balance=numpy.vstack((smb,numpy.arange(1,2001)))
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test1601.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1601.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1601.m	(revision 21056)
@@ -10,5 +10,5 @@
 
 md.cluster=generic('name',oshostname(),'np',2);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 vel0=md.results.StressbalanceSolution.Vel;
 
@@ -21,5 +21,5 @@
 md.stressbalance.referential(:,1:3)=repmat([cos(theta),sin(theta),0],md.mesh.numberofvertices,1);
 md.stressbalance.referential(:,4:6)=repmat([0,0,1],md.mesh.numberofvertices,1);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 vel1=md.results.StressbalanceSolution.Vel;
 
@@ -32,5 +32,5 @@
 md.stressbalance.referential(pos,1:3)=repmat([cos(theta),sin(theta),0],size(pos,1),1);
 md.stressbalance.referential(pos,4:6)=repmat([0,0,1],size(pos,1),1);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 vel2=md.results.StressbalanceSolution.Vel;
 
Index: /issm/trunk-jpl/test/NightlyRun/test1601.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1601.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1601.py	(revision 21056)
@@ -21,5 +21,5 @@
 
 md.cluster=generic('name',oshostname(),'np',2)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 vel0=md.results.StressbalanceSolution.Vel
 
@@ -32,5 +32,5 @@
 md.stressbalance.referential[:,0:3]=numpy.tile([numpy.cos(theta),numpy.sin(theta),0],(md.mesh.numberofvertices,1))
 md.stressbalance.referential[:,3: ]=numpy.tile([0,0,1],(md.mesh.numberofvertices,1))
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 vel1=md.results.StressbalanceSolution.Vel
 
@@ -43,5 +43,5 @@
 md.stressbalance.referential[pos,0:3]=numpy.tile([numpy.cos(theta),numpy.sin(theta),0],(len(pos),1))
 md.stressbalance.referential[pos,3: ]=numpy.tile([0,0,1],(len(pos),1))
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 vel2=md.results.StressbalanceSolution.Vel
 
Index: /issm/trunk-jpl/test/NightlyRun/test1602.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1602.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1602.m	(revision 21056)
@@ -11,5 +11,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 vel0=md.results.StressbalanceSolution.Vel;
 
@@ -22,5 +22,5 @@
 md.stressbalance.referential(:,1:3)=repmat([cos(theta),sin(theta),0],md.mesh.numberofvertices,1);
 md.stressbalance.referential(:,4:6)=repmat([0,0,1],md.mesh.numberofvertices,1);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 vel1=md.results.StressbalanceSolution.Vel;
 
Index: /issm/trunk-jpl/test/NightlyRun/test1602.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test1602.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test1602.py	(revision 21056)
@@ -22,5 +22,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 vel0=md.results.StressbalanceSolution.Vel
 
@@ -33,5 +33,5 @@
 md.stressbalance.referential[:,0:3]=numpy.tile([numpy.cos(theta),numpy.sin(theta),0],(md.mesh.numberofvertices,1))
 md.stressbalance.referential[:,3: ]=numpy.tile([0,0,1],(md.mesh.numberofvertices,1))
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 vel1=md.results.StressbalanceSolution.Vel
 
Index: /issm/trunk-jpl/test/NightlyRun/test2001.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2001.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2001.m	(revision 21056)
@@ -20,5 +20,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('1111111');
-md=solve(md,'GiaSolution');
+md=solve(md,'Gia');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test2001.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2001.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2001.py	(revision 21056)
@@ -33,5 +33,5 @@
 #Solve for GIA deflection 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'GiaSolution')
+md=solve(md,'Gia')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test2002.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2002.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2002.m	(revision 21056)
@@ -68,20 +68,20 @@
 	%eustatic run: 
 	 md.slr.rigid=0; md.slr.elastic=0;
-	md=solve(md,'SealevelriseSolution');
+	md=solve(md,'Sealevelrise');
 	Seustatic=md.results.SealevelriseSolution.Sealevel;
 	
 	%eustatic + rigid run: 
 	md.slr.rigid=1; md.slr.elastic=0;
-	md=solve(md,'SealevelriseSolution');
+	md=solve(md,'Sealevelrise');
 	Srigid=md.results.SealevelriseSolution.Sealevel;
 	
 	%eustatic + rigid + elastic run: 
 	md.slr.rigid=1; md.slr.elastic=1;
-	md=solve(md,'SealevelriseSolution');
+	md=solve(md,'Sealevelrise');
 	Selastic=md.results.SealevelriseSolution.Sealevel;
 	
 	%eustatic + rigid + elastic + rotation run: 
 	md.slr.rigid=1; md.slr.elastic=1; md.slr.rotation=1;
-	md=solve(md,'SealevelriseSolution');
+	md=solve(md,'Sealevelrise');
 	Srotation=md.results.SealevelriseSolution.Sealevel;
 
Index: /issm/trunk-jpl/test/NightlyRun/test2002.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2002.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2002.py	(revision 21056)
@@ -79,5 +79,5 @@
 md.slr.rigid=0
 md.slr.elastic=0
-md=solve(md,'SealevelriseSolution')
+md=solve(md,'Sealevelrise')
 Seustatic=md.results.SealevelriseSolution.Sealevel;
 
@@ -85,5 +85,5 @@
 md.slr.rigid=1
 md.slr.elastic=0
-md=solve(md,'SealevelriseSolution')
+md=solve(md,'Sealevelrise')
 Srigid=md.results.SealevelriseSolution.Sealevel;
 
@@ -91,5 +91,5 @@
 md.slr.rigid=1
 md.slr.elastic=1
-md=solve(md,'SealevelriseSolution')
+md=solve(md,'Sealevelrise')
 Selastic=md.results.SealevelriseSolution.Sealevel;
 
Index: /issm/trunk-jpl/test/NightlyRun/test201.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test201.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test201.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test201.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test201.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test201.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test202.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test202.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test202.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test202.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test202.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test202.py	(revision 21056)
@@ -17,5 +17,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test203.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test203.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test203.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'HO','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test203.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test203.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test203.py	(revision 21056)
@@ -17,5 +17,5 @@
 md=setflowequation(md,'HO','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test204.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test204.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test204.m	(revision 21056)
@@ -8,7 +8,7 @@
 md.stressbalance.shelf_dampening=1;
 md.timestepping.time_step=0;
-md1=solve(md,'StressbalanceSolution');
+md1=solve(md,'Stressbalance');
 md.stressbalance.shelf_dampening=0;
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test204.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test204.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test204.py	(revision 21056)
@@ -19,7 +19,7 @@
 md.stressbalance.shelf_dampening=1;
 md.timestepping.time_step=0;
-md1=solve(md,'StressbalanceSolution')
+md1=solve(md,'Stressbalance')
 md.stressbalance.shelf_dampening=0;
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test205.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test205.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test205.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'HO','../Exp/SquareHalfRight.exp','fill','SSA','coupling','penalties');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test205.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test205.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test205.py	(revision 21056)
@@ -17,5 +17,5 @@
 md=setflowequation(md,'HO','../Exp/SquareHalfRight.exp','fill','SSA','coupling','penalties')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test2051.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2051.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2051.m	(revision 21056)
@@ -22,5 +22,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('1111111');
-md=solve(md,'GiaSolution');
+md=solve(md,'Gia');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test2052.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2052.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2052.m	(revision 21056)
@@ -22,5 +22,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('1111111');
-md=solve(md,'GiaSolution');
+md=solve(md,'Gia');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test2053.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2053.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2053.m	(revision 21056)
@@ -22,5 +22,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('1111111');
-md=solve(md,'GiaSolution');
+md=solve(md,'Gia');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test206.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test206.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test206.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.timestepping.time_step=0;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test206.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test206.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test206.py	(revision 21056)
@@ -18,5 +18,5 @@
 md.timestepping.time_step=0
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test207.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test207.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test207.m	(revision 21056)
@@ -11,5 +11,5 @@
 md.transient.isthermal=1;
 md.transient.isgroundingline=0;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test207.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test207.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test207.py	(revision 21056)
@@ -22,5 +22,5 @@
 md.transient.isthermal=True
 md.transient.isgroundingline=False
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test2071.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2071.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2071.m	(revision 21056)
@@ -21,5 +21,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('1111111');
-md=solve(md,'GiaSolution');
+md=solve(md,'Gia');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test2072.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2072.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2072.m	(revision 21056)
@@ -21,5 +21,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('1111111');
-md=solve(md,'GiaSolution');
+md=solve(md,'Gia');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test2073.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2073.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2073.m	(revision 21056)
@@ -21,5 +21,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('1111111');
-md=solve(md,'GiaSolution');
+md=solve(md,'Gia');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test208.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test208.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test208.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.transient.requested_outputs={'default','FloatingArea','GroundedArea','TotalGroundedBmb','TotalFloatingBmb'};
 md.basalforcings.floatingice_melting_rate(:)=1;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test208.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test208.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test208.py	(revision 21056)
@@ -18,5 +18,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.transient.requested_outputs=['default','FloatingArea','GroundedArea','TotalFloatingBmb','TotalGroundedBmb']
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test2081.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2081.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2081.m	(revision 21056)
@@ -21,5 +21,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('1111111');
-md=solve(md,'GiaSolution');
+md=solve(md,'Gia');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test2082.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2082.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2082.m	(revision 21056)
@@ -21,5 +21,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('1111111');
-md=solve(md,'GiaSolution');
+md=solve(md,'Gia');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test2083.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2083.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2083.m	(revision 21056)
@@ -21,5 +21,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('1111111');
-md=solve(md,'GiaSolution');
+md=solve(md,'Gia');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test209.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test209.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test209.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test209.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test209.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test209.py	(revision 21056)
@@ -17,5 +17,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test210.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test210.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test210.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.transient.requested_outputs={'default','GroundedArea'};
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test210.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test210.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test210.py	(revision 21056)
@@ -17,5 +17,5 @@
 md=setflowequation(md,'HO','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test211.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test211.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test211.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.stressbalance.reltol=NaN;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test211.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test211.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test211.py	(revision 21056)
@@ -18,5 +18,5 @@
 md.stressbalance.reltol=NaN
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test212.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test212.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test212.m	(revision 21056)
@@ -20,5 +20,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test212.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test212.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test212.py	(revision 21056)
@@ -34,5 +34,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test213.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test213.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test213.m	(revision 21056)
@@ -23,5 +23,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test213.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test213.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test213.py	(revision 21056)
@@ -35,5 +35,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test214.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test214.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test214.m	(revision 21056)
@@ -20,5 +20,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test214.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test214.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test214.py	(revision 21056)
@@ -35,5 +35,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test215.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test215.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test215.m	(revision 21056)
@@ -20,5 +20,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test215.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test215.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test215.py	(revision 21056)
@@ -35,5 +35,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 
Index: /issm/trunk-jpl/test/NightlyRun/test216.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test216.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test216.m	(revision 21056)
@@ -13,5 +13,5 @@
 md.stressbalance.rift_penalty_threshold=0;
 md.rifts.riftstruct.fractionincrement=.1;
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test216.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test216.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test216.py	(revision 21056)
@@ -26,5 +26,5 @@
 md.stressbalance.rift_penalty_threshold=0
 md.rifts.riftstruct[0]['fractionincrement']=0.1
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test217.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test217.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test217.m	(revision 21056)
@@ -57,5 +57,5 @@
 md.mask.ice_levelset=-1+nodeonicefront;
 
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %create analytical solution: strain rate is constant = ((rho_ice*g*h)/4B)^3 (Paterson, 4th Edition, page 292.
Index: /issm/trunk-jpl/test/NightlyRun/test217.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test217.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test217.py	(revision 21056)
@@ -70,5 +70,5 @@
 md.mask.ice_levelset=-1+nodeonicefront
 
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 # create analytical solution: strain rate is constant = ((rho_ice*g*h)/4B)^3 (Paterson, 4th Edition, page 292.
Index: /issm/trunk-jpl/test/NightlyRun/test218.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test218.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test218.m	(revision 21056)
@@ -86,5 +86,5 @@
 
 %solve
-md=solve(md,'StressbalanceSolution','overwrite','y');
+md=solve(md,'Stressbalance','overwrite','y');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test219.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test219.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test219.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'HO','../Exp/SquareHalfRight.exp','fill','SSA');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test219.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test219.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test219.py	(revision 21056)
@@ -17,5 +17,5 @@
 md=setflowequation(md,'HO','../Exp/SquareHalfRight.exp','fill','SSA')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test220.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test220.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test220.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.verbose=verbose('all');
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test220.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test220.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test220.py	(revision 21056)
@@ -17,5 +17,5 @@
 md=setflowequation(md,'FS','../Exp/SquareHalfRight.exp','fill','HO')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test221.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test221.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test221.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.stressbalance.viscosity_overshoot=0;
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test221.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test221.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test221.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.stressbalance.viscosity_overshoot=0
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test222.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test222.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test222.m	(revision 21056)
@@ -6,5 +6,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.masstransport.hydrostatic_adjustment='Incremental';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test222.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test222.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test222.py	(revision 21056)
@@ -15,5 +15,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.masstransport.hydrostatic_adjustment='Incremental'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test223.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test223.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test223.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',1);
 md.masstransport.hydrostatic_adjustment='Incremental';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test223.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test223.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test223.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.cluster=generic('name',oshostname(),'np',1)
 md.masstransport.hydrostatic_adjustment='Incremental'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test224.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test224.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test224.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.masstransport.hydrostatic_adjustment='Incremental';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test224.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test224.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test224.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.masstransport.hydrostatic_adjustment='Incremental'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test225.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test225.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test225.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.masstransport.hydrostatic_adjustment='Incremental';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test225.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test225.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test225.py	(revision 21056)
@@ -18,5 +18,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.masstransport.hydrostatic_adjustment='Incremental'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test226.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test226.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test226.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.timestepping.time_adapt=1.;
 md.timestepping.final_time=15.;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test226.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test226.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test226.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.timestepping.time_adapt=1.
 md.timestepping.final_time=15.
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test227.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test227.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test227.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.timestepping.time_adapt=1.;
 md.timestepping.final_time=20.;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test227.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test227.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test227.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.timestepping.time_adapt=1.
 md.timestepping.final_time=20.
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test228.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test228.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test228.m	(revision 21056)
@@ -18,5 +18,5 @@
 md.transient.isthermal=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test228.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test228.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test228.py	(revision 21056)
@@ -27,5 +27,5 @@
 md.transient.isthermal=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test229.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test229.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test229.m	(revision 21056)
@@ -18,5 +18,5 @@
 md.transient.isthermal=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test229.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test229.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test229.py	(revision 21056)
@@ -27,5 +27,5 @@
 md.transient.isthermal=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test230.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test230.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test230.m	(revision 21056)
@@ -19,5 +19,5 @@
 md.transient.isthermal=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test230.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test230.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test230.py	(revision 21056)
@@ -28,5 +28,5 @@
 md.transient.isthermal=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test231.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test231.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test231.m	(revision 21056)
@@ -19,5 +19,5 @@
 md.transient.isthermal=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test231.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test231.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test231.py	(revision 21056)
@@ -28,5 +28,5 @@
 md.transient.isthermal=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test232.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test232.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test232.m	(revision 21056)
@@ -14,5 +14,5 @@
 md.transient.isthermal=1;
 md.transient.isgroundingline=0;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test232.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test232.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test232.py	(revision 21056)
@@ -24,5 +24,5 @@
 md.transient.isthermal=True
 md.transient.isgroundingline=False
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test233.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test233.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test233.m	(revision 21056)
@@ -9,5 +9,5 @@
 md.timestepping.time_step=0.5;
 md.timestepping.final_time=2.;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test233.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test233.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test233.py	(revision 21056)
@@ -19,5 +19,5 @@
 md.timestepping.time_step=0.5
 md.timestepping.final_time=2.
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test234.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test234.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test234.m	(revision 21056)
@@ -72,5 +72,5 @@
 
 %solve
-md=solve(md,'TransientSolution','overwrite','y');
+md=solve(md,'Transient','overwrite','y');
 md.qmu.results=md.results.dakota;
 
Index: /issm/trunk-jpl/test/NightlyRun/test235.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test235.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test235.m	(revision 21056)
@@ -67,5 +67,5 @@
 
 %solve
-md=solve(md,'TransientSolution','overwrite','y');
+md=solve(md,'Transient','overwrite','y');
 md.qmu.results=md.results.dakota;
 
Index: /issm/trunk-jpl/test/NightlyRun/test236.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test236.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test236.m	(revision 21056)
@@ -68,5 +68,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',1); % 3 for the cluster
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test236.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test236.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test236.py	(revision 21056)
@@ -73,5 +73,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test237.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test237.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test237.m	(revision 21056)
@@ -61,5 +61,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',1); % 3 for the cluster
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test237.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test237.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test237.py	(revision 21056)
@@ -74,5 +74,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',1)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test238.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test238.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test238.m	(revision 21056)
@@ -48,5 +48,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',1); % 3 for the cluster
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test238.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test238.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test238.py	(revision 21056)
@@ -53,5 +53,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test239.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test239.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test239.m	(revision 21056)
@@ -49,5 +49,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',1); % 3 for the cluster
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test239.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test239.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test239.py	(revision 21056)
@@ -53,5 +53,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test240.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test240.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test240.m	(revision 21056)
@@ -49,5 +49,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',1); % 3 for the cluster
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test240.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test240.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test240.py	(revision 21056)
@@ -54,5 +54,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test241.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test241.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test241.m	(revision 21056)
@@ -19,5 +19,5 @@
 md.transient.isthermal=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test241.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test241.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test241.py	(revision 21056)
@@ -28,5 +28,5 @@
 md.transient.isthermal=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test242.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test242.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test242.m	(revision 21056)
@@ -20,5 +20,5 @@
 md.transient.isthermal=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test242.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test242.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test242.py	(revision 21056)
@@ -29,5 +29,5 @@
 md.transient.isthermal=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test2424.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2424.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2424.m	(revision 21056)
@@ -23,5 +23,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %we are checking that the grounding line position is near the theorical one, which is the 0 contour level 
Index: /issm/trunk-jpl/test/NightlyRun/test2425.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test2425.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test2425.m	(revision 21056)
@@ -18,5 +18,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 vel1=md.results.TransientSolution(end).Vel;
 
@@ -33,5 +33,5 @@
 md.slr.sealevel=1000*ones(md.mesh.numberofvertices,1);
 
-md=solve(md,'TransientSolution','checkconsistency','no');
+md=solve(md,'Transient','checkconsistency','no');
 vel2=md.results.TransientSolution(end).Vel;
 
Index: /issm/trunk-jpl/test/NightlyRun/test243.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test243.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test243.m	(revision 21056)
@@ -41,5 +41,5 @@
 
 %Run transient
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test250.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test250.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test250.m	(revision 21056)
@@ -72,5 +72,5 @@
 
 %solve
-md=solve(md,'TransientSolution','overwrite','y');
+md=solve(md,'Transient','overwrite','y');
 md.qmu.results=md.results.dakota;
 
Index: /issm/trunk-jpl/test/NightlyRun/test251.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test251.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test251.m	(revision 21056)
@@ -67,5 +67,5 @@
 
 %solve
-md=solve(md,'TransientSolution','overwrite','y');
+md=solve(md,'Transient','overwrite','y');
 md.qmu.results=md.results.dakota;
 
Index: /issm/trunk-jpl/test/NightlyRun/test270.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test270.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test270.m	(revision 21056)
@@ -9,5 +9,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test270.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test270.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test270.py	(revision 21056)
@@ -20,5 +20,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test272.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test272.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test272.m	(revision 21056)
@@ -25,5 +25,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test272.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test272.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test272.py	(revision 21056)
@@ -35,5 +35,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test273.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test273.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test273.m	(revision 21056)
@@ -14,5 +14,5 @@
 md.damage.kappa=2.8;
 
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test273.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test273.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test273.py	(revision 21056)
@@ -25,5 +25,5 @@
 md.damage.kappa=2.8
 
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test274.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test274.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test274.m	(revision 21056)
@@ -11,5 +11,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test274.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test274.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test274.py	(revision 21056)
@@ -24,5 +24,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 print md.rifts.riftstruct[0]['fill']
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test275.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test275.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test275.m	(revision 21056)
@@ -20,5 +20,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'DamageEvolutionSolution');
+md=solve(md,'DamageEvolution');
 
 field_names={'D','F'};
Index: /issm/trunk-jpl/test/NightlyRun/test275.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test275.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test275.py	(revision 21056)
@@ -33,5 +33,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'DamageEvolutionSolution')
+md=solve(md,'DamageEvolution')
 
 field_names=['D','F']
Index: /issm/trunk-jpl/test/NightlyRun/test280.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test280.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test280.m	(revision 21056)
@@ -11,5 +11,5 @@
 for i={'P1bubble','P1bubblecondensed','P2'}
 	md.flowequation.fe_SSA=i{1};
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 	field_names     ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vel' i{1}],['Pressure' i{1}]};
 	field_tolerances={field_tolerances{:},1e-12,1e-13,1e-13,1e-13};
Index: /issm/trunk-jpl/test/NightlyRun/test280.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test280.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test280.py	(revision 21056)
@@ -21,5 +21,5 @@
 for i in ['P1bubble','P1bubblecondensed','P2']:
 	md.flowequation.fe_SSA=i
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 	field_names     =field_names+['Vx'+i,'Vy'+i,'Vel'+i,'Pressure'+i]
 	field_tolerances=field_tolerances+[1e-12,1e-13,1e-13,1e-13]
Index: /issm/trunk-jpl/test/NightlyRun/test285.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test285.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test285.m	(revision 21056)
@@ -12,5 +12,5 @@
 for i={'P1bubble','P1bubblecondensed','P1xP2','P2xP1','P2','P1xP3','P2xP4'}
 	md.flowequation.fe_HO=i{1};
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 	field_names     ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vz' i{1}],['Vel' i{1}],['Pressure' i{1}]};
 	field_tolerances={field_tolerances{:},6.5e-08,5e-08,2e-08,5e-08,1e-13};
Index: /issm/trunk-jpl/test/NightlyRun/test285.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test285.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test285.py	(revision 21056)
@@ -22,5 +22,5 @@
 for i in ['P1bubble','P1bubblecondensed','P1xP2','P2xP1','P2','P1xP3','P2xP4']:
 	md.flowequation.fe_HO=i
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 	field_names     =field_names+['Vx'+i,'Vy'+i,'Vz'+i,'Vel'+i,'Pressure'+i]
 	field_tolerances=field_tolerances+[6.5e-08,5e-08,2e-08,5e-08,1e-13]
Index: /issm/trunk-jpl/test/NightlyRun/test290.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test290.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test290.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.flowequation.fe_FS='TaylorHood';
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test290.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test290.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test290.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.flowequation.fe_FS='TaylorHood';
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test291.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test291.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test291.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.flowequation.fe_FS='OneLayerP4z';
 md.cluster=generic('name',oshostname(),'np',1);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test291.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test291.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test291.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.flowequation.fe_FS='OneLayerP4z'
 md.cluster=generic('name',oshostname(),'np',1)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test292.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test292.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test292.m	(revision 21056)
@@ -6,5 +6,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.basalforcings=linearbasalforcings(md.basalforcings);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test292.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test292.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test292.py	(revision 21056)
@@ -18,5 +18,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.basalforcings=linearbasalforcings(md.basalforcings)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test293.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test293.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test293.m	(revision 21056)
@@ -10,5 +10,5 @@
 md.geometry.bed=min(md.geometry.base)*ones(md.mesh.numberofvertices,1);
 md.transient.requested_outputs={'default','BasalforcingsFloatingiceMeltingRate'};
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3001.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3001.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3001.m	(revision 21056)
@@ -9,5 +9,5 @@
 md.toolkits.DefaultAnalysis=issmgslsolver();
 
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3001.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3001.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3001.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.stressbalance.requested_outputs=['default','DeviatoricStressxx','DeviatoricStressyy','DeviatoricStressxy']
 md.autodiff.isautodiff=True
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3002.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3002.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3002.m	(revision 21056)
@@ -9,5 +9,5 @@
 md.toolkits.DefaultAnalysis=issmgslsolver();
 md.verbose=verbose('autodiff',true);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3002.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3002.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3002.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.cluster=generic('name',oshostname(),'np',1)
 md.autodiff.isautodiff=True
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3003.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3003.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3003.m	(revision 21056)
@@ -10,5 +10,5 @@
 md.toolkits.DefaultAnalysis=issmgslsolver();
 md.verbose=verbose('autodiff',true);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3003.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3003.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3003.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.stressbalance.requested_outputs=['default','StressTensorxx','StressTensoryy','StressTensorzz','StressTensorxy','StressTensorxz','StressTensoryz']
 md.autodiff.isautodiff=True
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3004.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3004.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3004.m	(revision 21056)
@@ -9,5 +9,5 @@
 md.toolkits.DefaultAnalysis=issmgslsolver();
 md.verbose=verbose('autodiff',true);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3004.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3004.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3004.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.cluster=generic('name',oshostname(),'np',1)
 md.autodiff.isautodiff=True
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3005.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3005.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3005.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.toolkits.DefaultAnalysis=issmgslsolver();
 md.verbose=verbose('autodiff',true);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3005.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3005.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3005.py	(revision 21056)
@@ -15,5 +15,5 @@
 md.cluster=generic('name',oshostname(),'np',1)
 md.autodiff.isautodiff=True
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3006.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3006.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3006.m	(revision 21056)
@@ -11,5 +11,5 @@
 md.toolkits.DefaultAnalysis=issmgslsolver();
 md.verbose=verbose('autodiff',true);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3006.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3006.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3006.py	(revision 21056)
@@ -19,5 +19,5 @@
 md.masstransport.spcthickness=md.geometry.thickness
 md.autodiff.isautodiff=True
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3007.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3007.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3007.m	(revision 21056)
@@ -9,5 +9,5 @@
 md.verbose=verbose('autodiff',true);
 md.toolkits.DefaultAnalysis=issmgslsolver();
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3007.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3007.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3007.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.cluster=generic('name',oshostname(),'np',1)
 md.autodiff.isautodiff=True
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3008.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3008.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3008.m	(revision 21056)
@@ -10,5 +10,5 @@
 md.verbose=verbose('autodiff',true);
 md.toolkits.DefaultAnalysis=issmgslsolver();
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3008.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3008.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3008.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.cluster=generic('name',oshostname(),'np',1)
 md.autodiff.isautodiff=True
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3009.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3009.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3009.m	(revision 21056)
@@ -14,5 +14,5 @@
 md.verbose=verbose('autodiff',true);
 md.toolkits.DefaultAnalysis=issmgslsolver();
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3009.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3009.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3009.py	(revision 21056)
@@ -21,5 +21,5 @@
 md.transient.isgroundingline=False
 md.autodiff.isautodiff=True
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test301.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test301.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test301.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test301.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test301.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test301.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3010.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3010.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3010.m	(revision 21056)
@@ -10,5 +10,5 @@
 md.verbose=verbose('autodiff',true);
 md.toolkits.DefaultAnalysis=issmgslsolver();
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3010.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3010.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3010.py	(revision 21056)
@@ -17,5 +17,5 @@
 
 md.autodiff.isautodiff=True
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3015.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3015.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3015.m	(revision 21056)
@@ -43,5 +43,5 @@
 md=SetIceShelfBC(md);
 
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 V0=md.results.MasstransportSolution.IceVolume;
 
@@ -54,5 +54,5 @@
 md=SetIceShelfBC(md);
 
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 V2=md.results.MasstransportSolution.IceVolume;
 
@@ -68,5 +68,5 @@
 md=SetIceShelfBC(md);
 
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 %retrieve directly
 dVdh_ad=md.results.MasstransportSolution.AutodiffJacobian;
Index: /issm/trunk-jpl/test/NightlyRun/test3015.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3015.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3015.py	(revision 21056)
@@ -59,5 +59,5 @@
 md=SetIceShelfBC(md)
 
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 V0=md.results.MasstransportSolution.IceVolume
 
@@ -70,5 +70,5 @@
 md=SetIceShelfBC(md)
 
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 V2=md.results.MasstransportSolution.IceVolume
 
@@ -84,5 +84,5 @@
 md=SetIceShelfBC(md)
 
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 #retrieve directly
 dVdh_ad=md.results.MasstransportSolution.AutodiffJacobian
Index: /issm/trunk-jpl/test/NightlyRun/test3019.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3019.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3019.m	(revision 21056)
@@ -16,5 +16,5 @@
 md.autodiff.driver='fos_reverse';
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %recover jacobian: 
@@ -26,5 +26,5 @@
 md.autodiff.driver='fov_forward';
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %recover jacobian: 
Index: /issm/trunk-jpl/test/NightlyRun/test3019.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3019.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3019.py	(revision 21056)
@@ -28,5 +28,5 @@
 md.autodiff.driver='fos_reverse'
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #recover jacobian: 
@@ -38,5 +38,5 @@
 md.autodiff.driver='fov_forward'
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #recover jacobian: 
Index: /issm/trunk-jpl/test/NightlyRun/test302.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test302.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test302.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SIA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test302.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test302.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test302.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SIA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3020.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3020.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3020.m	(revision 21056)
@@ -45,5 +45,5 @@
 md=SetIceShelfBC(md);
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 V0=md.results.TransientSolution(end).IceVolume;
 MaxV0=md.results.TransientSolution(end).MaxVel;
@@ -57,5 +57,5 @@
 md=SetIceShelfBC(md);
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 V2=md.results.TransientSolution(end).IceVolume;
 MaxV2=md.results.TransientSolution(end).MaxVel;
@@ -73,5 +73,5 @@
 md=SetIceShelfBC(md);
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 %retrieve directly
 dVdh_ad=md.results.TransientSolution(1).AutodiffJacobian(1);
Index: /issm/trunk-jpl/test/NightlyRun/test3020.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3020.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3020.py	(revision 21056)
@@ -61,5 +61,5 @@
 md=SetIceShelfBC(md)
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 V0=md.results.TransientSolution[-1].IceVolume
 MaxV0=md.results.TransientSolution[-1].MaxVel
@@ -73,5 +73,5 @@
 md=SetIceShelfBC(md)
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 V2=md.results.TransientSolution[-1].IceVolume
 MaxV2=md.results.TransientSolution[-1].MaxVel
@@ -89,5 +89,5 @@
 md=SetIceShelfBC(md)
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 #retrieve directly
 dVdh_ad=md.results.TransientSolution[0].AutodiffJacobian[0]
Index: /issm/trunk-jpl/test/NightlyRun/test3021.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3021.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3021.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.toolkits.DefaultAnalysis=issmsolver();
 md.verbose=verbose('all');
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test303.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test303.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test303.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SIA','../Exp/SquareHalfRight.exp','fill','SSA');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test303.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test303.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test303.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SIA','../Exp/SquareHalfRight.exp','fill','SSA')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test304.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test304.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test304.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test304.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test304.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test304.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test305.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test305.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test305.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SIA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test305.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test305.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test305.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SIA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test306.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test306.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test306.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SIA','../Exp/SquareHalfRight.exp','fill','SSA');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test306.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test306.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test306.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SIA','../Exp/SquareHalfRight.exp','fill','SSA')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test307.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test307.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test307.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'HO','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test307.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test307.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test307.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'HO','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test308.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test308.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test308.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'FS','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test308.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test308.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test308.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'FS','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test309.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test309.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test309.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test309.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test309.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test309.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test310.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test310.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test310.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.masstransport.spcthickness=md.geometry.thickness;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test310.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test310.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test310.py	(revision 21056)
@@ -18,5 +18,5 @@
 md.masstransport.spcthickness=md.geometry.thickness
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3101.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3101.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3101.m	(revision 21056)
@@ -9,5 +9,5 @@
 md.toolkits.DefaultAnalysis=issmmumpssolver();
 
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3101.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3101.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3101.py	(revision 21056)
@@ -17,5 +17,5 @@
 
 md.autodiff.isautodiff=True
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3102.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3102.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3102.m	(revision 21056)
@@ -9,5 +9,5 @@
 md.toolkits.DefaultAnalysis=issmmumpssolver();
 md.verbose=verbose('autodiff',true);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3102.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3102.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3102.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.autodiff.isautodiff=True
 
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3103.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3103.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3103.m	(revision 21056)
@@ -10,5 +10,5 @@
 md.toolkits.DefaultAnalysis=issmmumpssolver();
 md.verbose=verbose('autodiff',true);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3103.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3103.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3103.py	(revision 21056)
@@ -18,5 +18,5 @@
 
 md.autodiff.isautodiff=True
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3104.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3104.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3104.m	(revision 21056)
@@ -9,5 +9,5 @@
 md.toolkits.DefaultAnalysis=issmmumpssolver();
 md.verbose=verbose('autodiff',true);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3104.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3104.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3104.py	(revision 21056)
@@ -17,5 +17,5 @@
 
 md.autodiff.isautodiff=True
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3105.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3105.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3105.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.toolkits.DefaultAnalysis=issmmumpssolver();
 md.verbose=verbose('autodiff',true);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3105.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3105.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3105.py	(revision 21056)
@@ -16,5 +16,5 @@
 
 md.autodiff.isautodiff=True
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3106.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3106.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3106.m	(revision 21056)
@@ -11,5 +11,5 @@
 md.toolkits.DefaultAnalysis=issmmumpssolver();
 md.verbose=verbose('autodiff',true);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3106.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3106.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3106.py	(revision 21056)
@@ -20,5 +20,5 @@
 
 md.autodiff.isautodiff=True
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3107.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3107.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3107.m	(revision 21056)
@@ -9,5 +9,5 @@
 md.verbose=verbose('autodiff',true);
 md.toolkits.DefaultAnalysis=issmmumpssolver();
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3107.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3107.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3107.py	(revision 21056)
@@ -17,5 +17,5 @@
 
 md.autodiff.isautodiff=True
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3108.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3108.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3108.m	(revision 21056)
@@ -10,5 +10,5 @@
 md.verbose=verbose('autodiff',true);
 md.toolkits.DefaultAnalysis=issmmumpssolver();
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3108.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3108.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3108.py	(revision 21056)
@@ -18,5 +18,5 @@
 
 md.autodiff.isautodiff=True
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3109.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3109.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3109.m	(revision 21056)
@@ -14,5 +14,5 @@
 md.verbose=verbose('autodiff',true);
 md.toolkits.DefaultAnalysis=issmmumpssolver();
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3109.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3109.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3109.py	(revision 21056)
@@ -22,5 +22,5 @@
 
 md.autodiff.isautodiff=True
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test311.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test311.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test311.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=extrude(md,5,0.5);
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test311.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test311.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test311.py	(revision 21056)
@@ -15,5 +15,5 @@
 md.extrude(5,0.5)
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3110.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3110.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3110.m	(revision 21056)
@@ -10,5 +10,5 @@
 md.verbose=verbose('autodiff',true);
 md.toolkits.DefaultAnalysis=issmmumpssolver();
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3110.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3110.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3110.py	(revision 21056)
@@ -18,5 +18,5 @@
 
 md.autodiff.isautodiff=True
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3119.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3119.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3119.m	(revision 21056)
@@ -16,5 +16,5 @@
 md.autodiff.driver='fos_reverse';
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %recover jacobian: 
Index: /issm/trunk-jpl/test/NightlyRun/test3119.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3119.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3119.py	(revision 21056)
@@ -26,5 +26,5 @@
 md.autodiff.driver='fos_reverse'
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #recover jacobian: 
Index: /issm/trunk-jpl/test/NightlyRun/test312.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test312.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test312.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.timestepping.time_step=0.;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test312.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test312.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test312.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.timestepping.time_step=0.
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test313.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test313.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test313.m	(revision 21056)
@@ -12,5 +12,5 @@
 md.transient.isthermal=1;
 md.transient.isgroundingline=0;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test313.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test313.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test313.py	(revision 21056)
@@ -21,5 +21,5 @@
 md.transient.isthermal=True
 md.transient.isgroundingline=False
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test314.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test314.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test314.m	(revision 21056)
@@ -6,5 +6,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.transient.requested_outputs={'default','GroundedArea','FloatingArea','IceVolume'};
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test314.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test314.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test314.py	(revision 21056)
@@ -15,5 +15,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.transient.requested_outputs=['default','GroundedArea','FloatingArea','IceVolume']
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test315.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test315.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test315.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SIA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test315.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test315.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test315.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SIA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test316.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test316.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test316.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test316.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test316.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test316.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test317.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test317.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test317.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.transient.requested_outputs={'default','GroundedArea','FloatingArea','TotalFloatingBmb','TotalGroundedBmb'};
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test317.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test317.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test317.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.transient.requested_outputs=['default','GroundedArea','FloatingArea','TotalFloatingBmb','TotalGroundedBmb']
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test318.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test318.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test318.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.timestepping.time_step=0;
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test318.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test318.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test318.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.timestepping.time_step=0
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test319.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test319.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test319.m	(revision 21056)
@@ -19,5 +19,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test319.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test319.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test319.py	(revision 21056)
@@ -31,5 +31,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test320.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test320.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test320.m	(revision 21056)
@@ -20,5 +20,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test320.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test320.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test320.py	(revision 21056)
@@ -32,5 +32,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test321.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test321.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test321.m	(revision 21056)
@@ -20,5 +20,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test321.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test321.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test321.py	(revision 21056)
@@ -32,5 +32,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test322.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test322.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test322.m	(revision 21056)
@@ -20,5 +20,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test322.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test322.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test322.py	(revision 21056)
@@ -32,5 +32,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test323.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test323.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test323.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.timestepping.time_adapt=1;
 md.timestepping.final_time=1120.;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test323.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test323.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test323.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.timestepping.time_adapt=1
 md.timestepping.final_time=1120.
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test324.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test324.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test324.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.timestepping.time_adapt=1;
 md.timestepping.final_time=16000.;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test324.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test324.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test324.py	(revision 21056)
@@ -18,5 +18,5 @@
 md.timestepping.time_adapt=1
 md.timestepping.final_time=16000.
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test325.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test325.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test325.m	(revision 21056)
@@ -12,5 +12,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test325.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test325.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test325.py	(revision 21056)
@@ -22,5 +22,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test326.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test326.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test326.m	(revision 21056)
@@ -15,5 +15,5 @@
 md.thermal.isenthalpy=1;
 md.thermal.isdynamicbasalspc=1;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test326.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test326.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test326.py	(revision 21056)
@@ -25,5 +25,5 @@
 md.thermal.isenthalpy=1
 md.thermal.isdynamicbasalspc=1
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test327.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test327.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test327.m	(revision 21056)
@@ -13,5 +13,5 @@
 md.thermal.isdynamicbasalspc=1;
 md.basalforcings.geothermalflux(:)=5.;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test327.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test327.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test327.py	(revision 21056)
@@ -23,5 +23,5 @@
 md.thermal.isdynamicbasalspc=1
 md.basalforcings.geothermalflux[:]=5.
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test328.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test328.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test328.m	(revision 21056)
@@ -11,5 +11,5 @@
 md.transient.requested_outputs={'default','TotalSmb'};
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test328.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test328.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test328.py	(revision 21056)
@@ -22,5 +22,5 @@
 md.smb.smbref= 1000. - 0.001*md.mesh.x - 0.005*md.mesh.y;
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test329.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test329.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test329.m	(revision 21056)
@@ -12,5 +12,5 @@
 md.transient.requested_outputs={'default','TotalSmb'};
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test329.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test329.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test329.py	(revision 21056)
@@ -23,5 +23,5 @@
 md.transient.requested_outputs=['default','TotalSmb']
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test3300.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test3300.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test3300.m	(revision 21056)
@@ -49,5 +49,5 @@
 md.timestepping.final_time=8.0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 field_names     ={'SedimentWaterHead5','EplWaterHead5','SedimentWaterHead40','EplWaterHead40'};
Index: /issm/trunk-jpl/test/NightlyRun/test332.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test332.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test332.m	(revision 21056)
@@ -21,5 +21,5 @@
 md.timestepping.time_step=0;
 md.timestepping.final_time=1.0;
-md=solve(md,'HydrologySolution');
+md=solve(md,'Hydrology');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test332.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test332.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test332.py	(revision 21056)
@@ -37,5 +37,5 @@
 md.timestepping.time_step=0
 md.timestepping.final_time=1.0
-md=solve(md,'HydrologySolution')
+md=solve(md,'Hydrology')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test333.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test333.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test333.m	(revision 21056)
@@ -33,5 +33,5 @@
 %md.verbose.solution=1;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %store=md.constants.g*md.hydrology.sediment_porosity*md.materials.rho_freshwater*((md.hydrology.sediment_compressibility/md.hydrology.sediment_porosity)+md.hydrology.water_compressibility);
Index: /issm/trunk-jpl/test/NightlyRun/test333.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test333.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test333.py	(revision 21056)
@@ -46,5 +46,5 @@
 md.timestepping.final_time=2.0
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 field_names     =['SedimentWaterHead1','EplWaterHead1','SedimentHeadResidual1', \
Index: /issm/trunk-jpl/test/NightlyRun/test334.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test334.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test334.m	(revision 21056)
@@ -22,5 +22,5 @@
 md.timestepping.final_time=1.0;
 md=extrude(md,3,1.1);
-md=solve(md,'HydrologySolution');
+md=solve(md,'Hydrology');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test335.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test335.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test335.m	(revision 21056)
@@ -33,5 +33,5 @@
 %md.verbose.solution=1;
 md=extrude(md,3,1.1);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %store=md.constants.g*md.hydrology.sediment_porosity* ...
Index: /issm/trunk-jpl/test/NightlyRun/test336.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test336.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test336.m	(revision 21056)
@@ -20,5 +20,5 @@
 md.transient.isthermal=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test336.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test336.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test336.py	(revision 21056)
@@ -30,5 +30,5 @@
 md.transient.isthermal=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test337.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test337.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test337.m	(revision 21056)
@@ -21,5 +21,5 @@
 md.transient.isthermal=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test337.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test337.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test337.py	(revision 21056)
@@ -31,5 +31,5 @@
 md.transient.isthermal=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test338.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test338.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test338.m	(revision 21056)
@@ -21,5 +21,5 @@
 md.transient.isthermal=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test338.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test338.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test338.py	(revision 21056)
@@ -31,5 +31,5 @@
 md.transient.isthermal=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test339.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test339.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test339.m	(revision 21056)
@@ -22,5 +22,5 @@
 md.transient.isthermal=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test339.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test339.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test339.py	(revision 21056)
@@ -32,5 +32,5 @@
 md.transient.isthermal=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test340.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test340.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test340.m	(revision 21056)
@@ -19,5 +19,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test341.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test341.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test341.m	(revision 21056)
@@ -19,5 +19,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test341.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test341.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test341.py	(revision 21056)
@@ -32,5 +32,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test342.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test342.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test342.m	(revision 21056)
@@ -13,5 +13,5 @@
 md.thermal.requested_outputs={'default','BasalforcingsGeothermalflux'};
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test350.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test350.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test350.m	(revision 21056)
@@ -53,5 +53,5 @@
 md.hydrology.neumannflux(pos,:)=repmat(0.05*(1-sin(2*pi/(1/365)*time)),numel(pos),1);
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test4001.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test4001.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test4001.m	(revision 21056)
@@ -545,5 +545,5 @@
 
 	md.cluster=generic('name',oshostname(),'np',2);
-	md=solve(md,'TransientSolution');
+	md=solve(md,'Transient');
 
 	savemodel(org,md);
@@ -819,5 +819,5 @@
 	    md.timestepping.start_time=t;
 	    md.timestepping.final_time=t+time_step;;
-		md=solve(md,'TransientSolution');
+		md=solve(md,'Transient');
 
 		base=md.results.TransientSolution(end).Base;
Index: /issm/trunk-jpl/test/NightlyRun/test401.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test401.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test401.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test401.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test401.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test401.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test402.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test402.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test402.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test402.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test402.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test402.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test403.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test403.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test403.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'HO','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test403.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test403.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test403.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'HO','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test404.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test404.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test404.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'FS','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test404.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test404.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test404.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'FS','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test405.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test405.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test405.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','../Exp/SquareHalfRight.exp','fill','HO','coupling','penalties');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test405.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test405.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test405.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'SSA','../Exp/SquareHalfRight.exp','fill','HO','coupling','penalties')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test406.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test406.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test406.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.timestepping.time_step=0.;
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test406.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test406.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test406.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.timestepping.time_step=0.
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test407.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test407.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test407.m	(revision 21056)
@@ -11,5 +11,5 @@
 md.transient.isthermal=1;
 md.transient.isgroundingline=0;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test407.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test407.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test407.py	(revision 21056)
@@ -21,5 +21,5 @@
 md.transient.isthermal=True
 md.transient.isgroundingline=False
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test408.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test408.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test408.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.transient.requested_outputs={'default','GroundedArea','FloatingArea','TotalFloatingBmb','TotalGroundedBmb','TotalSmb'};
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test408.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test408.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test408.py	(revision 21056)
@@ -18,5 +18,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.transient.requested_outputs=['default','GroundedArea','FloatingArea','TotalFloatingBmb','TotalGroundedBmb','TotalSmb']
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test409.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test409.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test409.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',1);
 md.transient.requested_outputs={'default','GroundedArea'};
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test409.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test409.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test409.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.transient.requested_outputs=['default','GroundedArea'];
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test410.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test410.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test410.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.timestepping.time_step=0;
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test410.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test410.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test410.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.timestepping.time_step=0
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test411.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test411.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test411.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.timestepping.time_step=0;
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test411.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test411.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test411.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.timestepping.time_step=0.
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test412.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test412.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test412.m	(revision 21056)
@@ -46,5 +46,5 @@
 
 %solve
-md=solve(md,'StressbalanceSolution','overwrite','y');
+md=solve(md,'Stressbalance','overwrite','y');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test413.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test413.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test413.m	(revision 21056)
@@ -44,5 +44,5 @@
 
 %solve
-md=solve(md,'StressbalanceSolution','overwrite','y');
+md=solve(md,'Stressbalance','overwrite','y');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test414.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test414.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test414.m	(revision 21056)
@@ -61,5 +61,5 @@
 
 %solve
-md=solve(md,'StressbalanceSolution','overwrite','y');
+md=solve(md,'Stressbalance','overwrite','y');
 md.qmu.results=md.results.dakota;
 
Index: /issm/trunk-jpl/test/NightlyRun/test415.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test415.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test415.m	(revision 21056)
@@ -21,5 +21,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test415.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test415.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test415.py	(revision 21056)
@@ -33,5 +33,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test416.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test416.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test416.m	(revision 21056)
@@ -21,5 +21,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test416.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test416.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test416.py	(revision 21056)
@@ -33,5 +33,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test417.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test417.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test417.m	(revision 21056)
@@ -66,5 +66,5 @@
 md.stressbalance.reltol=10^-5; %tighten for qmu analyses
 
-md=solve(md,'StressbalanceSolution','overwrite','y');
+md=solve(md,'Stressbalance','overwrite','y');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test419.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test419.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test419.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','../Exp/SquareHalfRight.exp','fill','HO');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test419.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test419.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test419.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'SSA','../Exp/SquareHalfRight.exp','fill','HO')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test420.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test420.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test420.m	(revision 21056)
@@ -45,5 +45,5 @@
 
 %solve
-md=solve(md,'StressbalanceSolution','overwrite','y');
+md=solve(md,'Stressbalance','overwrite','y');
 md.qmu.results=md.results.dakota;
 
Index: /issm/trunk-jpl/test/NightlyRun/test421.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test421.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test421.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'FS','../Exp/SquareHalfRight.exp','fill','HO');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test421.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test421.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test421.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'FS','../Exp/SquareHalfRight.exp','fill','HO')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test422.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test422.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test422.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.stressbalance.reltol=0.4;
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test422.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test422.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test422.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.stressbalance.reltol=0.4
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test423.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test423.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test423.m	(revision 21056)
@@ -27,10 +27,10 @@
 %test different grounding line dynamics.
 md.groundingline.migration='AggressiveMigration';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 element_on_iceshelf_agressive=(md.results.TransientSolution.MaskGroundediceLevelset);
 vel_agressive=(md.results.TransientSolution.Vel);
 
 md.groundingline.migration='SoftMigration';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 element_on_iceshelf_soft=(md.results.TransientSolution.MaskGroundediceLevelset);
 vel_soft=(md.results.TransientSolution.Vel);
@@ -38,10 +38,10 @@
 md.mask.groundedice_levelset=md.geometry.thickness + md.materials.rho_water/md.materials.rho_ice*md.geometry.bed;
 md.groundingline.migration='SubelementMigration';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 element_on_iceshelf_subelement=(md.results.TransientSolution.MaskGroundediceLevelset);
 vel_subelement=(md.results.TransientSolution.Vel);
 
 md.groundingline.migration='SubelementMigration2';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 element_on_iceshelf_subelement2=(md.results.TransientSolution.MaskGroundediceLevelset);
 vel_subelement2=(md.results.TransientSolution.Vel);
Index: /issm/trunk-jpl/test/NightlyRun/test423.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test423.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test423.py	(revision 21056)
@@ -38,10 +38,10 @@
 #test different grounding line dynamics.
 md.groundingline.migration='AggressiveMigration'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 element_on_iceshelf_agressive=md.results.TransientSolution[0].MaskGroundediceLevelset
 vel_agressive=md.results.TransientSolution[0].Vel
 
 md.groundingline.migration='SoftMigration'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 element_on_iceshelf_soft=md.results.TransientSolution[0].MaskGroundediceLevelset
 vel_soft=md.results.TransientSolution[0].Vel
@@ -49,10 +49,10 @@
 md.mask.groundedice_levelset=md.geometry.thickness + md.materials.rho_water/md.materials.rho_ice*md.geometry.bed
 md.groundingline.migration='SubelementMigration'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 element_on_iceshelf_subelement=md.results.TransientSolution[0].MaskGroundediceLevelset
 vel_subelement=md.results.TransientSolution[0].Vel
 
 md.groundingline.migration='SubelementMigration2'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 element_on_iceshelf_subelement2=md.results.TransientSolution[0].MaskGroundediceLevelset
 vel_subelement2=md.results.TransientSolution[0].Vel
Index: /issm/trunk-jpl/test/NightlyRun/test424.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test424.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test424.m	(revision 21056)
@@ -17,5 +17,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test424.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test424.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test424.py	(revision 21056)
@@ -27,5 +27,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test425.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test425.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test425.m	(revision 21056)
@@ -16,5 +16,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test425.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test425.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test425.py	(revision 21056)
@@ -26,5 +26,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test426.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test426.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test426.m	(revision 21056)
@@ -18,5 +18,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test426.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test426.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test426.py	(revision 21056)
@@ -28,5 +28,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test427.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test427.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test427.m	(revision 21056)
@@ -17,5 +17,5 @@
 md.groundingline.migration='SoftMigration';
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test427.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test427.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test427.py	(revision 21056)
@@ -27,5 +27,5 @@
 md.groundingline.migration='SoftMigration'
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test428.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test428.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test428.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.stressbalance.restol=0.0001;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test428.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test428.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test428.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.stressbalance.restol=0.0001
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test429.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test429.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test429.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.stressbalance.restol=0.0001;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test429.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test429.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test429.py	(revision 21056)
@@ -18,5 +18,5 @@
 md.stressbalance.restol=0.0001
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test431.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test431.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test431.m	(revision 21056)
@@ -11,5 +11,5 @@
 md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1);
 md.initialization.watercolumn=zeros(md.mesh.numberofvertices,1);
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test431.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test431.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test431.py	(revision 21056)
@@ -21,5 +21,5 @@
 md.initialization.waterfraction=numpy.zeros((md.mesh.numberofvertices,1))
 md.initialization.watercolumn=numpy.zeros((md.mesh.numberofvertices,1))
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test432.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test432.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test432.m	(revision 21056)
@@ -10,5 +10,5 @@
 md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1);
 md.initialization.watercolumn=zeros(md.mesh.numberofvertices,1);
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test432.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test432.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test432.py	(revision 21056)
@@ -20,5 +20,5 @@
 md.initialization.waterfraction=numpy.zeros((md.mesh.numberofvertices,1))
 md.initialization.watercolumn=numpy.zeros((md.mesh.numberofvertices,1))
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test433.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test433.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test433.m	(revision 21056)
@@ -28,13 +28,13 @@
 %test different grounding line dynamics.
 md.groundingline.migration='AggressiveMigration';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 element_on_iceshelf_agressive=(md.results.TransientSolution.MaskGroundediceLevelset);
 
 md.groundingline.migration='SoftMigration';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 element_on_iceshelf_soft=(md.results.TransientSolution.MaskGroundediceLevelset);
 
 md.groundingline.migration='SubelementMigration';
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 element_on_iceshelf_subelement=(md.results.TransientSolution.MaskGroundediceLevelset);
 
@@ -42,5 +42,5 @@
 md.transient.isstressbalance=1;
 md=setflowequation(md,'SSA','all');
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 element_on_iceshelf_subelement2=(md.results.TransientSolution.MaskGroundediceLevelset);
 
Index: /issm/trunk-jpl/test/NightlyRun/test433.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test433.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test433.py	(revision 21056)
@@ -39,13 +39,13 @@
 #test different grounding line dynamics.
 md.groundingline.migration='AggressiveMigration'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 element_on_iceshelf_agressive=md.results.TransientSolution[0].MaskGroundediceLevelset
 
 md.groundingline.migration='SoftMigration'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 element_on_iceshelf_soft=md.results.TransientSolution[0].MaskGroundediceLevelset
 
 md.groundingline.migration='SubelementMigration'
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 element_on_iceshelf_subelement=md.results.TransientSolution[0].MaskGroundediceLevelset
 
Index: /issm/trunk-jpl/test/NightlyRun/test434.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test434.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test434.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'L1L2','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test434.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test434.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test434.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'L1L2','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test435.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test435.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test435.m	(revision 21056)
@@ -44,5 +44,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test436.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test436.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test436.m	(revision 21056)
@@ -20,5 +20,5 @@
 
 	md.materials.rheology_law=i{1};
-	md=solve(md,'SteadystateSolution');
+	md=solve(md,'Steadystate');
 	field_names     ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vz' i{1}],['Vel' i{1}],['Pressure' i{1}],...
 		['Temperature' i{1}],['Waterfraction' i{1}],['Enthalpy' i{1}]};
Index: /issm/trunk-jpl/test/NightlyRun/test437.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test437.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test437.m	(revision 21056)
@@ -45,5 +45,5 @@
 md.verbose=verbose(0);
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test438.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test438.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test438.m	(revision 21056)
@@ -10,5 +10,5 @@
 md.friction.f=0.8;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test439.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test439.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test439.m	(revision 21056)
@@ -11,5 +11,5 @@
 md.friction.f=0.8;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test440.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test440.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test440.m	(revision 21056)
@@ -45,5 +45,5 @@
 
 %solve
-md=solve(md,'StressbalanceSolution','overwrite','y');
+md=solve(md,'Stressbalance','overwrite','y');
 md.qmu.results=md.results.dakota;
 
Index: /issm/trunk-jpl/test/NightlyRun/test450.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test450.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test450.m	(revision 21056)
@@ -11,5 +11,5 @@
 for i={'P1bubble','P1bubblecondensed','P2'}
 	md.flowequation.fe_SSA=i{1};
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 	field_names     ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vel' i{1}],['Pressure' i{1}]};
 	field_tolerances={field_tolerances{:},1e-12,1e-13,1e-13,1e-13};
Index: /issm/trunk-jpl/test/NightlyRun/test450.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test450.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test450.py	(revision 21056)
@@ -21,5 +21,5 @@
 for i in ['P1bubble','P1bubblecondensed','P2']:
 	md.flowequation.fe_SSA=i
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 	field_names     =field_names+['Vx'+i,'Vy'+i,'Vel'+i,'Pressure'+i]
 	field_tolerances=field_tolerances+[1e-12,1e-13,1e-13,1e-13]
Index: /issm/trunk-jpl/test/NightlyRun/test455.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test455.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test455.m	(revision 21056)
@@ -12,5 +12,5 @@
 for i={'P1bubble','P1bubblecondensed','P1xP2','P2xP1','P2','P1xP3','P2xP4'}
 	md.flowequation.fe_HO=i{1};
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 	field_names     ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vz' i{1}],['Vel' i{1}],['Pressure' i{1}]};
 	field_tolerances={field_tolerances{:},6e-08,6e-08,6e-08,6e-08,3e-13};
Index: /issm/trunk-jpl/test/NightlyRun/test455.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test455.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test455.py	(revision 21056)
@@ -22,5 +22,5 @@
 for i in ['P1bubble','P1bubblecondensed','P1xP2','P2xP1','P2','P1xP3','P2xP4']:
 	md.flowequation.fe_HO=i
-	md=solve(md,'StressbalanceSolution')
+	md=solve(md,'Stressbalance')
 	field_names     =field_names+['Vx'+i,'Vy'+i,'Vz'+i,'Vel'+i,'Pressure'+i]
 	field_tolerances=field_tolerances+[6e-08,6e-08,6e-08,6e-08,3e-13]
Index: /issm/trunk-jpl/test/NightlyRun/test460.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test460.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test460.m	(revision 21056)
@@ -19,5 +19,5 @@
 	disp(['====== Testing Estar with ' i{1} ' =====']);
 	md=setflowequation(md,i{1},'all');
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 	field_names     ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vz' i{1}],['Vel' i{1}],['Pressure' i{1}]};
 	field_tolerances={field_tolerances{:},6e-07,6e-07,2e-06,1e-06,5e-07};
Index: /issm/trunk-jpl/test/NightlyRun/test501.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test501.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test501.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test501.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test501.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test501.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test502.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test502.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test502.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'HO','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test502.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test502.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test502.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'HO','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test503.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test503.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test503.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'FS','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test503.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test503.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test503.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'FS','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test504.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test504.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test504.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test504.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test504.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test504.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test505.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test505.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test505.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test505.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test505.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test505.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test506.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test506.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test506.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'HO','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test506.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test506.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test506.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'HO','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test507.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test507.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test507.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'FS','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test507.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test507.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test507.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'FS','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test508.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test508.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test508.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.timestepping.time_step=0.;
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test508.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test508.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test508.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.timestepping.time_step=0.
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test509.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test509.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test509.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.timestepping.time_step=0.;
 md.thermal.penalty_threshold=7;
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test509.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test509.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test509.py	(revision 21056)
@@ -17,5 +17,5 @@
 md.timestepping.time_step=0.
 md.thermal.penalty_threshold=7
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test510.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test510.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test510.m	(revision 21056)
@@ -7,5 +7,5 @@
 md.cluster=generic('name',oshostname(),'np',3);
 md.timestepping.time_step=0.;
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test510.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test510.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test510.py	(revision 21056)
@@ -16,5 +16,5 @@
 md.cluster=generic('name',oshostname(),'np',3)
 md.timestepping.time_step=0.
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test511.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test511.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test511.m	(revision 21056)
@@ -25,5 +25,5 @@
 
 md.cluster=generic('name',oshostname(),'np',1);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test511.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test511.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test511.py	(revision 21056)
@@ -36,5 +36,5 @@
 
 md.cluster=generic('name',oshostname(),'np',1)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test512.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test512.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test512.m	(revision 21056)
@@ -20,5 +20,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'StressbalanceSolution');
+md=solve(md,'Stressbalance');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test512.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test512.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test512.py	(revision 21056)
@@ -32,5 +32,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'StressbalanceSolution')
+md=solve(md,'Stressbalance')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test513.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test513.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test513.m	(revision 21056)
@@ -22,5 +22,5 @@
 md.thermal.penalty_lock=5;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'SteadystateSolution');
+md=solve(md,'Steadystate');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test513.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test513.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test513.py	(revision 21056)
@@ -33,5 +33,5 @@
 md.thermal.penalty_lock=5
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'SteadystateSolution')
+md=solve(md,'Steadystate')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test515.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test515.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test515.m	(revision 21056)
@@ -12,5 +12,5 @@
 md.transient.isthermal=1;
 md.transient.isgroundingline=0;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test515.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test515.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test515.py	(revision 21056)
@@ -21,5 +21,5 @@
 md.transient.isthermal=True
 md.transient.isgroundingline=False
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test516.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test516.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test516.m	(revision 21056)
@@ -9,5 +9,5 @@
 md.timestepping.time_step=0;
 md.thermal.penalty_threshold=40;
-md=solve(md,'ThermalSolution');
+md=solve(md,'Thermal');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test516.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test516.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test516.py	(revision 21056)
@@ -19,5 +19,5 @@
 md.timestepping.time_step=0
 md.thermal.penalty_threshold=40
-md=solve(md,'ThermalSolution')
+md=solve(md,'Thermal')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test530.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test530.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test530.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'BalancevelocitySolution');
+md=solve(md,'Balancevelocity');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test530.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test530.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test530.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'BalancevelocitySolution')
+md=solve(md,'Balancevelocity')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test531.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test531.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test531.m	(revision 21056)
@@ -7,5 +7,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'BalancevelocitySolution');
+md=solve(md,'Balancevelocity');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test531.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test531.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test531.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'BalancevelocitySolution')
+md=solve(md,'Balancevelocity')
 
 # Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test601.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test601.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test601.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test601.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test601.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test601.py	(revision 21056)
@@ -14,5 +14,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test602.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test602.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test602.m	(revision 21056)
@@ -8,5 +8,5 @@
 md.masstransport.spcthickness=md.geometry.thickness;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test602.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test602.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test602.py	(revision 21056)
@@ -19,5 +19,5 @@
 md.masstransport.spcthickness=md.geometry.thickness
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test603.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test603.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test603.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'MasstransportSolution');
+md=solve(md,'Masstransport');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test603.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test603.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test603.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'MasstransportSolution')
+md=solve(md,'Masstransport')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test604.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test604.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test604.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'SurfaceSlopeSolution');
+md=solve(md,'SurfaceSlope');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test604.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test604.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test604.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'SurfaceSlopeSolution')
+md=solve(md,'SurfaceSlope')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test605.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test605.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test605.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'HO','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'SurfaceSlopeSolution');
+md=solve(md,'SurfaceSlope');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test605.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test605.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test605.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'HO','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'SurfaceSlopeSolution')
+md=solve(md,'SurfaceSlope')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test606.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test606.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test606.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'BedSlopeSolution');
+md=solve(md,'BedSlope');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test606.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test606.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test606.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'BedSlopeSolution')
+md=solve(md,'BedSlope')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test607.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test607.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test607.m	(revision 21056)
@@ -6,5 +6,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'BedSlopeSolution');
+md=solve(md,'BedSlope');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test607.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test607.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test607.py	(revision 21056)
@@ -16,5 +16,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'BedSlopeSolution')
+md=solve(md,'BedSlope')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test608.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test608.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test608.m	(revision 21056)
@@ -5,5 +5,5 @@
 md=setflowequation(md,'SSA','all');
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'BalancethicknessSolution');
+md=solve(md,'Balancethickness');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test608.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test608.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test608.py	(revision 21056)
@@ -15,5 +15,5 @@
 md=setflowequation(md,'SSA','all')
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'BalancethicknessSolution')
+md=solve(md,'Balancethickness')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test611.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test611.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test611.m	(revision 21056)
@@ -20,5 +20,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'BalancethicknessSolution');
+md=solve(md,'Balancethickness');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test611.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test611.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test611.py	(revision 21056)
@@ -30,5 +30,5 @@
 
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'BalancethicknessSolution')
+md=solve(md,'Balancethickness')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test613.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test613.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test613.m	(revision 21056)
@@ -27,5 +27,5 @@
 md.verbose.control=1;
 md.cluster=generic('name',oshostname(),'np',3);
-md=solve(md,'BalancethicknessSolution');
+md=solve(md,'Balancethickness');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test613.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test613.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test613.py	(revision 21056)
@@ -39,5 +39,5 @@
 md.verbose.control=1
 md.cluster=generic('name',oshostname(),'np',3)
-md=solve(md,'BalancethicknessSolution')
+md=solve(md,'Balancethickness')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test701.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test701.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test701.m	(revision 21056)
@@ -56,5 +56,5 @@
 	disp(['====== Testing ' i{1} ' Full-Stokes Finite element =====']);
 	md.flowequation.fe_FS=i{1};
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 	field_names     ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vel' i{1}],['Pressure' i{1}]};
 	field_tolerances={field_tolerances{:},9e-5,9e-5,9e-5,1e-10};
Index: /issm/trunk-jpl/test/NightlyRun/test702.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test702.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test702.m	(revision 21056)
@@ -54,5 +54,5 @@
 	disp(['====== Testing ' i{1} ' Full-Stokes Finite element =====']);
 	md.flowequation.fe_FS=i{1};
-	md=solve(md,'StressbalanceSolution');
+	md=solve(md,'Stressbalance');
 	field_names     ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vel' i{1}],['Pressure' i{1}]};
 	field_tolerances={field_tolerances{:},8e-5,8e-5,8e-5,1e-08};
Index: /issm/trunk-jpl/test/NightlyRun/test703.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test703.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test703.m	(revision 21056)
@@ -61,8 +61,8 @@
 md.cluster=generic('np',3);
 md.stressbalance.shelf_dampening=1;
-md1=solve(md,'TransientSolution');
+md1=solve(md,'Transient');
 
 md.stressbalance.shelf_dampening=0;
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test801.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test801.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test801.m	(revision 21056)
@@ -15,5 +15,5 @@
 md.transient.isgia=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test801.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test801.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test801.py	(revision 21056)
@@ -25,5 +25,5 @@
 md.transient.isgia=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test802.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test802.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test802.m	(revision 21056)
@@ -20,5 +20,5 @@
 md.transient.isgia=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test802.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test802.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test802.py	(revision 21056)
@@ -30,5 +30,5 @@
 md.transient.isgia=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test803.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test803.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test803.m	(revision 21056)
@@ -22,5 +22,5 @@
 md.transient.isgia=0;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test803.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test803.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test803.py	(revision 21056)
@@ -32,5 +32,5 @@
 md.transient.isgia=False
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test804.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test804.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test804.m	(revision 21056)
@@ -18,5 +18,5 @@
 md.calving.meltingrate=zeros(md.mesh.numberofvertices,1);
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test804.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test804.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test804.py	(revision 21056)
@@ -28,5 +28,5 @@
 md.calving.meltingrate=numpy.zeros((md.mesh.numberofvertices,1))
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test805.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test805.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test805.m	(revision 21056)
@@ -25,5 +25,5 @@
 md.calving.meltingrate=zeros(md.mesh.numberofvertices,1);
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test805.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test805.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test805.py	(revision 21056)
@@ -35,5 +35,5 @@
 md.calving.meltingrate=numpy.zeros((md.mesh.numberofvertices,1))
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test806.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test806.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test806.m	(revision 21056)
@@ -32,5 +32,5 @@
 md.transient.requested_outputs={'default','StrainRateparallel','StrainRateperpendicular','Calvingratex','Calvingratey','CalvingCalvingrate'};
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test806.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test806.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test806.py	(revision 21056)
@@ -43,5 +43,5 @@
 md.transient.requested_outputs=['default','StrainRateparallel','StrainRateperpendicular','Calvingratex','Calvingratey','CalvingCalvingrate']
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test807.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test807.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test807.m	(revision 21056)
@@ -29,5 +29,5 @@
 md.levelset.spclevelset=NaN(md.mesh.numberofvertices,1);
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test807.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test807.py	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test807.py	(revision 21056)
@@ -40,5 +40,5 @@
 md.levelset.spclevelset=numpy.float('NaN')*numpy.ones((md.mesh.numberofvertices,1))
 
-md=solve(md,'TransientSolution')
+md=solve(md,'Transient')
 
 #Fields and tolerances to track changes
Index: /issm/trunk-jpl/test/NightlyRun/test808.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test808.m	(revision 21055)
+++ /issm/trunk-jpl/test/NightlyRun/test808.m	(revision 21056)
@@ -31,5 +31,5 @@
 md.levelset.reinit_frequency=1;
 
-md=solve(md,'TransientSolution');
+md=solve(md,'Transient');
 
 %Fields and tolerances to track changes
