Changeset 514


Ignore:
Timestamp:
05/20/09 08:25:58 (16 years ago)
Author:
Mathieu Morlighem
Message:

test advection fixed

Location:
issm/trunk/test/Validation/ThermalTests/Simpleadvection
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/test/Validation/ThermalTests/Simpleadvection/Square.par

    r16 r514  
    1 
    21%Ok, start defining model parameters here
    32
    4 %material parameters
    5         md.g=9.8;
    6         md.rho_ice=917;
    7         md.rho_water=1023;
    8         di=md.rho_ice/md.rho_water;
    9         md.yts=365*24*3600;
    10         md.heatcapacity=2009;
    11         md.thermalconductivity=2.2; %W/mK
    12         md.beta=9.8*10^-8;
    13 
    14 %Solution parameters
    153        %parallelization
    164        md.cluster='none';
    17         md.np=2;
    18         md.time=1;
    19         md.exclusive=0;
    20 
    21         %statics
    22         md.eps_rel=0.01;
    23         md.eps_abs=10;
    24         %md.penalty_horiz=10^25; %penalty parameters for rifts
    25         %md.penalty_vert=10^15; %penalty parameters for rifts
    26         md.lowmem=1;
    27         if md.numberofgrids<1000000,
    28         md.sparsity=.001;
    29         else
    30         md.sparsity=.0001;
    31         end
    32 
    33         %dynamics
    34         md.dt=1*md.yts; %1 year
    35         md.ndt=md.dt*10;
    36         md.artificial_diffusivity=1;
    37 
    38         %control
    39         md.control_type={'drag'}; %'drag', 'B'
    40         md.nsteps=5;
    41         md.tolx=10^-4;
    42         md.maxiter=20;
    43         md.optscal=10;
    44         md.fit='logarithmic'; %'absolute','relative','logarithmic'
    45         md.meanvel=1000/md.yts; %1000 meters/year
    46         md.epsvel=eps;
    47 
    485
    496        disp('      creating thickness');
    50         hmax=1000;
    51         md.thickness=hmax*ones(md.numberofgrids,1);
     7        h=1000;
     8        md.thickness=h*ones(md.numberofgrids,1);
    529        md.firn_layer=10*ones(md.numberofgrids,1);
    53         md.surface=zeros(md.numberofgrids,1);
    54         md.bed=-md.thickness;
     10        md.bed=-1000*ones(md.numberofgrids,1);
     11        md.surface=md.bed+md.thickness;
    5512
    5613        disp('      creating velocities');
     
    7431        md.B=paterson(md.observed_temperature);
    7532        md.n=3*ones(md.numberofelements,1);
    76 
     33       
    7734        disp('      creating accumulation rates');
    7835        md.accumulation=ones(md.numberofgrids,1)/md.yts; %1m/a
     
    8138        %Deal with boundary conditions:
    8239       
    83         disp('      boundary conditions for diagnostic model: ');
    84         %Build gridonicefront, array of boundary grids belonging to the icefront:
    85         gridinsideicefront=ArgusContourToMesh(md.elements,md.x,md.y,expread('Front.exp',1),'node',2);
    86         gridonicefront=double(md.gridonboundary & gridinsideicefront);
    87 
    88         md.gridondirichlet_diag=zeros(md.numberofgrids,1);
    89         pos=find(md.gridonboundary & ~gridonicefront);md.gridondirichlet_diag(pos)=1;
    90         md.dirichletvalues_diag=zeros(md.numberofgrids,2);
    91 
    92         pos=find(gridonicefront(md.segments(:,1)) | gridonicefront(md.segments(:,2)));
    93         md.segmentonneumann_diag=md.segments(pos,:);
    94         md.neumannvalues_diag=NaN*ones(length(md.segmentonneumann_diag),1); %dynamic boundary conditions (water pressure)
    95 
    96         disp('      boundary conditions for prognostic model');
    97         md.gridondirichlet_prog=zeros(md.numberofgrids,1);
    98         md.dirichletvalues_prog=zeros(md.numberofgrids,1);
    99         pos=find(gridonicefront(md.segments(:,1)) | gridonicefront(md.segments(:,2)));
    100         md.segmentonneumann_prog=md.segments(pos,:);
    101         md.neumannvalues_prog=zeros(size(md.segmentonneumann_prog,1),1);
    102         md.neumannvalues_prog(:)=NaN; %free radiation
    103        
    104         pos=find(gridonicefront(md.segments(:,1)) | gridonicefront(md.segments(:,2)));
    105         md.segmentonneumann_prog2=md.segments(pos,:);
    106         md.neumannvalues_prog2=zeros(size(md.segmentonneumann_prog2,1),1);
    107         md.neumannvalues_prog2(:)=NaN; %free radiation
     40        disp('      boundary conditions for diagnostic model');
     41        md=SetIceShelfBC(md,'Front.exp');
    10842       
    10943        disp('      boundary conditions for thermal model');
     
    11145        md.dirichletvalues_thermal=md.observed_temperature;
    11246        md.geothermalflux=zeros(md.numberofgrids,1);
    113         pos=find(md.elementonicesheet);md.geothermalflux(md.elements(pos,:))=0.1; %1 mW/m^2
    114 
    115 
    116        
    117 
    118 % Some Cielo code, ignore.
    119 if strcmp(md.cluster,'yes')
    120         ServerDisconnect;
    121 end   
     47        pos=find(md.elementonicesheet);md.geothermalflux(md.elements(pos,:))=50*10^-3; %50 mW/m^2
  • issm/trunk/test/Validation/ThermalTests/Simpleadvection/runme.m

    r16 r514  
    2323
    2424%modeled  results
    25 md=solve(md,'thermalsteady');
     25md=solve(md,'analysis_type','thermal','sub_analysis_type','steady','package','ice');
    2626
    2727%plot results
Note: See TracChangeset for help on using the changeset viewer.