Changeset 11652


Ignore:
Timestamp:
03/06/12 16:05:32 (13 years ago)
Author:
habbalf
Message:

fixed white space...will change back if you don't like it

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/model/mesh/bamg.m

    r11651 r11652  
    44%   Available options (for more details see ISSM website http://issm.jpl.nasa.gov/):
    55%
    6 %   - domain: followed by an ARGUS file that prescribes the domain outline
    7 %   - hmin  : minimum edge length (default is 10^-100)
    8 %   - hmax  : maximum edge length (default is 10^100)
    9 %   - hVertices   : imposed edge length for each vertex (geometry or mesh)
    10 %   - hminVertices: minimum edge length for each vertex (mesh)
    11 %   - hmaxVertices: maximum edge length for each vertex (mesh)
    12 %
    13 %   - anisomax    : maximum ratio between the smallest and largest edges (default is 10^30)
    14 %   - coeff       : coefficient applied to the metric (2-> twice as many elements, default is 1)
    15 %   - cutoff      : scalar used to compute the metric when metric type 2 or 3 are applied
    16 %   - err         : error used to generate the metric from a field
    17 %   - errg        : geometric error (default is 0.1)
    18 %   - field       : field of the model that will be used to compute the metric
    19 %                   to apply several fields, use one column per field
    20 %   - gradation   : maximum ratio between two adjacent edges
    21 %   - Hessiantype : 0 -> use double P2 projection (default)
    22 %                   1 -> use Green formula
    23 %   - KeepVertices: try to keep initial vertices when adaptation is done on an existing mesh (default 1)
    24 %   - MaxCornerAngle: maximum angle of corners in degree (default is 10)
    25 %   - maxnbv      : maximum number of vertices used to allocate memory (default is 10^6)
    26 %   - maxsubdiv   : maximum subdivision of exisiting elements (default is 10)
    27 %   - metric      : matrix (numberofnodes x 3) used as a metric
    28 %   - Metrictype  : 1 -> absolute error          c/(err coeff^2) * Abs(H)        (default)
    29 %                   2 -> relative error          c/(err coeff^2) * Abs(H)/max(s,cutoff*max(s))
    30 %                   3 -> rescaled absolute error c/(err coeff^2) * Abs(H)/(smax-smin)
    31 %   - nbjacoby    : correction used by Hessiantype=1 (default is 1)
    32 %   - nbsmooth    : number of metric smoothing procedure (default is 3)
    33 %   - omega       : relaxation parameter of the smoothing procedure (default is 1.8)
    34 %   - power       : power applied to the metric (default is 1)
    35 %   - splitcorners : split triangles whuch have 3 vertices on the outline (default is 1)
     6%   - domain :            followed by an ARGUS file that prescribes the domain outline
     7%   - hmin :              minimum edge length (default is 10^-100)
     8%   - hmax :              maximum edge length (default is 10^100)
     9%   - hVertices :        imposed edge length for each vertex (geometry or mesh)
     10%   - hminVertices :      minimum edge length for each vertex (mesh)
     11%   - hmaxVertices :      maximum edge length for each vertex (mesh)
     12%
     13%   - anisomax :          maximum ratio between the smallest and largest edges (default is 10^30)
     14%   - coeff :            coefficient applied to the metric (2-> twice as many elements, default is 1)
     15%   - cutoff :            scalar used to compute the metric when metric type 2 or 3 are applied
     16%   - err :              error used to generate the metric from a field
     17%   - errg :              geometric error (default is 0.1)
     18%   - field :            field of the model that will be used to compute the metric
     19%                         to apply several fields, use one column per field
     20%   - gradation :        maximum ratio between two adjacent edges
     21%   - Hessiantype :       0 -> use double P2 projection (default)
     22%                         1 -> use Green formula
     23%   - KeepVertices :      try to keep initial vertices when adaptation is done on an existing mesh (default 1)
     24%   - MaxCornerAngle :    maximum angle of corners in degree (default is 10)
     25%   - maxnbv :            maximum number of vertices used to allocate memory (default is 10^6)
     26%   - maxsubdiv :        maximum subdivision of exisiting elements (default is 10)
     27%   - metric :            matrix (numberofnodes x 3) used as a metric
     28%   - Metrictype :        1 -> absolute error          c/(err coeff^2) * Abs(H)        (default)
     29%                         2 -> relative error          c/(err coeff^2) * Abs(H)/max(s,cutoff*max(s))
     30%                         3 -> rescaled absolute error c/(err coeff^2) * Abs(H)/(smax-smin)
     31%   - nbjacoby :          correction used by Hessiantype=1 (default is 1)
     32%   - nbsmooth :          number of metric smoothing procedure (default is 3)
     33%   - omega :            relaxation parameter of the smoothing procedure (default is 1.8)
     34%   - power :            power applied to the metric (default is 1)
     35%   - splitcorners :      split triangles whuch have 3 vertices on the outline (default is 1)
    3636%   - geometricalmetric : take the geometry into account to generate the metric (default is 0)
    37 %   - verbose     : level of verbosity (default is 1)
    38 %
    39 %   - rifts : followed by an ARGUS file that prescribes the rifts
    40 %   - toltip: tolerance to move tip on an existing point of the domain outline
    41 %   - tracks: followed by an ARGUS file that prescribes the tracks that the mesh will stick to
    42 %   - RequiredVertices: mesh vertices that are required. [x,y,ref]; ref is optional
    43 %   - tol:    if the distance between 2 points of the domain outline is less than tol, they
    44 %             will be merged
     37%   - verbose :          level of verbosity (default is 1)
     38%
     39%   - rifts :             followed by an ARGUS file that prescribes the rifts
     40%   - toltip :            tolerance to move tip on an existing point of the domain outline
     41%   - tracks :            followed by an ARGUS file that prescribes the tracks that the mesh will stick to
     42%   - RequiredVertices : mesh vertices that are required. [x,y,ref]; ref is optional
     43%   - tol :               if the distance between 2 points of the domain outline is less than tol, they
     44%                         will be merged
    4545%
    4646%   Examples:
Note: See TracChangeset for help on using the changeset viewer.