Changeset 11015
- Timestamp:
- 12/02/11 07:55:02 (13 years ago)
- Location:
- issm/trunk-jpl/src/m/model/mesh
- Files:
-
- 4 deleted
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/model/mesh/yams.m
r11008 r11015 1 function md= meshyams(md,varargin);1 function md=yams(md,varargin); 2 2 %MESHYAMS - Build model of Antarctica by refining according to observed velocity error estimator 3 3 % 4 4 % Usage: 5 % md= meshyams(md,varargin);5 % md=yams(md,varargin); 6 6 % where varargin is a lit of paired arguments. 7 7 % arguments can be: 'domainoutline': Argus file containing the outline of the domain to be meshed … … 18 18 % 19 19 % Examples: 20 % md= meshyams(md,'domainoutline','Domain.exp','velocities','vel.mat');21 % md= meshyams(md,'domainoutline','Domain.exp','velocities','vel.mat','groundeddomain','ground.exp');22 % md= meshyams(md,'domainoutline','Domain.exp','velocities','vel.mat','groundeddomain','ground.exp','nsteps',6,'epsilon',2,'hmin',500,'hmax',30000);20 % md=yams(md,'domainoutline','Domain.exp','velocities','vel.mat'); 21 % md=yams(md,'domainoutline','Domain.exp','velocities','vel.mat','groundeddomain','ground.exp'); 22 % md=yams(md,'domainoutline','Domain.exp','velocities','vel.mat','groundeddomain','ground.exp','nsteps',6,'epsilon',2,'hmin',500,'hmax',30000); 23 23 24 24 %recover options … … 98 98 md.mesh.elementconnectivity=ElementConnectivity(md.mesh.elements,md.mesh.vertexconnectivity); 99 99 md.mesh.segments=findsegments(md); 100 md= meshyamsrecreateriftsegments(md);100 md=yamsrecreateriftsegments(md); 101 101 end 102 102 … … 169 169 md.rifts.riftstruct(j)=rift; 170 170 end 171 172 171 end
Note:
See TracChangeset
for help on using the changeset viewer.