source: issm/trunk-jpl/test/NightlyRun/test432.m@ 28089

Last change on this file since 28089 was 28089, checked in by jdquinn, 14 months ago

CHG: Adjusted tolerances

File size: 1.1 KB
Line 
1%Test Name: SquareSheetShelfSteaEnthalpyHO
2md=triangle(model(),'../Exp/Square.exp',150000.);
3md=setmask(md,'../Exp/SquareShelf.exp','');
4md=parameterize(md,'../Par/SquareSheetShelf.par');
5md=extrude(md,3,2.);
6md=setflowequation(md,'HO','all');
7md.cluster=generic('name',oshostname(),'np',3);
8md.timestepping.time_step=0.;
9md.thermal.isenthalpy=1;
10md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1);
11md.initialization.watercolumn=zeros(md.mesh.numberofvertices,1);
12md=solve(md,'Steadystate');
13
14%Fields and tolerances to track changes
15field_names ={'Vx','Vy','Vz','Vel','Pressure','Temperature','Waterfraction','Enthalpy'};
16field_tolerances={3e-09,1e-09,1e-09,1e-09,1e-13,2e-10,5e-10,3e-9};
17field_values={...
18 (md.results.SteadystateSolution.Vx),...
19 (md.results.SteadystateSolution.Vy),...
20 (md.results.SteadystateSolution.Vz),...
21 (md.results.SteadystateSolution.Vel),...
22 (md.results.SteadystateSolution.Pressure),...
23 (md.results.SteadystateSolution.Temperature),...
24 (md.results.SteadystateSolution.Waterfraction),...
25 (md.results.SteadystateSolution.Enthalpy),...
26 };
Note: See TracBrowser for help on using the repository browser.