Changeset 19043


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

CHG: removed all folds

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

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/examples/ISMIP/CheatyRunme.m

    r18823 r19043  
    1010%Run Steps
    1111
    12 % {{{ Mesh Generation #1
     12%Mesh Generation #1
    1313if any(steps==1)
    1414
     
    3131        save ./Models/ISMIP.Mesh_generation md;
    3232end
    33 % }}}
    34 
    35 % {{{ Masks #2
     33
     34%Masks #2
    3635if any(steps==2)
    3736
     
    5150        save ./Models/ISMIP.SetMask md;
    5251end
    53 % }}}
    54 
    55 % {{{ Parameterization #3
     52
     53%Parameterization #3
    5654if any(steps==3)
    5755
     
    6967        save ./Models/ISMIP.Parameterization md;
    7068end
    71 % }}}
    72 
    73 % {{{ Extrusion #4
     69
     70%Extrusion #4
    7471if any(steps==4)
    7572       
     
    8986        save ./Models/ISMIP.Extrusion md;
    9087end
    91 % }}}
    92 
    93 % {{{ Set the flow computing method #5
     88
     89%Set the flow computing method #5
    9490if any(steps==5)
    9591
     
    106102        save ./Models/ISMIP.SetFlow md;
    107103end
    108 % }}}
    109 
    110 % {{{ Set Boundary Conditions #6
     104
     105%Set Boundary Conditions #6
    111106if any(steps==6)
    112107
     
    161156        save ./Models/ISMIP.BoundaryCondition md;
    162157end
    163 % }}}
    164 
    165 % {{{ Solving #7
     158
     159%Solving #7
    166160if any(steps==7)
    167161        % load the preceding step #help loadmodel
     
    188182        plotmodel(md,'data',md.results.StressbalanceSolution.Vel)
    189183end
    190 % }}}
    191 
    192 % {{{ Solving #8
     184
     185%Solving #8
    193186if any(steps==8)
    194187        % load the preceding step #help loadmodel
     
    227220        plotmodel(md,'data',md.results.TransientSolution(20).Vel)
    228221end
    229 % }}}
  • TabularUnified issm/trunk-jpl/examples/ISMIP/runme.m

    r18203 r19043  
    1010%Run Steps
    1111
    12 % {{{ Mesh Generation #1
     12%Mesh Generation #1
    1313if any(steps==1)
    1414
     
    2727
    2828end
    29 % }}}
    30 
    31 % {{{ Masks #2
     29
     30%Masks #2
    3231if any(steps==2)
    3332
     
    4746
    4847end
    49 % }}}
    50 
    51 % {{{ Parameterization #3
     48
     49%Parameterization #3
    5250if any(steps==3)
    5351
     
    6563
    6664end
    67 % }}}
    68 
    69 % {{{ Extrusion #4
     65
     66%Extrusion #4
    7067if any(steps==4)
    7168       
     
    8582
    8683end
    87 % }}}
    88 
    89 % {{{ Set the flow computing method #5
    90 
     84
     85%Set the flow computing method #5
    9186if any(steps==5)
    9287
     
    10398
    10499end
    105 % }}}
    106 
    107 % {{{ Set Boundary Conditions #6
     100
     101%Set Boundary Conditions #6
    108102if any(steps==6)
    109103
     
    157151
    158152end
    159 % }}}
    160 
    161 % {{{ Solving #7
     153
     154%Solving #7
    162155if any(steps==7)
    163156        % load the preceding step #help loadmodel
     
    183176        %->
    184177end
    185 % }}}
    186 
    187 % {{{ Solving #8
     178
     179%Solving #8
    188180if any(steps==8)
    189181        % load the preceding step #help loadmodel
     
    222214
    223215end
    224 % }}}
  • 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 
  • TabularUnified issm/trunk-jpl/examples/Pig/PigRegion.m

    r18202 r19043  
    1 % {{{ Getting the velocity in PIG vicinity for the ExpDraw
     1%Getting the velocity in PIG vicinity for the ExpDraw
    22
    33% Load Velocities
     
    5151vel_obs=sqrt(vx_obs.^2.+vy_obs.^2.);
    5252imagesc(xred,yred,vel_obs)
    53 
    54 %}}}
  • TabularUnified issm/trunk-jpl/examples/Pig/runme.m

    r18269 r19043  
    44%Run Steps
    55
    6 % {{{ Mesh Generation #1
     6%Mesh Generation #1
    77if any(steps==1)
    88
     
    7373        save ./Models/PIG.Mesh_generation md;
    7474end
    75 % }}}
    76 
    77 % {{{ Masks #2
     75
     76%Masks #2
    7877if any(steps==2)
    7978
     
    104103        save ./Models/PIG.SetMask md;
    105104end
    106 % }}}
    107 
    108 % {{{ Parameterization #3
     105
     106%Parameterization #3
    109107if any(steps==3)
    110108
     
    118116        save ./Models/PIG.Parameterization md;
    119117end
    120 % }}}
    121 
    122 % {{{ Control Method #4
     118
     119%Control Method #4
    123120if any(steps==4)
    124121
     
    163160        save ./Models/PIG.Control_drag md;
    164161end
    165 % }}}
    166 
    167 % {{{ Plot #5
     162
     163%Plot #5
    168164if any(steps==5)
    169165
     
    182178                'colorbartitle#3','[m]', 'log#1-2',10);
    183179end
    184 % }}}
    185 
    186 % {{{ HO #6
     180
     181%HO #6
    187182if any(steps==6)
    188183
     
    200195
    201196end
    202 % }}}
    203 
    204 % {{{ Plot #7
     197
     198%Plot #7
    205199if any(steps==7)
    206200
     
    226220                                                'layer#5',1, 'log#1', 10,'log#3', 10,'log#5', 10);
    227221end
    228 % }}}
Note: See TracChangeset for help on using the changeset viewer.