Changeset 10981 for issm/trunk/test/NightlyRun/test1204.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/test1204.m
r9734 r10981 18 18 19 19 %plot results 20 md.initialization.vx= PatchToVec(md.results.DiagnosticSolution.Vx);21 md.initialization.vy= PatchToVec(md.results.DiagnosticSolution.Vy);20 md.initialization.vx=(md.results.DiagnosticSolution.Vx); 21 md.initialization.vy=(md.results.DiagnosticSolution.Vy); 22 22 23 23 md.timestepping.time_step=1; … … 26 26 md=solve(md,TransientSolutionEnum); 27 27 28 plotmodel(md,'data', PatchToVec(md.results.TransientSolution(end).Vx))28 plotmodel(md,'data',(md.results.TransientSolution(end).Vx)) 29 29 if printingflag, 30 30 set(gcf,'Color','w') … … 33 33 end 34 34 35 plotmodel(md,'data', PatchToVec(md.results.TransientSolution(end).Vy))35 plotmodel(md,'data',(md.results.TransientSolution(end).Vy)) 36 36 if printingflag, 37 37 set(gcf,'Color','w') … … 40 40 end 41 41 42 plotmodel(md,'data', PatchToVec(md.results.TransientSolution(end).Thickness))42 plotmodel(md,'data',(md.results.TransientSolution(end).Thickness)) 43 43 if printingflag, 44 44 set(gcf,'Color','w') … … 51 51 field_tolerances={1e-13,1e-13,1e-13}; 52 52 field_values={... 53 PatchToVec(md.results.TransientSolution(end).Vx), ...54 PatchToVec(md.results.TransientSolution(end).Vy), ...55 PatchToVec(md.results.TransientSolution(end).Thickness), ...53 (md.results.TransientSolution(end).Vx), ... 54 (md.results.TransientSolution(end).Vy), ... 55 (md.results.TransientSolution(end).Thickness), ... 56 56 };
Note:
See TracChangeset
for help on using the changeset viewer.