Changeset 11015


Ignore:
Timestamp:
12/02/11 07:55:02 (13 years ago)
Author:
Mathieu Morlighem
Message:

moved meshyams to yams and removed old meshers

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);
     1function md=yams(md,varargin);
    22%MESHYAMS - Build model of Antarctica by refining according to observed velocity error estimator
    33%
    44%   Usage:
    5 %      md=meshyams(md,varargin);
     5%      md=yams(md,varargin);
    66%      where varargin is a lit of paired arguments.
    77%      arguments can be: 'domainoutline': Argus file containing the outline of the domain to be meshed
     
    1818%
    1919%   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);
    2323
    2424%recover options
     
    9898                md.mesh.elementconnectivity=ElementConnectivity(md.mesh.elements,md.mesh.vertexconnectivity);
    9999                md.mesh.segments=findsegments(md);
    100                 md=meshyamsrecreateriftsegments(md);
     100                md=yamsrecreateriftsegments(md);
    101101        end
    102102
     
    169169                md.rifts.riftstruct(j)=rift;
    170170        end
    171 
    172171end
Note: See TracChangeset for help on using the changeset viewer.