Changeset 11240


Ignore:
Timestamp:
01/27/12 08:47:31 (13 years ago)
Author:
Mathieu Morlighem
Message:

fixed some merge conflicts between trunk and trunk-jpl

Location:
issm/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/NEWS

    r11159 r11240  
    1 
    21please go to the ISSM website for the latest news:
    32
  • issm/trunk/README

    r11237 r11240  
    99Jet Propulsion Laboratory
    1010
    11 Eric          Eric Larour (Project Lead)
    12 Mathieu       Mathieu Morlighem (Anisotropic Meshing, Control Methods)
    13 Helene        Helene Seroussi (Coupling 2D-3D, Multi-model, full-Stokes)
     11Eric    Larour (Project Lead)
     12Mathieu Morlighem (Anisotropic Meshing, Control Methods)
     13Helene  Seroussi (Coupling 2D-3D, Multi-model, full-Stokes)
    1414
    1515Email: issm@jpl.nasa.gov
  • issm/trunk/doc/issmdoc.m

    r11029 r11240  
    66disp(sprintf('\n%s','  A comprehensive documentation is available on http://issm.jpl.nasa.gov'));
    77disp(sprintf('\n%s','  Example: how to create a square ice shelf'));
    8 disp(sprintf('%s','        go to ',ISSM_TIER,'/examples/SquareIceshelf'));
    9 disp(sprintf('%s','        md=model;                                %creates a new empty model structure'));
    10 disp(sprintf('%s','        md=triangle(md,''DomainOutline.exp'',50000);   %creates a mesh of the domain outline with a resolution of 50000m'));
    11 disp(sprintf('%s','        md=geography(md,''all'','''');               %defines the glacier system as an ice shelf (no island)'));
    12 disp(sprintf('%s','        md=parameterize(md,''Square.par'');        %fills all the other fields of the model'));
    13 disp(sprintf('%s','        md=setelementstype(md,''macayeal'',''all''); %defines all elements as MacAyeal''s'));
    14 disp(sprintf('%s','        md=solve(md,DiagnosticSolutionEnum);   %generate the velocity field'));
    15 disp(sprintf('%s','        plotmodel(md,''data'',md.results.DiagnosticSolution.Vel);    %displays the velocity (type plotdoc for plotmodel help)'));
     8disp(sprintf(['  go to ' ISSM_TIER '/examples/SquareIceshelf\n']));
     9disp(sprintf('%-58s %s','   md=model;','%creates a new empty model structure'));
     10disp(sprintf('%-58s %s','   md=triangle(md,''DomainOutline.exp'',50000);','%creates a mesh of the domain outline with a resolution of 50000m'));
     11disp(sprintf('%-58s %s','   md=setmask(md,''all'','''');','%defines the glacier system as an ice shelf (no island)'));
     12disp(sprintf('%-58s %s','   md=parameterize(md,''Square.par'');','%fills all the other fields of the model'));
     13disp(sprintf('%-58s %s','   md=setflowequation(md,''macayeal'',''all'');','%defines all elements as MacAyeal''s'));
     14disp(sprintf('%-58s %s','   md=solve(md,DiagnosticSolutionEnum);','%generate the velocity field of the ice shelf'));
     15disp(sprintf('%-58s %s','   plotmodel(md,''data'',md.results.DiagnosticSolution.Vel);','%displays the velocity (type plotdoc for plotmodel help)'));
  • issm/trunk/src/c/objects/Vertex.cpp

    r11027 r11240  
    7171        printf("   z: %g\n",z);
    7272        printf("   sigma: %g\n",sigma);
    73         printf("   connectivity: %g\n",connectivity);
     73        printf("   connectivity: %i\n",connectivity);
    7474        printf("   dof: %i\n",dof);
    7575        printf("   clone: %i\n",clone);
  • issm/trunk/src/m/classes/inversion.m

    r11237 r11240  
    108108                        fielddisplay(obj,'control_parameters','parameter where inverse control is carried out; ex: {''FrictionCoefficient''}, or {''MaterialsRheologyBbar''}');
    109109                        fielddisplay(obj,'nsteps','number of optimization searches');
    110                         fielddisplay(obj,'cost_functions','indicate the type of response for each optimization steps');
     110                        fielddisplay(obj,'cost_functions','indicate the type of response for each optimization step');
    111111                        fielddisplay(obj,'cost_functions_coefficients','cost_functions_coefficients applied to the misfit of each vertex and for each control_parameter');
    112112                        fielddisplay(obj,'cost_function_threshold','misfit convergence criterion. Default is 1%, NaN if not applied');
Note: See TracChangeset for help on using the changeset viewer.