Ignore:
Timestamp:
01/27/15 05:10:08 (10 years ago)
Author:
Mathieu Morlighem
Message:

CHG: removed all folds

File:
1 edited

Legend:

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

    r18205 r19043  
    77md.mesh.hemisphere='s';
    88
    9 % {{{ NetCdf Loading
     9%NetCdf Loading
    1010disp('   Loading SeaRISE data from NetCDF');
    1111ncdata='../Data/Antarctica_5km_withshelves_v0.75.nc';
     
    4747y2=(ymax-ny*spacing)+(0:1:ny)'*spacing;
    4848y2=double(y2);
    49 % }}}
    50 % {{{ Geometry
     49
     50%Geometry
    5151disp('   Interpolating surface and ice base');
    5252md.geometry.base    = InterpFromGridToMesh(x1,y1,topg,md.mesh.x,md.mesh.y,0);
     
    7373md.geometry.thickness(pos0)=1;
    7474md.geometry.surface=md.geometry.thickness+md.geometry.base;
    75 % }}}
    76 % {{{ Initialization parameters
     75
     76%Initialization parameters
    7777disp('   Interpolating temperatures');
    7878md.initialization.temperature=InterpFromGridToMesh(x1,y1,temp,md.mesh.x,md.mesh.y,0)+273.15+Temp_change;
     
    9393md.initialization.pressure=md.materials.rho_ice*md.constants.g*md.geometry.thickness;
    9494
    95 % }}}
    96 
    9795disp('   Construct ice rheological properties');
    9896md.materials.rheology_n=3*ones(md.mesh.numberofelements,1);
    9997md.materials.rheology_B=paterson(md.initialization.temperature);
    10098
    101 % {{{ Forcings
     99%Forcings
    102100disp('   Interpolating surface mass balance');
    103101md.surfaceforcings.mass_balance=InterpFromGridToMesh(x1,y1,smb,md.mesh.x,md.mesh.y,0);
     
    108106md.basalforcings.geothermalflux=InterpFromGridToMesh(x1,y1,gflux,md.mesh.x,md.mesh.y,0);
    109107clear gflux;
    110 % }}}
    111108
    112 % {{{ Friction and inversion set up
     109%Friction and inversion set up
    113110disp('   Construct basal friction parameters');
    114111md.friction.coefficient=friction_coefficient*ones(md.mesh.numberofvertices,1);
     
    124121md.inversion.vy_obs=vy_obs;
    125122md.inversion.vel_obs=vel_obs;
    126 % }}}
    127 
    128123
    129124disp('   Set boundary conditions');
     
    133128md.thermal.spctemperature     = [md.initialization.temperature;1]; %impose observed temperature on surface
    134129md.masstransport.spcthickness    = NaN*ones(md.mesh.numberofvertices,1);
    135 
Note: See TracChangeset for help on using the changeset viewer.