Changeset 7877
- Timestamp:
- 04/13/11 14:25:33 (14 years ago)
- Location:
- issm/trunk/test/Par
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/test/Par/ISMIPC.par
r5966 r7877 10 10 md.drag_type=2; %0 none 1 plastic 2 viscous 11 11 %md.drag_coefficient=sqrt(md.yts.*(1000+1000*sin(md.x*2*pi/max(md.x/2)).*sin(md.y*2*pi/max(md.x/2)))./(md.g*(md.rho_ice*md.thickness+md.rho_water*md.bed))); 12 md.drag_coefficient=sqrt(md.yts.*(1000+1000*sin(md.x*2*pi/max(md.x)).*sin(md.y*2*pi/max(md.x))) ./(md.g*(md.rho_ice*md.thickness+md.rho_water*md.bed)));12 md.drag_coefficient=sqrt(md.yts.*(1000+1000*sin(md.x*2*pi/max(md.x)).*sin(md.y*2*pi/max(md.x)))); 13 13 %Take care of iceshelves: no basal drag 14 14 pos=find(md.elementoniceshelf); 15 15 md.drag_coefficient(md.elements(pos,:))=0; 16 16 md.drag_p=ones(md.numberofelements,1); 17 md.drag_q= ones(md.numberofelements,1);17 md.drag_q=zeros(md.numberofelements,1); 18 18 19 19 disp(' creating flow law paramter'); -
issm/trunk/test/Par/ISMIPD.par
r5966 r7877 9 9 disp(' creating drag'); 10 10 md.drag_type=2; %0 none 1 plastic 2 viscous 11 md.drag_coefficient=sqrt(md.yts.*(1000+1000*sin(md.x*2*pi/max(md.x))) ./(md.g*(md.rho_ice*md.thickness+md.rho_water*md.bed)));11 md.drag_coefficient=sqrt(md.yts.*(1000+1000*sin(md.x*2*pi/max(md.x)))); 12 12 %Take care of iceshelves: no basal drag 13 13 pos=find(md.elementoniceshelf); -
issm/trunk/test/Par/ISMIPF.par
r6307 r7877 3 3 4 4 disp(' creating thickness'); 5 md.surface=-md.x*tan(3*pi/180) /1000;5 md.surface=-md.x*tan(3*pi/180); 6 6 %md.bed=md.surface-1000; 7 7 md.bed=md.surface-1000+100*exp(-((md.x-max(md.x)/2).^2+(md.y-max(md.y)/2).^2)/(10000^2)); … … 11 11 disp(' creating drag'); 12 12 md.drag_type=2; %0 none 1 plastic 2 viscous 13 md.drag_coefficient=sqrt(md.yts .*(2.140373*10^-7*1000)^(-1));13 md.drag_coefficient=sqrt(md.yts/(2.140373*10^-7*1000))*ones(md.numberofgrids,1); 14 14 md.drag_p=ones(md.numberofelements,1); 15 15 md.drag_q=zeros(md.numberofelements,1); … … 29 29 md.pressure=zeros(md.numberofgrids,1); 30 30 md.temperature=255*ones(md.numberofgrids,1); 31 pos=find(md.x==min(md.x) | md.x==max(md.x) );31 pos=find(md.x==min(md.x) | md.x==max(md.x) | md.y==min(md.y) | md.y==max(md.y)); 32 32 md.spcthickness(pos,1)=1; 33 33 md.spcthickness(pos,2)=md.thickness(pos);
Note:
See TracChangeset
for help on using the changeset viewer.