| 1 |
dgoldberg |
1.1 |
|
| 2 |
|
|
close all |
| 3 |
|
|
clear all |
| 4 |
|
|
|
| 5 |
|
|
%Baseline |
| 6 |
|
|
cd('/data/scihub-users/jamrda26/mitgcm/cases/GROUNDING_FULL2/input'); |
| 7 |
|
|
|
| 8 |
|
|
|
| 9 |
|
|
|
| 10 |
|
|
% use streamice generated thickness |
| 11 |
|
|
fid = fopen('vfacemask.box','r','b'); vfm=fread(fid,[3 200],'real*8'); fclose(fid); |
| 12 |
|
|
|
| 13 |
|
|
% use streamice generated thickness |
| 14 |
|
|
fid = fopen('ufacemask.box','r','b'); ufm=fread(fid,[3 200],'real*8'); fclose(fid); |
| 15 |
|
|
|
| 16 |
|
|
% use streamice generated thickness |
| 17 |
|
|
fid = fopen('hinit_dynamic.box','r','b'); hin=fread(fid,[3 200],'real*8'); fclose(fid); |
| 18 |
|
|
|
| 19 |
|
|
% use streamice generated thickness |
| 20 |
|
|
fid = fopen('vdirich.box','r','b'); vdi=fread(fid,[3 200],'real*8'); fclose(fid); |
| 21 |
|
|
|
| 22 |
|
|
% use streamice generated thickness |
| 23 |
|
|
fid = fopen('HBCy.box','r','b'); hby=fread(fid,[3 200],'real*8'); fclose(fid); |
| 24 |
|
|
|
| 25 |
|
|
% use streamice generated thickness |
| 26 |
|
|
fid = fopen('hmask.box','r','b'); hma=fread(fid,[3 200],'real*8'); fclose(fid); |
| 27 |
|
|
|
| 28 |
|
|
figure |
| 29 |
|
|
imagesc(vfm) |
| 30 |
|
|
colorbar |
| 31 |
|
|
figure |
| 32 |
|
|
imagesc(ufm) |
| 33 |
|
|
colorbar |
| 34 |
|
|
figure |
| 35 |
|
|
imagesc(hin) |
| 36 |
|
|
colorbar |
| 37 |
|
|
figure |
| 38 |
|
|
imagesc(vdi) |
| 39 |
|
|
colorbar |
| 40 |
|
|
figure |
| 41 |
|
|
imagesc(hby) |
| 42 |
|
|
colorbar |
| 43 |
|
|
figure |
| 44 |
|
|
imagesc(hma) |
| 45 |
|
|
colorbar |
| 46 |
|
|
|
| 47 |
|
|
% HM(1:3,1:200)=0; |
| 48 |
|
|
% HM(1:3,1:100)=1; |
| 49 |
|
|
% |
| 50 |
|
|
% fid = fopen('hmask.box','w','b'); fwrite(fid,HM,'real*8'); fclose(fid); |
| 51 |
|
|
% |
| 52 |
|
|
|
| 53 |
|
|
|
| 54 |
|
|
|