Index: /issm/trunk-jpl/src/m/model/ismodelselfconsistent.m
===================================================================
--- /issm/trunk-jpl/src/m/model/ismodelselfconsistent.m	(revision 11220)
+++ /issm/trunk-jpl/src/m/model/ismodelselfconsistent.m	(revision 11221)
@@ -13,5 +13,5 @@
 
 %Go through al model field check that it is a class and call checkconsistency
-fields=properties(md);
+fields=properties('model');
 for i=1:length(fields),
 	field=fields{i};
Index: /issm/trunk-jpl/src/m/model/marshall.m
===================================================================
--- /issm/trunk-jpl/src/m/model/marshall.m	(revision 11220)
+++ /issm/trunk-jpl/src/m/model/marshall.m	(revision 11221)
@@ -17,5 +17,5 @@
 
 %Go through all model fields: check that it is a class and call checkconsistency
-fields=properties(md);
+fields=properties('model');
 for i=1:length(fields),
 	field=fields{i};
Index: /issm/trunk-jpl/src/m/model/plot/plot_manager.m
===================================================================
--- /issm/trunk-jpl/src/m/model/plot/plot_manager.m	(revision 11220)
+++ /issm/trunk-jpl/src/m/model/plot/plot_manager.m	(revision 11221)
@@ -142,5 +142,5 @@
 	otherwise,
 
-		if ismember(data,properties(md)),
+		if ismember(data,properties('model')),
 			data=eval(['md.' data ';']);
 		else
