Changeset 10282


Ignore:
Timestamp:
10/25/11 08:25:05 (13 years ago)
Author:
seroussi
Message:

groundingline test

File:
1 edited

Legend:

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

    r9734 r10282  
    55md=roundmesh(model,radius,resolution);
    66%fix center node to 0,0
    7 rad=sqrt((md.mesh.x).*md.mesh.x+(md.mesh.y).*md.mesh.y);
     7rad=sqrt(md.mesh.x.^2+md.mesh.y.^2);
    88pos=find(rad==min(rad));
    99md.mesh.x(pos)=0; md.mesh.y(pos)=0; %the closest node to the center is changed to be exactly at the center
     
    1212xelem=md.mesh.x(md.mesh.elements)*[1;1;1]/3;
    1313yelem=md.mesh.y(md.mesh.elements)*[1;1;1]/3;
    14 rad=sqrt((xelem).*xelem+(yelem).*yelem);
     14rad=sqrt(xelem.^2+yelem.^2);
    1515flags=zeros(md.mesh.numberofelements,1);
    1616pos=find(rad>=(radius-shelfextent));
    1717flags(pos)=1;
    18 flags2=zeros(md.mesh.numberofelements,1);
    19 md=setmask(md,flags,flags2);
     18md=setmask(md,flags,'');
    2019%}}}
    2120md=parameterize(md,'../Par/RoundSheetShelf.par');
     
    2423%plug holes into the ice sheet, to test for grounding line migration. {{{1
    2524di=md.materials.rho_ice/md.materials.rho_water;
    26 rad=sqrt((md.mesh.x).*md.mesh.x+(md.mesh.y).*md.mesh.y);
     25rad=sqrt(md.mesh.x.^2+md.mesh.y.^2);
    2726pos=find(rad<200000);
    2827md.geometry.thickness(pos)=100;
     
    4241
    4342%test different grounding line dynamics.
    44 %grounding line:
     43md.transient.isthermal=0;
     44md.transient.isprognostic=0;
     45md.transient.isdiagnostic=0;
     46md.transient.isgroundingline=1;
    4547md.groundingline.migration='AgressiveMigration';
    46 md=solve(md,GroundinglineMigration2dSolutionEnum);
    47 element_on_iceshelf_agressive=PatchToVec(md.results.GroundinglineMigration2dSolution.MaskElementonfloatingice);
     48md=solve(md,TransientSolutionEnum);
     49element_on_iceshelf_agressive=PatchToVec(md.results.TransientSolution.MaskElementonfloatingice);
    4850
    4951md.groundingline.migration='SoftMigration';
    50 md=solve(md,GroundinglineMigration2dSolutionEnum);
    51 element_on_iceshelf_soft=PatchToVec(md.results.GroundinglineMigration2dSolution.MaskElementonfloatingice);
     52md=solve(md,TransientSolutionEnum);
     53element_on_iceshelf_soft=PatchToVec(md.results.TransientSolution.MaskElementonfloatingice);
    5254
    5355%Fields and tolerances to track changes
Note: See TracChangeset for help on using the changeset viewer.