11 |
module purge |
module purge |
12 |
module load comp-intel/2012.0.032 mpi-sgi/mpt.2.10r6 netcdf/4.0 |
module load comp-intel/2012.0.032 mpi-sgi/mpt.2.10r6 netcdf/4.0 |
13 |
cd ~/llc_2160 |
cd ~/llc_2160 |
14 |
cvs co MITgcm_code |
cvs co -r checkpoint64t MITgcm_code |
15 |
cvs co MITgcm_contrib/llc_hires/llc_2160 |
cvs co MITgcm_contrib/llc_hires/llc_2160 |
16 |
cd MITgcm |
cd MITgcm |
17 |
mkdir build run |
mkdir build run |
121 |
============== |
============== |
122 |
|
|
123 |
to determine empty tiles: |
to determine empty tiles: |
124 |
grep Empty STDOUT.* |
grep Empty STDOUT.* > empty.txt |
125 |
|
|
126 |
|
============== |
127 |
|
|
128 |
|
# generate 30x30 blank tiles |
129 |
|
qsub -I -q normal -l select=339:ncpus=28:model=bro,walltime=2:00:00 -m abe |
130 |
|
module purge |
131 |
|
module load comp-intel/2016.2.181 mpi-sgi/mpt.2.14r19 hdf4/4.2.12 hdf5/1.8.18_mpt netcdf/4.4.1.1_mpt |
132 |
|
cd ~/llc_2160/MITgcm |
133 |
|
mkdir run_30x30 |
134 |
|
lfs setstripe -c -1 run_30x30 |
135 |
|
cd build |
136 |
|
rm * |
137 |
|
cp ../../MITgcm_contrib/llc_hires/llc_2160/code-async/readtile_mpiio.c . |
138 |
|
emacs readtile_mpiio.c |
139 |
|
tileSizeX = 30; |
140 |
|
tileSizeY = 30; |
141 |
|
cp ../../MITgcm_contrib/llc_hires/llc_2160/code/SIZE.h_60x60_10882 SIZE.h |
142 |
|
emacs SIZE.h |
143 |
|
& sNx = 30, |
144 |
|
& sNy = 30, |
145 |
|
& nSx = 8, |
146 |
|
& nPx = 8424, |
147 |
|
& Nr = 2 ) |
148 |
|
cp ../../MITgcm_contrib/llc_hires/llc_2160/code-async/eeboot_minimal.F . |
149 |
|
emacs eeboot_minimal.F |
150 |
|
C standardMessageUnit=errorMessageUnit |
151 |
|
WRITE(fNam,'(A,A)') 'STDOUT.', myProcessStr(1:5) |
152 |
|
OPEN(standardMessageUnit,FILE=fNam,STATUS='unknown') |
153 |
|
../tools/genmake2 -of \ |
154 |
|
../../MITgcm_contrib/llc_hires/llc_2160/code-async/linux_amd64_ifort+mpi_ice_nas -mpi -mods \ |
155 |
|
'../../MITgcm_contrib/llc_hires/llc_2160/code ../../MITgcm_contrib/llc_hires/llc_2160/code-async' |
156 |
|
make depend |
157 |
|
make -j 16 |
158 |
|
cd ~/llc_2160/MITgcm/run_30x30 |
159 |
|
cp ../build/mitgcmuv . |
160 |
|
ln -sf /nobackup/dmenemen/tarballs/llc_2160/run_template/* . |
161 |
|
ln -sf /nobackup/dmenemen/forcing/ECMWF_operational/* . |
162 |
|
cp ../../MITgcm_contrib/llc_hires/llc_2160/input/* . |
163 |
|
mv data.exch2_144x144x2047 data.exch2 |
164 |
|
emacs data.exch2 |
165 |
|
# remove the blank tile list |
166 |
|
emacs data |
167 |
|
tRef = 18.89, 18.89, |
168 |
|
sRef = 34.84, 34.84, |
169 |
|
endtime=45., |
170 |
|
delR = 1.00, 1.14, |
171 |
|
# hydrogThetaFile='THETA_llc1080_14jan2011_2160x28080x90_r4', |
172 |
|
# hydrogSaltFile ='SALT_llc1080_14jan2011_2160x28080x90_r4', |
173 |
|
# uVelInitFile ='UVEL_llc1080_14jan2011_2160x28080x90_r4', |
174 |
|
# vVelInitFile ='VVEL_llc1080_14jan2011_2160x28080x90_r4', |
175 |
|
# pSurfInitFile ='ETAN_llc1080_14jan2011_2160x28080_r4', |
176 |
|
mpiexec -n 9492 ./mitgcmuv |
177 |
|
|
178 |
============== |
============== |
179 |
|
|