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

Last change on this file since 15565 was 15565, checked in by Mathieu Morlighem, 12 years ago

CHG: hutter-> SIA macayeal->SSA pattyn->HO stokes->FS

File size: 997 bytes
RevLine 
[13670]1md=triangle(model(),'../Exp/Square.exp',150000.);
[11591]2md=setmask(md,'../Exp/SquareShelf.exp','');
3md=parameterize(md,'../Par/SquareSheetShelf.par');
[13671]4md=extrude(md,3,2.);
[15565]5md=setflowequation(md,'HO','all');
[11591]6md.cluster=generic('name',oshostname(),'np',3);
[13681]7md.timestepping.time_step=0.;
[11591]8md.thermal.isenthalpy=1;
9md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1);
[13663]10md=solve(md,SteadystateSolutionEnum());
[11591]11
12%Fields and tolerances to track changes
[11604]13field_names ={'Vx','Vy','Vz','Vel','Pressure','Temperature','Water fraction','Enthalpy'};
[11609]14field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-13,1e-10,1e-10,1e-10};
[11591]15field_values={...
16 (md.results.SteadystateSolution.Vx),...
17 (md.results.SteadystateSolution.Vy),...
18 (md.results.SteadystateSolution.Vz),...
19 (md.results.SteadystateSolution.Vel),...
20 (md.results.SteadystateSolution.Pressure),...
21 (md.results.SteadystateSolution.Temperature),...
[11604]22 (md.results.SteadystateSolution.Waterfraction),...
23 (md.results.SteadystateSolution.Enthalpy),...
[11591]24 };
Note: See TracBrowser for help on using the repository browser.