Ignore:
Timestamp:
11/29/11 19:29:01 (13 years ago)
Author:
Eric.Larour
Message:

merged trunk-jpl and trunk for revision 10980

Location:
issm/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk

  • issm/trunk/test/NightlyRun/test1110.m

    r9877 r10981  
    6464        %Now plot vx and delta surface
    6565        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])
    6767        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])
    6969        end
    7070        if printingflag,
     
    8585        end
    8686
    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])
    8888        if printingflag,
    8989                set(gcf,'Color','w')
     
    121121        result=results{i};
    122122        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,...
    127127                };
    128128end
Note: See TracChangeset for help on using the changeset viewer.