Dear Helene.
Thank you for your reply.
But when I plot figure with using. 'md.results.TransientSolution(end).MaskGroundediceLevelset' and 'md.results.TransientSolution(1).MaskGroundediceLevelset', the figure shows like this (Figure 1).
run1.ini&en.floatingice.jpg
In tutorial, figure seems to be normalized MaskGroundediceLevelset.
Screenshot from 2016-12-20 16-46-25.png
I want to know how to show like this.
Do I have to convert MaskGroundediceLevelset with following code?
% grounded ice
pos0 = find(md.results.TransientSolution(xx).MaskGroundediceLevelset > 0)
md.results.TransientSolution(1).MaskGroundediceLevelset(pos0) = 1;
% floating ice
pos0 = find(md.results.TransientSolution(xx).MaskGroundediceLevelset < 0)
md.results.TransientSolution(1).MaskGroundediceLevelset(pos0) = -1;
Thank you.