Index: /issm/branches/trunk-larour-SLPS2022/src/m/classes/mask.m
===================================================================
--- /issm/branches/trunk-larour-SLPS2022/src/m/classes/mask.m	(revision 27134)
+++ /issm/branches/trunk-larour-SLPS2022/src/m/classes/mask.m	(revision 27135)
@@ -86,11 +86,4 @@
 				for i=1:length(self.ocean_levelset),
 					md = checkfield(md,'field',self.ocean_levelset{i},'NaN',0,'Inf',1,'timeserieslength',1,'Inf',1);
-					%check time stamps: they should be in seconds 
-					h=self.ocean_levelset{i};
-					times=h(end,:);
-					avgtime=mean(times);
-					if(avgtime<10000)
-						error('mask checkconsistency error messages: time tags for ocean_levelset should be in seconds!');
-					end
 				end
 			else
@@ -101,11 +94,4 @@
 				for i=1:length(self.ice_levelset),
 					md = checkfield(md,'field',self.ice_levelset{i},'NaN',0,'Inf',1,'timeserieslength',1,'Inf',1);
-					%check time stamps: they should be in seconds 
-					h=self.ice_levelset{i};
-					times=h(end,:);
-					avgtime=mean(times);
-					if(avgtime<10000)
-						error('mask checkconsistency error messages: time tags for ice_levelset should be in seconds!');
-					end
 				end
 			else
@@ -120,13 +106,13 @@
 
 			if isa(self.ocean_levelset,'cell'),
-				WriteData(fid,prefix,'object',self,'fieldname','ocean_levelset','name','md.mask.ocean_levelset','format','MatArray','timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
+				WriteData(fid,prefix,'object',self,'fieldname','ocean_levelset','name','md.mask.ocean_levelset','format','MatArray','timeseries',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
 			else
-				WriteData(fid,prefix,'object',self,'fieldname','ocean_levelset','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
+				WriteData(fid,prefix,'object',self,'fieldname','ocean_levelset','format','DoubleMat','mattype',1,'timeseries',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
 			end
 
 			if isa(self.ice_levelset,'cell'),
-				WriteData(fid,prefix,'object',self,'fieldname','ice_levelset','name','md.mask.ice_levelset','format','MatArray','timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
+				WriteData(fid,prefix,'object',self,'fieldname','ice_levelset','name','md.mask.ice_levelset','format','MatArray','timeseries',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
 			else
-				WriteData(fid,prefix,'object',self,'fieldname','ice_levelset','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
+				WriteData(fid,prefix,'object',self,'fieldname','ice_levelset','format','DoubleMat','mattype',1,'timeseries',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
 			end
 		end % }}}
Index: /issm/branches/trunk-larour-SLPS2022/src/m/classes/mmemasstransport.m
===================================================================
--- /issm/branches/trunk-larour-SLPS2022/src/m/classes/mmemasstransport.m	(revision 27134)
+++ /issm/branches/trunk-larour-SLPS2022/src/m/classes/mmemasstransport.m	(revision 27135)
@@ -57,13 +57,4 @@
 			md = checkfield(md,'fieldname','mmemasstransport.requested_outputs','stringrow',1);
 
-			%check time stamps: they should be in seconds 
-			for i=1:nt, 
-				h=self.thickness{i};
-				times=h(end,:);
-				avgtime=mean(times);
-				if(avgtime<10000)
-					error('mmemasstransport checkconsistency error messages: time tags for thicknesses should be in seconds!');
-				end
-			end
 		end % }}}
 		function disp(self) % {{{
@@ -81,5 +72,5 @@
 			WriteData(fid,prefix,'object',self,'fieldname','ids','format','DoubleMat','mattype',3);
 			WriteData(fid,prefix,'object',self,'fieldname','partition','format','DoubleMat','mattype',1);
-			WriteData(fid,prefix,'object',self,'fieldname','thickness','format','MatArray','timeseries',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts);
+			WriteData(fid,prefix,'object',self,'fieldname','thickness','format','MatArray','timeseries',1,'timeserieslength',md.mesh.numberofelements+1,'yts',md.constants.yts);
 
 			%process requested outputs
