5 |
called `iap-idma/matlab' and `iap-idma/release1' |
called `iap-idma/matlab' and `iap-idma/release1' |
6 |
|
|
7 |
2) open a web browser and download the following two files: |
2) open a web browser and download the following two files: |
8 |
http://mit.ecco-group.org/opendap/ecco_for_las/version_4/checkpoints/c65r_gcmfaces.tar.gz |
ftp://mit.ecco-group.org/ecco_for_las/version_4/checkpoints/gcmfaces_20160114.tar.gz |
9 |
http://mit.ecco-group.org/opendap/ecco_for_las/version_4/checkpoints/c65r_MITprof.tar.gz |
ftp://mit.ecco-group.org/ecco_for_las/version_4/checkpoints/c65r_MITprof.tar.gz |
10 |
|
|
11 |
3) move these two files to the idma directory and uncompress them. |
3) move these two files to the idma directory and uncompress them. |
12 |
|
|
13 |
4) the iap-idma directory should now contain two subdirectories |
4) the iap-idma directory should now contain two subdirectories |
14 |
named `c65r_gcmfaces' and `c65r_MITprof'. Rename them simply |
named `gcmfaces' and `c65r_MITprof'. Rename c65r_MITprof as `MITprof'. |
|
as `gcmfaces' and `MITprof' |
|
15 |
|
|
16 |
notes : |
notes : |
17 |
- disk space requirement ~ 800M (plus session specific items that will be added later) |
- disk space requirement ~ 800M (plus session specific items that will be added later) |
49 |
- idma_box_subset is the most time consuming of the three |
- idma_box_subset is the most time consuming of the three |
50 |
scripts and may take ~3 minutes |
scripts and may take ~3 minutes |
51 |
|
|
52 |
|
----- for session #2 ----- |
53 |
|
|
54 |
|
1) see 'downloading matlab toolboxes' |
55 |
|
note: make sure to use gcmfaces_20160114.tar.gz or the up to date version of |
56 |
|
gcmfaces from CVS (rather than c65r_MITprof.tar.gz or earlier versions). |
57 |
|
2) download the m_map plotting toolbox (use the 'zip archive' link) from |
58 |
|
https://www.eoas.ubc.ca/~rich/map.html |
59 |
|
unzip and move it to iap-idma/ |
60 |
|
2) using you favorite ftp client (e.g. fetch in iOS, secureFX in MS-windows, |
61 |
|
or wget in LINUX) to download the following directory (145M): |
62 |
|
ftp://mit.ecco-group.org/ecco_for_las/version_4/release1/nctiles_grid |
63 |
|
and move it to iap-idma/ |
64 |
|
3) using you favorite ftp client (e.g. fetch in iOS, secureFX in MS-windows, |
65 |
|
or wget in LINUX) to download the following directory (14G): |
66 |
|
ftp://mit.ecco-group.org/ecco_for_las/version_4/release1/nctiles_climatology |
67 |
|
and move it to iap-idma/release1/ |
68 |
|
4) start matlab, go to the iap-idma directory, and type: |
69 |
|
p = genpath([pwd filesep 'gcmfaces/']); addpath(p); |
70 |
|
p = genpath([pwd filesep 'MITprof/']); addpath(p); |
71 |
|
p = genpath([pwd filesep 'm_map/']); addpath(p); |
72 |
|
grid_load;%load ECCO v4 grid into mygrid |
73 |
|
gcmfaces_global;%declare mygrid as global |
74 |
|
disp(mygrid);%displays grid variables |
75 |
|
diags=example_transports;%computes transports (takes ~ 2 minutes) |
76 |
|
example_transports_disp(diags);%display results |
77 |
|
then proceed as explained in section 5 of gcmfaces/gcmfaces.pdf |
78 |
|
to use diags_driver.m and diags_display.m (takes ~ 5 minutes) |
79 |
|
|