Changeset 9664
- Timestamp:
- 09/07/11 15:13:02 (14 years ago)
- Location:
- issm/trunk
- Files:
-
- 275 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/model/setflowequation.m
r9663 r9664 1 function md=set elementstype(md,varargin)1 function md=setflowequation(md,varargin) 2 2 %SETELEMENTSTYPE - associate a solution type to each element 3 3 % … … 7 7 % It can either be a domain file (argus type, .exp extension), or an array of element flags. 8 8 % If user wants every element outside the domain to be 9 % set elementstyped, add '~' to the name of the domain file (ex: '~Pattyn.exp');9 % setflowequationd, add '~' to the name of the domain file (ex: '~Pattyn.exp'); 10 10 % an empty string '' will be considered as an empty domain 11 11 % a string 'all' will be considered as the entire domain … … 13 13 % 14 14 % Usage: 15 % md=set elementstype(md,varargin)15 % md=setflowequation(md,varargin) 16 16 % 17 17 % Example: 18 % md=set elementstype(md,'pattyn','Pattyn.exp','macayeal',md.mask.elementonfloatingice,'fill','hutter');19 % md=set elementstype(md,'pattyn','Pattyn.exp',fill','hutter','coupling','tiling');18 % md=setflowequation(md,'pattyn','Pattyn.exp','macayeal',md.mask.elementonfloatingice,'fill','hutter'); 19 % md=setflowequation(md,'pattyn','Pattyn.exp',fill','hutter','coupling','tiling'); 20 20 21 21 %some checks on list of arguments 22 22 if ((nargin<2) | (nargout~=1)), 23 error('set elementstypeerror message');23 error('setflowequation error message'); 24 24 end 25 25 … … 44 44 %check that each element has at least one flag 45 45 if any(hutterflag+ macayealflag+pattynflag+stokesflag==0), 46 error('set elementstypeerror message: elements type not assigned, must be specified')46 error('setflowequation error message: elements type not assigned, must be specified') 47 47 end 48 48 49 49 %check that each element has only one flag 50 50 if any(hutterflag+ macayealflag+pattynflag+stokesflag>1), 51 disp('set elementstypewarning message: some elements have several types, higher order type is used for them')51 disp('setflowequation warning message: some elements have several types, higher order type is used for them') 52 52 hutterflag(find(hutterflag & macayealflag))=0; 53 53 hutterflag(find(hutterflag & pattynflag))=0; … … 58 58 if (md.dim==2), 59 59 if any(stokesflag | pattynflag) 60 error('set elementstypeerror message: stokes and pattyn elements no allowed in 2d mesh, extrude it first')60 error('setflowequation error message: stokes and pattyn elements no allowed in 2d mesh, extrude it first') 61 61 end 62 62 end … … 64 64 %Stokes can only be used alone for now: 65 65 if any(stokesflag) &any(hutterflag), 66 error('set elementstypeerror message: stokes cannot be used with any other model for now, put stokes everywhere')66 error('setflowequation error message: stokes cannot be used with any other model for now, put stokes everywhere') 67 67 end 68 68 -
issm/trunk/test/Miscellaneous/Bump/runme.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'Bump.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=astrid; 6 6 md.cluster.np=13; -
issm/trunk/test/Miscellaneous/GJM_test1/test1.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/Miscellaneous/connectivity/runme.m
r9641 r9664 40 40 if is3d, 41 41 md=extrude(md,4,5); 42 md=set elementstype(md,'pattyn','all');42 md=setflowequation(md,'pattyn','all'); 43 43 else 44 md=set elementstype(md,'macayeal','all');44 md=setflowequation(md,'macayeal','all'); 45 45 end 46 46 -
issm/trunk/test/NightlyRun/test101.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test102.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test103.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test104.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test105.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test106.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test107.m
r9641 r9664 4 4 md=extrude(md,3,2); 5 5 md.cluster=none; 6 md=set elementstype(md,'stokes','all');6 md=setflowequation(md,'stokes','all'); 7 7 md=solve(md,DiagnosticSolutionEnum); 8 8 -
issm/trunk/test/NightlyRun/test108.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test109.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,PrognosticSolutionEnum); -
issm/trunk/test/NightlyRun/test110.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,PrognosticSolutionEnum); -
issm/trunk/test/NightlyRun/test1101.m
r9641 r9664 18 18 md=extrude(md,9,1); 19 19 20 md=set elementstype(md,'pattyn','all');20 md=setflowequation(md,'pattyn','all'); 21 21 22 22 %Create dirichlet on the bed only -
issm/trunk/test/NightlyRun/test1102.m
r9641 r9664 25 25 md=parameterize(md,'../Par/ISMIPA.par'); 26 26 md=extrude(md,10,1); 27 md=set elementstype(md,'stokes','all');27 md=setflowequation(md,'stokes','all'); 28 28 29 29 %Create dirichlet on the bed only -
issm/trunk/test/NightlyRun/test1103.m
r9641 r9664 16 16 md=extrude(md,10,1); 17 17 18 md=set elementstype(md,'pattyn','all');18 md=setflowequation(md,'pattyn','all'); 19 19 20 20 %Create dirichlet on the bed only -
issm/trunk/test/NightlyRun/test1104.m
r9641 r9664 15 15 md=extrude(md,10,1); 16 16 17 md=set elementstype(md,'pattyn','all','stokes','all');17 md=setflowequation(md,'pattyn','all','stokes','all'); 18 18 19 19 %Create dirichlet on the bed only -
issm/trunk/test/NightlyRun/test1105.m
r9641 r9664 18 18 md=extrude(md,10,1); 19 19 20 md=set elementstype(md,'pattyn','all');20 md=setflowequation(md,'pattyn','all'); 21 21 22 22 %Create MPCs to have periodic boundary conditions -
issm/trunk/test/NightlyRun/test1106.m
r9641 r9664 15 15 md=extrude(md,6,1); 16 16 17 md=set elementstype(md,'pattyn','all','stokes','all');17 md=setflowequation(md,'pattyn','all','stokes','all'); 18 18 19 19 %Create MPCs to have periodic boundary conditions -
issm/trunk/test/NightlyRun/test1107.m
r9641 r9664 18 18 md=extrude(md,10,1); 19 19 20 md=set elementstype(md,'pattyn','all');20 md=setflowequation(md,'pattyn','all'); 21 21 22 22 %We need one grd on dirichlet: the 4 corners are set to zero -
issm/trunk/test/NightlyRun/test1108.m
r9641 r9664 15 15 md=extrude(md,6,1); 16 16 17 md=set elementstype(md,'pattyn','all','stokes','all');17 md=setflowequation(md,'pattyn','all','stokes','all'); 18 18 19 19 %We need one grd on dirichlet: the 4 corners are set to zero -
issm/trunk/test/NightlyRun/test1109.m
r9641 r9664 20 20 21 21 if i==1 | i==3, 22 md=set elementstype(md,'pattyn','all');22 md=setflowequation(md,'pattyn','all'); 23 23 elseif i==2 | i==4, 24 md=set elementstype(md,'stokes','all');24 md=setflowequation(md,'stokes','all'); 25 25 end 26 26 -
issm/trunk/test/NightlyRun/test111.m
r9642 r9664 3 3 md=setmask(md,'all',''); 4 4 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md.prognostic.stabilization=3; -
issm/trunk/test/NightlyRun/test1110.m
r9642 r9664 15 15 16 16 if (i==1 | i==2), 17 md=set elementstype(md,'pattyn','all');17 md=setflowequation(md,'pattyn','all'); 18 18 else 19 md=set elementstype(md,'stokes','all');19 md=setflowequation(md,'stokes','all'); 20 20 end 21 21 -
issm/trunk/test/NightlyRun/test112.m
r9642 r9664 3 3 md=setmask(md,'all',''); 4 4 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.prognostic.stabilization=3; -
issm/trunk/test/NightlyRun/test113.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md=extrude(md,5,3); 6 6 md.cluster=none; -
issm/trunk/test/NightlyRun/test114.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md=extrude(md,5,3); 6 6 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test115.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.timestepping.time_step=0; 7 7 md.cluster=none; -
issm/trunk/test/NightlyRun/test116.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.timestepping.time_step=0; 7 7 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test117.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,ThermalSolutionEnum); -
issm/trunk/test/NightlyRun/test118.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,ThermalSolutionEnum); -
issm/trunk/test/NightlyRun/test119.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test120.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 -
issm/trunk/test/NightlyRun/test1201.m
r9642 r9664 10 10 md=parameterize(md,'../Par/SquareEISMINT.par'); 11 11 md.surfaceforcings.mass_balance(:)=0; 12 md=set elementstype(md,'macayeal','all');12 md=setflowequation(md,'macayeal','all'); 13 13 md.cluster=generic('name',oshostname(),'np',8); 14 14 -
issm/trunk/test/NightlyRun/test1202.m
r9641 r9664 7 7 md=setmask(md,'all',''); 8 8 md=parameterize(md,'../Par/SquareEISMINT.par'); 9 md=set elementstype(md,'macayeal','all'); %MacAyeal's model and 2d9 md=setflowequation(md,'macayeal','all'); %MacAyeal's model and 2d 10 10 11 11 %Compute solution for MacAyeal's model -
issm/trunk/test/NightlyRun/test1203.m
r9641 r9664 7 7 md=setmask(md,'all',''); 8 8 md=parameterize(md,'../Par/SquareEISMINT.par'); 9 md=set elementstype(md,'macayeal','all'); %MacAyeal's model and 2d9 md=setflowequation(md,'macayeal','all'); %MacAyeal's model and 2d 10 10 11 11 %Impose a non zero velocity on the upper boundary condition (y=max(y)) -
issm/trunk/test/NightlyRun/test1204.m
r9642 r9664 7 7 md=setmask(md,'all',''); 8 8 md=parameterize(md,'../Par/SquareEISMINT.par'); 9 md=set elementstype(md,'macayeal','all'); %MacAyeal's model and 2d9 md=setflowequation(md,'macayeal','all'); %MacAyeal's model and 2d 10 10 11 11 %Impose a non zero velocity on the upper boundary condition (y=max(y)) -
issm/trunk/test/NightlyRun/test1205.m
r9641 r9664 19 19 %We extrude the model to have a 3d model 20 20 md=extrude(md,numlayers,1); 21 md=set elementstype(md,'hutter','all');21 md=setflowequation(md,'hutter','all'); 22 22 23 23 %Spc the nodes on the bed -
issm/trunk/test/NightlyRun/test1206.m
r9641 r9664 19 19 %We extrude the model to have a 3d model 20 20 md=extrude(md,numlayers,1); 21 md=set elementstype(md,'pattyn','all');21 md=setflowequation(md,'pattyn','all'); 22 22 23 23 %Spc the nodes on the bed -
issm/trunk/test/NightlyRun/test1207.m
r9641 r9664 19 19 %We extrude the model to have a 3d model 20 20 md=extrude(md,numlayers,1); 21 md=set elementstype(md,'stokes','all');21 md=setflowequation(md,'stokes','all'); 22 22 23 23 %Spc the nodes on the bed -
issm/trunk/test/NightlyRun/test1208.m
r9642 r9664 10 10 %We extrude the model to have a 3d model 11 11 md=extrude(md,numlayers,1); 12 md=set elementstype(md,'hutter','all');12 md=setflowequation(md,'hutter','all'); 13 13 14 14 %Spc the nodes on the bed -
issm/trunk/test/NightlyRun/test121.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test122.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test123.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,SurfaceSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test124.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,SurfaceSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test125.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,SurfaceSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test126.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,SurfaceSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test127.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,BedSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test128.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,BedSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test129.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,BedSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test130.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelfConstrained.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,BedSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test1301.m
r9641 r9664 10 10 md=parameterize(md,'../Par/SquareThermal.par'); 11 11 md=extrude(md,3,2); 12 md=set elementstype(md,'Pattyn','all');12 md=setflowequation(md,'Pattyn','all'); 13 13 14 14 %Some conditions specific to melting test -
issm/trunk/test/NightlyRun/test1302.m
r9641 r9664 9 9 md=parameterize(md,'../Par/SquareThermal.par'); 10 10 md=extrude(md,30,1); %NB: the more one extrudes, the better (10-> relative~0.35%, 20->0.1%, 30->0.05%) 11 md=set elementstype(md,'Pattyn','all');11 md=setflowequation(md,'Pattyn','all'); 12 12 13 13 %Thermal boundary conditions -
issm/trunk/test/NightlyRun/test1303.m
r9641 r9664 10 10 md=parameterize(md,'../Par/SquareThermal.par'); 11 11 md=extrude(md,11,2); 12 md=set elementstype(md,'Pattyn','all');12 md=setflowequation(md,'Pattyn','all'); 13 13 pos1=find(md.elementonbed); md.thermal.spctemperature(md.elements(pos1,1:3))=10; 14 14 pos2=find(md.elementonsurface); md.thermal.spctemperature(md.elements(pos2,4:6))=0; -
issm/trunk/test/NightlyRun/test1304.m
r9641 r9664 10 10 md=parameterize(md,'../Par/SquareThermal.par'); 11 11 md=extrude(md,11,1); 12 md=set elementstype(md,'Pattyn','all');12 md=setflowequation(md,'Pattyn','all'); 13 13 14 14 pos2=find(md.elementonsurface); md.thermal.spctemperature(md.elements(pos2,4:6))=0; -
issm/trunk/test/NightlyRun/test131.m
r9645 r9664 5 5 pos=find(md.nodeonboundary); 6 6 md.balancethickness.spcthickness(pos)=md.thickness(pos); 7 md=set elementstype(md,'macayeal','all');7 md=setflowequation(md,'macayeal','all'); 8 8 md.cluster=none; 9 9 md=solve(md,BalancethicknessSolutionEnum); -
issm/trunk/test/NightlyRun/test132.m
r9645 r9664 5 5 pos=find(md.nodeonboundary); 6 6 md.balancethickness.spcthickness(pos)=md.thickness(pos); 7 md=set elementstype(md,'macayeal','all');7 md=setflowequation(md,'macayeal','all'); 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 9 md=solve(md,BalancethicknessSolutionEnum); -
issm/trunk/test/NightlyRun/test133.m
r9645 r9664 6 6 pos=find(md.nodeonboundary); 7 7 md.balancethickness.spcthickness(pos)=md.thickness(pos); 8 md=set elementstype(md,'macayeal','all');8 md=setflowequation(md,'macayeal','all'); 9 9 md.cluster=none; 10 10 md=solve(md,BalancethicknessSolutionEnum); -
issm/trunk/test/NightlyRun/test134.m
r9645 r9664 6 6 pos=find(md.nodeonboundary); 7 7 md.balancethickness.spcthickness(pos)=md.thickness(pos); 8 md=set elementstype(md,'macayeal','all');8 md=setflowequation(md,'macayeal','all'); 9 9 md.cluster=generic('name',oshostname(),'np',3); 10 10 md=solve(md,BalancethicknessSolutionEnum); -
issm/trunk/test/NightlyRun/test135.m
r9642 r9664 5 5 md.prognostic.stabilization=3; 6 6 md.vy=md.vy+400; 7 md=set elementstype(md,'macayeal','all');7 md=setflowequation(md,'macayeal','all'); 8 8 md.cluster=none; 9 9 md=solve(md,BalancethicknessSolutionEnum); -
issm/trunk/test/NightlyRun/test136.m
r9642 r9664 5 5 md.prognostic.stabilization=3; 6 6 md.vy=md.vy+400; 7 md=set elementstype(md,'macayeal','all');7 md=setflowequation(md,'macayeal','all'); 8 8 md.cluster=generic('name',oshostname(),'np',3); 9 9 md=solve(md,BalancethicknessSolutionEnum); -
issm/trunk/test/NightlyRun/test1501.m
r9641 r9664 4 4 md=setmask(md,'all',''); 5 5 md=parameterize(md,'../Par/SquareShelf.par'); 6 md=set elementstype(md,'macayeal','all');6 md=setflowequation(md,'macayeal','all'); 7 7 md.cluster=generic('name',oshostname(),'np',3); 8 8 md.isthermal=0; -
issm/trunk/test/NightlyRun/test1502.m
r9641 r9664 4 4 md=setmask(md,'all',''); 5 5 md=parameterize(md,'../Par/SquareShelf.par'); 6 md=set elementstype(md,'macayeal','all');6 md=setflowequation(md,'macayeal','all'); 7 7 md=extrude(md,3,1); 8 8 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test201.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test202.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test203.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test204.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test205.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test206.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test207.m
r9641 r9664 4 4 md=extrude(md,3,2); 5 5 md.cluster=none; 6 md=set elementstype(md,'stokes','all');6 md=setflowequation(md,'stokes','all'); 7 7 md=solve(md,DiagnosticSolutionEnum); 8 8 -
issm/trunk/test/NightlyRun/test208.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test209.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'pattyn','../Exp/SquareHalfRight.exp','fill','macayeal','coupling','penalties');5 md=setflowequation(md,'pattyn','../Exp/SquareHalfRight.exp','fill','macayeal','coupling','penalties'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test210.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'pattyn','../Exp/SquareHalfRight.exp','fill','macayeal','coupling','penalties');5 md=setflowequation(md,'pattyn','../Exp/SquareHalfRight.exp','fill','macayeal','coupling','penalties'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test211.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.timestepping.time_step=0; 7 7 md.cluster=none; -
issm/trunk/test/NightlyRun/test212.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.timestepping.time_step=0; 7 7 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test213.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,ThermalSolutionEnum); -
issm/trunk/test/NightlyRun/test214.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,ThermalSolutionEnum); -
issm/trunk/test/NightlyRun/test215.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test216.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test217.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test218.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test219.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test220.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test221.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.eps_rel=NaN; 7 7 md.cluster=none; -
issm/trunk/test/NightlyRun/test222.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.eps_rel=NaN; 7 7 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test223.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 6 6 %control parameters -
issm/trunk/test/NightlyRun/test224.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 6 6 %control parameters -
issm/trunk/test/NightlyRun/test225.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test226.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test227.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test228.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test229.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test230.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test232.m
r9641 r9664 3 3 md=setmask(md,'all',''); 4 4 md=parameterize(md,'../Par/SquareShelf.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 -
issm/trunk/test/NightlyRun/test233.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 -
issm/trunk/test/NightlyRun/test234.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 -
issm/trunk/test/NightlyRun/test235.m
r9652 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 -
issm/trunk/test/NightlyRun/test236.m
r9652 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 -
issm/trunk/test/NightlyRun/test237.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'pattyn','../Exp/SquareHalfRight.exp','fill','macayeal');5 md=setflowequation(md,'pattyn','../Exp/SquareHalfRight.exp','fill','macayeal'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test238.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'pattyn','../Exp/SquareHalfRight.exp','fill','macayeal');5 md=setflowequation(md,'pattyn','../Exp/SquareHalfRight.exp','fill','macayeal'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test239.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','pattyn');5 md=setflowequation(md,'stokes','../Exp/SquareHalfRight.exp','fill','pattyn'); 6 6 md=solve(md,DiagnosticSolutionEnum); 7 7 -
issm/trunk/test/NightlyRun/test240.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','pattyn');5 md=setflowequation(md,'stokes','../Exp/SquareHalfRight.exp','fill','pattyn'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test241.m
r9641 r9664 4 4 md=extrude(md,2,1); 5 5 md.viscosity_overshoot=0.0; 6 md=set elementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal');6 md=setflowequation(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal'); 7 7 md=solve(md,DiagnosticSolutionEnum); 8 8 -
issm/trunk/test/NightlyRun/test242.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal');5 md=setflowequation(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.viscosity_overshoot=0; -
issm/trunk/test/NightlyRun/test243.m
r9653 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md.prognostic.hydrostatic_adjustment='Incremental'; -
issm/trunk/test/NightlyRun/test244.m
r9653 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md.prognostic.hydrostatic_adjustment='Incremental'; -
issm/trunk/test/NightlyRun/test245.m
r9653 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.bed=md.bed+50; md.surface=md.surface+50; 6 6 md.cluster=none; -
issm/trunk/test/NightlyRun/test246.m
r9653 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.bed=md.bed+50; md.surface=md.surface+50; 6 6 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test247.m
r9653 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md.prognostic.hydrostatic_adjustment='Incremental'; -
issm/trunk/test/NightlyRun/test248.m
r9653 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.prognostic.hydrostatic_adjustment='Incremental'; -
issm/trunk/test/NightlyRun/test249.m
r9653 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.bed=md.bed+50; md.surface=md.surface+50; 7 7 md.cluster=none; -
issm/trunk/test/NightlyRun/test250.m
r9653 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.bed=md.bed+50; md.surface=md.surface+50; 7 7 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test251.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md.timestepping.time_adapt=1; -
issm/trunk/test/NightlyRun/test252.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md.timestepping.time_adapt=1; -
issm/trunk/test/NightlyRun/test253.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md.timestepping.time_adapt=1; -
issm/trunk/test/NightlyRun/test254.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.timestepping.time_adapt=1; -
issm/trunk/test/NightlyRun/test255.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 -
issm/trunk/test/NightlyRun/test256.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 -
issm/trunk/test/NightlyRun/test257.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 -
issm/trunk/test/NightlyRun/test258.m
r9641 r9664 2 2 md=setmask(md,'all',''); 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 -
issm/trunk/test/NightlyRun/test259.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 -
issm/trunk/test/NightlyRun/test260.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 -
issm/trunk/test/NightlyRun/test261.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 -
issm/trunk/test/NightlyRun/test262.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 -
issm/trunk/test/NightlyRun/test263.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md.thermal.spctemperature=[md.thermal.spctemperature, md.thermal.spctemperature+5, md.thermal.spctemperature+10, md.thermal.spctemperature+15; 1.5 2.5 3.5 4]; -
issm/trunk/test/NightlyRun/test264.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.thermal.spctemperature=[md.thermal.spctemperature, md.thermal.spctemperature+5, md.thermal.spctemperature+10, md.thermal.spctemperature+15; 1.5 2.5 3.5 4]; -
issm/trunk/test/NightlyRun/test265.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md.thermal.spctemperature=[md.thermal.spctemperature, md.thermal.spctemperature+5; 1 2]; -
issm/trunk/test/NightlyRun/test266.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.thermal.spctemperature=[md.thermal.spctemperature, md.thermal.spctemperature+5; 1 2]; -
issm/trunk/test/NightlyRun/test301.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test302.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test303.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'hutter','all');4 md=setflowequation(md,'hutter','all'); 5 5 md.cluster=none; 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test304.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'hutter','all');4 md=setflowequation(md,'hutter','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test305.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'hutter','../Exp/SquareHalfRight.exp','fill','macayeal');4 md=setflowequation(md,'hutter','../Exp/SquareHalfRight.exp','fill','macayeal'); 5 5 md.cluster=none; 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test306.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'hutter','../Exp/SquareHalfRight.exp','fill','macayeal');4 md=setflowequation(md,'hutter','../Exp/SquareHalfRight.exp','fill','macayeal'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test307.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test308.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test309.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,5,2); 5 md=set elementstype(md,'hutter','all');5 md=setflowequation(md,'hutter','all'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test310.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,5,2); 5 md=set elementstype(md,'hutter','all');5 md=setflowequation(md,'hutter','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test311.m
r9656 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,4,2); 5 md=set elementstype(md,'hutter','../Exp/SquareHalfRight.exp','fill','macayeal');5 md=setflowequation(md,'hutter','../Exp/SquareHalfRight.exp','fill','macayeal'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test312.m
r9656 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,4,2); 5 md=set elementstype(md,'hutter','../Exp/SquareHalfRight.exp','fill','macayeal');5 md=setflowequation(md,'hutter','../Exp/SquareHalfRight.exp','fill','macayeal'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test313.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test314.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test315.m
r9641 r9664 4 4 md=extrude(md,3,1); 5 5 md.cluster=none; 6 md=set elementstype(md,'stokes','all');6 md=setflowequation(md,'stokes','all'); 7 7 md=solve(md,DiagnosticSolutionEnum); 8 8 -
issm/trunk/test/NightlyRun/test316.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test317.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,PrognosticSolutionEnum); -
issm/trunk/test/NightlyRun/test318.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,PrognosticSolutionEnum); -
issm/trunk/test/NightlyRun/test319.m
r9642 r9664 3 3 md=setmask(md,'',''); 4 4 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.prognostic.stabilization=3; 7 7 md.prognostic.spcthickness=md.thickness; -
issm/trunk/test/NightlyRun/test320.m
r9642 r9664 3 3 md=setmask(md,'',''); 4 4 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.prognostic.stabilization=3; 7 7 md.prognostic.spcthickness=md.thickness; -
issm/trunk/test/NightlyRun/test321.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md=extrude(md,5,0.5); 6 6 md.cluster=none; -
issm/trunk/test/NightlyRun/test322.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md=extrude(md,5,0.5); 6 6 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test323.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.timestepping.time_step=0; 7 7 md.cluster=none; -
issm/trunk/test/NightlyRun/test324.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.timestepping.time_step=0; 7 7 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test325.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,ThermalSolutionEnum); -
issm/trunk/test/NightlyRun/test326.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,ThermalSolutionEnum); -
issm/trunk/test/NightlyRun/test327.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'hutter','all');4 md=setflowequation(md,'hutter','all'); 5 5 md.cluster=none; 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test328.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'hutter','all');4 md=setflowequation(md,'hutter','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test329.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,5,1.2); 5 md=set elementstype(md,'hutter','all');5 md=setflowequation(md,'hutter','all'); 6 6 md.cluster=none; 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test330.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,5,1.2); 5 md=set elementstype(md,'hutter','all');5 md=setflowequation(md,'hutter','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test331.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test332.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test333.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test334.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test335.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,4,1); 5 md=set elementstype(md,'hutter','all');5 md=setflowequation(md,'hutter','all'); 6 6 md.cluster=none; 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test336.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,4,1); 5 md=set elementstype(md,'hutter','all');5 md=setflowequation(md,'hutter','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test337.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 6 6 %control parameters -
issm/trunk/test/NightlyRun/test338.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 6 6 %control parameters -
issm/trunk/test/NightlyRun/test339.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test340.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test341.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test342.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test343.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test344.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test345.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md.timestepping.time_adapt=1; -
issm/trunk/test/NightlyRun/test346.m
r9641 r9664 2 2 md=setmask(md,'',''); 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md.timestepping.time_adapt=1; -
issm/trunk/test/NightlyRun/test347.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,4,1.2); 5 md=set elementstype(md,'hutter','all');5 md=setflowequation(md,'hutter','all'); 6 6 md.cluster=none; 7 7 md.timestepping.time_adapt=1; -
issm/trunk/test/NightlyRun/test348.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 4 4 md=extrude(md,5,1.2); 5 md=set elementstype(md,'hutter','all');5 md=setflowequation(md,'hutter','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.timestepping.time_adapt=1; -
issm/trunk/test/NightlyRun/test401.m
r9641 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test402.m
r9641 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test403.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,4,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test404.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,4,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test405.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test406.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test407.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md=solve(md,DiagnosticSolutionEnum); 7 7 -
issm/trunk/test/NightlyRun/test408.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test409.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','penalties');5 md=setflowequation(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','penalties'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test410.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','penalties');5 md=setflowequation(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','penalties'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test411.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,4,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test412.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,4,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test413.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,4,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,ThermalSolutionEnum); -
issm/trunk/test/NightlyRun/test414.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,4,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,ThermalSolutionEnum); -
issm/trunk/test/NightlyRun/test415.m
r9641 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test416.m
r9641 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test417.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','penalties');5 md=setflowequation(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','penalties'); 6 6 md.cluster=none; 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test418.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','penalties');5 md=setflowequation(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','penalties'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test419.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test420.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test421.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test422.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,2); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test423.m
r9652 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 -
issm/trunk/test/NightlyRun/test424.m
r9652 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 -
issm/trunk/test/NightlyRun/test425.m
r9652 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 -
issm/trunk/test/NightlyRun/test426.m
r9652 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 -
issm/trunk/test/NightlyRun/test427.m
r9652 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md.materials.rho_ice=10^7; %involved in the mass flux, make it easy -
issm/trunk/test/NightlyRun/test428.m
r9652 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md.materials.rho_ice=10^7; %involved in the mass flux, make it easy -
issm/trunk/test/NightlyRun/test429.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test430.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test431.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test432.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test434.m
r9652 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md.materials.rho_ice=10^7; %involved in the mass flux, make it easy -
issm/trunk/test/NightlyRun/test435.m
r9652 r9664 3 3 md=setmask(md,'../Exp/SquareShelf.exp',''); 4 4 md=parameterize(md,'../Par/SquareSheetShelf.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 -
issm/trunk/test/NightlyRun/test437.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','tiling');5 md=setflowequation(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','tiling'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test438.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn');5 md=setflowequation(md,'macayeal','../Exp/SquareHalfRight.exp','fill','pattyn'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test439.m
r9652 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 -
issm/trunk/test/NightlyRun/test440.m
r9652 r9664 2 2 md=setmask(md,'../Exp/SquareShelf.exp',''); 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 -
issm/trunk/test/NightlyRun/test441.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','tiling');5 md=setflowequation(md,'stokes','../Exp/SquareHalfRight.exp','fill','pattyn','coupling','tiling'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test442.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','pattyn');5 md=setflowequation(md,'stokes','../Exp/SquareHalfRight.exp','fill','pattyn'); 6 6 md.cluster=generic('name',oshostname(),'np',7); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test443.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal','coupling','tiling');5 md=setflowequation(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal','coupling','tiling'); 6 6 md.cluster=none; 7 7 md.eps_rel=0.4; -
issm/trunk/test/NightlyRun/test444.m
r9641 r9664 3 3 md=parameterize(md,'../Par/SquareSheetShelf.par'); 4 4 md=extrude(md,5,1); 5 md=set elementstype(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal');5 md=setflowequation(md,'stokes','../Exp/SquareHalfRight.exp','fill','macayeal'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.eps_rel=0.4; -
issm/trunk/test/NightlyRun/test446.m
r9658 r9664 20 20 %}}} 21 21 md=parameterize(md,'../Par/RoundSheetShelf.par'); 22 md=set elementstype(md,'macayeal','all');22 md=setflowequation(md,'macayeal','all'); 23 23 md.cluster=generic('name',oshostname(),'np',3); 24 24 %plug holes into the ice sheet, to test for grounding line migration. {{{1 -
issm/trunk/test/NightlyRun/test501.m
r9641 r9664 2 2 md=setmask(md,'../Exp/PigShelves.exp','../Exp/PigIslands.exp'); 3 3 md=parameterize(md,'../Par/Pig.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test502.m
r9641 r9664 2 2 md=setmask(md,'../Exp/PigShelves.exp','../Exp/PigIslands.exp'); 3 3 md=parameterize(md,'../Par/Pig.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test503.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,0.9); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test504.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,0.9); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test505.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,0.9); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md=solve(md,DiagnosticSolutionEnum); 7 7 -
issm/trunk/test/NightlyRun/test506.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,0.9); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,DiagnosticSolutionEnum); -
issm/trunk/test/NightlyRun/test507.m
r9641 r9664 2 2 md=setmask(md,'../Exp/PigShelves.exp','../Exp/PigIslands.exp'); 3 3 md=parameterize(md,'../Par/Pig.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test508.m
r9641 r9664 2 2 md=setmask(md,'../Exp/PigShelves.exp','../Exp/PigIslands.exp'); 3 3 md=parameterize(md,'../Par/Pig.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test509.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test510.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test511.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test512.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test513.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.cluster=none; 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test514.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,TransientSolutionEnum); -
issm/trunk/test/NightlyRun/test515.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,4,1.1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test516.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,4,1.1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test517.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test518.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test519.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.cluster=none; 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test520.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'stokes','all');5 md=setflowequation(md,'stokes','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test521.m
r9641 r9664 7 7 md.surface=md.bed+md.thickness; 8 8 md=extrude(md,3,1); 9 md=set elementstype(md,'stokes','all');9 md=setflowequation(md,'stokes','all'); 10 10 md=modelextract(md,md.mask.elementonfloatingice); 11 11 -
issm/trunk/test/NightlyRun/test522.m
r9641 r9664 7 7 md.surface=md.bed+md.thickness; 8 8 md=extrude(md,3,1); 9 md=set elementstype(md,'stokes','all');9 md=setflowequation(md,'stokes','all'); 10 10 md=modelextract(md,md.mask.elementonfloatingice); 11 11 -
issm/trunk/test/NightlyRun/test523.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test524.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test525.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test526.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test529.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.thermal.stabilization=2; 7 7 md=solve(md,ThermalSolutionEnum); -
issm/trunk/test/NightlyRun/test530.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.thermal.stabilization=2; 7 7 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test531.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.thermal.stabilization=2; 7 7 md.timestepping.time_step=0; -
issm/trunk/test/NightlyRun/test532.m
r9641 r9664 3 3 md=parameterize(md,'../Par/Pig.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.thermal.stabilization=2; 7 7 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test601.m
r9641 r9664 2 2 md=setmask(md,'../Exp/79NorthShelf.exp',''); 3 3 md=parameterize(md,'../Par/79North.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,PrognosticSolutionEnum); -
issm/trunk/test/NightlyRun/test602.m
r9641 r9664 2 2 md=setmask(md,'../Exp/79NorthShelf.exp',''); 3 3 md=parameterize(md,'../Par/79North.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,PrognosticSolutionEnum); -
issm/trunk/test/NightlyRun/test603.m
r9642 r9664 3 3 md=setmask(md,'../Exp/79NorthShelf.exp',''); 4 4 md=parameterize(md,'../Par/79North.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.prognostic.stabilization=3; 7 7 md.prognostic.spcthickness=md.thickness; -
issm/trunk/test/NightlyRun/test604.m
r9642 r9664 3 3 md=setmask(md,'../Exp/79NorthShelf.exp',''); 4 4 md=parameterize(md,'../Par/79North.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.prognostic.stabilization=3; 7 7 md.prognostic.spcthickness=md.thickness; -
issm/trunk/test/NightlyRun/test605.m
r9641 r9664 3 3 md=parameterize(md,'../Par/79North.par'); 4 4 md=extrude(md,6,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,PrognosticSolutionEnum); -
issm/trunk/test/NightlyRun/test606.m
r9641 r9664 3 3 md=parameterize(md,'../Par/79North.par'); 4 4 md=extrude(md,6,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,PrognosticSolutionEnum); -
issm/trunk/test/NightlyRun/test607.m
r9641 r9664 2 2 md=setmask(md,'../Exp/79NorthShelf.exp',''); 3 3 md=parameterize(md,'../Par/79North.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,SurfaceSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test608.m
r9641 r9664 2 2 md=setmask(md,'../Exp/79NorthShelf.exp',''); 3 3 md=parameterize(md,'../Par/79North.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,SurfaceSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test609.m
r9641 r9664 3 3 md=parameterize(md,'../Par/79North.par'); 4 4 md=extrude(md,5,1.5); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=none; 7 7 md=solve(md,SurfaceSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test610.m
r9641 r9664 3 3 md=parameterize(md,'../Par/79North.par'); 4 4 md=extrude(md,5,1.5); 5 md=set elementstype(md,'pattyn','all');5 md=setflowequation(md,'pattyn','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,SurfaceSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test611.m
r9641 r9664 2 2 md=setmask(md,'../Exp/79NorthShelf.exp',''); 3 3 md=parameterize(md,'../Par/79North.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,BedSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test612.m
r9641 r9664 2 2 md=setmask(md,'../Exp/79NorthShelf.exp',''); 3 3 md=parameterize(md,'../Par/79North.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,BedSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test613.m
r9641 r9664 3 3 md=parameterize(md,'../Par/79North.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,BedSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test614.m
r9641 r9664 3 3 md=parameterize(md,'../Par/79North.par'); 4 4 md=extrude(md,2,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,BedSlopeSolutionEnum); -
issm/trunk/test/NightlyRun/test615.m
r9641 r9664 2 2 md=setmask(md,'../Exp/79NorthShelf.exp',''); 3 3 md=parameterize(md,'../Par/79North.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=none; 6 6 md=solve(md,BalancethicknessSolutionEnum); -
issm/trunk/test/NightlyRun/test616.m
r9641 r9664 2 2 md=setmask(md,'../Exp/79NorthShelf.exp',''); 3 3 md=parameterize(md,'../Par/79North.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 md.cluster=generic('name',oshostname(),'np',3); 6 6 md=solve(md,BalancethicknessSolutionEnum); -
issm/trunk/test/NightlyRun/test617.m
r9642 r9664 3 3 md=setmask(md,'../Exp/79NorthShelf.exp',''); 4 4 md=parameterize(md,'../Par/79North.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.prognostic.stabilization=3; 7 7 md.cluster=none; -
issm/trunk/test/NightlyRun/test618.m
r9660 r9664 3 3 md=setmask(md,'../Exp/79NorthShelf.exp',''); 4 4 md=parameterize(md,'../Par/79North.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.balancethickness.stabilization=3; 7 7 md.cluster=generic('name',oshostname(),'np',3); -
issm/trunk/test/NightlyRun/test619.m
r9641 r9664 3 3 md=parameterize(md,'../Par/79North.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=none; 7 7 md=solve(md,BalancethicknessSolutionEnum); -
issm/trunk/test/NightlyRun/test620.m
r9641 r9664 3 3 md=parameterize(md,'../Par/79North.par'); 4 4 md=extrude(md,3,1); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 7 md=solve(md,BalancethicknessSolutionEnum); -
issm/trunk/test/NightlyRun/test621.m
r9660 r9664 2 2 md=setmask(md,'../Exp/79NorthShelf.exp',''); 3 3 md=parameterize(md,'../Par/79North.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 6 6 %control parameters -
issm/trunk/test/NightlyRun/test622.m
r9660 r9664 2 2 md=setmask(md,'../Exp/79NorthShelf.exp',''); 3 3 md=parameterize(md,'../Par/79North.par'); 4 md=set elementstype(md,'macayeal','all');4 md=setflowequation(md,'macayeal','all'); 5 5 6 6 %control parameters -
issm/trunk/test/NightlyRun/test623.m
r9660 r9664 3 3 md=setmask(md,'../Exp/79NorthShelf.exp',''); 4 4 md=parameterize(md,'../Par/79North.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test624.m
r9660 r9664 3 3 md=setmask(md,'../Exp/79NorthShelf.exp',''); 4 4 md=parameterize(md,'../Par/79North.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %control parameters -
issm/trunk/test/NightlyRun/test625.m
r9645 r9664 3 3 md=setmask(md,'../Exp/79NorthShelf.exp',''); 4 4 md=parameterize(md,'../Par/79North.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %Ice sheet only -
issm/trunk/test/NightlyRun/test626.m
r9645 r9664 3 3 md=setmask(md,'../Exp/79NorthShelf.exp',''); 4 4 md=parameterize(md,'../Par/79North.par'); 5 md=set elementstype(md,'macayeal','all');5 md=setflowequation(md,'macayeal','all'); 6 6 7 7 %Ice sheet only
Note:
See TracChangeset
for help on using the changeset viewer.