Changeset 18205


Ignore:
Timestamp:
06/30/14 18:34:01 (11 years ago)
Author:
schlegel
Message:

CHG: Greenland and melting rates

Location:
issm/trunk-jpl/examples
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/examples/Greenland/Greenland.par

    r18198 r18205  
    5858disp('   Set other boundary conditions');
    5959md.mask.ice_levelset(md.mesh.vertexonboundary==1)=0;
    60 md.basalforcings.melting_rate = zeros(md.mesh.numberofvertices,1);
     60md.basalforcings.floatingice_melting_rate = zeros(md.mesh.numberofvertices,1);
     61md.basalforcings.groundedice_melting_rate = zeros(md.mesh.numberofvertices,1);
    6162md.thermal.spctemperature     = [md.initialization.temperature;1]; %impose observed temperature on surface
    6263md.masstransport.spcthickness    = NaN*ones(md.mesh.numberofvertices,1);
  • issm/trunk-jpl/examples/Greenland/runme.m

    r18198 r18205  
    11clear all;
    2 steps=[ 1 ];
     2steps=[1];
    33
    44%Location of SeaRISE dataset
     
    99
    1010        %Generate initial uniform mesh (resolution = 20000 m)
    11         md=triangle(model,'./Exp_Par/DomainOutline.exp',20000);
     11        md=triangle(model,'./DomainOutline.exp',20000);
    1212
    1313        % Get velocities (Note: You can use ncdisp('file') to see an ncdump)
     
    3636
    3737        md = setmask(md,'','');
    38         md = parameterize(md,'./Exp_Par/Greenland.par');
     38        md = parameterize(md,'./Greenland.par');
    3939        md = setflowequation(md,'SSA','all');
    4040
  • issm/trunk-jpl/examples/Jakobshavn/Jks.par

    r18201 r18205  
    5959md=SetMarineIceSheetBC(md,'./Front.exp');
    6060md.basalforcings.floatingice_melting_rate=zeros(md.mesh.numberofvertices,1);
     61md.basalforcings.groundedice_melting_rate=zeros(md.mesh.numberofvertices,1);
  • issm/trunk-jpl/examples/Pig/Pig.par

    r18202 r18205  
    130130md=SetMarineIceSheetBC(md);
    131131md.basalforcings.floatingice_melting_rate = zeros(md.mesh.numberofvertices,1);
     132md.basalforcings.groundedice_melting_rate = zeros(md.mesh.numberofvertices,1);
    132133md.thermal.spctemperature     = [md.initialization.temperature;1]; %impose observed temperature on surface
    133134md.masstransport.spcthickness    = NaN*ones(md.mesh.numberofvertices,1);
Note: See TracChangeset for help on using the changeset viewer.