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/test1204.m

    r9734 r10981  
    1818
    1919%plot results
    20 md.initialization.vx=PatchToVec(md.results.DiagnosticSolution.Vx);
    21 md.initialization.vy=PatchToVec(md.results.DiagnosticSolution.Vy);
     20md.initialization.vx=(md.results.DiagnosticSolution.Vx);
     21md.initialization.vy=(md.results.DiagnosticSolution.Vy);
    2222
    2323md.timestepping.time_step=1;
     
    2626md=solve(md,TransientSolutionEnum);
    2727
    28 plotmodel(md,'data',PatchToVec(md.results.TransientSolution(end).Vx))
     28plotmodel(md,'data',(md.results.TransientSolution(end).Vx))
    2929if printingflag,
    3030        set(gcf,'Color','w')
     
    3333end
    3434
    35 plotmodel(md,'data',PatchToVec(md.results.TransientSolution(end).Vy))
     35plotmodel(md,'data',(md.results.TransientSolution(end).Vy))
    3636if printingflag,
    3737        set(gcf,'Color','w')
     
    4040end
    4141
    42 plotmodel(md,'data',PatchToVec(md.results.TransientSolution(end).Thickness))
     42plotmodel(md,'data',(md.results.TransientSolution(end).Thickness))
    4343if printingflag,
    4444        set(gcf,'Color','w')
     
    5151field_tolerances={1e-13,1e-13,1e-13};
    5252field_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), ...
    5656        };
Note: See TracChangeset for help on using the changeset viewer.