/[MITgcm]/MITgcm_contrib/high_res_cube/README_ice
ViewVC logotype

Annotation of /MITgcm_contrib/high_res_cube/README_ice

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


Revision 1.16 - (hide annotations) (download)
Sat Jan 10 18:10:29 2004 UTC (20 years, 4 months ago) by dimitri
Branch: MAIN
CVS Tags: hrcube_1
Changes since 1.15: +7 -7 lines
Modified high_res_cube/README_ice

1 dimitri 1.1 Instructions for setting up a cube-sphere integration with sea-ice.
2 dimitri 1.14 Date last tested: January 9, 2004.
3     This is the code used for first multi-year 510x510x6
4     cube-sphere integration.
5 dimitri 1.8
6    
7     ##########################################################################
8     ##########################################################################
9 dimitri 1.14 # getting the code from anonymous CVS server
10 dimitri 1.1
11     setenv CVSROOT :pserver:cvsanon@mitgcm.org:/u/u0/gcmpack
12     cvs login ( CVS password: cvsanon )
13 dimitri 1.16 cvs co -r hrcube_1 MITgcm_contrib/high_res_cube/README_ice
14     cvs co -r hrcube_1 MITgcm_contrib/high_res_cube/code-mods
15     cvs co -r hrcube_1 MITgcm_contrib/high_res_cube/matlab-grid-converter
16     cvs co -r hrcube_1 MITgcm_contrib/high_res_cube/input
17     cvs co -r hrcube_1 MITgcm_contrib/high_res_cube/results
18     cvs co -r hrcube_1 MITgcm_code
19     cvs co -r hrcube_1 MITgcm/verification/global_ocean.cs32x15
20 dimitri 1.14
21    
22     ##########################################################################
23     ##########################################################################
24     # 32*32*6*15, 1-cpu cube sphere
25 dimitri 1.3
26 dimitri 1.1 cd MITgcm/verification/global_ocean.cs32x15/code
27 dimitri 1.8 \cp ../../../../MITgcm_contrib/high_res_cube/code-mods/* .
28     \cp ../../../../MITgcm_contrib/high_res_cube/code-mods/s12t_16x32/* .
29 dimitri 1.12 \rm mdsio_readfield.F
30 dimitri 1.3
31 dimitri 1.2 cd ..
32     mkdir build
33     cd build
34 dimitri 1.10 ../../../tools/genmake2 -mods=../code
35 dimitri 1.1 make depend
36     make
37 dimitri 1.3
38 dimitri 1.1 cd ..
39     mkdir run
40     cd run
41 dimitri 1.8 \cp ../input/* .
42     \cp ../../../../MITgcm_contrib/high_res_cube/matlab-grid-converter/tile00* .
43     \cp ../../../../MITgcm_contrib/high_res_cube/input/* .
44 dimitri 1.3 ../build/mitgcmuv >& output.txt
45    
46     comparison output is in:
47     ../../../../MITgcm_contrib/high_res_cube/results/output.txt
48    
49     to use matlab to look at the output
50     matlab
51 dimitri 1.5 for fld={'Eta','VICE','UICE','HEFF','AREA','Qsw','Qnet','FV','FU','EmPmR'}
52 dimitri 1.13 tmp=permute(readbin([fld{1} '.0000000020.data'],[32,6,32]),[1 3 2]);
53 dimitri 1.4 cx=[min(tmp(:)) max(tmp(:))]; clf, plot_cube, title(fld{1}), pause
54     end
55 dimitri 1.8
56    
57     ##########################################################################
58     ##########################################################################
59     # 32*32*6*15, 2-cpu cube sphere on the altices with efc
60    
61     cd MITgcm/verification/global_ocean.cs32x15/code
62     \cp ../../../../MITgcm_contrib/high_res_cube/code-mods/* .
63     \cp ../../../../MITgcm_contrib/high_res_cube/code-mods/s12t_16x32/* .
64     \cp SIZE.h_mpi SIZE.h
65     \cp CPP_EEOPTIONS.h_mpi CPP_EEOPTIONS.h
66     \rm mdsio_readfield.F
67    
68     cd ..
69     mkdir build
70     cd build
71 dimitri 1.14 \rm *
72 dimitri 1.10 ../../../tools/genmake2 -mods=../code -of ../../../tools/build_options/linux_ia64_efc+mpi
73 dimitri 1.8 make depend
74     make
75    
76     cd ..
77     mkdir run
78     cd run
79 dimitri 1.14 \rm *
80 dimitri 1.8 \cp ../input/* .
81     \cp ../../../../MITgcm_contrib/high_res_cube/matlab-grid-converter/tile00* .
82     \cp ../../../../MITgcm_contrib/high_res_cube/input/* .
83     mpirun -np 2 ../build/mitgcmuv
84    
85    
86     ##########################################################################
87     ##########################################################################
88 dimitri 1.9 # 510*510*6*50, 54-cpu cube sphere on the altices with efc
89 dimitri 1.14 # requires input files in sudirectories run_template and ncep_rgau
90     # presently residing under orion:/tmp1/dmenem/cube
91 dimitri 1.8
92     cd MITgcm/verification/global_ocean.cs32x15/code
93     \cp ../../../../MITgcm_contrib/high_res_cube/code-mods/* .
94     \cp ../../../../MITgcm_contrib/high_res_cube/code-mods/s216t_85x85/* .
95     \cp SIZE.h_54 SIZE.h
96     \cp CPP_EEOPTIONS.h_mpi CPP_EEOPTIONS.h
97 dimitri 1.11 \cp packages.conf_hr packages.conf
98 dimitri 1.13 \cp mom_vi_hdissip.F_hr mom_vi_hdissip.F
99 dimitri 1.8 \rm mdsio_readfield.F
100    
101     cd ..
102     mkdir build
103     cd build
104 dimitri 1.14 \rm *
105 dimitri 1.10 ../../../tools/genmake2 -mods=../code -of ../../../tools/build_options/linux_ia64_efc+mpi
106 dimitri 1.8 make depend
107     make
108    
109     cd ..
110     mkdir run
111     cd run
112 dimitri 1.14 \rm *
113 dimitri 1.8 \cp ../input/* .
114     \cp ../../../../MITgcm_contrib/high_res_cube/input/* .
115 dimitri 1.9 qsub job_orion
116    
117    
118     ##########################################################################
119     ##########################################################################
120 dimitri 1.13 # 510*510*6*50, 216-cpu cube sphere on altix with efc
121 dimitri 1.9
122     cd MITgcm/verification/global_ocean.cs32x15/code
123     \cp ../../../../MITgcm_contrib/high_res_cube/code-mods/* .
124     \cp ../../../../MITgcm_contrib/high_res_cube/code-mods/s216t_85x85/* .
125     \cp SIZE.h_216 SIZE.h
126     \cp CPP_EEOPTIONS.h_mpi CPP_EEOPTIONS.h
127 dimitri 1.12 \cp packages.conf_hr packages.conf
128 dimitri 1.13 \cp mom_vi_hdissip.F_hr mom_vi_hdissip.F
129 dimitri 1.9 \rm mdsio_readfield.F
130    
131     cd ..
132     mkdir build
133     cd build
134 dimitri 1.15 \rm *
135 dimitri 1.13 ../../../tools/genmake2 -mods=../code -of ../../../tools/build_options/linux_ia64_efc+mpi_altix
136 dimitri 1.9 make depend
137     make
138    
139     cd ..
140     mkdir run
141     cd run
142 dimitri 1.15 \rm *
143     \cp ../input/* .
144     \cp ../../../../MITgcm_contrib/high_res_cube/input/* .
145 dimitri 1.12 qsub job_altix

  ViewVC Help
Powered by ViewVC 1.1.22