Changeset 6330


Ignore:
Timestamp:
10/18/10 09:00:01 (14 years ago)
Author:
seroussi
Message:

test1207 tolerance

Location:
issm/trunk/test/NightlyRun
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/test/NightlyRun/test1110.m

    r5179 r6330  
    55ny=30;
    66md=model;
    7 %md=squaremesh(md,L,L,nx,ny);
    8 md=mesh(md,'../Exp/SquareISMIP.exp',5500);
     7md=squaremesh(md,L,L,nx,ny);
     8%md=mesh(md,'../Exp/SquareISMIP.exp',5500);
    99md=geography(md,'',''); %ice sheet test
    1010md=parameterize(md,'../Par/ISMIPF.par');
    11 md=extrude(md,5,1);
     11md=extrude(md,2,1);
    1212
    1313md=setelementstype(md,'pattyn','all');
    1414%md=setelementstype(md,'pattyn','all','stokes','all');
    1515
     16md.spcvelocity(:,:)=0;
    1617%Create dirichlet on the bed if no slip
    1718pos=find(md.gridonbed);
    1819md.spcvelocity(pos,1:2)=1;
    19 md.spcvelocity(pos,4:5)=0;
     20md.spctemperature(:,2)=255;
     21md.spctemperature(:,1)=255;
    2022
    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
     24posx=find(md.x==0);
     25posx2=find(md.x==max(md.x));
     26
     27posy=find(md.y==0 & md.x~=0 & md.x~=max(md.x)); %Don't take the same grids two times
     28posy2=find(md.y==max(md.y) & md.x~=0 & md.x~=max(md.x));
     29
     30md.penalties=[posx,posx2;posy,posy2];
     31
     32md.dt=5;
     33md.ndt=2000;
    2934
    3035%Compute the diagnostic
    31 md=solve(md,'analysis_type',Transient3DSolutionEnum);
     36md.cluster=wilkes;
     37md.verbose=10;
     38md.rheology_B=md.rheology_B/2;
     39%md=solve(md,'analysis_type',DiagnosticSolutionEnum);
     40%md=solve(md,'analysis_type',ThermalSolutionEnum);
     41md=solve(md,'analysis_type',Transient2DSolutionEnum);
    3242
    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);
    3646
    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})
     47plotmodel(md,'data',vx,'data',vy,'data',vz,'layer#all',md.numlayers)
  • issm/trunk/test/NightlyRun/test1207.m

    r6088 r6330  
    8989};
    9090field_tolerances={...
    91         1e-13,1e-13,1e-13, ...
     91        1e-12,1e-12,1e-12, ...
    9292};
    9393field_values={
  • issm/trunk/test/NightlyRun/test1208.m

    r6308 r6330  
    1919md.dt=20;
    2020md.output_frequency=20;
    21 md.ndt=200000;
    22 md.artificial_diffusivity=2;
     21md.ndt=50000;
     22md.artificial_diffusivity=1;
    2323
    2424%Now we can solve the problem
Note: See TracChangeset for help on using the changeset viewer.