% This file can be run to check that the advection-diffusion is correctly modeled. % There is u=v=0 and w=cst everywhere the only thermal boundary conditions are an imposed temperature % at upper surface and an impose flux at its base. printingflag=false; md=model(); md=triangle(md,'../Exp/Square.exp',100000.); md=setmask(md,'',''); md=parameterize(md,'../Par/SquareThermal.par'); md=extrude(md,30,1.); %NB: the more one extrudes, the better (10-> relative~0.35%, 20->0.1%, 30->0.05%) md=setflowequation(md,'Pattyn','all'); %Thermal boundary conditions pos1=find(md.mesh.elementonbed); md.thermal.spctemperature(md.mesh.elements(pos1,1:3))=10; pos2=find(md.mesh.elementonsurface); md.thermal.spctemperature(md.mesh.elements(pos2,4:6))=0; md.initialization.vz=0.1*ones(md.mesh.numberofvertices,1); md.initialization.vel=sqrt( md.initialization.vx.^2+ md.initialization.vy.^2+ md.initialization.vz.^2); md.initialization.pressure=zeros(md.mesh.numberofvertices,1); md.thermal.stabilization=2; %analytical results %d2T/dz2-w*rho_ice*c/k*dT/dz=0 T(surface)=0 T(bed)=10 => T=A exp(alpha z)+B alpha=0.1/md.constants.yts*md.materials.rho_ice*md.materials.heatcapacity/md.materials.thermalconductivity; %alpha=w rho_ice c /k and w=0.1m/an A=10/(exp(alpha*(-1000))-1); %A=T(bed)/(exp(alpha*bed)-1) with bed=-1000 T(bed)=10 B=-A; md.initialization.temperature=A*exp(alpha*md.mesh.z)+B; %modeled results md.cluster=generic('name',oshostname(),'np',2); md=solve(md,ThermalSolutionEnum()); %plot results comp_temp=md.results.ThermalSolution.Temperature; relative=abs((comp_temp-md.initialization.temperature)./md.initialization.temperature)*100; relative(find(comp_temp==md.initialization.temperature))=0; plotmodel(md,'data',comp_temp,'title','Modeled temperature [K]','data',md.initialization.temperature,'view',3,... 'title','Analytical temperature [K]','view',3,'data',comp_temp-md.initialization.temperature,... 'title','Absolute error [K]','view',3,'data',relative,'title','Relative error [%]','view',3,... 'figposition','mathieu','FontSize#all',20) if printingflag, set(gcf,'Color','w') printmodel('thermaladvection','png','margin','on','marginsize',25,'frame','off','resolution',0.7,'hardcopy','off'); system(['mv thermaladvection.png ' ISSM_DIR '/website/doc_pdf/validation/Images/EISMINT ']); end %Fields and tolerances to track changes field_names ={'AdvectionTemperature'}; field_tolerances={1e-13}; field_values ={comp_temp};