Changeset 15564 for issm/trunk-jpl/src/m/classes/model/model.m
- Timestamp:
- 07/23/13 14:23:07 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/model/model.m
r15504 r15564 171 171 md.flowequation.element_equation=project2d(md,md.flowequation.element_equation,1); 172 172 md.flowequation.vertex_equation=project2d(md,md.flowequation.vertex_equation,1); 173 md.flowequation.border macayeal=project2d(md,md.flowequation.bordermacayeal,1);174 md.flowequation.border pattyn=project2d(md,md.flowequation.borderpattyn,1);175 md.flowequation.border stokes=project2d(md,md.flowequation.borderstokes,1);173 md.flowequation.borderSSA=project2d(md,md.flowequation.borderSSA,1); 174 md.flowequation.borderHO=project2d(md,md.flowequation.borderHO,1); 175 md.flowequation.borderFS=project2d(md,md.flowequation.borderFS,1); 176 176 end 177 177 … … 262 262 % It can either be a domain file (argus type, .exp extension), or an array of element flags. 263 263 % If user wants every element outside the domain to be 264 % extract2d, add '~' to the name of the domain file (ex: '~ Pattyn.exp');264 % extract2d, add '~' to the name of the domain file (ex: '~HO.exp'); 265 265 % an empty string '' will be considered as an empty domain 266 266 % a string 'all' will be considered as the entire domain … … 718 718 md.flowequation.vertex_equation=project3d(md,'vector',oldvertices_type,'type','node'); 719 719 end 720 md.flowequation.border macayeal=project3d(md,'vector',md.flowequation.bordermacayeal,'type','node');721 md.flowequation.border pattyn=project3d(md,'vector',md.flowequation.borderpattyn,'type','node');722 md.flowequation.border stokes=project3d(md,'vector',md.flowequation.borderstokes,'type','node');720 md.flowequation.borderSSA=project3d(md,'vector',md.flowequation.borderSSA,'type','node'); 721 md.flowequation.borderHO=project3d(md,'vector',md.flowequation.borderHO,'type','node'); 722 md.flowequation.borderFS=project3d(md,'vector',md.flowequation.borderFS,'type','node'); 723 723 724 724 %boundary conditions … … 882 882 if isfield(structmd,'artificial_diffusivity'), md.balancethickness.stabilization=structmd.artificial_diffusivity; end 883 883 if isfield(structmd,'dhdt'), md.balancethickness.thickening_rate=structmd.dhdt; end 884 if isfield(structmd,'is hutter'), md.flowequation.ishutter=structmd.ishutter; end885 if isfield(structmd,'is stokes'), md.flowequation.isstokes=structmd.isstokes; end884 if isfield(structmd,'isSIA'), md.flowequation.isSIA=structmd.isSIA; end 885 if isfield(structmd,'isFS'), md.flowequation.isFS=structmd.isFS; end 886 886 if isfield(structmd,'elements_type'), md.flowequation.element_equation=structmd.elements_type; end 887 887 if isfield(structmd,'vertices_type'), md.flowequation.vertex_equation=structmd.vertices_type; end
Note:
See TracChangeset
for help on using the changeset viewer.