| 1 | function bool=ismodelselfconsistent(md,package),
|
|---|
| 2 | %ISMODELSELFCONSISTENT - check that model forms a closed form solvable problem.
|
|---|
| 3 | %
|
|---|
| 4 | % Usage:
|
|---|
| 5 | % bool=ismodelselfconsistent(md,package),
|
|---|
| 6 |
|
|---|
| 7 | %tolerance we use in litmus tests for the consistency of the model
|
|---|
| 8 | tolerance=10^-12;
|
|---|
| 9 | if (nargin~=2 )
|
|---|
| 10 | help ismodelselfconsistent
|
|---|
| 11 | error('ismodelselfconsistent error message: wrong usage');
|
|---|
| 12 | end
|
|---|
| 13 |
|
|---|
| 14 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% COMMON CHECKS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|---|
| 15 |
|
|---|
| 16 | %COUNTER
|
|---|
| 17 | if md.counter<3,
|
|---|
| 18 | disp(['model ' md.name ' is not correctly configured. You forgot one step in the following sequence (mesh, geography, parameterize)!']);
|
|---|
| 19 | bool=0;return;
|
|---|
| 20 | end
|
|---|
| 21 |
|
|---|
| 22 | %NAME
|
|---|
| 23 | if isempty(md.name),
|
|---|
| 24 | disp(['model is not correctly configured: missing name!']);
|
|---|
| 25 | bool=0;return;
|
|---|
| 26 | end
|
|---|
| 27 |
|
|---|
| 28 | %MESH
|
|---|
| 29 | if md.numberofelements<=0,
|
|---|
| 30 | disp(['model ' md.name ' does not have any elements!']);
|
|---|
| 31 | bool=0; return;
|
|---|
| 32 | end
|
|---|
| 33 | if md.numberofgrids<=0,
|
|---|
| 34 | disp(['model ' md.name ' does not have any grids!']);
|
|---|
| 35 | bool=0; return;
|
|---|
| 36 | end
|
|---|
| 37 |
|
|---|
| 38 | %ELEMENTSTYPE
|
|---|
| 39 | if size(md.elements_type,1)~=md.numberofelements | size(md.elements_type,2)~=2,
|
|---|
| 40 | disp(['Types of elements have not been set properly, run setelementstype first'])
|
|---|
| 41 | bool=0;return;
|
|---|
| 42 | end
|
|---|
| 43 | if any(ones(md.numberofelements,1)-((md.elements_type(:,1)==hutterenum) + (md.elements_type(:,1)==macayealenum) + (md.elements_type(:,1)==pattynenum)))
|
|---|
| 44 | disp(['Types of elements have not been set properly, run setelementstype first'])
|
|---|
| 45 | bool=0;return;
|
|---|
| 46 | end
|
|---|
| 47 | if any(ones(md.numberofelements,1)-((md.elements_type(:,2)==stokesenum) + (md.elements_type(:,2)==noneenum)))
|
|---|
| 48 | disp(['Types of elements have not been set properly, run setelementstype first'])
|
|---|
| 49 | bool=0;return;
|
|---|
| 50 | end
|
|---|
| 51 | if strcmpi(md.type,'2d'),
|
|---|
| 52 | if (ismember(pattynenum,md.elements_type(:,1)) | ismember(stokesenum,md.elements_type(:,2))),
|
|---|
| 53 | disp(['For a 2d model, only MacAyeal''s and Hutter''s elements are allowed']);
|
|---|
| 54 | bool=0;return;
|
|---|
| 55 | end
|
|---|
| 56 | end
|
|---|
| 57 |
|
|---|
| 58 | if (md.ismacayealpattyn==0 && md.ishutter==0 && md.isstokes==0),
|
|---|
| 59 | disp(['no elements type set for this model. at least one of ismacayealpattyn, ishutter and isstokes need to be =1']);
|
|---|
| 60 | bool=0;return;
|
|---|
| 61 | end
|
|---|
| 62 |
|
|---|
| 63 |
|
|---|
| 64 | %NO NAN
|
|---|
| 65 | fields={'numberofelements','numberofgrids','x','y','z','segmentonneumann_diag','drag','drag_type','p','q','gridondirichlet_diag',...
|
|---|
| 66 | 'rho_ice','rho_water','B','elementoniceshelf','surface','thickness','bed','g','lowmem','sparsity','nsteps','maxiter',...
|
|---|
| 67 | 'tolx','np','eps_rel','exclusive','n','gridonbed','gridonsurface','elementonbed','elementonsurface','deltaH','DeltaH','timeacc','timedec'};
|
|---|
| 68 | for i=1:length(fields),
|
|---|
| 69 | if ~isempty(md.(fields{i})),
|
|---|
| 70 | if any(isnan(md.(fields{i}))),
|
|---|
| 71 | disp(['model ' md.name ' has an NaN value in field ' fields{i} '!']);
|
|---|
| 72 | bool=0; return;
|
|---|
| 73 | end
|
|---|
| 74 | end
|
|---|
| 75 | end
|
|---|
| 76 |
|
|---|
| 77 | %FIELDS > 0
|
|---|
| 78 | fields={'numberofelements','numberofgrids','elements','segmentonneumann_diag','drag','drag_type','p','q','gridondirichlet_diag',...
|
|---|
| 79 | 'rho_ice','rho_water','B','elementoniceshelf','thickness','g','eps_rel','eps_abs','nsteps','maxiter','tolx','exclusive',...
|
|---|
| 80 | 'sparsity','lowmem','n','gridonbed','gridonsurface','elementonbed','elementonsurface','deltaH','DeltaH','timeacc','timedec'};
|
|---|
| 81 | for i=1:length(fields),
|
|---|
| 82 | if ~isempty(md.(fields{i})),
|
|---|
| 83 | if any(md.(fields{i})<0),
|
|---|
| 84 | disp(['model ' md.name ' has a <0 value in field ' fields{i} '!']);
|
|---|
| 85 | bool=0; return;
|
|---|
| 86 | end
|
|---|
| 87 | end
|
|---|
| 88 | end
|
|---|
| 89 | if any(md.p<=0),
|
|---|
| 90 | disp(['model ' md.name ' has some p<0 friction coefficientsin sliding law']);
|
|---|
| 91 | bool=0; return;
|
|---|
| 92 | end
|
|---|
| 93 |
|
|---|
| 94 | %FIELDS ~=0
|
|---|
| 95 | fields={'numberofelements','numberofgrids','elements','segmentonneumann_diag','drag_type',...
|
|---|
| 96 | 'rho_ice','rho_water','B','thickness','g','eps_rel','eps_abs','maxiter','tolx',...
|
|---|
| 97 | 'sparsity','deltaH','DeltaH','timeacc','timedec'};
|
|---|
| 98 | for i=1:length(fields),
|
|---|
| 99 | if ~isempty(md.(fields{i})),
|
|---|
| 100 | if any(md.(fields{i})==0),
|
|---|
| 101 | disp(['model ' md.name ' has a =0 value in field ' fields{i} '!']);
|
|---|
| 102 | bool=0; return;
|
|---|
| 103 | end
|
|---|
| 104 | end
|
|---|
| 105 | end
|
|---|
| 106 |
|
|---|
| 107 | %SIZE NUMBEROFELEMENTS
|
|---|
| 108 | fields={'elements','p','q','elementoniceshelf','n','elementonbed'};
|
|---|
| 109 | for i=1:size(fields,2),
|
|---|
| 110 | if (size(md.(fields{i}),1)~=md.numberofelements),
|
|---|
| 111 | disp(['model ' md.name ' field ' fields{i} ' should be of size ' num2str(md.numberofelements) '!']);
|
|---|
| 112 | bool=0; return;
|
|---|
| 113 | end
|
|---|
| 114 | end
|
|---|
| 115 |
|
|---|
| 116 | %SIZE NUMBEROFGRIDS
|
|---|
| 117 | fields={'x','y','z','B','drag','gridondirichlet_diag','melting','accumulation','surface','thickness','bed','gridonbed','gridonsurface'};
|
|---|
| 118 | for i=1:length(fields),
|
|---|
| 119 | if length(md.(fields{i}))~=md.numberofgrids,
|
|---|
| 120 | disp(['model ' md.name ' field ' fields{i} ' should be of size ' num2str(md.numberofgrids) '!']);
|
|---|
| 121 | bool=0; return;
|
|---|
| 122 | end
|
|---|
| 123 | end
|
|---|
| 124 |
|
|---|
| 125 | %THICKNESS = SURFACE - BED
|
|---|
| 126 | if any((md.thickness-md.surface+md.bed)>tolerance),
|
|---|
| 127 | disp(['model ' md.name ' violates the equality thickness=surface-bed!']);
|
|---|
| 128 | bool=0; return;
|
|---|
| 129 | end
|
|---|
| 130 |
|
|---|
| 131 | %RIFTS
|
|---|
| 132 | if md.numrifts,
|
|---|
| 133 | if ~strcmpi(md.type,'2d'),
|
|---|
| 134 | disp(['Models with rifts are only supported in 2d for now!']);
|
|---|
| 135 | bool=0;return;
|
|---|
| 136 | end
|
|---|
| 137 | end
|
|---|
| 138 | if ~isstruct(md.rifts),
|
|---|
| 139 | if ~isempty(find(md.segmentmarkers>=2)),
|
|---|
| 140 | %We have segments with rift markers, but no rift structure!
|
|---|
| 141 | disp(['model ' md.name ' should be processed for rifts (run meshprocessrifts)!']);
|
|---|
| 142 | bool=0; return;
|
|---|
| 143 | end
|
|---|
| 144 | end
|
|---|
| 145 |
|
|---|
| 146 | %ARTIFICIAL DIFFUSIVITY
|
|---|
| 147 | if ~isscalar(md.artificial_diffusivity),
|
|---|
| 148 | disp('artificial_diffusivity should be a scalar (1 or 0)');
|
|---|
| 149 | bool=0;return;
|
|---|
| 150 | end
|
|---|
| 151 |
|
|---|
| 152 | %CLUSTER
|
|---|
| 153 | if ~strcmpi(package,'cielo') & ~strcmpi(md.cluster,'none')
|
|---|
| 154 | disp(['parallel solution not supported by package ' package '. Use cluster=''none'' ']);
|
|---|
| 155 | bool=0;return;
|
|---|
| 156 | end
|
|---|
| 157 |
|
|---|
| 158 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SOLUTION CHECKS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|---|
| 159 |
|
|---|
| 160 | %DIAGNOSTIC
|
|---|
| 161 | if strcmpi(md.analysis_type,'diagnostic')
|
|---|
| 162 |
|
|---|
| 163 | %HUTTER ON ICESHELF WARNING
|
|---|
| 164 | if any(md.elements_type(:,1)==hutterenum & md.elementoniceshelf),
|
|---|
| 165 | disp(sprintf('\n !!! Warning: Hutter''s model is not consistent on ice shelves !!!\n'));
|
|---|
| 166 | end
|
|---|
| 167 |
|
|---|
| 168 | %SINGULAR
|
|---|
| 169 | if ~any(md.gridondirichlet_diag),
|
|---|
| 170 | disp(['model ' md.name ' is not well posed (singular). You need at least one grid with fixed velocity!'])
|
|---|
| 171 | bool=0;return;
|
|---|
| 172 | end
|
|---|
| 173 |
|
|---|
| 174 | %DIRICHLET VALUES
|
|---|
| 175 | if isempty(md.gridondirichlet_diag) | isempty(md.dirichletvalues_diag),
|
|---|
| 176 | disp(['model ' md.name ' is not well posed. Missing dirichlet values for diagnostic run']);
|
|---|
| 177 | bool=0;return;
|
|---|
| 178 | end
|
|---|
| 179 |
|
|---|
| 180 | %DIRICHLET IF THICKNESS <= 0
|
|---|
| 181 | if any(md.thickness<=0),
|
|---|
| 182 | pos=find(md.thickness<=0);
|
|---|
| 183 | if ~isempty(find(md.gridondirichlet_diag(pos)==0)),
|
|---|
| 184 | disp(['model ' md.name ' has some grids with 0 thickness']);
|
|---|
| 185 | bool=0; return;
|
|---|
| 186 | end
|
|---|
| 187 | end
|
|---|
| 188 | end
|
|---|
| 189 |
|
|---|
| 190 | %PROGNOSTIC
|
|---|
| 191 | if strcmp(md.analysis_type,'prognostic'),
|
|---|
| 192 | %old testing
|
|---|
| 193 | % if isempty(find(md.gridondirichlet_diag)),
|
|---|
| 194 | % disp(['model ' md.name ' diagnostic is not well posed (singular). You need at least one grid with fixed velocity!'])
|
|---|
| 195 | % bool=0;return;
|
|---|
| 196 | % end
|
|---|
| 197 | % if isempty(find(md.gridondirichlet_prog)),
|
|---|
| 198 | % disp(['model ' md.name ' prognostic is not well posed (singular). You need at least one grid with fixed thickness!'])
|
|---|
| 199 | % bool=0;return;
|
|---|
| 200 | % end
|
|---|
| 201 |
|
|---|
| 202 | %VELOCITIES
|
|---|
| 203 | if (size(md.vx,1)~=md.numberofgrids | size(md.vy,1)~=md.numberofgrids),
|
|---|
| 204 | disp(['a 3d velocity is required. Run ''diagnostic'' solution first!'])
|
|---|
| 205 | bool=0; return;
|
|---|
| 206 | end
|
|---|
| 207 | end
|
|---|
| 208 |
|
|---|
| 209 | %THERMAL TRANSIENT
|
|---|
| 210 | if strcmp(md.analysis_type,'thermal')
|
|---|
| 211 | if strcmp(md.sub_analysis_type,'transient')
|
|---|
| 212 |
|
|---|
| 213 | %INITIAL TEMPERATURE, MELTING AND ACCUMULATION
|
|---|
| 214 | if isempty(md.temperature),
|
|---|
| 215 | disp(['An initial temperature is needed for a transient thermal computation'])
|
|---|
| 216 | bool=0;return;
|
|---|
| 217 | end
|
|---|
| 218 | if isstruct(md.temperature) | isstruct(md.melting) | isstruct(md.accumulation),
|
|---|
| 219 | disp(['The initial temperature, melting or accumulation should be a list and not a structure'])
|
|---|
| 220 | bool=0;return;
|
|---|
| 221 | end
|
|---|
| 222 | end
|
|---|
| 223 | end
|
|---|
| 224 |
|
|---|
| 225 | %THERMAL STEADY AND THERMAL TRANSIENT
|
|---|
| 226 | if strcmpi(md.analysis_type,'thermal'),
|
|---|
| 227 |
|
|---|
| 228 | %EXTRUSION
|
|---|
| 229 | if strcmp(md.type,'2d'),
|
|---|
| 230 | disp(['For a ' md.analysis_type ' computation, the model must be 3d, extrude it first!'])
|
|---|
| 231 | bool=0;return;
|
|---|
| 232 | end
|
|---|
| 233 |
|
|---|
| 234 | %VELOCITIES AND PRESSURE
|
|---|
| 235 | if (isempty(md.vx) | isnan(md.vx) | isempty(md.vy) | isnan(md.vy) | isempty(md.vz) | isnan(md.vz)),
|
|---|
| 236 | disp(['a 3d velocity is required. Run ''diagnostic'' solution first!'])
|
|---|
| 237 | bool=0;return;
|
|---|
| 238 | end
|
|---|
| 239 | if (isempty(md.pressure) | isnan(md.pressure)),
|
|---|
| 240 | disp(['pressure is required. Run ''diagnostic'' solution first!'])
|
|---|
| 241 | bool=0;return;
|
|---|
| 242 | end
|
|---|
| 243 | end
|
|---|
| 244 |
|
|---|
| 245 | %THERMAL TRANSIENT AND TRANSIENT
|
|---|
| 246 | if strcmp(md.analysis_type,'thermal'),
|
|---|
| 247 |
|
|---|
| 248 | %DT and NDT
|
|---|
| 249 | fields={'dt','ndt'};
|
|---|
| 250 | for i=1:length(fields),
|
|---|
| 251 | if any(md.(fields{i})<0),
|
|---|
| 252 | disp(['model ' md.name ' has a <0 value in field ' fields{i} '!']);
|
|---|
| 253 | bool=0; return;
|
|---|
| 254 | end
|
|---|
| 255 | end
|
|---|
| 256 |
|
|---|
| 257 | %INITIAL TEMPERATURE
|
|---|
| 258 | if isstruct(md.temperature),
|
|---|
| 259 | disp(['The initial temperature should be empty or a list but not a structure'])
|
|---|
| 260 | bool=0;return;
|
|---|
| 261 | end
|
|---|
| 262 | end
|
|---|
| 263 |
|
|---|
| 264 | %PARAMETERS
|
|---|
| 265 | if strcmp(md.analysis_type,'parameters')
|
|---|
| 266 |
|
|---|
| 267 | %PACKAGE
|
|---|
| 268 | if ~strcmpi(package,'ice'),
|
|---|
| 269 | disp('parameter solution only supported by package ice yet');
|
|---|
| 270 | bool=0;return;
|
|---|
| 271 | end
|
|---|
| 272 |
|
|---|
| 273 | %OUTPUT
|
|---|
| 274 | if ~iscell(md.parameteroutput)
|
|---|
| 275 | disp(['parameteroutput field must be a cell, example {''strainrate'',''stress'',''deviatoricstress'',''viscousheating''}']);
|
|---|
| 276 | bool=0; return;
|
|---|
| 277 | end
|
|---|
| 278 | for i=1:length(md.parameteroutput)
|
|---|
| 279 | if ~strcmpi(md.parameteroutput(i),'strainrate') & ~strcmpi(md.parameteroutput(i),'stress') & ~strcmpi(md.parameteroutput(i),'deviatoricstress') & ~strcmpi(md.parameteroutput(i),'viscousheating') ...
|
|---|
| 280 | & ~strcmpi(md.parameteroutput(i),'pressure_elem') & ~strcmpi(md.parameteroutput(i),'stress_bed') & ~strcmpi(md.parameteroutput(i),'stress_surface')
|
|---|
| 281 | disp(['one of the parameteroutput is not supported yet']);
|
|---|
| 282 | bool=0; return;
|
|---|
| 283 | end
|
|---|
| 284 | end
|
|---|
| 285 | %VELOCITY
|
|---|
| 286 | if ~(size(md.vx,1)==md.numberofgrids & size(md.vy,1)==md.numberofgrids & (size(md.vz,1)==md.numberofgrids | strcmpi(md.type,'2d')))
|
|---|
| 287 | disp(['velocities are required!']);
|
|---|
| 288 | bool=0;return;
|
|---|
| 289 | end
|
|---|
| 290 |
|
|---|
| 291 | %HUTTER
|
|---|
| 292 | if any(md.elements_type(:,1)==hutterenum);
|
|---|
| 293 | disp(['The model has Hutter''s elements. Impossible to compute parameters']);
|
|---|
| 294 | bool=0;return;
|
|---|
| 295 | end
|
|---|
| 296 | end
|
|---|
| 297 |
|
|---|
| 298 | %CONTROL
|
|---|
| 299 | if strcmpi(md.analysis_type,'control'),
|
|---|
| 300 |
|
|---|
| 301 | %CONTROL TYPE
|
|---|
| 302 | if ~ischar(md.control_type),
|
|---|
| 303 | disp('control_type should be a string');
|
|---|
| 304 | bool=0;return;
|
|---|
| 305 | end
|
|---|
| 306 |
|
|---|
| 307 | %LENGTH CONTROL FIELDS
|
|---|
| 308 | if (length(md.maxiter)~=md.nsteps | length(md.optscal)~=md.nsteps | length(md.fit)~=md.nsteps)
|
|---|
| 309 | disp('maxiter, optscal and fit must have the length specified by nsteps')
|
|---|
| 310 | bool=0;return;
|
|---|
| 311 | end
|
|---|
| 312 |
|
|---|
| 313 | %FIT
|
|---|
| 314 | if sum((double(md.fit==1) + double(md.fit==0) + double(md.fit==2))==1)~=md.nsteps
|
|---|
| 315 | disp('wrong fits: fit should be a vector of size nsteps holding 0, 1 and 2 only')
|
|---|
| 316 | bool=0;return;
|
|---|
| 317 | end
|
|---|
| 318 |
|
|---|
| 319 | %OBSERVED VELOCITIES
|
|---|
| 320 | fields={'vx_obs','vy_obs'};
|
|---|
| 321 | for i=1:length(fields),
|
|---|
| 322 | if any(length(md.(fields{i}))~=md.numberofgrids),
|
|---|
| 323 | disp(['model ' md.name ' field ' fields{i} ' should be of size ' num2str(md.numberofgrids) '!']);
|
|---|
| 324 | bool=0; return;
|
|---|
| 325 | end
|
|---|
| 326 | end
|
|---|
| 327 | end
|
|---|
| 328 |
|
|---|
| 329 | %QMU
|
|---|
| 330 | if strcmpi(md.analysis_type,'qmu'),
|
|---|
| 331 | if ~strcmpi(md.cluster,'none'),
|
|---|
| 332 | if md.waitonlock==0,
|
|---|
| 333 | disp(['model is not correctly configured: waitonlock should be activated when running qmu in parallel mode!']);
|
|---|
| 334 | bool=0;return;
|
|---|
| 335 | end
|
|---|
| 336 | end
|
|---|
| 337 | end
|
|---|
| 338 |
|
|---|
| 339 | %MESH
|
|---|
| 340 | if strcmpi(md.analysis_type,'mesh'),
|
|---|
| 341 | %this solution is a little special. It should come right after the md=model; operation. So a lot less checks!
|
|---|
| 342 |
|
|---|
| 343 | bool=1;
|
|---|
| 344 | return;
|
|---|
| 345 | end
|
|---|
| 346 |
|
|---|
| 347 | %MESH2GRID
|
|---|
| 348 | if strcmpi(md.analysis_type,'mesh2grid'),
|
|---|
| 349 | if ~strcmpi(md.cluster,'none'),
|
|---|
| 350 | disp(['model is not correctly configured: mesh2grid not supported in parallel yet!']);
|
|---|
| 351 | bool=0;return;
|
|---|
| 352 | end
|
|---|
| 353 | end
|
|---|
| 354 |
|
|---|
| 355 |
|
|---|
| 356 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% PACKAGE CHECKS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|---|
| 357 |
|
|---|
| 358 | %CIELO
|
|---|
| 359 | if strcmpi(package,'cielo'),
|
|---|
| 360 |
|
|---|
| 361 | %NAN VALUES
|
|---|
| 362 | fields={'sparsity'};
|
|---|
| 363 | for i=1:length(fields),
|
|---|
| 364 | if ~isempty(md.(fields{i})),
|
|---|
| 365 | if any(isnan(md.(fields{i}))),
|
|---|
| 366 | disp(['model ' md.name ' has an NaN value in field ' fields{i} '!']);
|
|---|
| 367 | bool=0; return;
|
|---|
| 368 | end
|
|---|
| 369 | end
|
|---|
| 370 | end
|
|---|
| 371 |
|
|---|
| 372 | %FIELD > 0
|
|---|
| 373 | fields={'sparsity'};
|
|---|
| 374 | for i=1:length(fields),
|
|---|
| 375 | if ~isempty(md.(fields{i})),
|
|---|
| 376 | if any(md.(fields{i})<0),
|
|---|
| 377 | disp(['model ' md.name ' has a <0 value in field ' fields{i} '!']);
|
|---|
| 378 | bool=0; return;
|
|---|
| 379 | end
|
|---|
| 380 | end
|
|---|
| 381 | end
|
|---|
| 382 |
|
|---|
| 383 | %FIELD ~= 0
|
|---|
| 384 | fields={'sparsity'};
|
|---|
| 385 | for i=1:length(fields),
|
|---|
| 386 | if ~isempty(md.(fields{i})),
|
|---|
| 387 | if any(md.(fields{i})==0),
|
|---|
| 388 | disp(['model ' md.name ' has a =0 value in field ' fields{i} '!']);
|
|---|
| 389 | bool=0; return;
|
|---|
| 390 | end
|
|---|
| 391 | end
|
|---|
| 392 | end
|
|---|
| 393 |
|
|---|
| 394 | %SPARSITY BETWEEN 0 AND 1
|
|---|
| 395 | if ( (md.sparsity<=0) | (md.sparsity>1)),
|
|---|
| 396 | disp(['model ' md.name ' sparsity should be inside the [0 1] range']);
|
|---|
| 397 | bool=0; return;
|
|---|
| 398 | end
|
|---|
| 399 |
|
|---|
| 400 | %RIFTS
|
|---|
| 401 | if md.numrifts,
|
|---|
| 402 | if ~strcmpi(md.cluster,'none')
|
|---|
| 403 | if isempty(findstr('aijmumps',md.solverstring)),
|
|---|
| 404 | disp(['For a 2d model with rifts, running on a cluster, you should use a direct solver like MUMPS!']);
|
|---|
| 405 | bool=0;return;
|
|---|
| 406 | end
|
|---|
| 407 | end
|
|---|
| 408 | end
|
|---|
| 409 |
|
|---|
| 410 | %CONNECTIVITY
|
|---|
| 411 | if strcmpi(md.type,'2d'),
|
|---|
| 412 | if md.connectivity<9,
|
|---|
| 413 | disp('connectivity should be at least 9 for 2d models');
|
|---|
| 414 | bool=0;return;
|
|---|
| 415 | end
|
|---|
| 416 | end
|
|---|
| 417 | if strcmpi(md.type,'3d'),
|
|---|
| 418 | if md.connectivity<24,
|
|---|
| 419 | disp('connectivity should be at least 24 for 3d models');
|
|---|
| 420 | bool=0;return;
|
|---|
| 421 | end
|
|---|
| 422 | end
|
|---|
| 423 |
|
|---|
| 424 | %LOWMEM = 0 or 1
|
|---|
| 425 | if ((md.lowmem ~= 1) & (md.lowmem~=0)),
|
|---|
| 426 | disp(['model ' md.name ' lowmem field should be 0 or 1']);
|
|---|
| 427 | bool=0; return;
|
|---|
| 428 | end
|
|---|
| 429 |
|
|---|
| 430 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% PARALLEL CHECKS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|---|
| 431 |
|
|---|
| 432 | if ~strcmpi(md.cluster,'none'),
|
|---|
| 433 |
|
|---|
| 434 | %NAN VALUES
|
|---|
| 435 | fields={'time','np'};
|
|---|
| 436 | for i=1:length(fields),
|
|---|
| 437 | if ~isempty(md.(fields{i})),
|
|---|
| 438 | if any(isnan(md.(fields{i}))),
|
|---|
| 439 | disp(['model ' md.name ' has an NaN value in field ' fields{i} '!']);
|
|---|
| 440 | bool=0; return;
|
|---|
| 441 | end
|
|---|
| 442 | end
|
|---|
| 443 | end
|
|---|
| 444 |
|
|---|
| 445 | %FIELD > 0
|
|---|
| 446 | fields={'time','np'};
|
|---|
| 447 | for i=1:length(fields),
|
|---|
| 448 | if ~isempty(md.(fields{i})),
|
|---|
| 449 | if any(md.(fields{i})<0),
|
|---|
| 450 | disp(['model ' md.name ' has a <0 value in field ' fields{i} '!']);
|
|---|
| 451 | bool=0; return;
|
|---|
| 452 | end
|
|---|
| 453 | end
|
|---|
| 454 | end
|
|---|
| 455 |
|
|---|
| 456 | %FIELD ~= 0
|
|---|
| 457 | fields={'time','np'};
|
|---|
| 458 | for i=1:length(fields),
|
|---|
| 459 | if ~isempty(md.(fields{i})),
|
|---|
| 460 | if any(md.(fields{i})==0),
|
|---|
| 461 | disp(['model ' md.name ' has a =0 value in field ' fields{i} '!']);
|
|---|
| 462 | bool=0; return;
|
|---|
| 463 | end
|
|---|
| 464 | end
|
|---|
| 465 | end
|
|---|
| 466 |
|
|---|
| 467 | end
|
|---|
| 468 |
|
|---|
| 469 | end
|
|---|
| 470 |
|
|---|
| 471 | %No problems, just return 1;
|
|---|
| 472 | bool=1;
|
|---|
| 473 | return;
|
|---|