/[MITgcm]/MITgcm/verification/lab_sea/matlab/lookat_exp6.m
ViewVC logotype

Contents of /MITgcm/verification/lab_sea/matlab/lookat_exp6.m

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.5 - (show annotations) (download)
Fri Mar 26 00:40:01 2004 UTC (20 years, 1 month ago) by cnh
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +0 -0 lines
FILE REMOVED
These all came back and so we are deleting them again. Fingers crossed!

1 % need to be in verification/lab_sea/matlab directory
2 % and to specify location of exp1 output
3 cd ../../../verification/lab_sea/matlab
4 exp1_path='../input/exp1/';
5 exp2_path='../input/exp6/';
6
7 % load monthly-mean SMMR-SSM/I data
8 load SSMI
9
10 % load model output
11 area1=readbin([exp1_path 'AREAtave.0000000010.data'],[20 16 1],1);
12 heff1=readbin([exp1_path 'HEFFtave.0000000010.data'],[20 16 1],1);
13 area2=readbin([exp2_path 'AREAtave.0000000010.data'],[20 16 1],1);
14 heff2=readbin([exp2_path 'HEFFtave.0000000010.data'],[20 16 1],1);
15
16 % plot comparison figures
17 clf, subplot(221)
18 mypcolor(lon,lat,area2'); caxis([0 1]), colorbar
19 title('Sea-ice concentration, no dynamics')
20 set(gca,'xticklabel',[])
21
22 subplot(222)
23 mypcolor(lon,lat,area2'-area1'); colorbar
24 title('Difference with LSR solver')
25 set(gca,'xticklabel',[])
26
27 subplot(223)
28 mypcolor(lon,lat,heff2'); caxis([0 .3]), colorbar
29 title('Effective sea-ice thickness (m)')
30 set(gca,'xticklabel',[])
31
32 subplot(224)
33 mypcolor(lon,lat,heff2'-heff1'); colorbar
34 title('Difference with LSR solver')
35 set(gca,'xticklabel',[])

  ViewVC Help
Powered by ViewVC 1.1.22