Changeset 5614


Ignore:
Timestamp:
08/27/10 13:05:24 (15 years ago)
Author:
seroussi
Message:

archive validation 1208

Location:
issm/trunk/test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/test/NightlyRun/test1208.m

    r5606 r5614  
    1919%Adapt the time steps to the resolution
    2020md.dt=20;
    21 md.verbose=10;
    2221md.output_frequency=20;
    2322
    2423%Now we can solve the problem
    2524md=solve(md,'analysis_type',Transient3DSolutionEnum);
     25
     26%Fields and tolerances to track changes
     27field_names     ={'Vx','Vy','Vz','Vel','Pressure','Thickness','Bed','Surface','Temperature','MeltingRate'};
     28field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08};
     29field_values={...
     30        PatchToVec(md.results.Transient3DSolution(end).Vx),...
     31        PatchToVec(md.results.Transient3DSolution(end).Vy),...
     32        PatchToVec(md.results.Transient3DSolution(end).Vz),...
     33        PatchToVec(md.results.Transient3DSolution(end).Vel),...
     34        PatchToVec(md.results.Transient3DSolution(end).Pressure),...
     35        PatchToVec(md.results.Transient3DSolution(end).Thickness),...
     36        PatchToVec(md.results.Transient3DSolution(end).Bed),...
     37        PatchToVec(md.results.Transient3DSolution(end).Surface),...
     38        PatchToVec(md.results.Transient3DSolution(end).Temperature),...
     39        PatchToVec(md.results.Transient3DSolution(end).MeltingRate),...
     40        };
Note: See TracChangeset for help on using the changeset viewer.