Changeset 11240
- Timestamp:
- 01/27/12 08:47:31 (13 years ago)
- Location:
- issm/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/NEWS
r11159 r11240 1 2 1 please go to the ISSM website for the latest news: 3 2 -
issm/trunk/README
r11237 r11240 9 9 Jet Propulsion Laboratory 10 10 11 Eric EricLarour (Project Lead)12 Mathieu MathieuMorlighem (Anisotropic Meshing, Control Methods)13 Helene HeleneSeroussi (Coupling 2D-3D, Multi-model, full-Stokes)11 Eric Larour (Project Lead) 12 Mathieu Morlighem (Anisotropic Meshing, Control Methods) 13 Helene Seroussi (Coupling 2D-3D, Multi-model, full-Stokes) 14 14 15 15 Email: issm@jpl.nasa.gov -
issm/trunk/doc/issmdoc.m
r11029 r11240 6 6 disp(sprintf('\n%s',' A comprehensive documentation is available on http://issm.jpl.nasa.gov')); 7 7 disp(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)'));8 disp(sprintf([' go to ' ISSM_TIER '/examples/SquareIceshelf\n'])); 9 disp(sprintf('%-58s %s',' md=model;','%creates a new empty model structure')); 10 disp(sprintf('%-58s %s',' md=triangle(md,''DomainOutline.exp'',50000);','%creates a mesh of the domain outline with a resolution of 50000m')); 11 disp(sprintf('%-58s %s',' md=setmask(md,''all'','''');','%defines the glacier system as an ice shelf (no island)')); 12 disp(sprintf('%-58s %s',' md=parameterize(md,''Square.par'');','%fills all the other fields of the model')); 13 disp(sprintf('%-58s %s',' md=setflowequation(md,''macayeal'',''all'');','%defines all elements as MacAyeal''s')); 14 disp(sprintf('%-58s %s',' md=solve(md,DiagnosticSolutionEnum);','%generate the velocity field of the ice shelf')); 15 disp(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 71 71 printf(" z: %g\n",z); 72 72 printf(" sigma: %g\n",sigma); 73 printf(" connectivity: % g\n",connectivity);73 printf(" connectivity: %i\n",connectivity); 74 74 printf(" dof: %i\n",dof); 75 75 printf(" clone: %i\n",clone); -
issm/trunk/src/m/classes/inversion.m
r11237 r11240 108 108 fielddisplay(obj,'control_parameters','parameter where inverse control is carried out; ex: {''FrictionCoefficient''}, or {''MaterialsRheologyBbar''}'); 109 109 fielddisplay(obj,'nsteps','number of optimization searches'); 110 fielddisplay(obj,'cost_functions','indicate the type of response for each optimization step s');110 fielddisplay(obj,'cost_functions','indicate the type of response for each optimization step'); 111 111 fielddisplay(obj,'cost_functions_coefficients','cost_functions_coefficients applied to the misfit of each vertex and for each control_parameter'); 112 112 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.