Changeset 6949


Ignore:
Timestamp:
01/05/11 11:30:38 (14 years ago)
Author:
seroussi
Message:

added hydrostatic adjustment in serial

Location:
issm/trunk/src/m
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/@model/model.m

    r6942 r6949  
    198198        md.timeacc=0;
    199199        md.timedec=0;
     200        md.hydrostatic_adjustment=0;
    200201
    201202        %Control
  • issm/trunk/src/m/classes/@model/setdefaultparameters.m

    r6942 r6949  
    131131md.cfl_coefficient=1/2;
    132132
     133%Hydrostatic adjustment
     134md.hydrostatic_adjustment=AbsoluteEnum;
    133135%the artificial diffusivity is used in prognostic to avoid
    134136%numerical wiggles of the solution.
  • issm/trunk/src/m/model/display/displaytransient.m

    r6942 r6949  
    2828fielddisplay(md,'time_adapt','compute new time step each iteration, using CFL criterion');
    2929fielddisplay(md,'cfl_coefficient','CFL coefficient');
     30fielddisplay(md,'hydrostatic_adjstment','type of adjustment for ice shelves update');
  • issm/trunk/src/m/model/marshall.m

    r6895 r6949  
    131131WriteData(fid,md.time_adapt,'Integer','time_adapt');
    132132WriteData(fid,md.cfl_coefficient,'Scalar','cfl_coefficient');
     133WriteData(fid,md.hydrostatic_adjustment,'Integer','hydrostatic_adjustment');
    133134WriteData(fid,md.penalty_offset,'Scalar','penalty_offset');
    134135WriteData(fid,md.penalty_melting,'Scalar','penalty_melting');
Note: See TracChangeset for help on using the changeset viewer.