/[MITgcm]/MITgcm_contrib/high_res_cube/README.cs510
ViewVC logotype

Annotation of /MITgcm_contrib/high_res_cube/README.cs510

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


Revision 1.29 - (hide annotations) (download)
Tue Nov 6 18:45:23 2007 UTC (16 years, 6 months ago) by dimitri
Branch: MAIN
Changes since 1.28: +8 -6 lines
preparing cube77

1 dimitri 1.1 Instructions for setting up a cube-sphere integration with sea-ice.
2    
3     Forcing fields and other input files needed for the CS510
4     configuration can be obtained from
5     http://ecco2.org/products/model_setups/cs510.html
6    
7     =================
8    
9     UPDATES
10    
11 dimitri 1.29 November 6, 2007. Cube 77 - same as cube75 but with SEAICE_SALINITY
12     and era40_ecmwf_blend/cube59_GPCP forcing
13     November 3, 2007. Cube 76 - same as cube77 but 1979-2006 integration
14 dimitri 1.24 August 31, 2007. Cube75 - the second blend.
15 dimitri 1.21 August 9, 2007. Cube74
16 dimitri 1.20 August 6, 2007. Cube73
17 dimitri 1.18 July 24, 2007. Cube72
18 dimitri 1.17 July 8, 2007. Cube66: SEAICE_MULTICATEGORY, SEAICE_VARIABLE_FREEZING_POINT,
19 dimitri 1.13 rhonil=1027.5, [temp/salt]AdvScheme=7, convertFW2Salt=-1, LSR_ERROR=1e-6
20     useRealFreshWaterFlux=.TRUE., runoff_lat_inc=179*1, SEAICE_salinity=10
21 dimitri 1.16 bathyFile=GEBCO_510x6x510_ver06_dig.bin, HeffFile=heff_file8
22 dimitri 1.17 SEAICE_availHeatFrac=.5, useGMRedi=.TRUE.
23 dimitri 1.10 April 24, 2007. Cube65: Bryan and Lewis 1979 diffusivity
24 dimitri 1.13 (cube67, cube68, and cube69 were carried out with cube65 code)
25 dimitri 1.7 April 7 , 2007. Cube64: era40_fullres forcing
26 dimitri 1.1
27    
28     ##########################################################################
29     # Get forcing files, etc.
30 dimitri 1.29 # Example below is for cube77 on /nobackup2a/menemenl
31 dimitri 1.1
32     cd /nobackup2a/menemenl
33 dimitri 1.29 mkdir cube77
34     cd cube77
35 dimitri 1.1 ln -sf ../run_template .
36 dimitri 1.26 ln -sf ../cube59_GPCP .
37     ln -sf ../cube59_GPCP .
38     ln -sf ../era40_ecmwf_blend .
39     ln -sf ../ncep_rgau .
40 dimitri 1.1
41     ##########################################################################
42     # getting the code from anonymous CVS server
43    
44     bash or sh shell:
45     $ export CVSROOT=':pserver:cvsanon@mitgcm.org:/u/gcmpack'
46     $ cvs login
47     ( enter the CVS password: "cvsanon" )
48    
49     tcsh or csh shell:
50     $ setenv CVSROOT ':pserver:cvsanon@mitgcm.org:/u/gcmpack'
51     $ cvs login
52     ( enter the CVS password: "cvsanon" )
53    
54 dimitri 1.2 cvs co MITgcm_contrib/high_res_cube/README.cs510
55 dimitri 1.1 cvs co MITgcm_contrib/high_res_cube/code-mods
56     cvs co MITgcm_contrib/high_res_cube/input
57     cvs co MITgcm_code
58    
59    
60     ##########################################################################
61 dimitri 1.2 # 510*510*6*50, 216-cpu cube sphere on altix with ifort
62    
63     cd MITgcm
64     mkdir build run
65     cd build
66     \rm *
67     \cp ../../MITgcm_contrib/high_res_cube/code-mods/* .
68     \cp ../../MITgcm_contrib/high_res_cube/code-mods/s216t_85x85/* .
69 dimitri 1.1 \cp SIZE.h_216 SIZE.h
70 dimitri 1.3 ../tools/genmake2 -of ../../MITgcm_contrib/high_res_cube/code-mods/linux_ia64_ifort+mpi_altix_nas
71 dimitri 1.1 make depend
72     make -j
73 dimitri 1.2 cd ../run
74 dimitri 1.1 \rm *
75 dimitri 1.2 \cp ../../MITgcm_contrib/high_res_cube/input/* .
76     ln -sf ../../run_template/* .
77 dimitri 1.22 \rm pickup* *192_94* *.m D*1 E* G*all.bin L* W*10.bin h*[6-7] PHC*JAN*
78 dimitri 1.15 \mv data.exf_hr data.exf
79     \mv data_hr data
80 dimitri 1.24 ln -sf ../../run_template/pickup.0000000216.cube75 pickup.0000000216
81 dimitri 1.27 ln -sf ../../run_template/pickup_seaice.0000000216.cube76 pickup_seaice.0000000216
82 dimitri 1.28 ln -sf ../../run_template/pickup.0000000216.meta .
83     ln -sf ../../run_template/pickup_seaice.0000000216.meta .
84 dimitri 1.1 \cp ../build/mitgcmuv .
85 dimitri 1.29 \mv job_altix cube77
86     qsub cube77
87 dimitri 1.23
88    
89     ##########################################################################
90     # generating initial pickup files for cube74
91    
92     data.cal
93     # start on December 30 because of bug that does
94     # not allow a January 1, hour 0 start
95     startDate_1=19881230,
96    
97     data
98     # run for 4 days with 2-min time step
99     niter0=0,
100     endtime=345600.,
101     deltaT=120.,
102     pChkptFreq=345600.,
103     monitorFreq=1.,
104    
105     data.seaice
106     # set SEAICE_salinity to 33 to avoid initialization schock if
107     # ice is created or melts during first time step
108     HeffFile = 'heff_file8',
109     SEAICE_salinity = 33.,
110    
111     \mv pickup.0000002880.data ../../run_template/pickup.0000000216.cube74
112     \mv pickup_seaice.0000002880.data ../../run_template/pickup_seaice.0000000216.cube74

  ViewVC Help
Powered by ViewVC 1.1.22