source: issm/oecreview/Archive/24307-24683/ISSM-24670-24671.diff

Last change on this file was 24684, checked in by Mathieu Morlighem, 5 years ago

CHG: added new review

File size: 5.6 KB
RevLine 
[24684]1Index: ../trunk-jpl/test/NightlyRun/test480.m
2===================================================================
3--- ../trunk-jpl/test/NightlyRun/test480.m (nonexistent)
4+++ ../trunk-jpl/test/NightlyRun/test480.m (revision 24671)
5@@ -0,0 +1,40 @@
6+%Test Name: TransientFrictionTsai
7+md=triangle(model(),'../Exp/Square.exp',150000.);
8+md=setmask(md,'../Exp/SquareShelf.exp','');
9+md=parameterize(md,'../Par/SquareSheetShelf.par');
10+md=extrude(md,4,1);
11+md=setflowequation(md,'HO','all');
12+md.transient.isthermal = 0;
13+md.friction=frictiontsai(md.friction);
14+md.friction.C = 20.e4*ones(md.mesh.numberofvertices,1);
15+md.friction.f = 0.5*ones(md.mesh.numberofvertices,1);
16+md.friction.m = 1./3.*ones(md.mesh.numberofelements,1);
17+md.cluster=generic('name',oshostname(),'np',3);
18+md=solve(md,'Transient');
19+
20+%Fields and tolerances to track changes
21+field_names ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
22+field_tolerances={2e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,2e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09};
23+field_values={...
24+ (md.results.TransientSolution(1).Vx),...
25+ (md.results.TransientSolution(1).Vy),...
26+ (md.results.TransientSolution(1).Vel),...
27+ (md.results.TransientSolution(1).Pressure),...
28+ (md.results.TransientSolution(1).Base),...
29+ (md.results.TransientSolution(1).Surface),...
30+ (md.results.TransientSolution(1).Thickness),...
31+ (md.results.TransientSolution(2).Vx),...
32+ (md.results.TransientSolution(2).Vy),...
33+ (md.results.TransientSolution(2).Vel),...
34+ (md.results.TransientSolution(2).Pressure),...
35+ (md.results.TransientSolution(2).Base),...
36+ (md.results.TransientSolution(2).Surface),...
37+ (md.results.TransientSolution(2).Thickness),...
38+ (md.results.TransientSolution(3).Vx),...
39+ (md.results.TransientSolution(3).Vy),...
40+ (md.results.TransientSolution(3).Vel),...
41+ (md.results.TransientSolution(3).Pressure),...
42+ (md.results.TransientSolution(3).Base),...
43+ (md.results.TransientSolution(3).Surface),...
44+ (md.results.TransientSolution(3).Thickness),...
45+ };
46Index: ../trunk-jpl/test/NightlyRun/test481.m
47===================================================================
48--- ../trunk-jpl/test/NightlyRun/test481.m (nonexistent)
49+++ ../trunk-jpl/test/NightlyRun/test481.m (revision 24671)
50@@ -0,0 +1,40 @@
51+%Test Name: TransientFrictionSchoof
52+md=triangle(model(),'../Exp/Square.exp',150000.);
53+md=setmask(md,'../Exp/SquareShelf.exp','');
54+md=parameterize(md,'../Par/SquareSheetShelf.par');
55+md=extrude(md,4,1);
56+md=setflowequation(md,'HO','all');
57+md.transient.isthermal = 0;
58+md.friction=frictionschoof(md.friction);
59+md.friction.C = 20.e4*ones(md.mesh.numberofvertices,1);
60+md.friction.Cmax = 0.5*ones(md.mesh.numberofvertices,1);
61+md.friction.m = 1./3.*ones(md.mesh.numberofelements,1);
62+md.cluster=generic('name',oshostname(),'np',3);
63+md=solve(md,'Transient');
64+
65+%Fields and tolerances to track changes
66+field_names ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
67+field_tolerances={2e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,2e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09};
68+field_values={...
69+ (md.results.TransientSolution(1).Vx),...
70+ (md.results.TransientSolution(1).Vy),...
71+ (md.results.TransientSolution(1).Vel),...
72+ (md.results.TransientSolution(1).Pressure),...
73+ (md.results.TransientSolution(1).Base),...
74+ (md.results.TransientSolution(1).Surface),...
75+ (md.results.TransientSolution(1).Thickness),...
76+ (md.results.TransientSolution(2).Vx),...
77+ (md.results.TransientSolution(2).Vy),...
78+ (md.results.TransientSolution(2).Vel),...
79+ (md.results.TransientSolution(2).Pressure),...
80+ (md.results.TransientSolution(2).Base),...
81+ (md.results.TransientSolution(2).Surface),...
82+ (md.results.TransientSolution(2).Thickness),...
83+ (md.results.TransientSolution(3).Vx),...
84+ (md.results.TransientSolution(3).Vy),...
85+ (md.results.TransientSolution(3).Vel),...
86+ (md.results.TransientSolution(3).Pressure),...
87+ (md.results.TransientSolution(3).Base),...
88+ (md.results.TransientSolution(3).Surface),...
89+ (md.results.TransientSolution(3).Thickness),...
90+ };
91Index: ../trunk-jpl/test/Archives/Archive480.arch
92===================================================================
93Cannot display: file marked as a binary type.
94svn:mime-type = application/octet-stream
95Index: ../trunk-jpl/test/Archives/Archive480.arch
96===================================================================
97--- ../trunk-jpl/test/Archives/Archive480.arch (nonexistent)
98+++ ../trunk-jpl/test/Archives/Archive480.arch (revision 24671)
99
100Property changes on: ../trunk-jpl/test/Archives/Archive480.arch
101___________________________________________________________________
102Added: svn:mime-type
103## -0,0 +1 ##
104+application/octet-stream
105\ No newline at end of property
106Index: ../trunk-jpl/test/Archives/Archive481.arch
107===================================================================
108Cannot display: file marked as a binary type.
109svn:mime-type = application/octet-stream
110Index: ../trunk-jpl/test/Archives/Archive481.arch
111===================================================================
112--- ../trunk-jpl/test/Archives/Archive481.arch (nonexistent)
113+++ ../trunk-jpl/test/Archives/Archive481.arch (revision 24671)
114
115Property changes on: ../trunk-jpl/test/Archives/Archive481.arch
116___________________________________________________________________
117Added: svn:mime-type
118## -0,0 +1 ##
119+application/octet-stream
120\ No newline at end of property
Note: See TracBrowser for help on using the repository browser.