Changeset 7877


Ignore:
Timestamp:
04/13/11 14:25:33 (14 years ago)
Author:
seroussi
Message:

minor

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

Legend:

Unmodified
Added
Removed
  • issm/trunk/test/Par/ISMIPC.par

    r5966 r7877  
    1010md.drag_type=2; %0 none 1 plastic 2 viscous
    1111%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)));
     12md.drag_coefficient=sqrt(md.yts.*(1000+1000*sin(md.x*2*pi/max(md.x)).*sin(md.y*2*pi/max(md.x))));
    1313%Take care of iceshelves: no basal drag
    1414pos=find(md.elementoniceshelf);
    1515md.drag_coefficient(md.elements(pos,:))=0;
    1616md.drag_p=ones(md.numberofelements,1);
    17 md.drag_q=ones(md.numberofelements,1);
     17md.drag_q=zeros(md.numberofelements,1);
    1818
    1919disp('      creating flow law paramter');
  • issm/trunk/test/Par/ISMIPD.par

    r5966 r7877  
    99disp('      creating drag');
    1010md.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)));
     11md.drag_coefficient=sqrt(md.yts.*(1000+1000*sin(md.x*2*pi/max(md.x))));
    1212%Take care of iceshelves: no basal drag
    1313pos=find(md.elementoniceshelf);
  • issm/trunk/test/Par/ISMIPF.par

    r6307 r7877  
    33
    44disp('      creating thickness');
    5 md.surface=-md.x*tan(3*pi/180)/1000;
     5md.surface=-md.x*tan(3*pi/180);
    66%md.bed=md.surface-1000;
    77md.bed=md.surface-1000+100*exp(-((md.x-max(md.x)/2).^2+(md.y-max(md.y)/2).^2)/(10000^2));
     
    1111disp('      creating drag');
    1212md.drag_type=2; %0 none 1 plastic 2 viscous
    13 md.drag_coefficient=sqrt(md.yts.*(2.140373*10^-7*1000)^(-1));
     13md.drag_coefficient=sqrt(md.yts/(2.140373*10^-7*1000))*ones(md.numberofgrids,1);
    1414md.drag_p=ones(md.numberofelements,1);
    1515md.drag_q=zeros(md.numberofelements,1);
     
    2929md.pressure=zeros(md.numberofgrids,1);
    3030md.temperature=255*ones(md.numberofgrids,1);
    31 pos=find(md.x==min(md.x) | md.x==max(md.x));
     31pos=find(md.x==min(md.x) | md.x==max(md.x) | md.y==min(md.y) | md.y==max(md.y));
    3232md.spcthickness(pos,1)=1;
    3333md.spcthickness(pos,2)=md.thickness(pos);
Note: See TracChangeset for help on using the changeset viewer.