source: issm/trunk-jpl/test/NightlyRun/test116.m@ 19049

Last change on this file since 19049 was 19049, checked in by Mathieu Morlighem, 10 years ago

NEW: test name is now included in the file itself so that people don't forget to include it

File size: 633 bytes
Line 
1%Test Name: SquareShelfConstrainedBalThic2d
2md=triangle(model(),'../Exp/Square.exp',150000.);
3md=setmask(md,'all','');
4md=parameterize(md,'../Par/SquareShelfConstrained.par');
5%Add boundary conditions on thickness on the border
6pos=find(md.mesh.vertexonboundary);
7md.balancethickness.spcthickness(pos)=md.geometry.thickness(pos);
8md=setflowequation(md,'SSA','all');
9md.cluster=generic('name',oshostname(),'np',3);
10md=solve(md,BalancethicknessSolutionEnum());
11
12%Fields and tolerances to track changes
13field_names ={'Thickness'};
14field_tolerances={1e-13};
15field_values={...
16 (md.results.BalancethicknessSolution.Thickness),...
17 };
Note: See TracBrowser for help on using the repository browser.