| 1 | function ismodelselfconsistent(md),
|
|---|
| 2 | %ISMODELSELFCONSISTENT - check that model forms a closed form solvable problem.
|
|---|
| 3 | %
|
|---|
| 4 | % Usage:
|
|---|
| 5 | % ismodelselfconsistent(md),
|
|---|
| 6 |
|
|---|
| 7 | %tolerance we use in litmus checks for the consistency of the model
|
|---|
| 8 | tolerance=10^-12;
|
|---|
| 9 | %check usage {{{1
|
|---|
| 10 | if nargin~=1,
|
|---|
| 11 | help ismodelselfconsistent
|
|---|
| 12 | error('ismodelselfconsistent error message: wrong usage');
|
|---|
| 13 | end
|
|---|
| 14 | %}}}
|
|---|
| 15 |
|
|---|
| 16 | %recursive call for TRANSIENT {{{1
|
|---|
| 17 | if (md.analysis_type==Transient2DSolutionEnum | md.analysis_type==Transient3DSolutionEnum),
|
|---|
| 18 | if md.dt<=0,
|
|---|
| 19 | error('model not consistent: field dt must be positive for a transient run')
|
|---|
| 20 | end
|
|---|
| 21 |
|
|---|
| 22 | %recursive call to ismodelselfconsistent
|
|---|
| 23 | if (md.dim==2),
|
|---|
| 24 | analysis=[DiagnosticSolutionEnum PrognosticSolutionEnum];
|
|---|
| 25 | else
|
|---|
| 26 | analysis=[DiagnosticSolutionEnum PrognosticSolutionEnum ThermalSolutionEnum];
|
|---|
| 27 | end
|
|---|
| 28 |
|
|---|
| 29 | for i=1:length(analysis),
|
|---|
| 30 | md.analysis_type=analysis(i);
|
|---|
| 31 | ismodelselfconsistent(md);
|
|---|
| 32 | end
|
|---|
| 33 | end
|
|---|
| 34 | %}}}
|
|---|
| 35 |
|
|---|
| 36 | % Common checks
|
|---|
| 37 | %COUNTER {{{1
|
|---|
| 38 | if md.counter<3,
|
|---|
| 39 | error(['model ' md.name ' is not correctly configured. You forgot one step in the following sequence (mesh, geography, parameterize,setelementstype)!']);
|
|---|
| 40 | end
|
|---|
| 41 | %}}}
|
|---|
| 42 | %NAME{{{1
|
|---|
| 43 | if isempty(md.name),
|
|---|
| 44 | error(['model is not correctly configured: missing name!']);
|
|---|
| 45 | end
|
|---|
| 46 | %}}}
|
|---|
| 47 | %ELEMENTS{{{1
|
|---|
| 48 | fields={'elements'};
|
|---|
| 49 | if (md.dim==2),
|
|---|
| 50 | checksize(md,fields,[md.numberofelements 3]);
|
|---|
| 51 | else
|
|---|
| 52 | checksize(md,fields,[md.numberofelements 6]);
|
|---|
| 53 | end
|
|---|
| 54 | %}}}
|
|---|
| 55 | %ELEMENTSTYPE{{{1
|
|---|
| 56 | %Check the size of elements_type
|
|---|
| 57 | fields={'elements_type'};
|
|---|
| 58 | checksize(md,fields,[md.numberofelements 2]);
|
|---|
| 59 | %Check the values of elements_type(1)
|
|---|
| 60 | checkvalues(md,{'elements_type(:,1)'},[MacAyealApproximationEnum() HutterApproximationEnum() PattynApproximationEnum() MacAyealPattynApproximationEnum()]);
|
|---|
| 61 | %Check the values of elements_type(2)
|
|---|
| 62 | checkvalues(md,{'elements_type(:,2)'},[StokesApproximationEnum() NoneApproximationEnum()]);
|
|---|
| 63 | if (md.dim==2),
|
|---|
| 64 | checkvalues(md,{'elements_type(:,1)'},[MacAyealApproximationEnum() HutterApproximationEnum()]);
|
|---|
| 65 | end
|
|---|
| 66 | if (md.ismacayealpattyn==0 && md.ishutter==0 && md.isstokes==0),
|
|---|
| 67 | error(['model not consistent: no elements type set for this model. at least one of ismacayealpattyn, ishutter and isstokes need to be =1']);
|
|---|
| 68 | end
|
|---|
| 69 | %}}}
|
|---|
| 70 | %VERTICESTYPE{{{1
|
|---|
| 71 | %Check the size of verticess_type
|
|---|
| 72 | fields={'vertices_type'};
|
|---|
| 73 | checksize(md,fields,[md.numberofgrids 2]);
|
|---|
| 74 | %Check the values of elements_type(1)
|
|---|
| 75 | checkvalues(md,{'elements_type(:,1)'},[MacAyealApproximationEnum() HutterApproximationEnum() PattynApproximationEnum() MacAyealPattynApproximationEnum()]);
|
|---|
| 76 | %Check the values of elements_type(2)
|
|---|
| 77 | checkvalues(md,{'elements_type(:,2)'},[StokesApproximationEnum() NoneApproximationEnum()]);
|
|---|
| 78 | if (md.dim==2),
|
|---|
| 79 | checkvalues(md,{'elements_type(:,1)'},[MacAyealApproximationEnum() HutterApproximationEnum()]);
|
|---|
| 80 | end
|
|---|
| 81 | if (md.ismacayealpattyn==0 && md.ishutter==0 && md.isstokes==0),
|
|---|
| 82 | error(['model not consistent: no elements type set for this model. at least one of ismacayealpattyn, ishutter and isstokes need to be =1']);
|
|---|
| 83 | end
|
|---|
| 84 | %}}}
|
|---|
| 85 | %DG {{{1
|
|---|
| 86 | if md.prognostic_DG==1;
|
|---|
| 87 | %CHECK THE COMPATIBILITY OF THE EDGES
|
|---|
| 88 | fields={'edges'};
|
|---|
| 89 | checksize(md,fields,[NaN 4]);
|
|---|
| 90 | checknan(md,fields);
|
|---|
| 91 | end
|
|---|
| 92 | %}}}
|
|---|
| 93 | %PRESSURELOAD{{{1
|
|---|
| 94 | if (md.dim==2),
|
|---|
| 95 | fields={'pressureload'};
|
|---|
| 96 | checksize(md,fields,[NaN 4]);
|
|---|
| 97 | elseif md.dim==3,
|
|---|
| 98 | fields={'pressureload'};
|
|---|
| 99 | checksize(md,fields,[NaN 6]);
|
|---|
| 100 | else
|
|---|
| 101 | error('dim should be either 2 3');
|
|---|
| 102 | end
|
|---|
| 103 | checkvalues(md,{'pressureload(:,end)'},[WaterEnum() AirEnum()]);
|
|---|
| 104 | %}}}
|
|---|
| 105 | %NO NAN {{{1
|
|---|
| 106 | fields={'numberofelements','numberofgrids','x','y','z','drag_coefficient','drag_type','drag_p','drag_q',...
|
|---|
| 107 | 'rho_ice','rho_water','rheology_B','elementoniceshelf','surface','thickness','bed','g','lowmem','sparsity','nsteps','maxiter',...
|
|---|
| 108 | 'tolx','np','eps_res','max_nonlinear_iterations','exclusive','rheology_n','gridonbed','gridonsurface','elementonbed','elementonsurface','deltaH','DeltaH','timeacc','timedec'};
|
|---|
| 109 | checknan(md,fields);
|
|---|
| 110 | %}}}}
|
|---|
| 111 | %FIELDS >= 0 {{{1
|
|---|
| 112 | fields={'numberofelements','numberofgrids','elements','drag_coefficient','drag_type','drag_p','drag_q',...
|
|---|
| 113 | 'rho_ice','rho_water','rheology_B','elementoniceshelf','thickness','g','eps_res','max_nonlinear_iterations','eps_rel','eps_abs','nsteps','maxiter','tolx','exclusive',...
|
|---|
| 114 | 'sparsity','lowmem','rheology_n','gridonbed','gridonsurface','elementonbed','elementonsurface','deltaH','DeltaH','timeacc','timedec'};
|
|---|
| 115 | checkgreater(md,fields,0);
|
|---|
| 116 | %}}}
|
|---|
| 117 | %FIELDS > 0 {{{1
|
|---|
| 118 | fields={'numberofelements','numberofgrids','elements','drag_type','drag_p',...
|
|---|
| 119 | 'rho_ice','rho_water','rheology_B','thickness','g','max_nonlinear_iterations','eps_res','eps_rel','eps_abs','maxiter','tolx',...
|
|---|
| 120 | 'sparsity','deltaH','DeltaH','timeacc','timedec'};
|
|---|
| 121 | checkgreaterstrict(md,fields,0);
|
|---|
| 122 | %}}}
|
|---|
| 123 | %SIZE NUMBEROFELEMENTS {{{1
|
|---|
| 124 | fields={'drag_p','drag_q','elementoniceshelf','rheology_n','elementonbed'};
|
|---|
| 125 | checksize(md,fields,[md.numberofelements 1]);
|
|---|
| 126 | %}}}
|
|---|
| 127 | %SIZE NUMBEROFGRIDS {{{1
|
|---|
| 128 | fields={'x','y','z','rheology_B','drag_coefficient','melting_rate','accumulation_rate','surface','thickness','bed','gridonbed','gridonsurface'};
|
|---|
| 129 | checksize(md,fields,[md.numberofgrids 1]);
|
|---|
| 130 | %}}}
|
|---|
| 131 | %OTHER SIZES {{{1
|
|---|
| 132 | fields={'spcvelocity'};
|
|---|
| 133 | checksize(md,fields,[md.numberofgrids 6]);
|
|---|
| 134 | %}}}
|
|---|
| 135 | %THICKNESS = SURFACE - BED {{{1
|
|---|
| 136 | if any((md.thickness-md.surface+md.bed)>tolerance),
|
|---|
| 137 | error(['model not consistent: model ' md.name ' violates the equality thickness=surface-bed!']);
|
|---|
| 138 | end
|
|---|
| 139 | %}}}
|
|---|
| 140 | %RIFTS{{{1
|
|---|
| 141 | if md.numrifts,
|
|---|
| 142 | if ~(md.dim==2),
|
|---|
| 143 | error(['model not consistent: models with rifts are only supported in 2d for now!']);
|
|---|
| 144 | end
|
|---|
| 145 | if ~isstruct(md.rifts),
|
|---|
| 146 | error(['model not consistent: md.rifts should be a structure!']);
|
|---|
| 147 | end
|
|---|
| 148 | if ~isempty(find(md.segmentmarkers>=2)),
|
|---|
| 149 | %We have segments with rift markers, but no rift structure!
|
|---|
| 150 | error(['model not consistent: model ' md.name ' should be processed for rifts (run meshprocessrifts)!']);
|
|---|
| 151 | end
|
|---|
| 152 | %Check that rifts are filled with proper material
|
|---|
| 153 | checkvalues(md,{'rifts.fill'},[WaterEnum() AirEnum() IceEnum() MelangeEnum()]);
|
|---|
| 154 | else
|
|---|
| 155 | if ~isnans(md.rifts),
|
|---|
| 156 | error(['model not consistent: md.rifts shoud be NaN since md.numrifts is 0!']);
|
|---|
| 157 | end
|
|---|
| 158 | end
|
|---|
| 159 | %}}}
|
|---|
| 160 | %FLAGS (0 or 1){{{1
|
|---|
| 161 | if ~ismember(md.artificial_diffusivity,[0 1]),
|
|---|
| 162 | error('model not consistent: artificial_diffusivity should be a scalar (1 or 0)');
|
|---|
| 163 | end
|
|---|
| 164 | if ~ismember(md.prognostic_DG,[0 1]),
|
|---|
| 165 | error('model not consistent: prognostic_DG should be a scalar (1 or 0)');
|
|---|
| 166 | end
|
|---|
| 167 | if ~ismember(md.lowmem,[0 1]),
|
|---|
| 168 | error(['model not consistent: model ' md.name ' lowmem field should be 0 or 1']);
|
|---|
| 169 | end
|
|---|
| 170 | %}}}
|
|---|
| 171 | %PARAMETEROUTPUT {{{1
|
|---|
| 172 | if md.numoutput~=length(md.parameteroutput),
|
|---|
| 173 | error('model not consistent: numoutput should be the same size as parameteroutput');
|
|---|
| 174 | end
|
|---|
| 175 | %}}}
|
|---|
| 176 | %CONNECTIVITY {{{1
|
|---|
| 177 | if (md.dim==2),
|
|---|
| 178 | if md.connectivity<9,
|
|---|
| 179 | error('model not consistent: connectivity should be at least 9 for 2d models');
|
|---|
| 180 | end
|
|---|
| 181 | end
|
|---|
| 182 | if md.dim==3,
|
|---|
| 183 | if md.connectivity<24,
|
|---|
| 184 | error('model not consistent: connectivity should be at least 24 for 3d models');
|
|---|
| 185 | end
|
|---|
| 186 | end
|
|---|
| 187 | %}}}
|
|---|
| 188 | %PARALLEL{{{1
|
|---|
| 189 | if ~strcmpi(md.cluster,'none'),
|
|---|
| 190 |
|
|---|
| 191 | %NAN VALUES
|
|---|
| 192 | fields={'time','np'};
|
|---|
| 193 | checknan(md,fields);
|
|---|
| 194 |
|
|---|
| 195 | %FIELD > 0
|
|---|
| 196 | fields={'time','np'};
|
|---|
| 197 | checkgreaterstrict(md,fields,0);
|
|---|
| 198 |
|
|---|
| 199 | end
|
|---|
| 200 | %}}}
|
|---|
| 201 |
|
|---|
| 202 | % Solution checks
|
|---|
| 203 | %DIAGNOSTIC{{{1
|
|---|
| 204 | if md.analysis_type==DiagnosticSolutionEnum,
|
|---|
| 205 |
|
|---|
| 206 | %HUTTER ON ICESHELF WARNING
|
|---|
| 207 | if any(md.elements_type(:,1)==HutterApproximationEnum & md.elementoniceshelf),
|
|---|
| 208 | disp(sprintf('\n !!! Warning: Hutter''s model is not consistent on ice shelves !!!\n'));
|
|---|
| 209 | end
|
|---|
| 210 |
|
|---|
| 211 | %SINGULAR
|
|---|
| 212 | if ~any(sum(md.spcvelocity(:,1:2),2)==2),
|
|---|
| 213 | error(['model not consistent: model ' md.name ' is not well posed (singular). You need at least one grid with fixed velocity!'])
|
|---|
| 214 | end
|
|---|
| 215 |
|
|---|
| 216 | %DIRICHLET IF THICKNESS <= 0
|
|---|
| 217 | if any(md.thickness<=0),
|
|---|
| 218 | pos=find(md.thickness<=0);
|
|---|
| 219 | if any(find(md.spcthickness(pos,1)==0)),
|
|---|
| 220 | error(['model not consistent: model ' md.name ' has some grids with 0 thickness']);
|
|---|
| 221 | end
|
|---|
| 222 | end
|
|---|
| 223 |
|
|---|
| 224 | %INITIAL VELOCITY
|
|---|
| 225 | if length(md.vx)==md.numberofgrids & length(md.vy)==md.numberofgrids,
|
|---|
| 226 | fields={'vx','vy'};
|
|---|
| 227 | checknan(md,fields);
|
|---|
| 228 | end
|
|---|
| 229 | end
|
|---|
| 230 | %}}}
|
|---|
| 231 | %PROGNOSTIC{{{1
|
|---|
| 232 | if md.analysis_type==PrognosticSolutionEnum,
|
|---|
| 233 |
|
|---|
| 234 | %INITIAL VELOCITIES
|
|---|
| 235 | fields={'vx','vy'};
|
|---|
| 236 | checksize(md,fields,[md.numberofgrids 1]);
|
|---|
| 237 | checknan(md,fields);
|
|---|
| 238 |
|
|---|
| 239 | %CHECK THAT WE ARE NOT FULLY CONSTRAINED
|
|---|
| 240 | if (md.dim==2),
|
|---|
| 241 | if isempty(find(~md.spcthickness(:,1))),
|
|---|
| 242 | error(['model not consistent: model ' md.name ' is totally constrained for prognostic, no need to solve!']);
|
|---|
| 243 | end
|
|---|
| 244 | end
|
|---|
| 245 |
|
|---|
| 246 | end
|
|---|
| 247 | %}}}
|
|---|
| 248 | %STEADYSTATE{{{1
|
|---|
| 249 | if md.analysis_type==SteadystateSolutionEnum,
|
|---|
| 250 |
|
|---|
| 251 | %NDT
|
|---|
| 252 | if md.dt~=0,
|
|---|
| 253 | error(['model not consistent: for a steadystate computation, dt must be zero.']);
|
|---|
| 254 | end
|
|---|
| 255 |
|
|---|
| 256 | %PRESSURE
|
|---|
| 257 | if isnans(md.pressure),
|
|---|
| 258 | error(['model not consistent: for a steadystate computation, the model must have an initial pressure, even lithostatic will do.']);
|
|---|
| 259 | end
|
|---|
| 260 |
|
|---|
| 261 | %eps:
|
|---|
| 262 | if isnan(md.eps_rel),
|
|---|
| 263 | error(['model not consistent: for a steadystate computation, eps_rel (relative convergence criterion) must be defined!']);
|
|---|
| 264 | end
|
|---|
| 265 |
|
|---|
| 266 | %dim:
|
|---|
| 267 | if (md.dim==2),
|
|---|
| 268 | error(['model not consistent: for a steadystate computation, model needs to be 3d']);
|
|---|
| 269 | end
|
|---|
| 270 | end
|
|---|
| 271 | %}}}
|
|---|
| 272 | %THERMAL {{{1
|
|---|
| 273 | %THERMAL STEADY AND THERMAL TRANSIENT
|
|---|
| 274 | if md.analysis_type==ThermalSolutionEnum,
|
|---|
| 275 |
|
|---|
| 276 | %EXTRUSION
|
|---|
| 277 | if (md.dim==2),
|
|---|
| 278 | error(['model not consistent: for a ' md.analysis_type ' computation, the model must be 3d, extrude it first!'])
|
|---|
| 279 | end
|
|---|
| 280 |
|
|---|
| 281 | %CHECK THAT WE ARE NOT FULLY CONSTRAINED
|
|---|
| 282 | if isempty(find(~md.spctemperature(:,1))),
|
|---|
| 283 | error(['model not consistent: model ' md.name ' is totally constrained for temperature, no need to solve!']);
|
|---|
| 284 | end
|
|---|
| 285 |
|
|---|
| 286 | %VELOCITIES AND PRESSURE
|
|---|
| 287 | fields={'vx','vy','vz','pressure'};
|
|---|
| 288 | checksize(md,fields,[md.numberofgrids 1]);
|
|---|
| 289 | checknan(md,fields);
|
|---|
| 290 |
|
|---|
| 291 | end
|
|---|
| 292 |
|
|---|
| 293 | %THERMAL TRANSIENT
|
|---|
| 294 | if md.analysis_type==ThermalSolutionEnum & md.dt~=0,
|
|---|
| 295 |
|
|---|
| 296 | %DT and NDT
|
|---|
| 297 | fields={'dt','ndt'};
|
|---|
| 298 | checkgreaterstrict(md,fields,0);
|
|---|
| 299 |
|
|---|
| 300 | %INITIAL TEMPERATURE, MELTING AND ACCUMULATION
|
|---|
| 301 | fields={'temperature','accumulation_rate','melting_rate'};
|
|---|
| 302 | checksize(md,fields,[md.numberofgrids 1]);
|
|---|
| 303 | checknan(md,fields);
|
|---|
| 304 |
|
|---|
| 305 | %INITIAL TEMPERATURE
|
|---|
| 306 | fields={'temperature','spctemperature(:,2)','observed_temperature'};
|
|---|
| 307 | checkgreater(md,fields,0)
|
|---|
| 308 |
|
|---|
| 309 | end
|
|---|
| 310 | %}}}
|
|---|
| 311 | %BALANCEDTHICKNESS{{{1
|
|---|
| 312 | if md.analysis_type==BalancedthicknessSolutionEnum
|
|---|
| 313 |
|
|---|
| 314 | %VELOCITIES MELTING AND ACCUMULATION
|
|---|
| 315 | fields={'vx','vy','accumulation_rate','melting_rate','dhdt'};
|
|---|
| 316 | checksize(md,fields,[md.numberofgrids 1]);
|
|---|
| 317 | checknan(md,fields);
|
|---|
| 318 |
|
|---|
| 319 | %SPC
|
|---|
| 320 | if ~md.prognostic_DG,
|
|---|
| 321 | if any(md.spcthickness(find(md.gridonboundary))~=1),
|
|---|
| 322 | error(['model not consistent: model ' md.name ' should have all the nodes on boundary constrained in field spcthickness']);
|
|---|
| 323 | end
|
|---|
| 324 | end
|
|---|
| 325 | end
|
|---|
| 326 | %}}}
|
|---|
| 327 | %BALANCEDVELOCITIES{{{1
|
|---|
| 328 | if md.analysis_type==BalancedvelocitiesSolutionEnum
|
|---|
| 329 |
|
|---|
| 330 | %VELOCITIES MELTING AND ACCUMULATION
|
|---|
| 331 | fields={'vx','vy','accumulation_rate','melting_rate'};
|
|---|
| 332 | checksize(md,fields,[md.numberofgrids 1]);
|
|---|
| 333 | checknan(md,fields);
|
|---|
| 334 |
|
|---|
| 335 | %SPC
|
|---|
| 336 | if any(md.spcvelocity(find(md.gridonboundary),[1:2])~=1),
|
|---|
| 337 | error(['model not consistent: model ' md.name ' should have all the nodes on boundary constrained in field spcvelocity']);
|
|---|
| 338 | end
|
|---|
| 339 | end
|
|---|
| 340 | %}}}
|
|---|
| 341 | %CONTROL{{{1
|
|---|
| 342 | if md.control_analysis,
|
|---|
| 343 |
|
|---|
| 344 | %CONTROL TYPE
|
|---|
| 345 | if ~isnumeric(md.control_type),
|
|---|
| 346 | error('model not consistent: control_type should be an enum');
|
|---|
| 347 | end
|
|---|
| 348 | checkvalues(md,{'control_type'},[DhDtEnum DragCoefficientEnum RheologyBbarEnum]);
|
|---|
| 349 |
|
|---|
| 350 | %LENGTH CONTROL FIELDS
|
|---|
| 351 | fields={'maxiter','optscal','cm_responses','cm_jump'};
|
|---|
| 352 | checksize(md,fields,[md.nsteps 1]);
|
|---|
| 353 |
|
|---|
| 354 | %RESPONSES
|
|---|
| 355 | checkvalues(md,{'cm_responses'},[SurfaceAbsVelMisfitEnum SurfaceRelVelMisfitEnum SurfaceLogVelMisfitEnum SurfaceLogVxVyMisfitEnum SurfaceAverageVelMisfitEnum ThicknessAbsMisfitEnum]);
|
|---|
| 356 |
|
|---|
| 357 | %WEIGHTS
|
|---|
| 358 | fields={'weights'};
|
|---|
| 359 | checksize(md,fields,[md.numberofgrids 1]);
|
|---|
| 360 | checkgreater(md,fields,0);
|
|---|
| 361 |
|
|---|
| 362 | %OBSERVED VELOCITIES
|
|---|
| 363 | if md.analysis_type==BalancedthicknessSolutionEnum
|
|---|
| 364 | fields={'thickness_obs'};
|
|---|
| 365 | checksize(md,fields,[md.numberofgrids 1]);
|
|---|
| 366 | checknan(md,fields);
|
|---|
| 367 | else
|
|---|
| 368 | fields={'vx_obs','vy_obs'};
|
|---|
| 369 | checksize(md,fields,[md.numberofgrids 1]);
|
|---|
| 370 | checknan(md,fields);
|
|---|
| 371 | end
|
|---|
| 372 |
|
|---|
| 373 | %DIRICHLET IF THICKNESS <= 0
|
|---|
| 374 | if any(md.thickness<=0),
|
|---|
| 375 | pos=find(md.thickness<=0);
|
|---|
| 376 | if any(find(md.spcthickness(pos,1)==0)),
|
|---|
| 377 | error(['model not consistent: model ' md.name ' has some grids with 0 thickness']);
|
|---|
| 378 | end
|
|---|
| 379 | end
|
|---|
| 380 |
|
|---|
| 381 | %parameters
|
|---|
| 382 | fields={'cm_noisedmp'};
|
|---|
| 383 | checknan(md,fields);
|
|---|
| 384 | end
|
|---|
| 385 | %}}}
|
|---|
| 386 | %QMU {{{1
|
|---|
| 387 | if md.qmu_analysis,
|
|---|
| 388 | if md.qmu_params.evaluation_concurrency~=1,
|
|---|
| 389 | error(['model not consistent: concurrency should be set to 1 when running dakota in library mode']);
|
|---|
| 390 | end
|
|---|
| 391 | if ~isempty(md.part),
|
|---|
| 392 | if numel(md.part)~=md.numberofgrids,
|
|---|
| 393 | error(['model not consistent: user supplied partition for qmu analysis should have size md.numberofgrids x 1 ']);
|
|---|
| 394 | end
|
|---|
| 395 | if find(md.part)>=md.numberofgrids,
|
|---|
| 396 | error(['model not consistent: user supplied partition should be indexed from 0 (c-convention)']);
|
|---|
| 397 | end
|
|---|
| 398 | if min(md.part)~=0,
|
|---|
| 399 | error(['model not consistent: partition vector not indexed from 0 on']);
|
|---|
| 400 | end
|
|---|
| 401 | if max(md.part)>=md.numberofgrids,
|
|---|
| 402 | error(['model not consistent: partition vector cannot have maximum index larger than number of grids']);
|
|---|
| 403 | end
|
|---|
| 404 | if ~isempty(find(md.part<0)),
|
|---|
| 405 | error(['model not consistent: partition vector cannot have values less than 0']);
|
|---|
| 406 | end
|
|---|
| 407 | if ~isempty(find(md.part>=md.npart)),
|
|---|
| 408 | error(['model not consistent: partition vector cannot have values more than md.npart-1']);
|
|---|
| 409 | end
|
|---|
| 410 | if max(md.part)>=md.npart,
|
|---|
| 411 | error(['model not consistent: for qmu analysis, partitioning vector cannot go over npart, number of partition areas']);
|
|---|
| 412 | end
|
|---|
| 413 | end
|
|---|
| 414 | if md.eps_rel>1.1*10^-5,
|
|---|
| 415 | error(['model not consistent: for qmu analysis, eps_rel should be least than 10^-5, 10^-15 being a better value']);
|
|---|
| 416 | end
|
|---|
| 417 | end
|
|---|
| 418 |
|
|---|
| 419 | if strcmpi(md.analysis_type,'qmu'),
|
|---|
| 420 | if ~strcmpi(md.cluster,'none'),
|
|---|
| 421 | if md.waitonlock==0,
|
|---|
| 422 | error(['model is not correctly configured: waitonlock should be activated when running qmu in parallel mode!']);
|
|---|
| 423 | end
|
|---|
| 424 | end
|
|---|
| 425 | end
|
|---|
| 426 | %}}}
|
|---|
| 427 |
|
|---|
| 428 | end
|
|---|
| 429 |
|
|---|
| 430 | %checks additional functions
|
|---|
| 431 | %checklength {{{1
|
|---|
| 432 | function checklength(md,fields,fieldlength)
|
|---|
| 433 | %CHECKSIZE - check length of a field
|
|---|
| 434 | for i=1:length(fields),
|
|---|
| 435 | if length(eval(['md.' fields{i}]))~=fieldlength,
|
|---|
| 436 | error(['model not consistent: field ' fields{i} ' length should be ' num2str(fieldlength)]);
|
|---|
| 437 | end
|
|---|
| 438 | end
|
|---|
| 439 | end
|
|---|
| 440 | %}}}
|
|---|
| 441 | %checksize {{{1
|
|---|
| 442 | function checksize(md,fields,fieldsize)
|
|---|
| 443 | %CHECKSIZE - check size of a field
|
|---|
| 444 | for i=1:length(fields),
|
|---|
| 445 | if isnan(fieldsize(1)),
|
|---|
| 446 | if (size(eval(['md.' fields{i}]),2)~=fieldsize(2)),
|
|---|
| 447 | %LOG warnings:
|
|---|
| 448 | if strcmpi(fields{i},'pressureload'),
|
|---|
| 449 | disp(' ');
|
|---|
| 450 | disp(' If pressureload does not have the right size (one column missing), this is due to a change in md.pressure.');
|
|---|
| 451 | disp(' To update your model, use the following line');
|
|---|
| 452 | disp(' md.pressureload=[md.pressureload WaterEnum*md.elementoniceshelf(md.pressureload(:,end))+AirEnum*md.elementonicesheet(md.pressureload(:,end))];');
|
|---|
| 453 | disp(' ');
|
|---|
| 454 | end
|
|---|
| 455 | error(['model not consistent: field ' fields{i} ' should have ' num2str(fieldsize(2)) ' columns']);
|
|---|
| 456 | end
|
|---|
| 457 | elseif isnan(fieldsize(2)),
|
|---|
| 458 | if (size(eval(['md.' fields{i}]),1)~=fieldsize(1)),
|
|---|
| 459 | error(['model not consistent: field ' fields{i} ' should have ' num2str(fieldsize(1)) ' rows']);
|
|---|
| 460 | end
|
|---|
| 461 | else
|
|---|
| 462 | if ((size(eval(['md.' fields{i}]),1)~=fieldsize(1)) | (size(eval(['md.' fields{i}]),2)~=fieldsize(2)))
|
|---|
| 463 | %LOG warnings:
|
|---|
| 464 | if strcmpi(fields{i},'weights'),
|
|---|
| 465 | disp(' ');
|
|---|
| 466 | disp(' ''weights'' is a new field that should be of length numberofgrids.');
|
|---|
| 467 | disp(' To update your model, use the following line');
|
|---|
| 468 | disp(' md.weights=ones(md.numberofgrids,1)');
|
|---|
| 469 | disp(' ');
|
|---|
| 470 | end
|
|---|
| 471 | error(['model not consistent: field ' fields{i} ' size should be ' num2str(fieldsize(1)) ' x ' num2str(fieldsize(2))]);
|
|---|
| 472 | end
|
|---|
| 473 | end
|
|---|
| 474 | end
|
|---|
| 475 | end
|
|---|
| 476 | %}}}
|
|---|
| 477 | %checknan {{{1
|
|---|
| 478 | function checknan(md,fields)
|
|---|
| 479 | %CHECKNAN - check nan values of a field
|
|---|
| 480 | for i=1:length(fields),
|
|---|
| 481 | if any(isnan(eval(['md.' fields{i}]))),
|
|---|
| 482 | error(['model not consistent: NaN values in field ' fields{i}]);
|
|---|
| 483 | end
|
|---|
| 484 | end
|
|---|
| 485 | end
|
|---|
| 486 | %}}}
|
|---|
| 487 | %checkreal{{{1
|
|---|
| 488 | function checkreal(md,fields)
|
|---|
| 489 | %CHECKREAL - check real values of a field
|
|---|
| 490 | for i=1:length(fields),
|
|---|
| 491 | if any(eval(['~isreal(md.' fields{i} ')'])),
|
|---|
| 492 | error(['model not consistent: complex values in field ' fields{i}]);
|
|---|
| 493 | end
|
|---|
| 494 | end
|
|---|
| 495 | end
|
|---|
| 496 | %}}}
|
|---|
| 497 | %checkgreaterstrict{{{1
|
|---|
| 498 | function checkgreaterstrict(md,fields,lowerbound)
|
|---|
| 499 | %CHECKGREATERSTRICT - check values of a field
|
|---|
| 500 | for i=1:length(fields),
|
|---|
| 501 | if any(eval(['md.' fields{i} '<=' num2str(lowerbound) ])),
|
|---|
| 502 | error(['model not consistent: field ' fields{i} ' should have values stricly above ' num2str(lowerbound)]);
|
|---|
| 503 | end
|
|---|
| 504 | end
|
|---|
| 505 | end
|
|---|
| 506 | %}}}
|
|---|
| 507 | %checkgreater{{{1
|
|---|
| 508 | function checkgreater(md,fields,lowerbound)
|
|---|
| 509 | %CHECKGREATER - check values of a field
|
|---|
| 510 | for i=1:length(fields),
|
|---|
| 511 | if any(eval(['md.' fields{i} '<' num2str(lowerbound) ])),
|
|---|
| 512 | error(['model not consistent: field ' fields{i} ' should have values above ' num2str(lowerbound)]);
|
|---|
| 513 | end
|
|---|
| 514 | end
|
|---|
| 515 | end
|
|---|
| 516 | %}}}
|
|---|
| 517 | %checklessstrict{{{1
|
|---|
| 518 | function checklessstrict(md,fields,upperbound)
|
|---|
| 519 | %CHECKLESSSTRICT - check values of a field
|
|---|
| 520 | for i=1:length(fields),
|
|---|
| 521 | if any(eval(['md.' fields{i} '>=' num2str(upperbound) ])),
|
|---|
| 522 | error(['model not consistent: field ' fields{i} ' should have values stricly below ' num2str(upperbound)]);
|
|---|
| 523 | end
|
|---|
| 524 | end
|
|---|
| 525 | end
|
|---|
| 526 | %}}}
|
|---|
| 527 | %checkless{{{1
|
|---|
| 528 | function checkless(md,fields,upperbound)
|
|---|
| 529 | %CHECKLESS - check values of a field
|
|---|
| 530 | for i=1:length(fields),
|
|---|
| 531 | if any(eval(['md.' fields{i} '>' num2str(upperbound) ])),
|
|---|
| 532 | error(['model not consistent: field ' fields{i} ' should have values below ' num2str(upperbound)]);
|
|---|
| 533 | end
|
|---|
| 534 | end
|
|---|
| 535 | end
|
|---|
| 536 | %}}}
|
|---|
| 537 | %checkvalues {{{1
|
|---|
| 538 | function checkvalues(md,fields,values)
|
|---|
| 539 | %CHECKVALUE - check that a field has specified values
|
|---|
| 540 | for i=1:length(fields),
|
|---|
| 541 | if eval(['any(~ismember( md.' fields{i} ',values))']),
|
|---|
| 542 | error(['model not consistent: field ' fields{i} ' should have values in ' num2str(values)]);
|
|---|
| 543 | end
|
|---|
| 544 | end
|
|---|
| 545 | end
|
|---|
| 546 | %}}}
|
|---|