Changeset 23978
- Timestamp:
- 05/31/19 20:08:38 (6 years ago)
- Location:
- issm/trunk-jpl/test
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test125.m
r23762 r23978 9 9 md.verbose=verbose('solution',true); 10 10 md.settings.recording_frequency=4; 11 md.settings.output_frequency=8; 11 12 12 13 % time steps and resolution -
issm/trunk-jpl/test/NightlyRun/test275.m
r21056 r23978 20 20 md=setflowequation(md,'SSA','all'); 21 21 md.cluster=generic('name',oshostname(),'np',3); 22 md=solve(md,' DamageEvolution');22 md=solve(md,'tr'); 23 23 24 24 field_names={'D','F'}; -
issm/trunk-jpl/test/NightlyRun/test308.m
r23108 r23978 1 1 %Test Name: SquareSheetConstrainedStressFS 2 %md=triangle(model(),'../Exp/Square.exp',180000.); 2 3 md=triangle(model(),'../Exp/Square.exp',180000.); 3 4 md=setmask(md,'',''); 4 5 md=parameterize(md,'../Par/SquareSheetConstrained.par'); 5 md=extrude(md, 3,1.);6 md=extrude(md,2,1.); 6 7 md=setflowequation(md,'FS','all'); 7 md.cluster=generic('name',oshostname(),'np',3); 8 md.cluster=generic('name',oshostname(),'np',2); 9 md.flowequation.fe_FS='TaylorHood'; 8 10 md=solve(md,'Stressbalance'); 9 11 -
issm/trunk-jpl/test/NightlyRun/test355.m
r23976 r23978 1 1 %Test Name: SquareSheetHydrologyGlaDS 2 cluster=generic('name',oshostname(),'np',1);3 2 4 3 %create model: … … 11 10 md=setmask(md,'',''); %everywhere grounded 12 11 md=setflowequation(md,'SSA','all'); 12 md.stressbalance.maxiter=2; %Make sure it runs quickly... 13 13 14 14 %Some constants 15 15 md.constants.g=9.8; 16 16 md.materials.rho_ice=910; 17 md.materials.rho_water=1000;18 17 19 18 %Geometry … … 31 30 32 31 %Materials 33 md.materials.rheology_B = paterson(md.initialization.temperature); 34 md.materials.rheology_B(:) = (5e-25)^(-1/3); 35 md.materials.rheology_n = 3.*ones(md.mesh.numberofelements,1); 32 md.materials.rheology_B = (5e-25)^(-1/3) * ones(md.mesh.numberofvertices,1); 33 md.materials.rheology_n = 3.*ones(md.mesh.numberofelements,1); 36 34 37 35 %Friction … … 39 37 md.friction.p=ones(md.mesh.numberofelements,1); 40 38 md.friction.q=ones(md.mesh.numberofelements,1); 41 md.friction.coupling=0;39 %md.friction.coupling=0; 42 40 43 41 %Boundary conditions: … … 66 64 md.hydrology.spcphi(pos) = md.materials.rho_ice * md.constants.g * md.geometry.thickness(pos); 67 65 68 md.cluster= cluster;66 md.cluster=generic('np',2); 69 67 md=solve(md,'Transient'); %or 'tr' 70 68 -
issm/trunk-jpl/test/NightlyRun/test4001.m
r23074 r23978 3 3 % 4 4 %Script control parameters 5 steps=1: 11;5 steps=1:9 6 6 final_time=1; 7 7 -
issm/trunk-jpl/test/NightlyRun/test601.m
r21056 r23978 1 1 %Test Name: 79NorthMasstransp2d 2 md=triangle(model(),'../Exp/79North.exp',100 00.);2 md=triangle(model(),'../Exp/79North.exp',100.); 3 3 md=setmask(md,'../Exp/79NorthShelf.exp',''); 4 4 md=parameterize(md,'../Par/79North.par'); -
issm/trunk-jpl/test/NightlyRun/test701.m
r23339 r23978 1 1 %Test Name: FlowbandFSshelf 2 x =[1:100:3000]'; 2 %x =[1:100:3000]'; 3 x =[1 3000]'; 3 4 h=linspace(1000,300,numel(x))'; 4 5 b=-917/1023*h; 5 6 6 md=bamgflowband(model(),x,b+h,b,'hmax',80 );7 md=bamgflowband(model(),x,b+h,b,'hmax',800000); 7 8 8 9 %Geometry … … 36 37 md.stressbalance.spcvy(find(vertexflags(md.mesh,4)))=0; 37 38 md.basalforcings.floatingice_melting_rate=zeros(md.mesh.numberofvertices,1); 39 pos = find(md.mesh.vertexonboundary); 40 md.stressbalance.spcvx(pos)=0; 41 md.stressbalance.spcvy(:)=0; 42 md.stressbalance.spcvz(:)=0; 38 43 39 44 %Misc … … 58 63 disp(['====== Testing ' i{1} ' Full-Stokes Finite element =====']); 59 64 md.flowequation.fe_FS=i{1}; 65 error('t701'); 60 66 md=solve(md,'Stressbalance'); 61 67 field_names ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vel' i{1}],['Pressure' i{1}]}; -
issm/trunk-jpl/test/NightlyRun/test702.m
r23339 r23978 1 1 %Test Name: FlowbandFSsheetshelf 2 2 %mesh parameters 3 x =[-5:.5: 5]';3 x =[-5:.5: 5]'; 4 4 [b h sea]=NowickiProfile(x); 5 x=[x(1);x(end)]; 6 b=[b(1);b(end)]; 7 h=[h(1);h(end)]; 5 8 x = x*10^3; 6 9 h = h*10^3; … … 8 11 9 12 %mesh domain 10 md=bamgflowband(model(),x,b+h,b,'hmax',150 );13 md=bamgflowband(model(),x,b+h,b,'hmax',15000); 11 14 12 15 %parameterize … … 35 38 md.stressbalance.spcvy(find(vertexflags(md.mesh,4)))=0; 36 39 md.basalforcings.floatingice_melting_rate=zeros(md.mesh.numberofvertices,1); 40 pos = find(md.mesh.vertexonboundary); 41 md.stressbalance.spcvx(pos)=0; 42 md.stressbalance.spcvy(:)=0; 43 md.stressbalance.spcvz(:)=0; 37 44 38 45 %Misc … … 46 53 md.miscellaneous.name = 'test702'; 47 54 md.groundingline.migration='None'; 48 md.cluster=generic('np', 2);55 md.cluster=generic('np',1); 49 56 50 57 %Fields and tolerances to track changes … … 56 63 disp(['====== Testing ' i{1} ' Full-Stokes Finite element =====']); 57 64 md.flowequation.fe_FS=i{1}; 65 error('S'); 58 66 md=solve(md,'Stressbalance'); 59 67 field_names ={field_names{:},['Vx' i{1}],['Vy' i{1}],['Vel' i{1}],['Pressure' i{1}]};
Note:
See TracChangeset
for help on using the changeset viewer.