source: issm/trunk-jpl/test/NightlyRun/test461.m@ 21387

Last change on this file since 21387 was 21387, checked in by Mathieu Morlighem, 8 years ago

CHG: relaxing tolerances

File size: 1.6 KB
Line 
1%Test Name: SquareSheetShelfThermalFSEstar
2md=triangle(model(),'../Exp/Square.exp',180000.);
3md=setmask(md,'../Exp/SquareShelf.exp','');
4md=parameterize(md,'../Par/SquareSheetShelf.par');
5md=extrude(md,3,1.);
6md.materials = matestar(md.materials);
7md.materials.rheology_B = 3.15e8*ones(md.mesh.numberofvertices,1);
8md.materials.rheology_Ec=ones(md.mesh.numberofvertices,1);
9md.materials.rheology_Es=3*ones(md.mesh.numberofvertices,1);
10
11md=setflowequation(md,'FS','all');
12md.initialization.waterfraction=zeros(md.mesh.numberofvertices,1);
13md.initialization.watercolumn=zeros(md.mesh.numberofvertices,1);
14md.transient.isstressbalance=0;
15md.transient.ismasstransport=0;
16md.transient.issmb=1;
17md.transient.isthermal=1;
18md.transient.isgroundingline=0;
19md.thermal.isenthalpy=1;
20md.thermal.isdynamicbasalspc=1;
21md.cluster=generic('name',oshostname(),'np',3);
22md=solve(md,'Transient');
23
24%Fields and tolerances to track changes
25field_names ={...
26 'Enthalpy1','Waterfraction1','Temperature1',...
27 'Enthalpy2','Waterfraction2','Temperature2',...
28 'Enthalpy3','Waterfraction3','Temperature3'};
29field_tolerances={...
30 1e-12,1e-11,1e-12,...
31 1e-12,1e-10,1e-12,...
32 1e-12,1e-9,1e-12};
33field_values={...
34 (md.results.TransientSolution(1).Enthalpy),...
35 (md.results.TransientSolution(1).Waterfraction),...
36 (md.results.TransientSolution(1).Temperature),...
37 (md.results.TransientSolution(2).Enthalpy),...
38 (md.results.TransientSolution(2).Waterfraction),...
39 (md.results.TransientSolution(2).Temperature),...
40 (md.results.TransientSolution(3).Enthalpy),...
41 (md.results.TransientSolution(3).Waterfraction),...
42 (md.results.TransientSolution(3).Temperature),...
43 };
Note: See TracBrowser for help on using the repository browser.