Changeset 11053


Ignore:
Timestamp:
12/13/11 15:48:20 (13 years ago)
Author:
schlegel
Message:

give them the answers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/workshop/17_SeaRISE/runme.m

    r11048 r11053  
    1 steps=[1];
     1steps=[1:5];
    22
    33%Hard coded parameters
    44cluster=generic('name',oshostname,'np',2);
    5 %What directory is you nc file in?
    6 modeldatapath=['./'];
    7 
     5modeldatapath=['/Users/issm/Desktop/issm/workshop/14_JKS/Greenland5km_v1.2'];
    86
    97%Run Steps
     8%Mesh{{{1
    109if sum(find(steps==1))
    1110
     
    2221
    2322        ncdata=[modeldatapath '/Greenland_5km_dev1.2.nc'];
     23        %Use ncdisp('file') to see an ncdump
     24        x1=double(ncread(ncdata,'x1'));
     25        y1=double(ncread(ncdata,'y1'));
    2426
    25         %Get x1 and y1 from ncdata
    26         %Use ncdisp('file') to see an ncdump
     27        velx=double(ncread(ncdata,'surfvelx'));
     28        vely=double(ncread(ncdata,'surfvely'));
    2729
     30        md.inversion.vx_obs=InterpFromGridToMesh(x1,y1,velx',md.mesh.x,md.mesh.y,0);
     31        md.inversion.vy_obs=InterpFromGridToMesh(x1,y1,vely',md.mesh.x,md.mesh.y,0);
     32        md.inversion.vel_obs=sqrt(md.inversion.vx_obs.^2+md.inversion.vy_obs.^2);
    2833
    29 
    30 
    31         %Get velx and vely from ncdata
    32 
    33 
    34 
    35 
    36 
    37         %Interpolate grid to mesh velx and vely into md.inversion vx_obs, vy_obs, and
    38         %calculate vel_obs
    39 
    40 
    41 
    42 
    43         %Read thickness and Interpolate into md.geometry.thickness
    44 
    45 
    46 
     34        thickness=double(ncread(ncdata,'thk'));
     35        md.geometry.thickness=InterpFromGridToMesh(x1,y1,thickness',...
     36                md.mesh.x,md.mesh.y,0);
    4737
    4838        disp('   Mesh adaptation');
     
    5444        name='./Models/Greenland.Mesh_generation';
    5545        save(name,'md');
    56 end
     46end% }}}
     47%Parameterization{{{1
    5748if sum(find(steps==2))
    58 
    59         %Set up your Parameter file.  Start by copying your Jks.par
    6049
    6150        md=loadmodel('./Models/Greenland.Mesh_generation');
     
    6655        name='./Models/Greenland.Parameterization';
    6756        save(name,'md');
    68 end
     57end%}}}
     58%Control_drag{{{1
    6959if sum(find(steps==3))
    7060
     
    7969        md.inversion.gradient_scaling(:)=100;
    8070
    81 
    82         %Set up inversion control parameters
    83 
    84 
    85 
    86 
    87 
    88 
     71        md.inversion.cost_functions=[];
     72        md.inversion.cost_functions(1:floor(md.inversion.nsteps),1)=103;
     73        md.inversion.cost_functions=[103*ones(md.inversion.nsteps,1)  ...
     74                501*ones(md.inversion.nsteps,1)];
     75        md.inversion.cost_functions_coefficients=ones(md.mesh.numberofvertices,2);
     76        md.inversion.cost_functions_coefficients(:,2)=8*10^-15;
     77        md.inversion.control_parameters={'FrictionCoefficient'};
     78        md.inversion.min_parameters=1*ones(md.mesh.numberofvertices,1);
     79        md.inversion.max_parameters=200*ones(md.mesh.numberofvertices,1);
    8980
    9081        md=setcluster(md,cluster);
     
    9384        md=solve(md,DiagnosticSolutionEnum);
    9485
    95         %Save results in md.friction.coefficient, md.initialization.vx and md.initialization.vy
    96         %before save
    97 
    98 
    99 
     86        md.friction.coefficient=md.results.DiagnosticSolution.FrictionCoefficient;
     87        md.initialization.vx=md.results.DiagnosticSolution.Vx;
     88        md.initialization.vy=md.results.DiagnosticSolution.Vy;
    10089
    10190        name='./Models/Greenland.Control_drag';
    10291        save(name,'md');
    103 end
     92end%}}}
     93%Transient{{{1
    10494if sum(find(steps==4))
    10595
     
    113103        y1=double(ncread(ncdata,'y1'));
    114104
    115 
    116         %Get the surface mass balance from your nc file (Hint, your par file
    117         %can help).  Interpolate and then Make sure you convert to m ice/year.
    118 
    119 
    120        
    121         %Set up forcing (forcing time in final row)
    122 
    123 
     105        smb=double(ncread(ncdata,'smb'));
     106        smb=InterpFromGridToMesh(x1,y1,smb',md.mesh.x,md.mesh.y,0)*...
     107                1000/md.materials.rho_ice;
     108        smb=[smb smb smb-1.0];
     109        md.surfaceforcings.mass_balance=[smb; [1 10 20]];
    124110
    125111        md.thermal.spctemperature=[md.initialization.temperature;1];
    126112
    127         %Step of 0.2, for 20 years, output every year
    128 
    129 
    130 
     113        md.timestepping.time_step=0.2;
     114        md.timestepping.final_time=20;
     115        md.settings.output_frequency=1;
    131116
    132117        md.inversion.iscontrol=0;
     
    140125        name='./Models/Greenland.Transient';
    141126        save(name,'md');
    142 end%
     127end% }}}
     128%Plot{{{1
    143129if sum(find(steps==5))
    144130
     
    165151
    166152        %Plot velocity
    167 
    168 
     153        vel=[]; for i=1:100; vel=[vel md.results.TransientSolution(i).Vel]; end
     154        subplot(3,1,2); plot([0.2:0.2:20],mean(vel)); title('Mean Velocity');
    169155
    170156        %Plot Volume
    171 
    172 
    173 
    174 end%
     157        volume=[]; for i=1:100; volume=[volume md.results.TransientSolution(i).IceVolume]; end
     158        subplot(3,1,3); plot([0.2:0.2:20],volume); title('Ice Volume');
     159        xlabel('years')
     160end% }}}
Note: See TracChangeset for help on using the changeset viewer.