Changeset 6330
- Timestamp:
- 10/18/10 09:00:01 (14 years ago)
- Location:
- issm/trunk/test/NightlyRun
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/test/NightlyRun/test1110.m
r5179 r6330 5 5 ny=30; 6 6 md=model; 7 %md=squaremesh(md,L,L,nx,ny);8 md=mesh(md,'../Exp/SquareISMIP.exp',5500);7 md=squaremesh(md,L,L,nx,ny); 8 %md=mesh(md,'../Exp/SquareISMIP.exp',5500); 9 9 md=geography(md,'',''); %ice sheet test 10 10 md=parameterize(md,'../Par/ISMIPF.par'); 11 md=extrude(md, 5,1);11 md=extrude(md,2,1); 12 12 13 13 md=setelementstype(md,'pattyn','all'); 14 14 %md=setelementstype(md,'pattyn','all','stokes','all'); 15 15 16 md.spcvelocity(:,:)=0; 16 17 %Create dirichlet on the bed if no slip 17 18 pos=find(md.gridonbed); 18 19 md.spcvelocity(pos,1:2)=1; 19 md.spcvelocity(pos,4:5)=0; 20 md.spctemperature(:,2)=255; 21 md.spctemperature(:,1)=255; 20 22 21 %%Create MPCs to have periodic boundary conditions 22 %posx=find(md.x==0); 23 %posx2=find(md.x==max(md.x)); 24 % 25 %posy=find(md.y==0 & md.x~=0 & md.x~=max(md.x)); %Don't take the same grids two times 26 %posy2=find(md.y==max(md.y) & md.x~=0 & md.x~=max(md.x)); 27 % 28 %md.penalties=[posx,posx2;posy,posy2]; 23 %Create MPCs to have periodic boundary conditions 24 posx=find(md.x==0); 25 posx2=find(md.x==max(md.x)); 26 27 posy=find(md.y==0 & md.x~=0 & md.x~=max(md.x)); %Don't take the same grids two times 28 posy2=find(md.y==max(md.y) & md.x~=0 & md.x~=max(md.x)); 29 30 md.penalties=[posx,posx2;posy,posy2]; 31 32 md.dt=5; 33 md.ndt=2000; 29 34 30 35 %Compute the diagnostic 31 md=solve(md,'analysis_type',Transient3DSolutionEnum); 36 md.cluster=wilkes; 37 md.verbose=10; 38 md.rheology_B=md.rheology_B/2; 39 %md=solve(md,'analysis_type',DiagnosticSolutionEnum); 40 %md=solve(md,'analysis_type',ThermalSolutionEnum); 41 md=solve(md,'analysis_type',Transient2DSolutionEnum); 32 42 33 vx=PatchToVec(md.results.DiagnosticSolution.Vx);34 vy=PatchToVec(md.results.DiagnosticSolution.Vy);35 vz=PatchToVec(md.results.DiagnosticSolution.Vz);43 %vx=PatchToVec(md.results.DiagnosticSolution.Vx); 44 %vy=PatchToVec(md.results.DiagnosticSolution.Vy); 45 %vz=PatchToVec(md.results.DiagnosticSolution.Vz); 36 46 37 plotmodel(md,'data',vx,'data',vy,'data',vz,'layer#all',md.numlayers ,'contourlevels',{9.2,18.4,27.6,46,73.6,82.8},'contourlevels',{0,-1.2,-0.9,-0.6,-0.3,1.2},'contourlevels',{-5.2,-3.9,-1.3,0,1.3,3.9,5.2})47 plotmodel(md,'data',vx,'data',vy,'data',vz,'layer#all',md.numlayers) -
issm/trunk/test/NightlyRun/test1207.m
r6088 r6330 89 89 }; 90 90 field_tolerances={... 91 1e-1 3,1e-13,1e-13, ...91 1e-12,1e-12,1e-12, ... 92 92 }; 93 93 field_values={ -
issm/trunk/test/NightlyRun/test1208.m
r6308 r6330 19 19 md.dt=20; 20 20 md.output_frequency=20; 21 md.ndt= 200000;22 md.artificial_diffusivity= 2;21 md.ndt=50000; 22 md.artificial_diffusivity=1; 23 23 24 24 %Now we can solve the problem
Note:
See TracChangeset
for help on using the changeset viewer.