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

Last change on this file since 19868 was 19868, checked in by glperez, 9 years ago

CHG: Relaxed test432 parameter 'WaterFraction' for both Python and Matlab. Although, only Python was having an issue.

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,SteadystateSolutionEnum());
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,1e-10,3.2e-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.