source: issm/trunk-jpl/test/NightlyRun/test227.m@ 18068

Last change on this file since 18068 was 18068, checked in by seroussi, 11 years ago

NEW: reorganizing basal melting

File size: 2.4 KB
RevLine 
[13670]1md=triangle(model(),'../Exp/Square.exp',200000.);
[9641]2md=setmask(md,'all','');
[7045]3md=parameterize(md,'../Par/SquareShelf.par');
[13671]4md=extrude(md,3,1.);
[15565]5md=setflowequation(md,'HO','all');
[8589]6md.cluster=generic('name',oshostname(),'np',3);
[13580]7md.timestepping.time_adapt=1.;
[15598]8md.timestepping.final_time=15.;
[13581]9md=solve(md,TransientSolutionEnum());
[7045]10
11%Fields and tolerances to track changes
[18068]12field_names ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','BasalforcingsGroundediceMeltingRate1', ...
13 'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','BasalforcingsGroundediceMeltingRate2', ...
14 'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','BasalforcingsGroundediceMeltingRate3'};
[7045]15field_tolerances={...
16 1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,...
[7154]17 1e-09,1e-09,1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06,...
[15709]18 1e-08,1e-08,1e-08,1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-05};
[7045]19field_values={...
[10976]20 (md.results.TransientSolution(1).Vx),...
21 (md.results.TransientSolution(1).Vy),...
22 (md.results.TransientSolution(1).Vz),...
23 (md.results.TransientSolution(1).Vel),...
24 (md.results.TransientSolution(1).Pressure),...
[17555]25 (md.results.TransientSolution(1).Base),...
[10976]26 (md.results.TransientSolution(1).Surface),...
27 (md.results.TransientSolution(1).Thickness),...
28 (md.results.TransientSolution(1).Temperature),...
[18068]29 (md.results.TransientSolution(1).BasalforcingsGroundediceMeltingRate),...
[10976]30 (md.results.TransientSolution(2).Vx),...
31 (md.results.TransientSolution(2).Vy),...
32 (md.results.TransientSolution(2).Vz),...
33 (md.results.TransientSolution(2).Vel),...
34 (md.results.TransientSolution(2).Pressure),...
[17555]35 (md.results.TransientSolution(2).Base),...
[10976]36 (md.results.TransientSolution(2).Surface),...
37 (md.results.TransientSolution(2).Thickness),...
38 (md.results.TransientSolution(2).Temperature),...
[18068]39 (md.results.TransientSolution(2).BasalforcingsGroundediceMeltingRate),...
[10976]40 (md.results.TransientSolution(3).Vx),...
41 (md.results.TransientSolution(3).Vy),...
42 (md.results.TransientSolution(3).Vz),...
43 (md.results.TransientSolution(3).Vel),...
44 (md.results.TransientSolution(3).Pressure),...
[17555]45 (md.results.TransientSolution(3).Base),...
[10976]46 (md.results.TransientSolution(3).Surface),...
47 (md.results.TransientSolution(3).Thickness),...
48 (md.results.TransientSolution(3).Temperature),...
[18068]49 (md.results.TransientSolution(3).BasalforcingsGroundediceMeltingRate),...
[7045]50 };
Note: See TracBrowser for help on using the repository browser.