| 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 | April 24, 2007. Cube65: Bryan and Lewis 1979 diffusivity | 
| 12 | April 7 , 2007. Cube64: era40_fullres forcing | 
| 13 |  | 
| 14 |  | 
| 15 | ########################################################################## | 
| 16 | # Get forcing files, etc. | 
| 17 | # Example below is for cube65 on /nobackup2a/menemenl | 
| 18 |  | 
| 19 | cd /nobackup2a/menemenl | 
| 20 | mkdir cube65 | 
| 21 | cd cube65 | 
| 22 | ln -sf ../run_template . | 
| 23 | ln -sf ../ncep_rgau . | 
| 24 | ln -sf ../era40_fullres . | 
| 25 |  | 
| 26 |  | 
| 27 | ########################################################################## | 
| 28 | # getting the code from anonymous CVS server | 
| 29 |  | 
| 30 | bash or sh shell: | 
| 31 | $ export CVSROOT=':pserver:cvsanon@mitgcm.org:/u/gcmpack' | 
| 32 | $ cvs login | 
| 33 | ( enter the CVS password: "cvsanon" ) | 
| 34 |  | 
| 35 | tcsh or csh shell: | 
| 36 | $ setenv CVSROOT ':pserver:cvsanon@mitgcm.org:/u/gcmpack' | 
| 37 | $ cvs login | 
| 38 | ( enter the CVS password: "cvsanon" ) | 
| 39 |  | 
| 40 | cvs co MITgcm_contrib/high_res_cube/README.cs510 | 
| 41 | cvs co MITgcm_contrib/high_res_cube/code-mods | 
| 42 | cvs co MITgcm_contrib/high_res_cube/input | 
| 43 | cvs co MITgcm_code | 
| 44 |  | 
| 45 |  | 
| 46 | ########################################################################## | 
| 47 | # 510*510*6*50, 216-cpu cube sphere on altix with ifort | 
| 48 |  | 
| 49 | cd MITgcm | 
| 50 | mkdir build run | 
| 51 | cd build | 
| 52 | \rm * | 
| 53 | \cp ../../MITgcm_contrib/high_res_cube/code-mods/* . | 
| 54 | \cp ../../MITgcm_contrib/high_res_cube/code-mods/s216t_85x85/* . | 
| 55 | \cp SIZE.h_216 SIZE.h | 
| 56 | \cp packages.conf_hr packages.conf | 
| 57 | ../tools/genmake2 -of ../../MITgcm_contrib/high_res_cube/code-mods/linux_ia64_ifort+mpi_altix_nas | 
| 58 | make depend | 
| 59 | make -j | 
| 60 | cd ../run | 
| 61 | \rm * | 
| 62 | \cp ../../MITgcm_contrib/high_res_cube/input/* . | 
| 63 | ln -sf ../../run_template/* . | 
| 64 | \rm pickup* data.pkg data.seaice data.exf_clim data.exf data *192_94* *.m LEV*JAN* | 
| 65 | ln -sf ../../run_template/pickup.0000000216.cube49 pickup.0000000216 | 
| 66 | ln -sf ../../run_template/pickup_seaice.0000000216.cube66 pickup_seaice.0000000216 | 
| 67 | \cp ../build/mitgcmuv . | 
| 68 | \mv job_altix cube65 | 
| 69 | qsub cube65 |