source: issm/trunk-jpl/src/m/classes/model.m@ 22040

Last change on this file since 22040 was 22040, checked in by Mathieu Morlighem, 8 years ago

CHG: had to rename love lovefourier

File size: 66.9 KB
RevLine 
[8926]1%MODEL class definition
2%
3% Usage:
4% md = model(varargin)
5
6classdef model
[13692]7 properties (SetAccess=public) %Model fields
8 % {{{
9 %Careful here: no other class should be used as default value this is a bug of matlab
10 mesh = 0;
11 mask = 0;
[9778]12
[13692]13 geometry = 0;
14 constants = 0;
[19527]15 smb = 0;
[13692]16 basalforcings = 0;
17 materials = 0;
[16160]18 damage = 0;
[13692]19 friction = 0;
20 flowequation = 0;
21 timestepping = 0;
22 initialization = 0;
23 rifts = 0;
[19984]24 slr = 0;
[9778]25
[13692]26 debug = 0;
27 verbose = 0;
28 settings = 0;
[14621]29 toolkits = 0;
[13692]30 cluster = 0;
[9778]31
[13692]32 balancethickness = 0;
[17757]33 stressbalance = 0;
[13692]34 groundingline = 0;
35 hydrology = 0;
[17757]36 masstransport = 0;
[13692]37 thermal = 0;
38 steadystate = 0;
39 transient = 0;
[20460]40 levelset = 0;
[18757]41 calving = 0;
[22019]42 love = 0;
43 gia = 0;
[21260]44 esa = 0;
[9778]45
[13692]46 autodiff = 0;
47 inversion = 0;
48 qmu = 0;
[21674]49 amr = 0;
[8926]50
[13692]51 results = 0;
[16388]52 outputdefinition = 0;
[13692]53 radaroverlay = 0;
54 miscellaneous = 0;
55 private = 0;
[9778]56
[13692]57 %}}}
58 end
59 methods (Static)
60 function md = loadobj(md) % {{{
61 % This function is directly called by matlab when a model object is
62 % loaded. If the input is a struct it is an old version of model and
63 % old fields must be recovered (make sure they are in the deprecated
64 % model properties)
[8926]65
[13692]66 if verLessThan('matlab','7.9'),
67 disp('Warning: your matlab version is old and there is a risk that load does not work correctly');
68 disp(' if the model is not loaded correctly, rename temporarily loadobj so that matlab does not use it');
[8952]69
[13692]70 % This is a Matlab bug: all the fields of md have their default value
71 % Example of error message:
72 % Warning: Error loading an object of class 'model':
73 % Undefined function or method 'exist' for input arguments of type 'cell'
74 %
75 % This has been fixed in MATLAB 7.9 (R2009b) and later versions
76 end
[8952]77
[13692]78 if isstruct(md)
79 disp('Recovering model object from a previous version');
80 md = structtomodel(model,md);
81 end
[13239]82
[13692]83 %2012 August 4th
84 if isa(md.materials,'materials'),
85 disp('Recovering old materials');
86 if numel(md.materials.rheology_Z)==1 & isnan(md.materials.rheology_Z),
[13718]87 md.materials=matice(md.materials);
88 else
[13692]89 md.materials=matdamageice(md.materials);
90 end
91 end
[14559]92 %2013 April 12
[15771]93 if numel(md.stressbalance.loadingforce==1)
94 md.stressbalance.loadingforce=0*ones(md.mesh.numberofvertices,3);
[14559]95 end
[14618]96 %2013 April 17
97 if isa(md.hydrology,'hydrology'),
98 disp('Recovering old hydrology class');
99 md.hydrology=hydrologyshreve(md.materials);
100 end
[16356]101 %2013 October 9
102 if ~isa(md.damage,'damage'),
103 md.damage=damage();
104 md.damage.D=zeros(md.mesh.numberofvertices,1);
105 md.damage.spcdamage=NaN*ones(md.mesh.numberofvertices,1);
106 end
[16822]107 %2013 November 18
108 if ~isa(md.outputdefinition,'outputdefinition'),
109 md.outputdefinition=outputdefinition();
110 end
[17558]111 %2014 March 26th
112 if isa(md.mesh,'mesh'),
[17566]113 disp('Recovering old mesh class');
114 if isprop(md.mesh,'dimension'),
115 if md.mesh.dimension==2,
116 md.mesh=mesh2d(md.mesh);
117 else
118 md.mesh=mesh3dprisms(md.mesh);
119 end
[17558]120 else
[17566]121 md.mesh=mesh2dvertical(md.mesh);
[17558]122 end
123 end
[18775]124 %2014 November 12
[21702]125 if isa(md.calving,'double'); md.calving=calving(); end
[20059]126 %2016 February 3
[21702]127 if isa(md.slr,'double'); md.slr=slr(); end
[21260]128 %2016 October 11
[21702]129 if isa(md.esa,'double'); md.esa=esa(); end
[21545]130 %2017 February 10th
131 if md.settings.solver_residue_threshold==0,
132 md.settings.solver_residue_threshold = 1e-6;
133 end
[21667]134 %2017 April 10th
[21702]135 if isa(md.gia,'gia'), md.gia=giaivins(); end
136 %2017 May 4th
137 if isa(md.amr,'double'); md.amr=amr(); end
[22019]138 %2017 Aug 29th
[22040]139 if isa(md.love,'double'); md.love=fourierlove(); end
[20460]140
[13692]141 end% }}}
142 end
143 methods
144 function md = model(varargin) % {{{
[8926]145
[13692]146 switch nargin
147 case 0
148 md=setdefaultparameters(md);
[18492]149 case 1
[19087]150 error('model constructor not supported yet');
[18503]151
[13692]152 otherwise
153 error('model constructor error message: 0 of 1 argument only in input.');
154 end
155 end
156 %}}}
157 function md = checkmessage(md,string) % {{{
158 if(nargout~=1) error('wrong usage, model must be an output'); end
159 disp(['model not consistent: ' string]);
160 md.private.isconsistent=false;
161 end
162 %}}}
163 function md = collapse(md)% {{{
164 %COLLAPSE - collapses a 3d mesh into a 2d mesh
165 %
166 % This routine collapses a 3d model into a 2d model
167 % and collapses all the fileds of the 3d model by
168 % taking their depth-averaged values
169 %
170 % Usage:
171 % md=collapse(md)
172 %
173 % See also: EXTRUDE, MODELEXTRACT
[13005]174
[13692]175 %Check that the model is really a 3d model
[17687]176 if ~strcmp(md.mesh.elementtype(),'Penta'),
[13692]177 error('collapse error message: only 3d mesh can be collapsed')
178 end
[13005]179
[17724]180 %Start with changing all the fields from the 3d mesh
[13005]181
[21827]182 %dealing with the friction law
[13692]183 %drag is limited to nodes that are on the bedrock.
[18775]184 if isa(md.friction,'friction'),
185 md.friction.coefficient=project2d(md,md.friction.coefficient,1);
186 md.friction.p=project2d(md,md.friction.p,1);
187 md.friction.q=project2d(md,md.friction.q,1);
[21819]188 elseif isa(md.friction,'frictioncoulomb'),
189 md.friction.coefficient=project2d(md,md.friction.coefficient,1);
190 md.friction.coefficientcoulomb=project2d(md,md.friction.coefficientcoulomb,1);
191 md.friction.p=project2d(md,md.friction.p,1);
192 md.friction.q=project2d(md,md.friction.q,1);
[18775]193 elseif isa(md.friction,'frictionhydro'),
194 md.friction.q=project2d(md,md.friction.q,1);
195 md.friction.C=project2d(md,md.friction.C,1);
196 md.friction.As=project2d(md,md.friction.As,1);
[18798]197 md.friction.effective_pressure=project2d(md,md.friction.effective_pressure,1);
[18775]198 elseif isa(md.friction,'frictionwaterlayer'),
199 md.friction.coefficient=project2d(md,md.friction.coefficient,1);
200 md.friction.p=project2d(md,md.friction.p,1);
201 md.friction.q=project2d(md,md.friction.q,1);
202 md.friction.water_layer=project2d(md,md.friction.water_layer,1);
203 elseif isa(md.friction,'frictionweertman'),
204 md.friction.C=project2d(md,md.friction.C,1);
205 md.friction.m=project2d(md,md.friction.m,1);
[19720]206 elseif isa(md.friction,'frictionweertmantemp'),
207 md.friction.C=project2d(md,md.friction.C,1);
208 md.friction.m=project2d(md,md.friction.m,1);
209 else
210 disp('friction type not supported');
[21827]211 end
[13005]212
[13692]213 %observations
214 if ~isnan(md.inversion.vx_obs), md.inversion.vx_obs=project2d(md,md.inversion.vx_obs,md.mesh.numberoflayers); end;
215 if ~isnan(md.inversion.vy_obs), md.inversion.vy_obs=project2d(md,md.inversion.vy_obs,md.mesh.numberoflayers); end;
216 if ~isnan(md.inversion.vel_obs), md.inversion.vel_obs=project2d(md,md.inversion.vel_obs,md.mesh.numberoflayers); end;
217 if ~isnan(md.inversion.cost_functions_coefficients), md.inversion.cost_functions_coefficients=project2d(md,md.inversion.cost_functions_coefficients,md.mesh.numberoflayers); end;
218 if numel(md.inversion.min_parameters)>1, md.inversion.min_parameters=project2d(md,md.inversion.min_parameters,md.mesh.numberoflayers); end;
219 if numel(md.inversion.max_parameters)>1, md.inversion.max_parameters=project2d(md,md.inversion.max_parameters,md.mesh.numberoflayers); end;
[19527]220 if isa(md.smb,'SMBforcing') & ~isnan(md.smb.mass_balance),
221 md.smb.mass_balance=project2d(md,md.smb.mass_balance,md.mesh.numberoflayers);
222 elseif isa(md.smb,'SMBhenning') & ~isnan(md.smb.smbref),
223 md.smb.smbref=project2d(md,md.smb.smbref,md.mesh.numberoflayers);
[13692]224 end;
[13005]225
[13692]226 %results
227 if ~isnan(md.initialization.vx),md.initialization.vx=DepthAverage(md,md.initialization.vx);end;
228 if ~isnan(md.initialization.vy),md.initialization.vy=DepthAverage(md,md.initialization.vy);end;
229 if ~isnan(md.initialization.vz),md.initialization.vz=DepthAverage(md,md.initialization.vz);end;
230 if ~isnan(md.initialization.vel),md.initialization.vel=DepthAverage(md,md.initialization.vel);end;
[18578]231 if ~isnan(md.initialization.temperature),md.initialization.temperature=DepthAverage(md,md.initialization.temperature);end;
[18506]232 if ~isnan(md.initialization.pressure),md.initialization.pressure=project2d(md,md.initialization.pressure,1);end;
[18578]233 if ~isnan(md.initialization.sediment_head),md.initialization.sediment_head=project2d(md,md.initialization.sediment_head,1);end;
234 if ~isnan(md.initialization.epl_head),md.initialization.epl_head=project2d(md,md.initialization.epl_head,1);end;
235 if ~isnan(md.initialization.epl_thickness),md.initialization.epl_thickness=project2d(md,md.initialization.epl_thickness,1);end;
[21417]236 if ~isnan(md.initialization.waterfraction),md.initialization.waterfraction=project2d(md,md.initialization.waterfraction,1);end;
237 if ~isnan(md.initialization.watercolumn),md.initialization.watercolumn=project2d(md,md.initialization.watercolumn,1);end;
[21530]238 %giaivins
[21584]239 if ~isnan(md.gia.mantle_viscosity), md.gia.mantle_viscosity=project2d(md,md.gia.mantle_viscosity,1); end
240 if ~isnan(md.gia.lithosphere_thickness), md.gia.lithosphere_thickness=project2d(md,md.gia.lithosphere_thickness,1); end
[15021]241
[13692]242 %elementstype
243 if ~isnan(md.flowequation.element_equation)
244 md.flowequation.element_equation=project2d(md,md.flowequation.element_equation,1);
245 md.flowequation.vertex_equation=project2d(md,md.flowequation.vertex_equation,1);
[15564]246 md.flowequation.borderSSA=project2d(md,md.flowequation.borderSSA,1);
247 md.flowequation.borderHO=project2d(md,md.flowequation.borderHO,1);
248 md.flowequation.borderFS=project2d(md,md.flowequation.borderFS,1);
[13692]249 end
[13005]250
[13692]251 %boundary conditions
[15771]252 md.stressbalance.spcvx=project2d(md,md.stressbalance.spcvx,md.mesh.numberoflayers);
253 md.stressbalance.spcvy=project2d(md,md.stressbalance.spcvy,md.mesh.numberoflayers);
254 md.stressbalance.spcvz=project2d(md,md.stressbalance.spcvz,md.mesh.numberoflayers);
255 md.stressbalance.referential=project2d(md,md.stressbalance.referential,md.mesh.numberoflayers);
256 md.stressbalance.loadingforce=project2d(md,md.stressbalance.loadingforce,md.mesh.numberoflayers);
[15767]257 md.masstransport.spcthickness=project2d(md,md.masstransport.spcthickness,md.mesh.numberoflayers);
[21544]258 if numel(md.damage.spcdamage)>1, md.damage.spcdamage=project2d(md,md.damage.spcdamage,md.mesh.numberoflayers); end
[21417]259 if numel(md.levelset.spclevelset)>1, md.levelset.spclevelset=project2d(md,md.levelset.spclevelset,md.mesh.numberoflayers); end
[13692]260 md.thermal.spctemperature=project2d(md,md.thermal.spctemperature,md.mesh.numberoflayers);
[13005]261
[18506]262 % Hydrologydc variables
263 if isa(md.hydrology,'hydrologydc');
264 md.hydrology.spcsediment_head=project2d(md,md.hydrology.spcsediment_head,1);
265 md.hydrology.mask_eplactive_node=project2d(md,md.hydrology.mask_eplactive_node,1);
266 md.hydrology.sediment_transmitivity=project2d(md,md.hydrology.sediment_transmitivity,1);
267 md.hydrology.basal_moulin_input=project2d(md,md.hydrology.basal_moulin_input,1);
268 if(md.hydrology.isefficientlayer==1)
269 md.hydrology.spcepl_head=project2d(md,md.hydrology.spcepl_head,1);
[21808]270 end
271 end
[18506]272
[13692]273 %materials
274 md.materials.rheology_B=DepthAverage(md,md.materials.rheology_B);
275 md.materials.rheology_n=project2d(md,md.materials.rheology_n,1);
[16160]276
277 %damage:
[17940]278 if md.damage.isdamage,
279 md.damage.D=DepthAverage(md,md.damage.D);
280 end
[13005]281
[13692]282 %special for thermal modeling:
[18378]283 if ~isnan(md.basalforcings.groundedice_melting_rate),
284 md.basalforcings.groundedice_melting_rate=project2d(md,md.basalforcings.groundedice_melting_rate,1);
285 end
[21417]286 if isprop(md.basalforcings,'floatingice_melting_rate') & ~isnan(md.basalforcings.floatingice_melting_rate),
[18378]287 md.basalforcings.floatingice_melting_rate=project2d(md,md.basalforcings.floatingice_melting_rate,1);
288 end
[13692]289 md.basalforcings.geothermalflux=project2d(md,md.basalforcings.geothermalflux,1); %bedrock only gets geothermal flux
[13005]290
[21417]291 if isprop(md.calving,'coeff') & ~isnan(md.calving.coeff),
292 md.calving.coeff=project2d(md,md.calving.coeff,1);
293 end
294 if isprop(md.calving,'meltingrate') & ~isnan(md.calving.meltingrate),
295 md.calving.meltingrate=project2d(md,md.calving.meltingrate,1);
296 end
297
[13692]298 %update of connectivity matrix
299 md.mesh.average_vertex_connectivity=25;
[13005]300
[13692]301 %Collapse the mesh
302 nodes2d=md.mesh.numberofvertices2d;
303 elements2d=md.mesh.numberofelements2d;
[13005]304
[13692]305 %parameters
306 md.geometry.surface=project2d(md,md.geometry.surface,1);
307 md.geometry.thickness=project2d(md,md.geometry.thickness,1);
[17590]308 md.geometry.base=project2d(md,md.geometry.base,1);
[18480]309 if ~isnan(md.geometry.bed),
310 md.geometry.bed=project2d(md,md.geometry.bed,1);
311 end
[17991]312
[18378]313 if ~isnan(md.mask.groundedice_levelset),
314 md.mask.groundedice_levelset=project2d(md,md.mask.groundedice_levelset,1);
315 end
316 if ~isnan(md.mask.ice_levelset),
317 md.mask.ice_levelset=project2d(md,md.mask.ice_levelset,1);
318 end
[13005]319
[21808]320 %outputdefinitions
321 for i=1:length(md.outputdefinition.definitions)
322 if isobject(md.outputdefinition.definitions{i})
323 %get subfields
324 solutionsubfields=fields(md.outputdefinition.definitions{i});
325 for j=1:length(solutionsubfields),
326 field=md.outputdefinition.definitions{i}.(solutionsubfields{j});
327 if length(field)==md.mesh.numberofvertices | length(field)==md.mesh.numberofelements,
328 md.outputdefinition.definitions{i}.(solutionsubfields{j})=project2d(md,md.outputdefinition.definitions{i}.(solutionsubfields{j}),1);
329 end
330 end
331 end
332 end
333
[13692]334 %Initialize with the 2d mesh
[17724]335 mesh=mesh2d();
336 mesh.x=md.mesh.x2d;
337 mesh.y=md.mesh.y2d;
338 mesh.numberofvertices=md.mesh.numberofvertices2d;
339 mesh.numberofelements=md.mesh.numberofelements2d;
340 mesh.elements=md.mesh.elements2d;
[21499]341 if numel(md.mesh.lat) ==md.mesh.numberofvertices, mesh.lat=project2d(md,md.mesh.lat,1); end
342 if numel(md.mesh.long)==md.mesh.numberofvertices, mesh.long=project2d(md,md.mesh.long,1); end
343 mesh.epsg=md.mesh.epsg;
[17991]344 if ~isnan(md.mesh.vertexonboundary), mesh.vertexonboundary=project2d(md,md.mesh.vertexonboundary,1); end
345 if ~isnan(md.mesh.elementconnectivity), mesh.elementconnectivity=project2d(md,md.mesh.elementconnectivity,1); end
[17724]346 md.mesh=mesh;
[18738]347 md.mesh.vertexconnectivity=NodeConnectivity(md.mesh.elements,md.mesh.numberofvertices);
348 md.mesh.elementconnectivity=ElementConnectivity(md.mesh.elements,md.mesh.vertexconnectivity);
[19955]349 md.mesh.segments=contourenvelope(md.mesh);
[13005]350
[13692]351 end % }}}
352 function md2 = extract(md,area) % {{{
353 %extract - extract a model according to an Argus contour or flag list
354 %
355 % This routine extracts a submodel from a bigger model with respect to a given contour
356 % md must be followed by the corresponding exp file or flags list
357 % It can either be a domain file (argus type, .exp extension), or an array of element flags.
358 % If user wants every element outside the domain to be
[15564]359 % extract2d, add '~' to the name of the domain file (ex: '~HO.exp');
[13692]360 % an empty string '' will be considered as an empty domain
361 % a string 'all' will be considered as the entire domain
362 %
363 % Usage:
364 % md2=extract(md,area);
365 %
366 % Examples:
367 % md2=extract(md,'Domain.exp');
368 %
369 % See also: EXTRUDE, COLLAPSE
[13005]370
[13692]371 %copy model
372 md1=md;
[13005]373
[13692]374 %some checks
375 if ((nargin~=2) | (nargout~=1)),
376 help extract
377 error('extract error message: bad usage');
378 end
[13005]379
[13692]380 %get elements that are inside area
381 flag_elem=FlagElements(md1,area);
382 if ~any(flag_elem),
383 error('extracted model is empty');
384 end
[13005]385
[13692]386 %kick out all elements with 3 dirichlets
387 spc_elem=find(~flag_elem);
388 spc_node=sort(unique(md1.mesh.elements(spc_elem,:)));
389 flag=ones(md1.mesh.numberofvertices,1);
390 flag(spc_node)=0;
391 pos=find(sum(flag(md1.mesh.elements),2)==0);
392 flag_elem(pos)=0;
[13005]393
[13692]394 %extracted elements and nodes lists
395 pos_elem=find(flag_elem);
396 pos_node=sort(unique(md1.mesh.elements(pos_elem,:)));
[13005]397
[13692]398 %keep track of some fields
399 numberofvertices1=md1.mesh.numberofvertices;
400 numberofelements1=md1.mesh.numberofelements;
401 numberofvertices2=length(pos_node);
402 numberofelements2=length(pos_elem);
403 flag_node=zeros(numberofvertices1,1);
404 flag_node(pos_node)=1;
[13005]405
[13692]406 %Create Pelem and Pnode (transform old nodes in new nodes and same thing for the elements)
407 Pelem=zeros(numberofelements1,1);
408 Pelem(pos_elem)=[1:numberofelements2]';
409 Pnode=zeros(numberofvertices1,1);
410 Pnode(pos_node)=[1:numberofvertices2]';
[13005]411
[13857]412 %renumber the elements (some nodes won't exist anymore)
[13692]413 elements_1=md1.mesh.elements;
414 elements_2=elements_1(pos_elem,:);
415 elements_2(:,1)=Pnode(elements_2(:,1));
416 elements_2(:,2)=Pnode(elements_2(:,2));
417 elements_2(:,3)=Pnode(elements_2(:,3));
[17558]418 if isa(md1.mesh,'mesh3dprisms'),
[13692]419 elements_2(:,4)=Pnode(elements_2(:,4));
420 elements_2(:,5)=Pnode(elements_2(:,5));
421 elements_2(:,6)=Pnode(elements_2(:,6));
422 end
[13005]423
[13857]424 %OK, now create the new model!
[13005]425
[13857]426 %take every field from model
[13692]427 md2=md1;
[13005]428
[13692]429 %automatically modify fields
[13005]430
[13692]431 %loop over model fields
432 model_fields=fields(md1);
433 for i=1:length(model_fields),
434 %get field
435 field=md1.(model_fields{i});
436 fieldsize=size(field);
437 if isobject(field), %recursive call
438 object_fields=fields(md1.(model_fields{i}));
439 for j=1:length(object_fields),
440 %get field
441 field=md1.(model_fields{i}).(object_fields{j});
442 fieldsize=size(field);
443 %size = number of nodes * n
444 if fieldsize(1)==numberofvertices1
445 md2.(model_fields{i}).(object_fields{j})=field(pos_node,:);
446 elseif (fieldsize(1)==numberofvertices1+1)
447 md2.(model_fields{i}).(object_fields{j})=[field(pos_node,:); field(end,:)];
[13857]448 %size = number of elements * n
[13692]449 elseif fieldsize(1)==numberofelements1
450 md2.(model_fields{i}).(object_fields{j})=field(pos_elem,:);
[21428]451 elseif (fieldsize(1)==numberofelements1+1)
452 md2.(model_fields{i}).(object_fields{j})=[field(pos_elem,:); field(end,:)];
[13692]453 end
454 end
455 else
456 %size = number of nodes * n
457 if fieldsize(1)==numberofvertices1
458 md2.(model_fields{i})=field(pos_node,:);
459 elseif (fieldsize(1)==numberofvertices1+1)
460 md2.(model_fields{i})=[field(pos_node,:); field(end,:)];
[13857]461 %size = number of elements * n
[13692]462 elseif fieldsize(1)==numberofelements1
463 md2.(model_fields{i})=field(pos_elem,:);
[21428]464 elseif (fieldsize(1)==numberofelements1+1)
465 md2.(model_fields{i})=[field(pos_elem,:); field(end,:)];
[13692]466 end
467 end
468 end
[13005]469
[13692]470 %modify some specific fields
[13005]471
[13692]472 %Mesh
473 md2.mesh.numberofelements=numberofelements2;
474 md2.mesh.numberofvertices=numberofvertices2;
475 md2.mesh.elements=elements_2;
[13005]476
[13692]477 %mesh.uppervertex mesh.lowervertex
[17558]478 if isa(md1.mesh,'mesh3dprisms'),
[13692]479 md2.mesh.uppervertex=md1.mesh.uppervertex(pos_node);
480 pos=find(~isnan(md2.mesh.uppervertex));
481 md2.mesh.uppervertex(pos)=Pnode(md2.mesh.uppervertex(pos));
[13005]482
[13692]483 md2.mesh.lowervertex=md1.mesh.lowervertex(pos_node);
484 pos=find(~isnan(md2.mesh.lowervertex));
485 md2.mesh.lowervertex(pos)=Pnode(md2.mesh.lowervertex(pos));
[13005]486
[13692]487 md2.mesh.upperelements=md1.mesh.upperelements(pos_elem);
488 pos=find(~isnan(md2.mesh.upperelements));
489 md2.mesh.upperelements(pos)=Pelem(md2.mesh.upperelements(pos));
[13005]490
[13692]491 md2.mesh.lowerelements=md1.mesh.lowerelements(pos_elem);
492 pos=find(~isnan(md2.mesh.lowerelements));
493 md2.mesh.lowerelements(pos)=Pelem(md2.mesh.lowerelements(pos));
494 end
[13005]495
[13692]496 %Initial 2d mesh
[17558]497 if isa(md1.mesh,'mesh3dprisms'),
[13692]498 flag_elem_2d=flag_elem(1:md1.mesh.numberofelements2d);
499 pos_elem_2d=find(flag_elem_2d);
500 flag_node_2d=flag_node(1:md1.mesh.numberofvertices2d);
501 pos_node_2d=find(flag_node_2d);
[13005]502
[13692]503 md2.mesh.numberofelements2d=length(pos_elem_2d);
504 md2.mesh.numberofvertices2d=length(pos_node_2d);
505 md2.mesh.elements2d=md1.mesh.elements2d(pos_elem_2d,:);
506 md2.mesh.elements2d(:,1)=Pnode(md2.mesh.elements2d(:,1));
507 md2.mesh.elements2d(:,2)=Pnode(md2.mesh.elements2d(:,2));
508 md2.mesh.elements2d(:,3)=Pnode(md2.mesh.elements2d(:,3));
[13005]509
[13692]510 md2.mesh.x2d=md1.mesh.x(pos_node_2d);
511 md2.mesh.y2d=md1.mesh.y(pos_node_2d);
512 end
[13005]513
[13692]514 %Edges
[17686]515 if(dimension(md.mesh)==2),
[17563]516 if size(md2.mesh.edges,2)>1, %do not use ~isnan because there are some NaNs...
517 %renumber first two columns
518 pos=find(md2.mesh.edges(:,4)~=-1);
519 md2.mesh.edges(: ,1)=Pnode(md2.mesh.edges(:,1));
520 md2.mesh.edges(: ,2)=Pnode(md2.mesh.edges(:,2));
521 md2.mesh.edges(: ,3)=Pelem(md2.mesh.edges(:,3));
522 md2.mesh.edges(pos,4)=Pelem(md2.mesh.edges(pos,4));
523 %remove edges when the 2 vertices are not in the domain.
524 md2.mesh.edges=md2.mesh.edges(find(md2.mesh.edges(:,1) & md2.mesh.edges(:,2)),:);
525 %Replace all zeros by -1 in the last two columns
526 pos=find(md2.mesh.edges(:,3)==0);
527 md2.mesh.edges(pos,3)=-1;
528 pos=find(md2.mesh.edges(:,4)==0);
529 md2.mesh.edges(pos,4)=-1;
530 %Invert -1 on the third column with last column (Also invert first two columns!!)
531 pos=find(md2.mesh.edges(:,3)==-1);
532 md2.mesh.edges(pos,3)=md2.mesh.edges(pos,4);
533 md2.mesh.edges(pos,4)=-1;
534 values=md2.mesh.edges(pos,2);
535 md2.mesh.edges(pos,2)=md2.mesh.edges(pos,1);
536 md2.mesh.edges(pos,1)=values;
537 %Finally remove edges that do not belong to any element
538 pos=find(md2.mesh.edges(:,3)==-1 & md2.mesh.edges(:,4)==-1);
539 md2.mesh.edges(pos,:)=[];
540 end
[13692]541 end
[13005]542
[13692]543 %Penalties
[15771]544 if ~isnan(md2.stressbalance.vertex_pairing),
545 for i=1:size(md1.stressbalance.vertex_pairing,1);
546 md2.stressbalance.vertex_pairing(i,:)=Pnode(md1.stressbalance.vertex_pairing(i,:));
[13692]547 end
[15771]548 md2.stressbalance.vertex_pairing=md2.stressbalance.vertex_pairing(find(md2.stressbalance.vertex_pairing(:,1)),:);
[13692]549 end
[15767]550 if ~isnan(md2.masstransport.vertex_pairing),
551 for i=1:size(md1.masstransport.vertex_pairing,1);
552 md2.masstransport.vertex_pairing(i,:)=Pnode(md1.masstransport.vertex_pairing(i,:));
[13692]553 end
[15767]554 md2.masstransport.vertex_pairing=md2.masstransport.vertex_pairing(find(md2.masstransport.vertex_pairing(:,1)),:);
[13692]555 end
[13005]556
[13692]557 %recreate segments
[20322]558 if isa(md1.mesh,'mesh2d') | isa(md1.mesh','mesh3dsurface'),
[13692]559 md2.mesh.vertexconnectivity=NodeConnectivity(md2.mesh.elements,md2.mesh.numberofvertices);
560 md2.mesh.elementconnectivity=ElementConnectivity(md2.mesh.elements,md2.mesh.vertexconnectivity);
[19957]561 md2.mesh.segments=contourenvelope(md2.mesh);
[13692]562 md2.mesh.vertexonboundary=zeros(numberofvertices2,1); md2.mesh.vertexonboundary(md2.mesh.segments(:,1:2))=1;
563 else
564 %First do the connectivity for the contourenvelope in 2d
565 md2.mesh.vertexconnectivity=NodeConnectivity(md2.mesh.elements2d,md2.mesh.numberofvertices2d);
566 md2.mesh.elementconnectivity=ElementConnectivity(md2.mesh.elements2d,md2.mesh.vertexconnectivity);
[19957]567 segments=contourenvelope(md2.mesh);
[17565]568 md2.mesh.vertexonboundary=zeros(numberofvertices2/md2.mesh.numberoflayers,1); md2.mesh.vertexonboundary(segments(:,1:2))=1;
[13692]569 md2.mesh.vertexonboundary=repmat(md2.mesh.vertexonboundary,md2.mesh.numberoflayers,1);
570 %Then do it for 3d as usual
571 md2.mesh.vertexconnectivity=NodeConnectivity(md2.mesh.elements,md2.mesh.numberofvertices);
572 md2.mesh.elementconnectivity=ElementConnectivity(md2.mesh.elements,md2.mesh.vertexconnectivity);
573 end
[13005]574
[13692]575 %Boundary conditions: Dirichlets on new boundary
576 %Catch the elements that have not been extracted
577 orphans_elem=find(~flag_elem);
578 orphans_node=unique(md1.mesh.elements(orphans_elem,:))';
579 %Figure out which node are on the boundary between md2 and md1
580 nodestoflag1=intersect(orphans_node,pos_node);
581 nodestoflag2=Pnode(nodestoflag1);
[15771]582 if numel(md1.stressbalance.spcvx)>1 & numel(md1.stressbalance.spcvy)>2 & numel(md1.stressbalance.spcvz)>2,
[13692]583 if numel(md1.inversion.vx_obs)>1 & numel(md1.inversion.vy_obs)>1
[15771]584 md2.stressbalance.spcvx(nodestoflag2)=md2.inversion.vx_obs(nodestoflag2);
585 md2.stressbalance.spcvy(nodestoflag2)=md2.inversion.vy_obs(nodestoflag2);
[13692]586 else
[15771]587 md2.stressbalance.spcvx(nodestoflag2)=NaN;
588 md2.stressbalance.spcvy(nodestoflag2)=NaN;
[13692]589 disp(' ')
590 disp('!! extract warning: spc values should be checked !!')
591 disp(' ')
592 end
593 %put 0 for vz
[15771]594 md2.stressbalance.spcvz(nodestoflag2)=0;
[13692]595 end
596 if ~isnan(md1.thermal.spctemperature),
597 md2.thermal.spctemperature(nodestoflag2,1)=1;
598 end
[13005]599
[13692]600 %Results fields
601 if isstruct(md1.results),
602 md2.results=struct();
603 solutionfields=fields(md1.results);
604 for i=1:length(solutionfields),
[14230]605 if isstruct(md1.results.(solutionfields{i}))
606 %get subfields
607 solutionsubfields=fields(md1.results.(solutionfields{i}));
608 for j=1:length(solutionsubfields),
609 field=md1.results.(solutionfields{i}).(solutionsubfields{j});
610 if length(field)==numberofvertices1,
611 md2.results.(solutionfields{i}).(solutionsubfields{j})=field(pos_node);
612 elseif length(field)==numberofelements1,
613 md2.results.(solutionfields{i}).(solutionsubfields{j})=field(pos_elem);
614 else
615 md2.results.(solutionfields{i}).(solutionsubfields{j})=field;
616 end
617 end
618 else
619 field=md1.results.(solutionfields{i});
[13692]620 if length(field)==numberofvertices1,
[14230]621 md2.results.(solutionfields{i})=field(pos_node);
[13692]622 elseif length(field)==numberofelements1,
[14230]623 md2.results.(solutionfields{i})=field(pos_elem);
[13692]624 else
[14230]625 md2.results.(solutionfields{i})=field;
[13692]626 end
627 end
628 end
629 end
[13005]630
[21808]631 %OutputDefinitions fields
632 for i=1:length(md1.outputdefinition.definitions),
633 if isobject(md1.outputdefinition.definitions{i})
634 %get subfields
635 solutionsubfields=fields(md1.outputdefinition.definitions{i});
636 for j=1:length(solutionsubfields),
637 field=md1.outputdefinition.definitions{i}.(solutionsubfields{j});
638 if length(field)==numberofvertices1,
639 md2.outputdefinition.definitions{i}.(solutionsubfields{j})=field(pos_node);
640 elseif length(field)==numberofelements1,
641 md2.outputdefinition.definitions{i}.(solutionsubfields{j})=field(pos_elem);
642 end
643 end
644 end
645 end
646
[13692]647 %Keep track of pos_node and pos_elem
648 md2.mesh.extractedvertices=pos_node;
649 md2.mesh.extractedelements=pos_elem;
650 end % }}}
651 function md = extrude(md,varargin) % {{{
652 %EXTRUDE - vertically extrude a 2d mesh
653 %
654 % vertically extrude a 2d mesh and create corresponding 3d mesh.
655 % The vertical distribution can:
656 % - follow a polynomial law
657 % - follow two polynomial laws, one for the lower part and one for the upper part of the mesh
658 % - be discribed by a list of coefficients (between 0 and 1)
659 %
660 %
661 % Usage:
662 % md=extrude(md,numlayers,extrusionexponent);
663 % md=extrude(md,numlayers,lowerexponent,upperexponent);
664 % md=extrude(md,listofcoefficients);
665 %
666 % Example:
[18216]667 % md=extrude(md,15,1.3);
668 % md=extrude(md,15,1.3,1.2);
[13692]669 % md=extrude(md,[0 0.2 0.5 0.7 0.9 0.95 1]);
670 %
671 % See also: MODELEXTRACT, COLLAPSE
[13005]672
[13692]673 %some checks on list of arguments
674 if ((nargin>4) | (nargin<2) | (nargout~=1)),
675 help extrude;
676 error('extrude error message');
677 end
[13005]678
[13692]679 %Extrude the mesh
680 if nargin==2, %list of coefficients
681 clist=varargin{1};
682 if any(clist<0) | any(clist>1),
683 error('extrusioncoefficients must be between 0 and 1');
684 end
685 extrusionlist=sort(unique([clist(:);0;1]));
686 numlayers=length(extrusionlist);
687 elseif nargin==3, %one polynomial law
688 if varargin{2}<=0,
689 help extrude;
690 error('extrusionexponent must be >=0');
691 end
692 numlayers=varargin{1};
693 extrusionlist=((0:1:numlayers-1)/(numlayers-1)).^varargin{2};
694 elseif nargin==4, %two polynomial laws
695 numlayers=varargin{1};
696 lowerexp=varargin{2};
697 upperexp=varargin{3};
[13005]698
[13692]699 if varargin{2}<=0 | varargin{3}<=0,
700 help extrude;
701 error('lower and upper extrusionexponents must be >=0');
702 end
[13005]703
[13692]704 lowerextrusionlist=[(0:2/(numlayers-1):1).^lowerexp]/2;
705 upperextrusionlist=[(0:2/(numlayers-1):1).^upperexp]/2;
706 extrusionlist=sort(unique([lowerextrusionlist 1-upperextrusionlist]));
[13005]707
[13692]708 end
[13005]709
[13692]710 if numlayers<2,
711 error('number of layers should be at least 2');
712 end
[17686]713 if strcmp(md.mesh.domaintype(),'3D')
[13692]714 error('Cannot extrude a 3d mesh (extrude cannot be called more than once)');
715 end
[13005]716
[13692]717 %Initialize with the 2d mesh
[17558]718 mesh2d = md.mesh;
719 md.mesh=mesh3dprisms();
720 md.mesh.x = mesh2d.x;
721 md.mesh.y = mesh2d.y;
722 md.mesh.elements = mesh2d.elements;
723 md.mesh.numberofelements = mesh2d.numberofelements;
724 md.mesh.numberofvertices = mesh2d.numberofvertices;
725
726 md.mesh.lat = mesh2d.lat;
727 md.mesh.long = mesh2d.long;
[18558]728 md.mesh.epsg = mesh2d.epsg;
[17558]729
730 md.mesh.vertexonboundary = mesh2d.vertexonboundary;
731 md.mesh.vertexconnectivity = mesh2d.vertexconnectivity;
732 md.mesh.elementconnectivity = mesh2d.elementconnectivity;
733 md.mesh.average_vertex_connectivity = mesh2d.average_vertex_connectivity;
734
735 md.mesh.extractedvertices = mesh2d.extractedvertices;
736 md.mesh.extractedelements = mesh2d.extractedelements;
737
[13692]738 x3d=[];
739 y3d=[];
740 z3d=[]; %the lower node is on the bed
741 thickness3d=md.geometry.thickness; %thickness and bed for these nodes
[17590]742 bed3d=md.geometry.base;
[13005]743
[13692]744 %Create the new layers
745 for i=1:numlayers,
746 x3d=[x3d; md.mesh.x];
747 y3d=[y3d; md.mesh.y];
748 %nodes are distributed between bed and surface accordingly to the given exponent
749 z3d=[z3d; bed3d+thickness3d*extrusionlist(i)];
750 end
751 number_nodes3d=size(x3d,1); %number of 3d nodes for the non extruded part of the mesh
[13005]752
[13692]753 %Extrude elements
754 elements3d=[];
755 for i=1:numlayers-1,
756 elements3d=[elements3d;[md.mesh.elements+(i-1)*md.mesh.numberofvertices md.mesh.elements+i*md.mesh.numberofvertices]]; %Create the elements of the 3d mesh for the non extruded part
757 end
758 number_el3d=size(elements3d,1); %number of 3d nodes for the non extruded part of the mesh
[13005]759
[13692]760 %Keep a trace of lower and upper nodes
[17590]761 lowervertex=NaN*ones(number_nodes3d,1);
762 uppervertex=NaN*ones(number_nodes3d,1);
763 lowervertex(md.mesh.numberofvertices+1:end)=1:(numlayers-1)*md.mesh.numberofvertices;
764 uppervertex(1:(numlayers-1)*md.mesh.numberofvertices)=md.mesh.numberofvertices+1:number_nodes3d;
765 md.mesh.lowervertex=lowervertex;
766 md.mesh.uppervertex=uppervertex;
[13005]767
[13692]768 %same for lower and upper elements
[17590]769 lowerelements=NaN*ones(number_el3d,1);
770 upperelements=NaN*ones(number_el3d,1);
771 lowerelements(md.mesh.numberofelements+1:end)=1:(numlayers-2)*md.mesh.numberofelements;
772 upperelements(1:(numlayers-2)*md.mesh.numberofelements)=md.mesh.numberofelements+1:(numlayers-1)*md.mesh.numberofelements;
773 md.mesh.lowerelements=lowerelements;
774 md.mesh.upperelements=upperelements;
[13005]775
[13692]776 %Save old mesh
777 md.mesh.x2d=md.mesh.x;
778 md.mesh.y2d=md.mesh.y;
779 md.mesh.elements2d=md.mesh.elements;
780 md.mesh.numberofelements2d=md.mesh.numberofelements;
781 md.mesh.numberofvertices2d=md.mesh.numberofvertices;
[13005]782
[13692]783 %Build global 3d mesh
784 md.mesh.elements=elements3d;
785 md.mesh.x=x3d;
786 md.mesh.y=y3d;
787 md.mesh.z=z3d;
788 md.mesh.numberofelements=number_el3d;
789 md.mesh.numberofvertices=number_nodes3d;
790 md.mesh.numberoflayers=numlayers;
[13005]791
[13692]792 %Ok, now deal with the other fields from the 2d mesh:
[13005]793
[19048]794 %bedinfo and surface info
795 md.mesh.vertexonbase=project3d(md,'vector',ones(md.mesh.numberofvertices2d,1),'type','node','layer',1);
796 md.mesh.vertexonsurface=project3d(md,'vector',ones(md.mesh.numberofvertices2d,1),'type','node','layer',md.mesh.numberoflayers);
797 md.mesh.vertexonboundary=project3d(md,'vector',md.mesh.vertexonboundary,'type','node');
798
[13692]799 %lat long
800 md.mesh.lat=project3d(md,'vector',md.mesh.lat,'type','node');
801 md.mesh.long=project3d(md,'vector',md.mesh.long,'type','node');
[13005]802
[19048]803 md.geometry=extrude(md.geometry,md);
804 md.friction = extrude(md.friction,md);
805 md.inversion = extrude(md.inversion,md);
[19527]806 md.smb = extrude(md.smb,md);
[19048]807 md.initialization = extrude(md.initialization,md);
[13005]808
[19050]809 md.flowequation=md.flowequation.extrude(md);
[19048]810 md.stressbalance=extrude(md.stressbalance,md);
[19050]811 md.thermal=md.thermal.extrude(md);
812 md.masstransport=md.masstransport.extrude(md);
[20460]813 md.levelset=extrude(md.levelset,md);
[19048]814 md.calving=extrude(md.calving,md);
815 md.hydrology = extrude(md.hydrology,md);
[13005]816
[13692]817 %connectivity
[17991]818 if ~isnan(md.mesh.elementconnectivity)
819 md.mesh.elementconnectivity=repmat(md.mesh.elementconnectivity,numlayers-1,1);
820 md.mesh.elementconnectivity(find(md.mesh.elementconnectivity==0))=NaN;
821 for i=2:numlayers-1,
822 md.mesh.elementconnectivity((i-1)*md.mesh.numberofelements2d+1:(i)*md.mesh.numberofelements2d,:)...
823 =md.mesh.elementconnectivity((i-1)*md.mesh.numberofelements2d+1:(i)*md.mesh.numberofelements2d,:)+md.mesh.numberofelements2d;
824 end
825 md.mesh.elementconnectivity(find(isnan(md.mesh.elementconnectivity)))=0;
[13692]826 end
[13005]827
[19048]828 md.materials=extrude(md.materials,md);
829 md.damage=extrude(md.damage,md);
830 md.mask=extrude(md.mask,md);
831 md.qmu=extrude(md.qmu,md);
832 md.basalforcings=extrude(md.basalforcings,md);
[21808]833 md.outputdefinition=extrude(md.outputdefinition,md);
[13005]834
[13692]835 %increase connectivity if less than 25:
836 if md.mesh.average_vertex_connectivity<=25,
837 md.mesh.average_vertex_connectivity=100;
838 end
[13005]839 end % }}}
[13692]840 function md = structtomodel(md,structmd) % {{{
[8952]841
[13692]842 if ~isstruct(structmd) error('input model is not a structure'); end
[8952]843
[13692]844 %loaded model is a struct, initialize output and recover all fields
845 md = structtoobj(model,structmd);
[8952]846
[13692]847 %Old field now classes
848 if (isfield(structmd,'timestepping') & isnumeric(md.timestepping)), md.timestepping=timestepping(); end
849 if (isfield(structmd,'mask') & isnumeric(md.mask)),md.mask=mask(); end
[10452]850
[13692]851 %Field name change
852 if isfield(structmd,'drag'), md.friction.coefficient=structmd.drag; end
853 if isfield(structmd,'p'), md.friction.p=structmd.p; end
854 if isfield(structmd,'q'), md.friction.q=structmd.p; end
[18378]855 if isfield(structmd,'melting'), md.basalforcings.floatingice_melting_rate=structmd.melting; end
[18068]856 if isfield(structmd,'melting_rate'), md.basalforcings.floatingice_melting_rate=structmd.melting_rate; end
[18378]857 if isfield(structmd,'melting_rate'), md.basalforcings.groundedice_melting_rate=structmd.melting_rate; end
[19527]858 if isfield(structmd,'accumulation'), md.smb.mass_balance=structmd.accumulation; end
[13692]859 if isfield(structmd,'numberofgrids'), md.mesh.numberofvertices=structmd.numberofgrids; end
860 if isfield(structmd,'numberofgrids2d'), md.mesh.numberofvertices2d=structmd.numberofgrids2d; end
861 if isfield(structmd,'uppergrids'), md.mesh.uppervertex=structmd.uppergrids; end
862 if isfield(structmd,'lowergrids'), md.mesh.lowervertex=structmd.lowergrids; end
[17610]863 if isfield(structmd,'gridonbase'), md.mesh.vertexonbase=structmd.gridonbase; end
[13692]864 if isfield(structmd,'gridonsurface'), md.mesh.vertexonsurface=structmd.gridonsurface; end
865 if isfield(structmd,'extractedgrids'), md.mesh.extractedvertices=structmd.extractedgrids; end
866 if isfield(structmd,'gridonboundary'), md.mesh.vertexonboundary=structmd.gridonboundary; end
[14621]867 if isfield(structmd,'petscoptions') & ~isempty(structmd.petscoptions), md.toolkits=structmd.petscoptions; end
[13692]868 if isfield(structmd,'g'), md.constants.g=structmd.g; end
869 if isfield(structmd,'yts'), md.constants.yts=structmd.yts; end
[19527]870 if isfield(structmd,'surface_mass_balance'), md.smb.mass_balance=structmd.surface_mass_balance; end
[18068]871 if isfield(structmd,'basal_melting_rate'), md.basalforcings.floatingice_melting_rate=structmd.basal_melting_rate; end
[13692]872 if isfield(structmd,'geothermalflux'), md.basalforcings.geothermalflux=structmd.geothermalflux; end
873 if isfield(structmd,'drag'), md.friction.coefficient=structmd.drag; end
874 if isfield(structmd,'drag_coefficient'), md.friction.coefficient=structmd.drag_coefficient; end
875 if isfield(structmd,'drag_p'), md.friction.p=structmd.drag_p; end
876 if isfield(structmd,'drag_q'), md.friction.q=structmd.drag_q; end
877 if isfield(structmd,'riftproperties'), %old implementation
878 md.rifts=rifts();
879 md.rifts.riftproperties=structmd.riftproperties;
880 md.rifts.riftstruct=structmd.rifts;
881 md.rifts.riftproperties=structmd.riftinfo;
882 end
883 if isfield(structmd,'bamg'), md.private.bamg=structmd.bamg; end
884 if isfield(structmd,'lowmem'), md.settings.lowmem=structmd.lowmem; end
885 if isfield(structmd,'io_gather'), md.settings.io_gather=structmd.io_gather; end
886 if isfield(structmd,'spcwatercolumn'), md.hydrology.spcwatercolumn=structmd.spcwatercolumn; end
887 if isfield(structmd,'hydro_n'), md.hydrology.n=structmd.hydro_n; end
888 if isfield(structmd,'hydro_p'), md.hydrology.p=structmd.hydro_p; end
889 if isfield(structmd,'hydro_q'), md.hydrology.q=structmd.hydro_q; end
890 if isfield(structmd,'hydro_CR'), md.hydrology.CR=structmd.hydro_CR; end
891 if isfield(structmd,'hydro_kn'), md.hydrology.kn=structmd.hydro_kn; end
892 if isfield(structmd,'spctemperature'), md.thermal.spctemperature=structmd.spctemperature; end
893 if isfield(structmd,'min_thermal_constraints'), md.thermal.penalty_threshold=structmd.min_thermal_constraints; end
894 if isfield(structmd,'artificial_diffusivity'), md.thermal.stabilization=structmd.artificial_diffusivity; end
895 if isfield(structmd,'max_nonlinear_iterations'), md.thermal.maxiter=structmd.max_nonlinear_iterations; end
896 if isfield(structmd,'stabilize_constraints'), md.thermal.penalty_lock=structmd.stabilize_constraints; end
897 if isfield(structmd,'penalty_offset'), md.thermal.penalty_factor=structmd.penalty_offset; end
898 if isfield(structmd,'name'), md.miscellaneous.name=structmd.name; end
899 if isfield(structmd,'notes'), md.miscellaneous.notes=structmd.notes; end
900 if isfield(structmd,'dummy'), md.miscellaneous.dummy=structmd.dummy; end
901 if isfield(structmd,'dt'), md.timestepping.time_step=structmd.dt; end
902 if isfield(structmd,'ndt'), md.timestepping.final_time=structmd.ndt; end
903 if isfield(structmd,'time_adapt'), md.timestepping.time_adapt=structmd.time_adapt; end
904 if isfield(structmd,'cfl_coefficient'), md.timestepping.cfl_coefficient=structmd.cfl_coefficient; end
[15767]905 if isfield(structmd,'spcthickness'), md.masstransport.spcthickness=structmd.spcthickness; end
906 if isfield(structmd,'artificial_diffusivity'), md.masstransport.stabilization=structmd.artificial_diffusivity; end
907 if isfield(structmd,'hydrostatic_adjustment'), md.masstransport.hydrostatic_adjustment=structmd.hydrostatic_adjustment; end
908 if isfield(structmd,'penalties'), md.masstransport.vertex_pairing=structmd.penalties; end
909 if isfield(structmd,'penalty_offset'), md.masstransport.penalty_factor=structmd.penalty_offset; end
[13692]910 if isfield(structmd,'B'), md.materials.rheology_B=structmd.B; end
911 if isfield(structmd,'n'), md.materials.rheology_n=structmd.n; end
912 if isfield(structmd,'rheology_B'), md.materials.rheology_B=structmd.rheology_B; end
913 if isfield(structmd,'rheology_n'), md.materials.rheology_n=structmd.rheology_n; end
[16160]914 if isfield(structmd,'rheology_Z'), md.damage.D=(1-structmd.rheology_Z); end
[13692]915 if isfield(structmd,'spcthickness'), md.balancethickness.spcthickness=structmd.spcthickness; end
916 if isfield(structmd,'artificial_diffusivity'), md.balancethickness.stabilization=structmd.artificial_diffusivity; end
917 if isfield(structmd,'dhdt'), md.balancethickness.thickening_rate=structmd.dhdt; end
[15564]918 if isfield(structmd,'isSIA'), md.flowequation.isSIA=structmd.isSIA; end
919 if isfield(structmd,'isFS'), md.flowequation.isFS=structmd.isFS; end
[13692]920 if isfield(structmd,'elements_type'), md.flowequation.element_equation=structmd.elements_type; end
921 if isfield(structmd,'vertices_type'), md.flowequation.vertex_equation=structmd.vertices_type; end
922 if isfield(structmd,'eps_rel'), md.steadystate.reltol=structmd.eps_rel; end
923 if isfield(structmd,'max_steadystate_iterations'), md.steadystate.maxiter=structmd.max_steadystate_iterations; end
[15771]924 if isfield(structmd,'isdiagnostic'), md.transient.isstressbalance=structmd.isdiagnostic; end
[15768]925 if isfield(structmd,'isprognostic'), md.transient.ismasstransport=structmd.isprognostic; end
[13692]926 if isfield(structmd,'isthermal'), md.transient.isthermal=structmd.isthermal; end
927 if isfield(structmd,'control_analysis'), md.inversion.iscontrol=structmd.control_analysis; end
928 if isfield(structmd,'weights'), md.inversion.cost_functions_coefficients=structmd.weights; end
929 if isfield(structmd,'nsteps'), md.inversion.nsteps=structmd.nsteps; end
930 if isfield(structmd,'maxiter_per_step'), md.inversion.maxiter_per_step=structmd.maxiter_per_step; end
931 if isfield(structmd,'cm_min'), md.inversion.min_parameters=structmd.cm_min; end
932 if isfield(structmd,'cm_max'), md.inversion.max_parameters=structmd.cm_max; end
933 if isfield(structmd,'vx_obs'), md.inversion.vx_obs=structmd.vx_obs; end
934 if isfield(structmd,'vy_obs'), md.inversion.vy_obs=structmd.vy_obs; end
935 if isfield(structmd,'vel_obs'), md.inversion.vel_obs=structmd.vel_obs; end
936 if isfield(structmd,'thickness_obs'), md.inversion.thickness_obs=structmd.thickness_obs; end
937 if isfield(structmd,'vx'), md.initialization.vx=structmd.vx; end
938 if isfield(structmd,'vy'), md.initialization.vy=structmd.vy; end
939 if isfield(structmd,'vz'), md.initialization.vz=structmd.vz; end
940 if isfield(structmd,'vel'), md.initialization.vel=structmd.vel; end
941 if isfield(structmd,'pressure'), md.initialization.pressure=structmd.pressure; end
942 if isfield(structmd,'temperature'), md.initialization.temperature=structmd.temperature; end
943 if isfield(structmd,'waterfraction'), md.initialization.waterfraction=structmd.waterfraction; end
944 if isfield(structmd,'watercolumn'), md.initialization.watercolumn=structmd.watercolumn; end
945 if isfield(structmd,'surface'), md.geometry.surface=structmd.surface; end
[17590]946 if isfield(structmd,'bed'), md.geometry.base=structmd.bed; end
[13692]947 if isfield(structmd,'thickness'), md.geometry.thickness=structmd.thickness; end
[17590]948 if isfield(structmd,'bathymetry'), md.geometry.bed=structmd.bathymetry; end
[13692]949 if isfield(structmd,'thickness_coeff'), md.geometry.hydrostatic_ratio=structmd.thickness_coeff; end
950 if isfield(structmd,'connectivity'), md.mesh.average_vertex_connectivity=structmd.connectivity; end
951 if isfield(structmd,'extractednodes'), md.mesh.extractedvertices=structmd.extractednodes; end
952 if isfield(structmd,'extractedelements'), md.mesh.extractedelements=structmd.extractedelements; end
953 if isfield(structmd,'nodeonboundary'), md.mesh.vertexonboundary=structmd.nodeonboundary; end
954 if isfield(structmd,'lat'), md.mesh.lat=structmd.lat; end
955 if isfield(structmd,'long'), md.mesh.long=structmd.long; end
956 if isfield(structmd,'segments'), md.mesh.segments=structmd.segments; end
957 if isfield(structmd,'segmentmarkers'), md.mesh.segmentmarkers=structmd.segmentmarkers; end
958 if isfield(structmd,'numlayers'), md.mesh.numberoflayers=structmd.numlayers; end
959 if isfield(structmd,'numberofelements'), md.mesh.numberofelements=structmd.numberofelements; end
960 if isfield(structmd,'numberofvertices'), md.mesh.numberofvertices=structmd.numberofvertices; end
961 if isfield(structmd,'numberofnodes'), md.mesh.numberofvertices=structmd.numberofnodes; end
962 if isfield(structmd,'numberofedges'), md.mesh.numberofedges=structmd.numberofedges; end
963 if isfield(structmd,'numberofelements2d'), md.mesh.numberofelements2d=structmd.numberofelements2d; end
964 if isfield(structmd,'numberofnodes2d'), md.mesh.numberofvertices2d=structmd.numberofnodes2d; end
965 if isfield(structmd,'nodeconnectivity'), md.mesh.vertexconnectivity=structmd.nodeconnectivity; end
966 if isfield(structmd,'elementconnectivity'), md.mesh.elementconnectivity=structmd.elementconnectivity; end
967 if isfield(structmd,'uppernodes'), md.mesh.uppervertex=structmd.uppernodes; end
968 if isfield(structmd,'lowernodes'), md.mesh.lowervertex=structmd.lowernodes; end
969 if isfield(structmd,'upperelements'), md.mesh.upperelements=structmd.upperelements; end
970 if isfield(structmd,'lowerelements'), md.mesh.lowerelements=structmd.lowerelements; end
971 if isfield(structmd,'nodeonsurface'), md.mesh.vertexonsurface=structmd.nodeonsurface; end
[17610]972 if isfield(structmd,'nodeonbase'), md.mesh.vertexonbase=structmd.nodeonbase; end
[13692]973 if isfield(structmd,'elements2d'), md.mesh.elements2d=structmd.elements2d; end
974 if isfield(structmd,'y2d'), md.mesh.y2d=structmd.y2d; end
975 if isfield(structmd,'x2d'), md.mesh.x2d=structmd.x2d; end
976 if isfield(structmd,'elements'), md.mesh.elements=structmd.elements; end
[13717]977 if isfield(structmd,'edges'),
978 md.mesh.edges=structmd.edges;
979 md.mesh.edges(isnan(md.mesh.edges))=-1;
980 end
[13692]981 if isfield(structmd,'y'), md.mesh.y=structmd.y; end
982 if isfield(structmd,'x'), md.mesh.x=structmd.x; end
983 if isfield(structmd,'z'), md.mesh.z=structmd.z; end
[15771]984 if isfield(structmd,'diagnostic_ref'), md.stressbalance.referential=structmd.diagnostic_ref; end
[13692]985 if isfield(structmd,'npart'); md.qmu.numberofpartitions=structmd.npart; end
986 if isfield(structmd,'part'); md.qmu.partition=structmd.part; end
[13646]987
[13692]988 if isnumeric(md.verbose),
989 md.verbose=verbose;
990 end
[15768]991
[13692]992 if isfield(structmd,'spcvelocity'),
[15771]993 md.stressbalance.spcvx=NaN*ones(md.mesh.numberofvertices,1);
994 md.stressbalance.spcvy=NaN*ones(md.mesh.numberofvertices,1);
995 md.stressbalance.spcvz=NaN*ones(md.mesh.numberofvertices,1);
996 pos=find(structmd.spcvelocity(:,1)); md.stressbalance.spcvx(pos)=structmd.spcvelocity(pos,4);
997 pos=find(structmd.spcvelocity(:,2)); md.stressbalance.spcvy(pos)=structmd.spcvelocity(pos,5);
998 pos=find(structmd.spcvelocity(:,3)); md.stressbalance.spcvz(pos)=structmd.spcvelocity(pos,6);
[13692]999 end
1000 if isfield(structmd,'spcvx'),
[15771]1001 md.stressbalance.spcvx=NaN*ones(md.mesh.numberofvertices,1);
1002 pos=find(~isnan(structmd.spcvx)); md.stressbalance.spcvx(pos)=structmd.spcvx(pos);
[13692]1003 end
1004 if isfield(structmd,'spcvy'),
[15771]1005 md.stressbalance.spcvy=NaN*ones(md.mesh.numberofvertices,1);
1006 pos=find(~isnan(structmd.spcvy)); md.stressbalance.spcvy(pos)=structmd.spcvy(pos);
[13692]1007 end
1008 if isfield(structmd,'spcvz'),
[15771]1009 md.stressbalance.spcvz=NaN*ones(md.mesh.numberofvertices,1);
1010 pos=find(~isnan(structmd.spcvz)); md.stressbalance.spcvz(pos)=structmd.spcvz(pos);
[13692]1011 end
[14620]1012 if isfield(structmd,'pressureload'),
1013 if ~isempty(structmd.pressureload) & ismember(structmd.pressureload(end,end),[118 119 120]),
[15771]1014 pos=find(structmd.pressureload(:,end)==120); md.stressbalance.icefront(pos,end)=0;
1015 pos=find(structmd.pressureload(:,end)==118); md.stressbalance.icefront(pos,end)=1;
1016 pos=find(structmd.pressureload(:,end)==119); md.stressbalance.icefront(pos,end)=2;
[14620]1017 end
[13692]1018 end
1019 if isfield(structmd,'elements_type') & structmd.elements_type(end,end)>50,
1020 pos=find(structmd.elements_type==59); md.flowequation.element_equation(pos,end)=0;
1021 pos=find(structmd.elements_type==55); md.flowequation.element_equation(pos,end)=1;
1022 pos=find(structmd.elements_type==56); md.flowequation.element_equation(pos,end)=2;
1023 pos=find(structmd.elements_type==60); md.flowequation.element_equation(pos,end)=3;
1024 pos=find(structmd.elements_type==62); md.flowequation.element_equation(pos,end)=4;
1025 pos=find(structmd.elements_type==57); md.flowequation.element_equation(pos,end)=5;
1026 pos=find(structmd.elements_type==58); md.flowequation.element_equation(pos,end)=6;
1027 pos=find(structmd.elements_type==61); md.flowequation.element_equation(pos,end)=7;
1028 end
1029 if isfield(structmd,'vertices_type') & structmd.vertices_type(end,end)>50,
1030 pos=find(structmd.vertices_type==59); md.flowequation.vertex_equation(pos,end)=0;
1031 pos=find(structmd.vertices_type==55); md.flowequation.vertex_equation(pos,end)=1;
1032 pos=find(structmd.vertices_type==56); md.flowequation.vertex_equation(pos,end)=2;
1033 pos=find(structmd.vertices_type==60); md.flowequation.vertex_equation(pos,end)=3;
1034 pos=find(structmd.vertices_type==62); md.flowequation.vertex_equation(pos,end)=4;
1035 pos=find(structmd.vertices_type==57); md.flowequation.vertex_equation(pos,end)=5;
1036 pos=find(structmd.vertices_type==58); md.flowequation.vertex_equation(pos,end)=6;
1037 pos=find(structmd.vertices_type==61); md.flowequation.vertex_equation(pos,end)=7;
1038 end
1039 if isfield(structmd,'rheology_law') & isnumeric(structmd.rheology_law),
1040 if (structmd.rheology_law==272), md.materials.rheology_law='None'; end
1041 if (structmd.rheology_law==368), md.materials.rheology_law='Paterson'; end
1042 if (structmd.rheology_law==369), md.materials.rheology_law='Arrhenius'; end
1043 end
1044 if isfield(structmd,'groundingline_migration') & isnumeric(structmd.groundingline_migration),
1045 if (structmd.groundingline_migration==272), md.groundingline.migration='None'; end
[17941]1046 if (structmd.groundingline_migration==273), md.groundingline.migration='AggressiveMigration'; end
[13692]1047 if (structmd.groundingline_migration==274), md.groundingline.migration='SoftMigration'; end
1048 end
1049 if isfield(structmd,'control_type') & isnumeric(structmd.control_type),
1050 if (structmd.control_type==143), md.inversion.control_parameters={'FrictionCoefficient'}; end
1051 if (structmd.control_type==190), md.inversion.control_parameters={'RheologyBbar'}; end
1052 if (structmd.control_type==147), md.inversion.control_parameters={'Thickeningrate'}; end
1053 end
1054 if isfield(structmd,'cm_responses') & ismember(structmd.cm_responses(end,end),[165:170 383 388 389]),
1055 pos=find(structmd.cm_responses==166); md.inversion.cost_functions(pos)=101;
1056 pos=find(structmd.cm_responses==167); md.inversion.cost_functions(pos)=102;
1057 pos=find(structmd.cm_responses==168); md.inversion.cost_functions(pos)=103;
1058 pos=find(structmd.cm_responses==169); md.inversion.cost_functions(pos)=104;
1059 pos=find(structmd.cm_responses==170); md.inversion.cost_functions(pos)=105;
1060 pos=find(structmd.cm_responses==165); md.inversion.cost_functions(pos)=201;
1061 pos=find(structmd.cm_responses==389); md.inversion.cost_functions(pos)=501;
1062 pos=find(structmd.cm_responses==388); md.inversion.cost_functions(pos)=502;
1063 pos=find(structmd.cm_responses==382); md.inversion.cost_functions(pos)=503;
1064 end
[11659]1065
[13692]1066 if isfield(structmd,'artificial_diffusivity') & structmd.artificial_diffusivity==2,
1067 md.thermal.stabilization=2;
[15767]1068 md.masstransport.stabilization=1;
[13692]1069 md.balancethickness.stabilization=1;
1070 end
[15767]1071 if isnumeric(md.masstransport.hydrostatic_adjustment)
1072 if md.masstransport.hydrostatic_adjustment==269,
1073 md.masstransport.hydrostatic_adjustment='Incremental';
[13692]1074 else
[15767]1075 md.masstransport.hydrostatic_adjustment='Absolute';
[13692]1076 end
1077 end
[8952]1078
[13692]1079 %New fields
[19124]1080 if ~isfield(structmd,'upperelements') & isa(md.mesh,'mesh3dprisms')
[13692]1081 md.mesh.upperelements=transpose(1:md.mesh.numberofelements)+md.mesh.numberofelements2d;
1082 md.mesh.upperelements(end-md.mesh.numberofelements2d+1:end)=NaN;
1083 end
[19124]1084 if ~isfield(structmd,'lowerelements') & isa(md.mesh,'mesh3dprisms')
[13692]1085 md.mesh.lowerelements=transpose(1:md.mesh.numberofelements)-md.mesh.numberofelements2d;
1086 md.mesh.lowerelements(1:md.mesh.numberofelements2d)=NaN;
1087 end
1088 if ~isfield(structmd,'diagnostic_ref');
[15771]1089 md.stressbalance.referential=NaN*ones(md.mesh.numberofvertices,6);
[13692]1090 end
[14529]1091 if ~isfield(structmd,'loadingforce');
[15771]1092 md.stressbalance.loadingforce=0*ones(md.mesh.numberofvertices,3);
[14529]1093 end
[15768]1094
1095 %2013 August 9
1096 if isfield(structmd,'prognostic') & isa(structmd.prognostic,'prognostic'),
1097 disp('Recovering old prognostic class');
1098 md.masstransport=masstransport(structmd.prognostic);
1099 end
[15771]1100 %2013 August 9
[15775]1101 if isfield(structmd,'diagnostic') & (isa(structmd.diagnostic,'diagnostic') || isa(structmd.diagnostic,'stressbalance')),
[15771]1102 disp('Recovering old diagnostic class');
[15775]1103 md.stressbalance=stressbalance(structmd.diagnostic);
[15771]1104 end
[19642]1105 %2014 January 9th
[21148]1106 if isfield(structmd,'surfaceforcings') & isa(md.smb,'surfaceforcings'),
[19642]1107 disp('Recovering old surfaceforcings class');
1108 mass_balance=structmd.surfaceforcings.mass_balance;
1109 md.smb=SMB();
1110 md.smb.mass_balance=mass_balance;
1111 end
1112 %2015 September 10
[21148]1113 if isfield(structmd,'surfaceforcings') & isa(structmd.surfaceforcings,'SMB'),
[19642]1114 disp('Recovering old SMB class');
1115 md.smb=SMBforcing(structmd.surfaceforcings);
1116 end
[21148]1117 if isfield(structmd,'surfaceforcings') & isa(structmd.surfaceforcings,'SMBhenning'),
1118 disp('Recovering old SMBhenning class');
1119 md.smb=SMBhenning(structmd.surfaceforcings);
1120 end
[19642]1121
[13692]1122 end% }}}
1123 function md = setdefaultparameters(md) % {{{
[8926]1124
[13692]1125 %initialize subclasses
[17558]1126 md.mesh = mesh2d();
[13692]1127 md.mask = mask();
1128 md.constants = constants();
1129 md.geometry = geometry();
1130 md.initialization = initialization();
[19527]1131 md.smb = SMBforcing();
[13692]1132 md.basalforcings = basalforcings();
1133 md.friction = friction();
1134 md.rifts = rifts();
[19984]1135 md.slr = slr();
[13692]1136 md.timestepping = timestepping();
1137 md.groundingline = groundingline();
1138 md.materials = matice();
[16160]1139 md.damage = damage();
[13692]1140 md.flowequation = flowequation();
1141 md.debug = debug();
[14558]1142 md.verbose = verbose();
[13692]1143 md.settings = settings();
[17932]1144 md.toolkits = toolkits();
[13692]1145 md.cluster = generic();
1146 md.balancethickness = balancethickness();
[17079]1147 md.stressbalance = stressbalance();
[14555]1148 md.hydrology = hydrologyshreve();
[17079]1149 md.masstransport = masstransport();
[13692]1150 md.thermal = thermal();
1151 md.steadystate = steadystate();
1152 md.transient = transient();
[22040]1153 md.levelset = levelset();
[18757]1154 md.calving = calving();
[22040]1155 md.gia = giaivins();
1156 md.love = fourierlove();
[21260]1157 md.esa = esa();
[13692]1158 md.autodiff = autodiff();
1159 md.inversion = inversion();
1160 md.qmu = qmu();
[22040]1161 md.amr = amr();
[13692]1162 md.radaroverlay = radaroverlay();
1163 md.results = struct();
[16388]1164 md.outputdefinition = outputdefinition();
[13692]1165 md.miscellaneous = miscellaneous();
1166 md.private = private();
1167 end
1168 %}}}
[17483]1169 function md = tetras(md,varargin) % {{{
1170 %TETRAS - split 3d prismatic mesh into 3 tetrahedrons
1171 %
1172 % Usage:
1173 % md=tetra(md)
1174
1175 if ~isa(md.mesh,'mesh3dprisms')
1176 error('mesh is not a 3d prismatic mesh');
1177 end
1178
1179 %Initialize tetra mesh
1180 md.mesh=mesh3dtetras(md.mesh);
1181
[17754]1182 %Subdivision from Philipp Furnstahl (http://studierstube.icg.tugraz.at/thesis/fuernstahl_thesis.pdf)
1183 steiner = 0;
1184 nbv = md.mesh.numberofvertices;
1185 nbt = 3*md.mesh.numberofelements;
1186 elements = zeros(nbt,4);
1187 for i=1:md.mesh.numberofelements
1188 v1=md.mesh.elements(i,1); v2=md.mesh.elements(i,2); v3=md.mesh.elements(i,3);
1189 v4=md.mesh.elements(i,4); v5=md.mesh.elements(i,5); v6=md.mesh.elements(i,6);
1190 if(min(v2,v4)<min(v1,v5) & min(v1,v6)<min(v3,v4) & min(v3,v5)<min(v2,v6)),
1191 steiner = steiner+1; nbv = nbv+1; nbt = nbt+5; v7 = nbv;
1192 md.mesh.x=[md.mesh.x; mean(md.mesh.x(md.mesh.elements(i,:)))];
1193 md.mesh.y=[md.mesh.y; mean(md.mesh.y(md.mesh.elements(i,:)))];
1194 md.mesh.z=[md.mesh.z; mean(md.mesh.z(md.mesh.elements(i,:)))];
1195 elements(3*(i-1)+1,:) = [v1 v2 v3 v7];
1196 elements(3*(i-1)+2,:) = [v1 v2 v4 v7];
1197 elements(3*(i-1)+3,:) = [v2 v4 v5 v7];
1198 elements(end+1,:) = [v2 v3 v5 v7];
1199 elements(end+1,:) = [v3 v5 v6 v7];
1200 elements(end+1,:) = [v1 v3 v6 v7];
1201 elements(end+1,:) = [v1 v4 v6 v7];
1202 elements(end+1,:) = [v4 v5 v6 v7];
1203 elseif(min(v2,v4)<min(v1,v5) & min(v1,v6)<min(v3,v4) & min(v3,v5)>min(v2,v6)),
1204 elements(3*(i-1)+1,:) = [v1 v2 v4 v6];
1205 elements(3*(i-1)+2,:) = [v2 v4 v5 v6];
1206 elements(3*(i-1)+3,:) = [v1 v2 v3 v6];
1207 elseif(min(v2,v4)<min(v1,v5) & min(v1,v6)>min(v3,v4) & min(v3,v5)<min(v2,v6)),
1208 elements(3*(i-1)+1,:) = [v1 v2 v3 v4];
1209 elements(3*(i-1)+2,:) = [v2 v3 v4 v5];
1210 elements(3*(i-1)+3,:) = [v3 v4 v5 v6];
1211 elseif(min(v2,v4)<min(v1,v5) & min(v1,v6)>min(v3,v4) & min(v3,v5)>min(v2,v6)),
1212 elements(3*(i-1)+1,:) = [v1 v2 v3 v4];
1213 elements(3*(i-1)+2,:) = [v2 v4 v5 v6];
1214 elements(3*(i-1)+3,:) = [v2 v3 v4 v6];
[18142]1215 elseif(min(v2,v4)>min(v1,v5) & min(v1,v6)<min(v3,v4) & min(v3,v5)<min(v2,v6)),
[17754]1216 elements(3*(i-1)+1,:) = [v1 v4 v5 v6];
1217 elements(3*(i-1)+2,:) = [v1 v2 v3 v5];
1218 elements(3*(i-1)+3,:) = [v1 v3 v5 v6];
1219 elseif(min(v2,v4)>min(v1,v5) & min(v1,v6)<min(v3,v4) & min(v3,v5)>min(v2,v6)),
1220 elements(3*(i-1)+1,:) = [v1 v4 v5 v6];
1221 elements(3*(i-1)+2,:) = [v1 v2 v5 v6];
1222 elements(3*(i-1)+3,:) = [v1 v2 v3 v6];
1223 elseif(min(v2,v4)>min(v1,v5) & min(v1,v6)>min(v3,v4) & min(v3,v5)<min(v2,v6)),
1224 elements(3*(i-1)+1,:) = [v1 v3 v4 v5];
1225 elements(3*(i-1)+2,:) = [v1 v2 v3 v5];
1226 elements(3*(i-1)+3,:) = [v3 v4 v5 v6];
1227 elseif(min(v2,v4)>min(v1,v5) & min(v1,v6)<min(v3,v4) & min(v3,v5)<min(v2,v6)),
1228 elements(3*(i-1)+1,:) = [v1 v5 v6 v4];
1229 elements(3*(i-1)+2,:) = [v1 v2 v3 v5];
1230 elements(3*(i-1)+3,:) = [v5 v6 v3 v1];
1231 elseif(min(v2,v4)>min(v1,v5) & min(v1,v6)>min(v3,v4) & min(v3,v5)>min(v2,v6)),
1232 steiner = steiner+1; nbv = nbv+1; nbt = nbt+5; v7 = nbv;
1233 md.mesh.x=[md.mesh.x; mean(md.mesh.x(md.mesh.elements(i,:)))];
1234 md.mesh.y=[md.mesh.y; mean(md.mesh.y(md.mesh.elements(i,:)))];
1235 md.mesh.z=[md.mesh.z; mean(md.mesh.z(md.mesh.elements(i,:)))];
1236 elements(3*(i-1)+1,:) = [v1 v2 v3 v7];
1237 elements(3*(i-1)+2,:) = [v1 v4 v5 v7];
1238 elements(3*(i-1)+3,:) = [v1 v2 v5 v7];
1239 elements(end+1,:) = [v2 v5 v6 v7];
1240 elements(end+1,:) = [v2 v3 v6 v7];
1241 elements(end+1,:) = [v3 v4 v6 v7];
1242 elements(end+1,:) = [v1 v3 v4 v7];
1243 elements(end+1,:) = [v4 v5 v6 v7];
1244 else
1245 error('Case not supported'); %not supposed to happen!
1246 end
[17774]1247 %Reorder elements to make sure they are direct
1248 for j=1:3
1249 element = elements(3*(i-1)+j,:);
1250 matrix = [md.mesh.x(element), md.mesh.y(element), md.mesh.z(element), ones(4,1)];
1251 if det(matrix)>0,
1252 elements(3*(i-1)+j,1)=element(2);
1253 elements(3*(i-1)+j,2)=element(1);
1254 end
1255 end
[17754]1256 end
1257 %%Split in 3 tetras
1258 %subelement1 = [1 2 3 5];
1259 %subelement2 = [4 6 5 1];
1260 %subelement3 = [5 6 3 1];
1261 %elements=[md.mesh.elements(:,subelement1);md.mesh.elements(:,subelement2);md.mesh.elements(:,subelement3)];
[17774]1262 if steiner==0,
1263 disp('No Steiner point required to split prismatic mesh into tets');
1264 else
1265 disp([num2str(steiner) ' Steiner points had to be included'])
1266 error('Steiner point not supported yet');
1267 end
[17754]1268
[17483]1269 pos_elements = repmat([1:md.mesh.numberofelements]',3,1);
1270
1271 md.mesh.elements=elements;
1272 md.mesh.numberofelements=size(elements,1);
1273
1274 %p and q (same deal, except for element that are on the bedrock: )
[17774]1275 if ~isnan(md.friction.p),
1276 md.friction.p=md.friction.p(pos_elements);
1277 md.friction.q=md.friction.q(pos_elements);
1278 end
[17483]1279
1280 %elementstype
1281 if ~isnan(md.flowequation.element_equation)
1282 oldelements_type=md.flowequation.element_equation;
1283 md.flowequation.element_equation=md.flowequation.element_equation(pos_elements);
1284 end
1285
1286 %connectivity
1287 md.mesh.elementconnectivity=NaN;
1288
1289 %materials
[17774]1290 if ~isnan(md.materials.rheology_n),
1291 md.materials.rheology_n=md.materials.rheology_n(pos_elements);
1292 end
[17483]1293
1294 %increase connectivity if less than 25:
1295 if md.mesh.average_vertex_connectivity<=25,
1296 md.mesh.average_vertex_connectivity=100;
1297 end
1298 end % }}}
[19040]1299 function disp(self) % {{{
1300 disp(sprintf('%19s: %-22s -- %s','mesh' ,['[1x1 ' class(self.mesh) ']'],'mesh properties'));
1301 disp(sprintf('%19s: %-22s -- %s','mask' ,['[1x1 ' class(self.mask) ']'],'defines grounded and floating elements'));
1302 disp(sprintf('%19s: %-22s -- %s','geometry' ,['[1x1 ' class(self.geometry) ']'],'surface elevation, bedrock topography, ice thickness,...'));
1303 disp(sprintf('%19s: %-22s -- %s','constants' ,['[1x1 ' class(self.constants) ']'],'physical constants'));
[19527]1304 disp(sprintf('%19s: %-22s -- %s','smb' ,['[1x1 ' class(self.smb) ']'],'surface mass balance'));
[19040]1305 disp(sprintf('%19s: %-22s -- %s','basalforcings' ,['[1x1 ' class(self.basalforcings) ']'],'bed forcings'));
1306 disp(sprintf('%19s: %-22s -- %s','materials' ,['[1x1 ' class(self.materials) ']'],'material properties'));
1307 disp(sprintf('%19s: %-22s -- %s','damage' ,['[1x1 ' class(self.damage) ']'],'parameters for damage evolution solution'));
1308 disp(sprintf('%19s: %-22s -- %s','friction' ,['[1x1 ' class(self.friction) ']'],'basal friction/drag properties'));
1309 disp(sprintf('%19s: %-22s -- %s','flowequation' ,['[1x1 ' class(self.flowequation) ']'],'flow equations'));
1310 disp(sprintf('%19s: %-22s -- %s','timestepping' ,['[1x1 ' class(self.timestepping) ']'],'time stepping for transient models'));
1311 disp(sprintf('%19s: %-22s -- %s','initialization' ,['[1x1 ' class(self.initialization) ']'],'initial guess/state'));
1312 disp(sprintf('%19s: %-22s -- %s','rifts' ,['[1x1 ' class(self.rifts) ']'],'rifts properties'));
[19984]1313 disp(sprintf('%19s: %-22s -- %s','slr' ,['[1x1 ' class(self.slr) ']'],'slr forcings'));
[19040]1314 disp(sprintf('%19s: %-22s -- %s','debug' ,['[1x1 ' class(self.debug) ']'],'debugging tools (valgrind, gprof)'));
1315 disp(sprintf('%19s: %-22s -- %s','verbose' ,['[1x1 ' class(self.verbose) ']'],'verbosity level in solve'));
1316 disp(sprintf('%19s: %-22s -- %s','settings' ,['[1x1 ' class(self.settings) ']'],'settings properties'));
1317 disp(sprintf('%19s: %-22s -- %s','toolkits' ,['[1x1 ' class(self.toolkits) ']'],'PETSc options for each solution'));
1318 disp(sprintf('%19s: %-22s -- %s','cluster' ,['[1x1 ' class(self.cluster) ']'],'cluster parameters (number of cpus...)'));
1319 disp(sprintf('%19s: %-22s -- %s','balancethickness',['[1x1 ' class(self.balancethickness) ']'],'parameters for balancethickness solution'));
1320 disp(sprintf('%19s: %-22s -- %s','stressbalance' ,['[1x1 ' class(self.stressbalance) ']'],'parameters for stressbalance solution'));
1321 disp(sprintf('%19s: %-22s -- %s','groundingline' ,['[1x1 ' class(self.groundingline) ']'],'parameters for groundingline solution'));
1322 disp(sprintf('%19s: %-22s -- %s','hydrology' ,['[1x1 ' class(self.hydrology) ']'],'parameters for hydrology solution'));
1323 disp(sprintf('%19s: %-22s -- %s','masstransport' ,['[1x1 ' class(self.masstransport) ']'],'parameters for masstransport solution'));
1324 disp(sprintf('%19s: %-22s -- %s','thermal' ,['[1x1 ' class(self.thermal) ']'],'parameters for thermal solution'));
1325 disp(sprintf('%19s: %-22s -- %s','steadystate' ,['[1x1 ' class(self.steadystate) ']'],'parameters for steadystate solution'));
1326 disp(sprintf('%19s: %-22s -- %s','transient' ,['[1x1 ' class(self.transient) ']'],'parameters for transient solution'));
[21544]1327 disp(sprintf('%19s: %-22s -- %s','levelset' ,['[1x1 ' class(self.levelset) ']'],'parameters for moving boundaries (level-set method)'));
[19040]1328 disp(sprintf('%19s: %-22s -- %s','calving' ,['[1x1 ' class(self.calving) ']'],'parameters for calving'));
[21584]1329 disp(sprintf('%19s: %-22s -- %s','gia' ,['[1x1 ' class(self.gia) ']'],'parameters for gia solution'));
[22004]1330 disp(sprintf('%19s: %-22s -- %s','love' ,['[1x1 ' class(self.love) ']'],'parameters for love solution'));
[21260]1331 disp(sprintf('%19s: %-22s -- %s','esa' ,['[1x1 ' class(self.esa) ']'],'parameters for elastic adjustment solution'));
[19040]1332 disp(sprintf('%19s: %-22s -- %s','autodiff' ,['[1x1 ' class(self.autodiff) ']'],'automatic differentiation parameters'));
1333 disp(sprintf('%19s: %-22s -- %s','inversion' ,['[1x1 ' class(self.inversion) ']'],'parameters for inverse methods'));
1334 disp(sprintf('%19s: %-22s -- %s','qmu' ,['[1x1 ' class(self.qmu) ']'],'dakota properties'));
[21674]1335 disp(sprintf('%19s: %-22s -- %s','amr' ,['[1x1 ' class(self.amr) ']'],'adaptive mesh refinement properties'));
[19040]1336 disp(sprintf('%19s: %-22s -- %s','outputdefinition',['[1x1 ' class(self.outputdefinition) ']'],'output definition'));
1337 disp(sprintf('%19s: %-22s -- %s','results' ,['[1x1 ' class(self.results) ']'],'model results'));
1338 disp(sprintf('%19s: %-22s -- %s','radaroverlay' ,['[1x1 ' class(self.radaroverlay) ']'],'radar image for plot overlay'));
1339 disp(sprintf('%19s: %-22s -- %s','miscellaneous' ,['[1x1 ' class(self.miscellaneous) ']'],'miscellaneous fields'));
[13692]1340 end % }}}
[19040]1341 function memory(self) % {{{
[15106]1342
[14611]1343 disp(sprintf('\nMemory imprint:\n'));
[14307]1344
[14603]1345 fields=properties('model');
1346 mem=0;
[15106]1347
[14603]1348 for i=1:length(fields),
[19040]1349 field=self.(fields{i});
[14603]1350 s=whos('field');
1351 mem=mem+s.bytes/1e6;
[14611]1352 disp(sprintf('%19s: %6.2f Mb',fields{i},s.bytes/1e6));
[14307]1353 end
[14603]1354 disp(sprintf('%19s--%10s','--------------','--------------'));
1355 disp(sprintf('%19s: %g Mb','Total',mem));
[14307]1356 end % }}}
[19040]1357 function netcdf(self,filename) % {{{
[14603]1358 %NETCDF - save model as netcdf
1359 %
1360 % Usage:
1361 % netcdf(md,filename)
1362 %
1363 % Example:
1364 % netcdf(md,'model.nc');
1365
1366 disp('Saving model as NetCDF');
1367 %1. Create NetCDF file
1368 ncid=netcdf.create(filename,'CLOBBER');
1369 netcdf.putAtt(ncid,netcdf.getConstant('NC_GLOBAL'),'Conventions','CF-1.4');
[19040]1370 netcdf.putAtt(ncid,netcdf.getConstant('NC_GLOBAL'),'Title',['ISSM model (' self.miscellaneous.name ')']);
[14603]1371 netcdf.putAtt(ncid,netcdf.getConstant('NC_GLOBAL'),'Author',getenv('USER'));
1372 netcdf.putAtt(ncid,netcdf.getConstant('NC_GLOBAL'),'Date',datestr(now));
1373
[14611]1374 %Preallocate variable id, needed to write variables in netcdf file
[14631]1375 var_id=zeros(1000,1);%preallocate
[14609]1376
1377 for step=1:2,
1378 counter=0;
[19040]1379 [var_id,counter]=structtonc(ncid,'md',self,0,var_id,counter,step);
[14609]1380 if step==1, netcdf.endDef(ncid); end
[14603]1381 end
[14611]1382
[14631]1383 if counter>1000,
1384 warning(['preallocation of var_id need to be updated from ' num2str(1000) ' to ' num2str(counter)]);
[14609]1385 end
1386
1387 netcdf.close(ncid)
[14603]1388 end % }}}
[19040]1389 function xylim(self) % {{{
[14405]1390
[19040]1391 xlim([min(self.mesh.x) max(self.mesh.x)]);
1392 ylim([min(self.mesh.y) max(self.mesh.y)])
[14405]1393 end % }}}
[15316]1394 function md=upload(md) % {{{
1395 %the goal of this routine is to upload the model onto a server, and to empty it.
1396 %So first, save the model with a unique name and upload the file to the server:
1397 random_part=fix(rand(1)*10000);
1398 id=[md.miscellaneous.name '-' regexprep(datestr(now),'[^\w'']','') '-' num2str(random_part) '-' getenv('USER') '-' oshostname() '.upload'];
1399 eval(['save ' id ' md']);
1400
1401 %Now, upload the file:
1402 issmscpout(md.settings.upload_server,md.settings.upload_path,md.settings.upload_login,md.settings.upload_port,{id},1);
1403
1404 %Now, empty this model of everything except settings, and record name of file we just uploaded!
1405 settings_back=md.settings;
1406 md=model();
1407 md.settings=settings_back;
1408 md.settings.upload_filename=id;
1409
1410 %get locally rid of file that was uploaded
1411 eval(['delete ' id]);
1412
1413 end % }}}
1414 function md=download(md) % {{{
[15643]1415
[15316]1416 %the goal of this routine is to download the internals of the current model from a server, because
1417 %this model is empty, except for the settings which tell us where to go and find this model!
[15643]1418
[15316]1419 %Download the file:
1420 issmscpin(md.settings.upload_server, md.settings.upload_login, md.settings.upload_port, md.settings.upload_path, {md.settings.upload_filename});
1421
1422 name=md.settings.upload_filename;
1423
1424 %Now, load this model:
1425 md=loadmodel(md.settings.upload_filename);
1426
1427 %get locally rid of file that was downloaded
1428 eval(['delete ' name]);
1429
1430 end % }}}
[19894]1431 function savemodeljs(md,modelname,websiteroot) % {{{
[19879]1432
1433 %the goal of this routine is to save the model as a javascript array that can be included in any html
1434 %file:
1435
1436 %disp:
[19894]1437 disp(['saving model ''' modelname ''' in file ' websiteroot '/js/' modelname '.js']);
[19879]1438
1439 %open file for writing and declare the model:
[19894]1440 fid=fopen([websiteroot '/js/' modelname '.js'],'w');
[19879]1441 fprintf(fid,'var %s=new model();\n',modelname);
1442
1443 %now go through all the classes and fwrite all the corresponding fields:
1444
1445 fields=properties('model');
1446 for i=1:length(fields),
1447 field=fields{i};
1448
1449 %Some properties do not need to be saved
[19894]1450 if ismember(field,{'results','cluster' }),
[19879]1451 continue;
1452 end
1453
1454 %Check that current field is an object
1455 if ~isobject(md.(field))
1456 error(['field ''' char(field) ''' is not an object']);
1457 end
1458
1459 %savemodeljs for current object
1460 %disp(['javascript saving ' field '...']);
1461 savemodeljs(md.(field),fid,modelname);
1462 end
1463
1464 %done, close file:
1465 fclose(fid);
1466 end
[13692]1467 end
[8926]1468 end
Note: See TracBrowser for help on using the repository browser.