Changeset 26863


Ignore:
Timestamp:
02/08/22 20:18:43 (3 years ago)
Author:
dmenemen
Message:

D test/MITgcm/input_4003/data_uncoupled
M test/NightlyRun/test4003.m

Location:
issm/trunk-jpl/test
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test4003.m

    r26739 r26863  
    44%Script control parameters
    55steps=1:11;
    6 %steps=[1:3 6:11];
    76
    87%To download and recompile MITgcm from scratch:
     
    4140    jEnd = Ny*3/4;  % where ice-shelf ends
    4241    j2   = jEnd+1;
     42   
     43    % initial ocean conditions
     44    T_sfc = -2;
     45    T_bot = -1.9;
     46    S_sfc = 34.2;
     47    S_bot = 34.3;
    4348
    4449    savedata(org, Nx, Ny, nPx, nPy, Nz, dLong, dLat, delZ, xgOrigin, ygOrigin, ...
    45              rho_ice, rho_water, di, H, Hmin, Hmax, jEnd, j2, gravity, prec);
     50             rho_ice, rho_water, di, H, Hmin, Hmax, jEnd, j2, gravity, prec, ...
     51             T_sfc,T_bot,S_sfc,S_bot);
    4652end
    4753% }}}
     
    8288        draft(i,:)=Hmin+dHdy*[-1:Ny-2]*dLat;
    8389    end
     90    draft(:,j2:Ny)=0;
    8491
    8592    ice_mask=ones(Nx,Ny);
     
    149156    fid=fopen(namF,'w','b'); fwrite(fid,dMdt,prec);fclose(fid);
    150157
    151     T_sfc = -1.9;
    152     T_bot = 2;
    153158    del_T = (T_bot - T_sfc)/(59*delZ);
    154159    tref=zeros(1,Nz);
     
    161166    fid=fopen(namF,'w','b'); fwrite(fid,tref,prec);fclose(fid);
    162167
    163     S_sfc = 34.2;
    164     S_bot = 34.7;
    165168    del_S = (S_bot - S_sfc)/(59*delZ);
    166169    sref=zeros(1,Nz);
     
    428431    fid=fopen(namF,'w','b'); fwrite(fid,dMdt,prec);fclose(fid);
    429432
    430     T_sfc = -1.9;
    431     T_bot = 2;
    432433    del_T = (T_bot - T_sfc)/(59*delZ);
    433434    tref=zeros(1,Nz);
     
    440441    fid=fopen(namF,'w','b'); fwrite(fid,tref,prec);fclose(fid);
    441442
    442     S_sfc = 34.2;
    443     S_bot = 34.7;
    444443    del_S = (S_bot - S_sfc)/(59*delZ);
    445444    sref=zeros(1,Nz);
Note: See TracChangeset for help on using the changeset viewer.