| 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 | August 6, 2007. Cube73 | 
| 12 | July 24, 2007. Cube72 | 
| 13 | July 8, 2007. Cube66: SEAICE_MULTICATEGORY, SEAICE_VARIABLE_FREEZING_POINT, | 
| 14 | rhonil=1027.5, [temp/salt]AdvScheme=7, convertFW2Salt=-1, LSR_ERROR=1e-6 | 
| 15 | useRealFreshWaterFlux=.TRUE., runoff_lat_inc=179*1, SEAICE_salinity=10 | 
| 16 | bathyFile=GEBCO_510x6x510_ver06_dig.bin, HeffFile=heff_file8 | 
| 17 | SEAICE_availHeatFrac=.5, useGMRedi=.TRUE. | 
| 18 | April 24, 2007. Cube65: Bryan and Lewis 1979 diffusivity | 
| 19 | (cube67, cube68, and cube69 were carried out with cube65 code) | 
| 20 | April 7 , 2007. Cube64: era40_fullres forcing | 
| 21 |  | 
| 22 |  | 
| 23 | ########################################################################## | 
| 24 | # Get forcing files, etc. | 
| 25 | # Example below is for cube65 on /nobackup2a/menemenl | 
| 26 |  | 
| 27 | cd /nobackup2a/menemenl | 
| 28 | mkdir cube73 | 
| 29 | cd cube73 | 
| 30 | ln -sf ../run_template . | 
| 31 | ln -sf ../ncep_rgau . | 
| 32 | ln -sf ../era40_ecmwf_blend . | 
| 33 | ln -sf ../cube59_GPCP . | 
| 34 |  | 
| 35 |  | 
| 36 | ########################################################################## | 
| 37 | # getting the code from anonymous CVS server | 
| 38 |  | 
| 39 | bash or sh shell: | 
| 40 | $ export CVSROOT=':pserver:cvsanon@mitgcm.org:/u/gcmpack' | 
| 41 | $ cvs login | 
| 42 | ( enter the CVS password: "cvsanon" ) | 
| 43 |  | 
| 44 | tcsh or csh shell: | 
| 45 | $ setenv CVSROOT ':pserver:cvsanon@mitgcm.org:/u/gcmpack' | 
| 46 | $ cvs login | 
| 47 | ( enter the CVS password: "cvsanon" ) | 
| 48 |  | 
| 49 | cvs co MITgcm_contrib/high_res_cube/README.cs510 | 
| 50 | cvs co MITgcm_contrib/high_res_cube/code-mods | 
| 51 | cvs co MITgcm_contrib/high_res_cube/input | 
| 52 | cvs co MITgcm_code | 
| 53 |  | 
| 54 |  | 
| 55 | ########################################################################## | 
| 56 | # 510*510*6*50, 216-cpu cube sphere on altix with ifort | 
| 57 |  | 
| 58 | cd MITgcm | 
| 59 | mkdir build run | 
| 60 | cd build | 
| 61 | \rm * | 
| 62 | \cp ../../MITgcm_contrib/high_res_cube/code-mods/* . | 
| 63 | \cp ../../MITgcm_contrib/high_res_cube/code-mods/s216t_85x85/* . | 
| 64 | \cp SIZE.h_216 SIZE.h | 
| 65 | ../tools/genmake2 -of ../../MITgcm_contrib/high_res_cube/code-mods/linux_ia64_ifort+mpi_altix_nas | 
| 66 | make depend | 
| 67 | make -j | 
| 68 | cd ../run | 
| 69 | \rm * | 
| 70 | \cp ../../MITgcm_contrib/high_res_cube/input/* . | 
| 71 | ln -sf ../../run_template/* . | 
| 72 | \rm pickup* *192_94* *.m D*1 E* G*all.bin L* W* h*[6-7] PHCT* | 
| 73 | \mv data.exf_hr data.exf | 
| 74 | \mv data_hr data | 
| 75 | ln -sf ../../run_template/pickup.0000000216.cube71 pickup.0000000216 | 
| 76 | ln -sf ../../run_template/pickup_seaice.0000000216.cube66 pickup_seaice.0000000216 | 
| 77 | \cp ../build/mitgcmuv . | 
| 78 | \mv job_altix cube73 | 
| 79 | qsub cube73 |