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

Last change on this file since 17686 was 17686, checked in by Mathieu Morlighem, 11 years ago

CHG: following Chris' suggestions, we adopt the following convention
md.mesh.dimension -> DomainDimensionEnum
md.mesh.domaintype ->DomainTypeEnum
md.mesh.elementtype->MeshElementtypeEnum

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