Changeset 10282
- Timestamp:
- 10/25/11 08:25:05 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/test/NightlyRun/test446.m
r9734 r10282 5 5 md=roundmesh(model,radius,resolution); 6 6 %fix center node to 0,0 7 rad=sqrt( (md.mesh.x).*md.mesh.x+(md.mesh.y).*md.mesh.y);7 rad=sqrt(md.mesh.x.^2+md.mesh.y.^2); 8 8 pos=find(rad==min(rad)); 9 9 md.mesh.x(pos)=0; md.mesh.y(pos)=0; %the closest node to the center is changed to be exactly at the center … … 12 12 xelem=md.mesh.x(md.mesh.elements)*[1;1;1]/3; 13 13 yelem=md.mesh.y(md.mesh.elements)*[1;1;1]/3; 14 rad=sqrt( (xelem).*xelem+(yelem).*yelem);14 rad=sqrt(xelem.^2+yelem.^2); 15 15 flags=zeros(md.mesh.numberofelements,1); 16 16 pos=find(rad>=(radius-shelfextent)); 17 17 flags(pos)=1; 18 flags2=zeros(md.mesh.numberofelements,1); 19 md=setmask(md,flags,flags2); 18 md=setmask(md,flags,''); 20 19 %}}} 21 20 md=parameterize(md,'../Par/RoundSheetShelf.par'); … … 24 23 %plug holes into the ice sheet, to test for grounding line migration. {{{1 25 24 di=md.materials.rho_ice/md.materials.rho_water; 26 rad=sqrt( (md.mesh.x).*md.mesh.x+(md.mesh.y).*md.mesh.y);25 rad=sqrt(md.mesh.x.^2+md.mesh.y.^2); 27 26 pos=find(rad<200000); 28 27 md.geometry.thickness(pos)=100; … … 42 41 43 42 %test different grounding line dynamics. 44 %grounding line: 43 md.transient.isthermal=0; 44 md.transient.isprognostic=0; 45 md.transient.isdiagnostic=0; 46 md.transient.isgroundingline=1; 45 47 md.groundingline.migration='AgressiveMigration'; 46 md=solve(md, GroundinglineMigration2dSolutionEnum);47 element_on_iceshelf_agressive=PatchToVec(md.results. GroundinglineMigration2dSolution.MaskElementonfloatingice);48 md=solve(md,TransientSolutionEnum); 49 element_on_iceshelf_agressive=PatchToVec(md.results.TransientSolution.MaskElementonfloatingice); 48 50 49 51 md.groundingline.migration='SoftMigration'; 50 md=solve(md, GroundinglineMigration2dSolutionEnum);51 element_on_iceshelf_soft=PatchToVec(md.results. GroundinglineMigration2dSolution.MaskElementonfloatingice);52 md=solve(md,TransientSolutionEnum); 53 element_on_iceshelf_soft=PatchToVec(md.results.TransientSolution.MaskElementonfloatingice); 52 54 53 55 %Fields and tolerances to track changes
Note:
See TracChangeset
for help on using the changeset viewer.