Changeset 15566
- Timestamp:
- 07/23/13 14:26:18 (12 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test1202.m
r15565 r15566 7 7 md=setmask(md,'all',''); 8 8 md=parameterize(md,'../Par/SquareEISMINT.par'); 9 md=setflowequation(md,'SSA','all'); % MacAyeal's model and 2d9 md=setflowequation(md,'SSA','all'); %SSA's model and 2d 10 10 11 %Compute solution for MacAyeal's model11 %Compute solution for SSA's model 12 12 md.cluster=generic('name',oshostname(),'np',8); 13 13 md=solve(md,DiagnosticSolutionEnum()); -
issm/trunk-jpl/test/NightlyRun/test1202.py
r15565 r15566 20 20 md=setmask(md,'all','') 21 21 md=parameterize(md,'../Par/SquareEISMINT.py') 22 md=setflowequation(md,'SSA','all') # MacAyeal's model and 2d22 md=setflowequation(md,'SSA','all') #SSA's model and 2d 23 23 24 #Compute solution for MacAyeal's model24 #Compute solution for SSA's model 25 25 md.cluster=generic('name',oshostname(),'np',8) 26 26 md=solve(md,DiagnosticSolutionEnum()) -
issm/trunk-jpl/test/NightlyRun/test1203.m
r15565 r15566 7 7 md=setmask(md,'all',''); 8 8 md=parameterize(md,'../Par/SquareEISMINT.par'); 9 md=setflowequation(md,'SSA','all'); % MacAyeal's model and 2d9 md=setflowequation(md,'SSA','all'); %SSA's model and 2d 10 10 11 11 %Impose a non zero velocity on the upper boundary condition (y=max(y)) … … 13 13 md.diagnostic.spcvy(pos)=400.*(((md.mesh.x(pos)-100000.)/25000.).^2-ones(size(pos,1),1)).*heaviside((1.+eps)*ones(size(pos,1),1)-((md.mesh.x(pos)-100000.)/25000.).^2); 14 14 15 %Compute solution for MacAyeal's model15 %Compute solution for SSA's model 16 16 md.cluster=generic('name',oshostname(),'np',8); 17 17 md=solve(md,DiagnosticSolutionEnum()); -
issm/trunk-jpl/test/NightlyRun/test1203.py
r15565 r15566 21 21 md=setmask(md,'all','') 22 22 md=parameterize(md,'../Par/SquareEISMINT.py') 23 md=setflowequation(md,'SSA','all') # MacAyeal's model and 2d23 md=setflowequation(md,'SSA','all') #SSA's model and 2d 24 24 25 25 #Impose a non zero velocity on the upper boundary condition (y=max(y)) … … 27 27 md.diagnostic.spcvy[pos]=400.*(((md.mesh.x[pos].reshape(-1,1)-100000.)/25000.)**2-numpy.ones((numpy.size(pos),1)))*heaviside((1.+sys.float_info.epsilon)*numpy.ones((numpy.size(pos),1))-((md.mesh.x[pos].reshape(-1,1)-100000.)/25000.)**2) 28 28 29 #Compute solution for MacAyeal's model29 #Compute solution for SSA's model 30 30 md.cluster=generic('name',oshostname(),'np',8) 31 31 md=solve(md,DiagnosticSolutionEnum()) -
issm/trunk-jpl/test/NightlyRun/test1204.m
r15565 r15566 7 7 md=setmask(md,'all',''); 8 8 md=parameterize(md,'../Par/SquareEISMINT.par'); 9 md=setflowequation(md,'SSA','all'); % MacAyeal's model and 2d9 md=setflowequation(md,'SSA','all'); %SSA's model and 2d 10 10 11 11 %Impose a non zero velocity on the upper boundary condition (y=max(y)) … … 13 13 md.diagnostic.spcvy(pos)=400.*(((md.mesh.x(pos)-100000.)/25000.).^2-ones(size(pos,1),1)).*heaviside((1.+eps)*ones(size(pos,1),1)-((md.mesh.x(pos)-100000.)/25000.).^2); 14 14 15 %Compute solution for MacAyeal's model15 %Compute solution for SSA's model 16 16 md.cluster=generic('name',oshostname(),'np',8); 17 17 md=solve(md,DiagnosticSolutionEnum()); -
issm/trunk-jpl/test/NightlyRun/test1204.py
r15565 r15566 21 21 md=setmask(md,'all','') 22 22 md=parameterize(md,'../Par/SquareEISMINT.py') 23 md=setflowequation(md,'SSA','all') # MacAyeal's model and 2d23 md=setflowequation(md,'SSA','all') #SSA's model and 2d 24 24 25 25 #Impose a non zero velocity on the upper boundary condition (y=max(y)) … … 27 27 md.diagnostic.spcvy[pos]=400.*(((md.mesh.x[pos].reshape(-1,1)-100000.)/25000.)**2-numpy.ones((numpy.size(pos),1)))*heaviside((1.+sys.float_info.epsilon)*numpy.ones((numpy.size(pos),1))-((md.mesh.x[pos].reshape(-1,1)-100000.)/25000.)**2) 28 28 29 #Compute solution for MacAyeal's model29 #Compute solution for SSA's model 30 30 md.cluster=generic('name',oshostname(),'np',8) 31 31 md=solve(md,DiagnosticSolutionEnum()) -
issm/trunk-jpl/test/NightlyRun/test1205.m
r15565 r15566 1 %The aim of this program is to compare a model with an analytical solution given in MacAyealEISMINT : Lessons in Ice-Sheet Modeling.1 %The aim of this program is to compare a model with an analytical solution given in SSA EISMINT : Lessons in Ice-Sheet Modeling. 2 2 printingflag=false; 3 3 -
issm/trunk-jpl/test/NightlyRun/test1205.py
r15565 r15566 10 10 11 11 """ 12 The aim of this program is to compare a model with an analytical solution given in MacAyealEISMINT : Lessons in Ice-Sheet Modeling.12 The aim of this program is to compare a model with an analytical solution given in SSA EISMINT : Lessons in Ice-Sheet Modeling. 13 13 """ 14 14 -
issm/trunk-jpl/test/NightlyRun/test1206.m
r15565 r15566 1 %The aim of this program is to compare a model with an analytical solution given in MacAyealEISMINT : Lessons in Ice-Sheet Modeling.1 %The aim of this program is to compare a model with an analytical solution given in SSA EISMINT : Lessons in Ice-Sheet Modeling. 2 2 printingflag=false; 3 3 -
issm/trunk-jpl/test/NightlyRun/test1206.py
r15565 r15566 10 10 11 11 """ 12 The aim of this program is to compare a model with an analytical solution given in MacAyealEISMINT : Lessons in Ice-Sheet Modeling.12 The aim of this program is to compare a model with an analytical solution given in SSA EISMINT : Lessons in Ice-Sheet Modeling. 13 13 """ 14 14 -
issm/trunk-jpl/test/NightlyRun/test1207.m
r15565 r15566 1 %The aim of this program is to compare a model with an analytical solution given in MacAyealEISMINT : Lessons in Ice-Sheet Modeling.1 %The aim of this program is to compare a model with an analytical solution given in SSA EISMINT : Lessons in Ice-Sheet Modeling. 2 2 printingflag=false; 3 3 -
issm/trunk-jpl/test/NightlyRun/test1207.py
r15565 r15566 10 10 11 11 """ 12 The aim of this program is to compare a model with an analytical solution given in MacAyealEISMINT : Lessons in Ice-Sheet Modeling.12 The aim of this program is to compare a model with an analytical solution given in SSA EISMINT : Lessons in Ice-Sheet Modeling. 13 13 """ 14 14
Note:
See TracChangeset
for help on using the changeset viewer.