Changeset 5614
- Timestamp:
- 08/27/10 13:05:24 (15 years ago)
- Location:
- issm/trunk/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/test/NightlyRun/test1208.m
r5606 r5614 19 19 %Adapt the time steps to the resolution 20 20 md.dt=20; 21 md.verbose=10;22 21 md.output_frequency=20; 23 22 24 23 %Now we can solve the problem 25 24 md=solve(md,'analysis_type',Transient3DSolutionEnum); 25 26 %Fields and tolerances to track changes 27 field_names ={'Vx','Vy','Vz','Vel','Pressure','Thickness','Bed','Surface','Temperature','MeltingRate'}; 28 field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-08}; 29 field_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.