Changeset 10981 for issm/trunk/test/NightlyRun/test1110.m
- Timestamp:
- 11/29/11 19:29:01 (13 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 10962,10965,10969-10976,10980
- Property svn:mergeinfo changed
-
issm/trunk/test/NightlyRun/test1110.m
r9877 r10981 64 64 %Now plot vx and delta surface 65 65 if (i==1 | i==3), 66 plotmodel(md,'data', PatchToVec(md.results.TransientSolution(end).Vx),'layer',md.mesh.numberoflayers,'sectionvalue','../Exp/ISMIP100000.exp','title','','xlabel','','ylabel','Velocity (m/yr)','linewidth',3,'grid','on','unit','km','ylim',[91 100])66 plotmodel(md,'data',(md.results.TransientSolution(end).Vx),'layer',md.mesh.numberoflayers,'sectionvalue','../Exp/ISMIP100000.exp','title','','xlabel','','ylabel','Velocity (m/yr)','linewidth',3,'grid','on','unit','km','ylim',[91 100]) 67 67 elseif (i==2 | i==4), 68 plotmodel(md,'data', PatchToVec(md.results.TransientSolution(end).Vx),'layer',md.mesh.numberoflayers,'sectionvalue','../Exp/ISMIP100000.exp','title','','xlabel','','ylabel','Velocity (m/yr)','linewidth',3,'grid','on','unit','km','ylim',[185 200])68 plotmodel(md,'data',(md.results.TransientSolution(end).Vx),'layer',md.mesh.numberoflayers,'sectionvalue','../Exp/ISMIP100000.exp','title','','xlabel','','ylabel','Velocity (m/yr)','linewidth',3,'grid','on','unit','km','ylim',[185 200]) 69 69 end 70 70 if printingflag, … … 85 85 end 86 86 87 plotmodel(md,'data', PatchToVec(md.results.TransientSolution(end).Surface)-md.geometry.surface,'layer',md.mesh.numberoflayers,'sectionvalue','../Exp/ISMIP100000.exp','title','','xlabel','','ylabel','Surface (m)','linewidth',3,'grid','on','unit','km','ylim',[-30 50])87 plotmodel(md,'data',(md.results.TransientSolution(end).Surface)-md.geometry.surface,'layer',md.mesh.numberoflayers,'sectionvalue','../Exp/ISMIP100000.exp','title','','xlabel','','ylabel','Surface (m)','linewidth',3,'grid','on','unit','km','ylim',[-30 50]) 88 88 if printingflag, 89 89 set(gcf,'Color','w') … … 121 121 result=results{i}; 122 122 field_values={field_values{:},... 123 PatchToVec(result.Vx),...124 PatchToVec(result.Vy),...125 PatchToVec(result.Vz),...126 PatchToVec(result.Surface)-md.geometry.surface,...123 (result.Vx),... 124 (result.Vy),... 125 (result.Vz),... 126 (result.Surface)-md.geometry.surface,... 127 127 }; 128 128 end
Note:
See TracChangeset
for help on using the changeset viewer.