""" == == == == == == == == == == == == == == == == == == == Auto generated python script for ISSM: test1301.m Created on 2012-09-27 via translateToPy.py Ver 1.0 by mikep == == == == == == == == == == == == == == == == == == == Matlab script conversion into python translateToPy.py Author: Michael Pellegrin translateToPy.py Date: 09/24/12 == == == == == == == == == == == == == == == == == == == """ from MatlabFuncs import * from model import * from EnumDefinitions import * from numpy import * from triangle import * from setmask import * from parameterize import * from setflowequation import * from solve import * # This file can be run to check that the melting in simple conduction is correctly modeled. # There is no velocity (no advection) the only thermal boundary conditions are an imposed temperature # at upper surface and an impose flux at its base. The result must be a linear temperature from the upper to the lower # surface with an imposed slope (Geothermal flux). if it is not the case, something is thermal modeling has been changed... printingflag=false md=model() md=triangle(md,'../Exp/Square.exp',100000) md=setmask(md,'','') md=parameterize(md,'../Par/SquareThermal.py') md.extrude(3,2.) md=setflowequation(md,'Pattyn','all') # Some conditions specific to melting test md.initialization.pressure=zeros(md.mesh.numberofvertices,1) md.initialization.temperature=273.15*ones(md.mesh.numberofvertices,1) pos=numpy.nonzero(md.mesh.vertexonsurface) md.thermal.spctemperature(pos)=md.initialization.temperature(pos) md.materials.rheology_B=paterson(md.initialization.temperature) # analytical results # melting heat = geothermal flux # Mb*L*rho=G => Mb=G/L*rho melting=md.basalforcings.geothermalflux/(md.materials.rho_ice*md.materials.latentheat)*md.constants.yts # modeled results md.cluster=generic('name',oshostname(),'np',2) md=solve(md,ThermalSolutionEnum()) # plot results comp_melting=md.results.ThermalSolution.BasalforcingsMeltingRate relative=abs((comp_melting-melting)./melting)*100 relative(find(comp_melting==melting))=0 plotmodel()(md,'data',comp_melting,'title','Modeled melting','data',melting,'title','Analytical melting',\ 'data',comp_melting-melting,'title','Absolute error','data',relative,'title','Relative error [%]',\ 'layer#all',1,'caxis#2',[1.02964 1.02966]*10^-4,'FontSize#all',20,'figposition','mathieu') if printingflag, set(gcf,'Color','w') printmodel()('thermalmelting','png','margin','on','marginsize',25,'frame','off','resolution',0.7,'hardcopy','off') system(['mv thermalmelting.png ' ISSM_DIR '/website/doc_pdf/validation/Images/Thermal ']) end # Fields and tolerances to track changes field_names =['BasalMelting'] field_tolerances=[1e-08] field_values =[comp_melting]