source: issm/trunk/test/NightlyRun/test417.m@ 20500

Last change on this file since 20500 was 20500, checked in by Mathieu Morlighem, 9 years ago

merged trunk-jpl and trunk for revision 20497

File size: 3.6 KB
Line 
1%Test Name: SquareSheetShelfDiadSSA3dDakotaSamp
2md=triangle(model(),'../Exp/Square.exp',150000.);
3md=setmask(md,'../Exp/SquareShelf.exp','');
4md=parameterize(md,'../Par/SquareSheetShelf.par');
5md=setflowequation(md,'SSA','all');
6md.cluster=generic('name',oshostname(),'np',3);
7md.materials.rho_ice=10^7; %involved in the mass flux, make it easy
8md.geometry.thickness(:)=1; %make it easy
9md.geometry.surface=md.geometry.base+md.geometry.thickness;
10
11%constrain all velocities to 1 m/yr, in the y-direction
12md.stressbalance.spcvx(:)=0;
13md.stressbalance.spcvy(:)=1;
14md.stressbalance.spcvz(:)=0;
15
16%Dakota options
17
18%dakota version
19version=IssmConfig('_DAKOTA_VERSION_'); version=version(1:3); version=str2num(version);
20
21md.qmu.variables.drag_coefficient=normal_uncertain('scaled_FrictionCoefficient',1,0.01);
22
23md.qmu.responses.MaxVel=response_function('MaxVel',[],[0.0001 0.001 0.01 0.25 0.5 0.75 0.99 0.999 0.9999]);
24md.qmu.responses.MassFlux1=response_function('indexed_MassFlux_1',[],[0.0001 0.001 0.01 0.25 0.5 0.75 0.99 0.999 0.9999]);
25md.qmu.responses.MassFlux2=response_function('indexed_MassFlux_2',[],[0.0001 0.001 0.01 0.25 0.5 0.75 0.99 0.999 0.9999]);
26md.qmu.responses.MassFlux3=response_function('indexed_MassFlux_3',[],[0.0001 0.001 0.01 0.25 0.5 0.75 0.99 0.999 0.9999]);
27md.qmu.responses.MassFlux4=response_function('indexed_MassFlux_4',[],[0.0001 0.001 0.01 0.25 0.5 0.75 0.99 0.999 0.9999]);
28md.qmu.responses.MassFlux5=response_function('indexed_MassFlux_5',[],[0.0001 0.001 0.01 0.25 0.5 0.75 0.99 0.999 0.9999]);
29md.qmu.responses.MassFlux6=response_function('indexed_MassFlux_6',[],[0.0001 0.001 0.01 0.25 0.5 0.75 0.99 0.999 0.9999]);
30md.qmu.responses.MassFlux7=response_function('indexed_MassFlux_7',[],[0.0001 0.001 0.01 0.25 0.5 0.75 0.99 0.999 0.9999]);
31
32%mass flux profiles
33md.qmu.mass_flux_profiles={'../Exp/MassFlux1.exp','../Exp/MassFlux2.exp','../Exp/MassFlux3.exp','../Exp/MassFlux4.exp','../Exp/MassFlux5.exp','../Exp/MassFlux6.exp','../Exp/Square.exp'};
34md.qmu.mass_flux_profile_directory=pwd;
35
36
37%% nond_sampling study
38
39md.qmu.method =dakota_method('nond_samp');
40md.qmu.method(end)=dmeth_params_set(md.qmu.method(end),...
41'seed',1234,...
42'samples',20,...
43'sample_type','lhs');
44
45%% a variety of parameters
46md.qmu.params.direct=true;
47md.qmu.params.analysis_components='';
48md.qmu.params.tabular_graphics_data=true;
49
50if version>=6,
51 md.qmu.params.analysis_driver='matlab';
52 md.qmu.params.evaluation_scheduling='master';
53 md.qmu.params.processors_per_evaluation=2;
54else
55 md.qmu.params.analysis_driver='stressbalance';
56 md.qmu.params.evaluation_concurrency=1;
57end
58
59
60%partitioning
61md.qmu.numberofpartitions=20;
62md=partitioner(md,'package','chaco','npart',md.qmu.numberofpartitions,'weighting','on');
63md.qmu.partition=md.qmu.partition-1;
64md.qmu.isdakota=1;
65
66md.stressbalance.reltol=10^-5; %tighten for qmu analyses
67
68md=solve(md,StressbalanceSolutionEnum(),'overwrite','y');
69
70%Fields and tolerances to track changes
71md.qmu.results=md.results.dakota;
72
73%ok, mass flux of 3 profiles should be -3 Gt/yr -3 Gt/yr and the sum, which is -6 Gt/yr
74%we recover those mass fluxes through the mean of the response.
75%also, we recover the max velo, which should be 1m/yr.
76%we put all that data in the montecarlo field, which we will use to test for success.
77%also, check that the stddev are 0.
78md.results.dakota.montecarlo=[];
79for i=1:8,
80 md.results.dakota.montecarlo=[md.results.dakota.montecarlo md.results.dakota.dresp_out(i).mean];
81end
82for i=1:8,
83 md.results.dakota.montecarlo=[md.results.dakota.montecarlo md.results.dakota.dresp_out(i).stddev];
84end
85field_names ={'montecarlo'};
86field_tolerances={1e-11};
87field_values={...
88 md.results.dakota.montecarlo,...
89 };
Note: See TracBrowser for help on using the repository browser.