source: issm/oecreview/Archive/21337-21723/ISSM-21393-21394.diff@ 21726

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

CHG added Archive/21337-21723

File size: 3.2 KB
RevLine 
[21726]1Index: ../trunk-jpl/test/NightlyRun/test260.m
2===================================================================
3--- ../trunk-jpl/test/NightlyRun/test260.m (revision 0)
4+++ ../trunk-jpl/test/NightlyRun/test260.m (revision 21394)
5@@ -0,0 +1,21 @@
6+%Test Name: SquareShelfStressSSA2dEnhanced
7+md=triangle(model(),'../Exp/Square.exp',150000.);
8+md=setmask(md,'all','');
9+md.materials=matenhancedice();
10+md.materials.rheology_B=3.15e8*ones(md.mesh.numberofvertices,1);
11+md.materials.rheology_n=3*ones(md.mesh.numberofelements,1);
12+md.materials.rheology_E=ones(md.mesh.numberofvertices,1);
13+md=parameterize(md,'../Par/SquareShelf.par');
14+md=setflowequation(md,'SSA','all');
15+md.cluster=generic('name',oshostname(),'np',3);
16+md=solve(md,'Stressbalance');
17+
18+%Fields and tolerances to track changes
19+field_names ={'Vx','Vy','Vel','Pressure'};
20+field_tolerances={1e-13,1e-13,1e-13,1e-13};
21+field_values={...
22+ (md.results.StressbalanceSolution.Vx),...
23+ (md.results.StressbalanceSolution.Vy),...
24+ (md.results.StressbalanceSolution.Vel),...
25+ (md.results.StressbalanceSolution.Pressure),...
26+ };
27Index: ../trunk-jpl/test/NightlyRun/test261.m
28===================================================================
29--- ../trunk-jpl/test/NightlyRun/test261.m (revision 0)
30+++ ../trunk-jpl/test/NightlyRun/test261.m (revision 21394)
31@@ -0,0 +1,28 @@
32+%Test Name: SquareShelfConstrainedTranEnhanced
33+md=triangle(model(),'../Exp/Square.exp',180000.);
34+md=setmask(md,'all','');
35+md=parameterize(md,'../Par/SquareShelfConstrained.par');
36+md=extrude(md,3,1.);
37+md=setflowequation(md,'SSA','all');
38+md.cluster=generic('name',oshostname(),'np',3);
39+md.materials=matenhancedice();
40+md.materials.rheology_B=3.15e8*ones(md.mesh.numberofvertices,1);
41+md.materials.rheology_n=3*ones(md.mesh.numberofelements,1);
42+md.materials.rheology_E=ones(md.mesh.numberofvertices,1);
43+md.transient.isstressbalance=1;
44+md.transient.ismasstransport=0;
45+md.transient.issmb=1;
46+md.transient.isthermal=1;
47+md.transient.isgroundingline=0;
48+md=solve(md,'Transient');
49+
50+%Fields and tolerances to track changes
51+field_names ={'Vx','Vy','Vel','Temperature','BasalforcingsGroundediceMeltingRate'};
52+field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
53+field_values={...
54+ (md.results.TransientSolution(1).Vx),...
55+ (md.results.TransientSolution(1).Vy),...
56+ (md.results.TransientSolution(1).Vel),...
57+ (md.results.TransientSolution(1).Temperature),...
58+ (md.results.TransientSolution(1).BasalforcingsGroundediceMeltingRate),...
59+ };
60Index: ../trunk-jpl/test/Archives/Archive260.arch
61===================================================================
62Cannot display: file marked as a binary type.
63svn:mime-type = application/octet-stream
64
65Property changes on: ../trunk-jpl/test/Archives/Archive260.arch
66___________________________________________________________________
67Added: svn:mime-type
68 + application/octet-stream
69
70Index: ../trunk-jpl/test/Archives/Archive261.arch
71===================================================================
72Cannot display: file marked as a binary type.
73svn:mime-type = application/octet-stream
74
75Property changes on: ../trunk-jpl/test/Archives/Archive261.arch
76___________________________________________________________________
77Added: svn:mime-type
78 + application/octet-stream
79
Note: See TracBrowser for help on using the repository browser.