source: issm/trunk-jpl/test/NightlyRun/test133.m@ 10976

Last change on this file since 10976 was 10976, checked in by Mathieu Morlighem, 13 years ago

removed all PatchToVec not needed anymore as default is md.settings.results_as_patches = 0

File size: 577 bytes
Line 
1md=setmesh(model,'../Exp/Square.exp',150000);
2md=setmask(md,'all','');
3md=parameterize(md,'../Par/SquareShelfConstrained.par');
4md=extrude(md,5,1);
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,'macayeal','all');
9md.cluster=none;
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.