[14134] | 1 | import numpy
|
---|
| 2 | import shutil
|
---|
| 3 | from model import *
|
---|
| 4 | from squaremesh import *
|
---|
| 5 | from setmask import *
|
---|
| 6 | from parameterize import *
|
---|
| 7 | from setflowequation import *
|
---|
| 8 | from EnumDefinitions import *
|
---|
| 9 | from solve import *
|
---|
| 10 | from MatlabFuncs import *
|
---|
[14212] | 11 | from PythonFuncs import *
|
---|
[14134] | 12 |
|
---|
| 13 | """
|
---|
| 14 | This test is a test from the ISMP-HOM Intercomparison project.
|
---|
| 15 | Pattyn and Payne 2006
|
---|
| 16 | """
|
---|
| 17 |
|
---|
| 18 | printingflag=False
|
---|
| 19 |
|
---|
| 20 | L_list=[5000.,10000.,20000.,40000.,80000.,160000.]
|
---|
| 21 | results=[]
|
---|
| 22 | minvx=[]
|
---|
| 23 | maxvx=[]
|
---|
| 24 |
|
---|
| 25 | for L in L_list:
|
---|
| 26 | nx=20 #numberof nodes in x direction
|
---|
| 27 | ny=20
|
---|
| 28 | md=model()
|
---|
| 29 | md=squaremesh(md,L,L,nx,ny)
|
---|
| 30 | md=setmask(md,'','') #ice sheet test
|
---|
| 31 | md=parameterize(md,'../Par/ISMIPA.py')
|
---|
| 32 | md.extrude(9,1.)
|
---|
| 33 |
|
---|
[16137] | 34 | md=setflowequation(md,'HO','all')
|
---|
[14134] | 35 |
|
---|
| 36 | #Create dirichlet on the bed only
|
---|
[16137] | 37 | md.stressbalance.spcvx=float('NaN')*numpy.ones((md.mesh.numberofvertices,1))
|
---|
| 38 | md.stressbalance.spcvy=float('NaN')*numpy.ones((md.mesh.numberofvertices,1))
|
---|
| 39 | md.stressbalance.spcvz=float('NaN')*numpy.ones((md.mesh.numberofvertices,1))
|
---|
[14134] | 40 |
|
---|
| 41 | pos=numpy.nonzero(md.mesh.vertexonbed)
|
---|
[16137] | 42 | md.stressbalance.spcvx[pos]=0.
|
---|
| 43 | md.stressbalance.spcvy[pos]=0.
|
---|
[14134] | 44 |
|
---|
| 45 | #Create MPCs to have periodic boundary conditions
|
---|
| 46 | posx=numpy.nonzero(md.mesh.x==0.)[0]
|
---|
| 47 | posx2=numpy.nonzero(md.mesh.x==numpy.max(md.mesh.x))[0]
|
---|
| 48 |
|
---|
[14212] | 49 | posy=numpy.nonzero(logical_and_n(md.mesh.y==0.,md.mesh.x!=0.,md.mesh.x!=numpy.max(md.mesh.x)))[0] #Don't take the same nodes two times
|
---|
| 50 | posy2=numpy.nonzero(logical_and_n(md.mesh.y==numpy.max(md.mesh.y),md.mesh.x!=0.,md.mesh.x!=numpy.max(md.mesh.x)))[0]
|
---|
[14134] | 51 |
|
---|
[16137] | 52 | md.stressbalance.vertex_pairing=numpy.vstack((numpy.hstack((posx.reshape(-1,1)+1,posx2.reshape(-1,1)+1)),numpy.hstack((posy.reshape(-1,1)+1,posy2.reshape(-1,1)+1))))
|
---|
[14134] | 53 |
|
---|
[16137] | 54 | #Compute the stressbalance
|
---|
[14134] | 55 | md.cluster=generic('name',oshostname(),'np',8)
|
---|
[16137] | 56 | md=solve(md,StressbalanceSolutionEnum())
|
---|
[14134] | 57 |
|
---|
| 58 | #Plot the results and save them
|
---|
[16137] | 59 | vx=md.results.StressbalanceSolution.Vx
|
---|
| 60 | vy=md.results.StressbalanceSolution.Vy
|
---|
| 61 | vz=md.results.StressbalanceSolution.Vz
|
---|
| 62 | results.append(md.results.StressbalanceSolution)
|
---|
[14134] | 63 | minvx.append(numpy.min(vx[-md.mesh.numberofvertices2d:]))
|
---|
| 64 | maxvx.append(numpy.max(vx[-md.mesh.numberofvertices2d:]))
|
---|
| 65 |
|
---|
| 66 | #Now plot vx, vy, vz and vx on a cross section
|
---|
| 67 | # plotmodel(md,'data',vx,'layer#all',md.mesh.numberoflayers,'xlim',[0 L/10^3],'ylim',[0 L/10^3],'unit','km')
|
---|
| 68 | if printingflag:
|
---|
| 69 | pass
|
---|
| 70 | # set(gcf,'Color','w')
|
---|
[16137] | 71 | # printmodel(['ismipaHOvx' num2str(L)],'png','margin','on','marginsize',25,'frame','off','resolution',1.5,'hardcopy','off');
|
---|
| 72 | # shutil.move("ismipaHOvx%d.png" % L,ISSM_DIR+'/website/doc_pdf/validation/Images/ISMIP/TestA')
|
---|
[14134] | 73 | # plotmodel(md,'data',vy,'layer#all',md.mesh.numberoflayers,'xlim',[0 L/10^3],'ylim',[0 L/10^3],'unit','km')
|
---|
| 74 | if printingflag:
|
---|
| 75 | pass
|
---|
| 76 | # set(gcf,'Color','w')
|
---|
[16137] | 77 | # printmodel(['ismipaHOvy' num2str(L)],'png','margin','on','marginsize',25,'frame','off','resolution',1.5,'hardcopy','off');
|
---|
| 78 | # shutil.move("ismipaHOvy%d.png" % L,ISSM_DIR+'/website/doc_pdf/validation/Images/ISMIP/TestA')
|
---|
[14134] | 79 | # plotmodel(md,'data',vz,'layer#all',md.mesh.numberoflayers,'xlim',[0 L/10^3],'ylim',[0 L/10^3],'unit','km')
|
---|
| 80 | if printingflag:
|
---|
| 81 | pass
|
---|
| 82 | # set(gcf,'Color','w')
|
---|
[16137] | 83 | # printmodel(['ismipaHOvz' num2str(L)],'png','margin','on','marginsize',25,'frame','off','resolution',1.5,'hardcopy','off');
|
---|
| 84 | # shutil.move("ismipaHOvz%d.png" % L,ISSM_DIR+'/website/doc_pdf/validation/Images/ISMIP/TestA')
|
---|
[14134] | 85 |
|
---|
| 86 | if (L==5000.):
|
---|
| 87 | pass
|
---|
| 88 | # plotmodel(md,'data',vx,'sectionvalue','../Exp/ISMIP5000.exp','layer',md.mesh.numberoflayers,...
|
---|
| 89 | # 'resolution',[10 10],'ylim',[10 18],'xlim',[0 5000],'title','','xlabel','')
|
---|
| 90 | elif (L==10000.):
|
---|
| 91 | pass
|
---|
| 92 | # plotmodel(md,'data',vx,'sectionvalue','../Exp/ISMIP10000.exp','layer',md.mesh.numberoflayers,...
|
---|
| 93 | # 'resolution',[10 10],'ylim',[10 30],'xlim',[0 10000],'title','','xlabel','')
|
---|
| 94 | elif (L==20000.):
|
---|
| 95 | pass
|
---|
| 96 | # plotmodel(md,'data',vx,'sectionvalue','../Exp/ISMIP20000.exp','layer',md.mesh.numberoflayers,...
|
---|
| 97 | # 'resolution',[10 10],'ylim',[0 50],'xlim',[0 20000],'title','','xlabel','')
|
---|
| 98 | elif (L==40000.):
|
---|
| 99 | pass
|
---|
| 100 | # plotmodel(md,'data',vx,'sectionvalue','../Exp/ISMIP40000.exp','layer',md.mesh.numberoflayers,...
|
---|
| 101 | # 'resolution',[10 10],'ylim',[0 80],'xlim',[0 40000],'title','','xlabel','')
|
---|
| 102 | elif (L==80000.):
|
---|
| 103 | pass
|
---|
| 104 | # plotmodel(md,'data',vx,'sectionvalue','../Exp/ISMIP80000.exp','layer',md.mesh.numberoflayers,...
|
---|
| 105 | # 'resolution',[10 10],'ylim',[0 100],'xlim',[0 80000],'title','','xlabel','')
|
---|
| 106 | elif (L==160000.):
|
---|
| 107 | pass
|
---|
| 108 | # plotmodel(md,'data',vx,'sectionvalue','../Exp/ISMIP160000.exp','layer',md.mesh.numberoflayers,...
|
---|
| 109 | # 'resolution',[10 10],'ylim',[0 120],'xlim',[0 160000],'title','','xlabel','')
|
---|
| 110 | if printingflag:
|
---|
| 111 | pass
|
---|
| 112 | # set(gcf,'Color','w')
|
---|
[16137] | 113 | # printmodel(['ismipaHOvxsec' num2str(L)],'png','margin','on','marginsize',25,'frame','off','resolution',1.5,'hardcopy','off');
|
---|
| 114 | # shutil.move("ismipaHOvxsec%d.png" % L,ISSM_DIR+'/website/doc_pdf/validation/Images/ISMIP/TestA')
|
---|
[14134] | 115 |
|
---|
| 116 | #Now plot the min and max values of vx for each size of the square
|
---|
| 117 | #plot([5 10 20 40 80 160],minvx);ylim([0 18]);xlim([0 160])
|
---|
| 118 | if printingflag:
|
---|
| 119 | pass
|
---|
| 120 | # set(gcf,'Color','w')
|
---|
[16137] | 121 | # printmodel('ismipaHOminvx','png','margin','on','marginsize',25,'frame','off','resolution',1.5,'hardcopy','off');
|
---|
| 122 | # shutil.move('ismipaHOminvx.png',ISSM_DIR+'/website/doc_pdf/validation/Images/ISMIP/TestA')
|
---|
[14134] | 123 | #plot([5 10 20 40 80 160],maxvx);ylim([0 120]);xlim([0 160])
|
---|
| 124 | if printingflag:
|
---|
| 125 | pass
|
---|
| 126 | # set(gcf,'Color','w')
|
---|
[16137] | 127 | # printmodel('ismipaHOmaxvx','png','margin','on','marginsize',25,'frame','off','resolution',1.5,'hardcopy','off');
|
---|
| 128 | # shutil.move('ismipaHOmaxvx.png',ISSM_DIR+'/website/doc_pdf/validation/Images/ISMIP/TestA')
|
---|
[14134] | 129 |
|
---|
| 130 | #Fields and tolerances to track changes
|
---|
| 131 | field_names =[\
|
---|
| 132 | 'Vx5km','Vy5km','Vz5km',\
|
---|
| 133 | 'Vx10km','Vy10km','Vz10km',\
|
---|
| 134 | 'Vx20km','Vy20km','Vz20km',\
|
---|
| 135 | 'Vx40km','Vy40km','Vz40km',\
|
---|
| 136 | 'Vx80km','Vy80km','Vz80km',\
|
---|
| 137 | 'Vx160km','Vy160km','Vz160km'
|
---|
| 138 | ]
|
---|
| 139 | field_tolerances=[\
|
---|
| 140 | 1e-09,1e-09,1e-09,\
|
---|
| 141 | 1e-10,1e-10,1e-09,\
|
---|
| 142 | 1e-09,1e-09,1e-09,\
|
---|
| 143 | 1e-09,1e-08,1e-09,\
|
---|
| 144 | 1e-08,1e-08,1e-08,\
|
---|
| 145 | 1e-08,1e-07,1e-08,\
|
---|
| 146 | ]
|
---|
| 147 | field_values=[]
|
---|
| 148 | for result in results:
|
---|
| 149 | field_values=field_values+[\
|
---|
| 150 | result.Vx,\
|
---|
| 151 | result.Vy,\
|
---|
| 152 | result.Vz,\
|
---|
| 153 | ]
|
---|