source: issm/trunk/test/NightlyRun/InNeedOfDebugging/test1301.py@ 13975

Last change on this file since 13975 was 13672, checked in by Mathieu Morlighem, 12 years ago

CHG: added point at the end of extrude command, extrude exponent is a float and not an integer

File size: 2.7 KB
Line 
1"""
2== == == == == == == == == == == == == == == == == == ==
3Auto generated python script for ISSM: test1301.m
4Created on 2012-09-27 via translateToPy.py Ver 1.0 by mikep
5== == == == == == == == == == == == == == == == == == ==
6
7Matlab script conversion into python
8translateToPy.py Author: Michael Pellegrin
9translateToPy.py Date: 09/24/12
10== == == == == == == == == == == == == == == == == == ==
11"""
12
13from MatlabFuncs import *
14from model import *
15from EnumDefinitions import *
16from numpy import *
17from triangle import *
18from setmask import *
19from parameterize import *
20from setflowequation import *
21from solve import *
22
23# This file can be run to check that the melting in simple conduction is correctly modeled.
24
25# There is no velocity (no advection) the only thermal boundary conditions are an imposed temperature
26
27# at upper surface and an impose flux at its base. The result must be a linear temperature from the upper to the lower
28
29# surface with an imposed slope (Geothermal flux). if it is not the case, something is thermal modeling has been changed...
30
31printingflag=false
32
33
34md=model()
35md=triangle(md,'../Exp/Square.exp',100000)
36md=setmask(md,'','')
37md=parameterize(md,'../Par/SquareThermal.py')
38md.extrude(3,2.)
39md=setflowequation(md,'Pattyn','all')
40
41
42# Some conditions specific to melting test
43
44md.initialization.pressure=zeros(md.mesh.numberofvertices,1)
45md.initialization.temperature=273.15*ones(md.mesh.numberofvertices,1)
46pos=numpy.nonzero(md.mesh.vertexonsurface)
47md.thermal.spctemperature(pos)=md.initialization.temperature(pos)
48md.materials.rheology_B=paterson(md.initialization.temperature)
49
50
51# analytical results
52
53# melting heat = geothermal flux
54
55# Mb*L*rho=G => Mb=G/L*rho
56
57melting=md.basalforcings.geothermalflux/(md.materials.rho_ice*md.materials.latentheat)*md.constants.yts
58
59
60# modeled results
61
62md.cluster=generic('name',oshostname(),'np',2)
63md=solve(md,ThermalSolutionEnum())
64
65
66# plot results
67
68comp_melting=md.results.ThermalSolution.BasalforcingsMeltingRate
69relative=abs((comp_melting-melting)./melting)*100
70relative(find(comp_melting==melting))=0
71plotmodel()(md,'data',comp_melting,'title','Modeled melting','data',melting,'title','Analytical melting',\
72 'data',comp_melting-melting,'title','Absolute error','data',relative,'title','Relative error [%]',\
73 'layer#all',1,'caxis#2',[1.02964 1.02966]*10^-4,'FontSize#all',20,'figposition','mathieu')
74if printingflag,
75 set(gcf,'Color','w')
76 printmodel()('thermalmelting','png','margin','on','marginsize',25,'frame','off','resolution',0.7,'hardcopy','off')
77 system(['mv thermalmelting.png ' ISSM_DIR '/website/doc_pdf/validation/Images/Thermal '])
78end
79
80
81
82
83# Fields and tolerances to track changes
84
85field_names =['BasalMelting']
86field_tolerances=[1e-08]
87field_values =[comp_melting]
Note: See TracBrowser for help on using the repository browser.