[19105] | 1 | %Test Name: SquareSheetShelfDiadSSA3dDakotaSamp
|
---|
[13975] | 2 | md=triangle(model(),'../Exp/Square.exp',150000.);
|
---|
[9641] | 3 | md=setmask(md,'../Exp/SquareShelf.exp','');
|
---|
[5118] | 4 | md=parameterize(md,'../Par/SquareSheetShelf.par');
|
---|
[16137] | 5 | md=setflowequation(md,'SSA','all');
|
---|
[8589] | 6 | md.cluster=generic('name',oshostname(),'np',3);
|
---|
[9636] | 7 | md.materials.rho_ice=10^7; %involved in the mass flux, make it easy
|
---|
[9691] | 8 | md.geometry.thickness(:)=1; %make it easy
|
---|
[20500] | 9 | md.geometry.surface=md.geometry.base+md.geometry.thickness;
|
---|
[5118] | 10 |
|
---|
| 11 | %constrain all velocities to 1 m/yr, in the y-direction
|
---|
[16137] | 12 | md.stressbalance.spcvx(:)=0;
|
---|
| 13 | md.stressbalance.spcvy(:)=1;
|
---|
| 14 | md.stressbalance.spcvz(:)=0;
|
---|
[5118] | 15 |
|
---|
| 16 | %Dakota options
|
---|
[20500] | 17 |
|
---|
| 18 | %dakota version
|
---|
| 19 | version=IssmConfig('_DAKOTA_VERSION_'); version=version(1:3); version=str2num(version);
|
---|
| 20 |
|
---|
[9652] | 21 | md.qmu.variables.drag_coefficient=normal_uncertain('scaled_FrictionCoefficient',1,0.01);
|
---|
[5118] | 22 |
|
---|
[9652] | 23 | md.qmu.responses.MaxVel=response_function('MaxVel',[],[0.0001 0.001 0.01 0.25 0.5 0.75 0.99 0.999 0.9999]);
|
---|
| 24 | md.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]);
|
---|
| 25 | md.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]);
|
---|
| 26 | md.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]);
|
---|
| 27 | md.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]);
|
---|
| 28 | md.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]);
|
---|
| 29 | md.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]);
|
---|
[11176] | 30 | md.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]);
|
---|
[5118] | 31 |
|
---|
| 32 | %mass flux profiles
|
---|
[11176] | 33 | md.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'};
|
---|
[9652] | 34 | md.qmu.mass_flux_profile_directory=pwd;
|
---|
[5118] | 35 |
|
---|
| 36 |
|
---|
| 37 | %% nond_sampling study
|
---|
| 38 |
|
---|
[9652] | 39 | md.qmu.method =dakota_method('nond_samp');
|
---|
| 40 | md.qmu.method(end)=dmeth_params_set(md.qmu.method(end),...
|
---|
[5118] | 41 | 'seed',1234,...
|
---|
| 42 | 'samples',20,...
|
---|
| 43 | 'sample_type','lhs');
|
---|
| 44 |
|
---|
| 45 | %% a variety of parameters
|
---|
[18301] | 46 | md.qmu.params.direct=true;
|
---|
[9652] | 47 | md.qmu.params.analysis_components='';
|
---|
[18301] | 48 | md.qmu.params.tabular_graphics_data=true;
|
---|
[5118] | 49 |
|
---|
[20500] | 50 | if version>=6,
|
---|
| 51 | md.qmu.params.analysis_driver='matlab';
|
---|
| 52 | md.qmu.params.evaluation_scheduling='master';
|
---|
| 53 | md.qmu.params.processors_per_evaluation=2;
|
---|
| 54 | else
|
---|
| 55 | md.qmu.params.analysis_driver='stressbalance';
|
---|
| 56 | md.qmu.params.evaluation_concurrency=1;
|
---|
| 57 | end
|
---|
| 58 |
|
---|
| 59 |
|
---|
[5118] | 60 | %partitioning
|
---|
[9652] | 61 | md.qmu.numberofpartitions=20;
|
---|
[9672] | 62 | md=partitioner(md,'package','chaco','npart',md.qmu.numberofpartitions,'weighting','on');
|
---|
[9652] | 63 | md.qmu.partition=md.qmu.partition-1;
|
---|
| 64 | md.qmu.isdakota=1;
|
---|
[5118] | 65 |
|
---|
[16137] | 66 | md.stressbalance.reltol=10^-5; %tighten for qmu analyses
|
---|
[5118] | 67 |
|
---|
[16137] | 68 | md=solve(md,StressbalanceSolutionEnum(),'overwrite','y');
|
---|
[5118] | 69 |
|
---|
| 70 | %Fields and tolerances to track changes
|
---|
[13021] | 71 | md.qmu.results=md.results.dakota;
|
---|
[5118] | 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.
|
---|
| 78 | md.results.dakota.montecarlo=[];
|
---|
[11176] | 79 | for i=1:8,
|
---|
[5118] | 80 | md.results.dakota.montecarlo=[md.results.dakota.montecarlo md.results.dakota.dresp_out(i).mean];
|
---|
| 81 | end
|
---|
[11176] | 82 | for i=1:8,
|
---|
[5118] | 83 | md.results.dakota.montecarlo=[md.results.dakota.montecarlo md.results.dakota.dresp_out(i).stddev];
|
---|
| 84 | end
|
---|
| 85 | field_names ={'montecarlo'};
|
---|
| 86 | field_tolerances={1e-11};
|
---|
| 87 | field_values={...
|
---|
| 88 | md.results.dakota.montecarlo,...
|
---|
| 89 | };
|
---|