source: issm/trunk/test/NightlyRun/test233.m@ 22758

Last change on this file since 22758 was 22758, checked in by Mathieu Morlighem, 7 years ago

merged trunk-jpl and trunk for revision 22757

File size: 3.2 KB
RevLine 
[19105]1%Test Name: SquareShelfTranHOForcTemp
[13975]2md=triangle(model(),'../Exp/Square.exp',200000.);
[9641]3md=setmask(md,'all','');
[9023]4md=parameterize(md,'../Par/SquareShelf.par');
[13975]5md=extrude(md,3,1.);
[16137]6md=setflowequation(md,'HO','all');
[9023]7md.cluster=generic('name',oshostname(),'np',3);
[13975]8md.thermal.spctemperature=[md.thermal.spctemperature, md.thermal.spctemperature+5.; 1. 2.];
[9628]9md.timestepping.time_step=0.5;
[13975]10md.timestepping.final_time=2.;
[21341]11md=solve(md,'Transient');
[9023]12
13%Fields and tolerances to track changes
[18301]14field_names ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','BasalforcingsGroundediceMeltingRate1', ...
15 'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','BasalforcingsGroundediceMeltingRate2', ...
16 'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','BasalforcingsGroundediceMeltingRate3', ...
17 'Vx4','Vy4','Vz4','Vel4','Pressure4','Bed4','Surface4','Thickness4','Temperature4','BasalforcingsGroundediceMeltingRate4'};
[9023]18field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09, ...
[13975]19 1e-09,1e-09,1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06, ...
[20500]20 1e-08,1e-09,1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06, ...
[22758]21 1e-08,1e-09,1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06};
[9023]22field_values={...
[10976]23 (md.results.TransientSolution(1).Vx),...
24 (md.results.TransientSolution(1).Vy),...
25 (md.results.TransientSolution(1).Vz),...
26 (md.results.TransientSolution(1).Vel),...
27 (md.results.TransientSolution(1).Pressure),...
[17806]28 (md.results.TransientSolution(1).Base),...
[10976]29 (md.results.TransientSolution(1).Surface),...
30 (md.results.TransientSolution(1).Thickness),...
31 (md.results.TransientSolution(1).Temperature),...
[18301]32 (md.results.TransientSolution(1).BasalforcingsGroundediceMeltingRate),...
[10976]33 (md.results.TransientSolution(2).Vx),...
34 (md.results.TransientSolution(2).Vy),...
35 (md.results.TransientSolution(2).Vz),...
36 (md.results.TransientSolution(2).Vel),...
37 (md.results.TransientSolution(2).Pressure),...
[17806]38 (md.results.TransientSolution(2).Base),...
[10976]39 (md.results.TransientSolution(2).Surface),...
40 (md.results.TransientSolution(2).Thickness),...
41 (md.results.TransientSolution(2).Temperature),...
[18301]42 (md.results.TransientSolution(2).BasalforcingsGroundediceMeltingRate),...
[10976]43 (md.results.TransientSolution(3).Vx),...
44 (md.results.TransientSolution(3).Vy),...
45 (md.results.TransientSolution(3).Vz),...
46 (md.results.TransientSolution(3).Vel),...
47 (md.results.TransientSolution(3).Pressure),...
[17806]48 (md.results.TransientSolution(3).Base),...
[10976]49 (md.results.TransientSolution(3).Surface),...
50 (md.results.TransientSolution(3).Thickness),...
51 (md.results.TransientSolution(3).Temperature),...
[18301]52 (md.results.TransientSolution(3).BasalforcingsGroundediceMeltingRate),...
[10976]53 (md.results.TransientSolution(4).Vx),...
54 (md.results.TransientSolution(4).Vy),...
55 (md.results.TransientSolution(4).Vz),...
56 (md.results.TransientSolution(4).Vel),...
57 (md.results.TransientSolution(4).Pressure),...
[17806]58 (md.results.TransientSolution(4).Base),...
[10976]59 (md.results.TransientSolution(4).Surface),...
60 (md.results.TransientSolution(4).Thickness),...
61 (md.results.TransientSolution(4).Temperature),...
[18301]62 (md.results.TransientSolution(4).BasalforcingsGroundediceMeltingRate),...
[9023]63 };
Note: See TracBrowser for help on using the repository browser.