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

Last change on this file was 23444, checked in by jdquinn, 6 years ago

CHG: Eased tolerance

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