Changeset 23083
- Timestamp:
- 08/08/18 12:16:12 (7 years ago)
- Location:
- issm/trunk-jpl/test
- Files:
-
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/MITgcm/code/CPP_EEOPTIONS.h
r22681 r23083 1 C $Header: /u/gcmpack/MITgcm/eesupp/inc/CPP_EEOPTIONS.h,v 1.43 2017/09/14 19:47:35 jmc Exp $2 C $Name: $3 4 1 CBOP 5 2 C !ROUTINE: CPP_EEOPTIONS.h -
issm/trunk-jpl/test/MITgcm/code/SIZE.h.bak
r18535 r23083 1 C $Header: /u/gcmpack/MITgcm/model/inc/SIZE.h,v 1.28 2009/05/17 21:15:07 jmc Exp $2 C $Name: $3 C4 1 CBOP 5 2 C !ROUTINE: SIZE.h … … 8 5 C !DESCRIPTION: \bv 9 6 C *==========================================================* 10 C | SIZE.h Declare size of underlying computational grid. 7 C | SIZE.h Declare size of underlying computational grid. 11 8 C *==========================================================* 12 C | The design here support a three-dimensional model grid 13 C | with indices I,J and K. The three-dimensional domain 14 C | is comprised of nPx*nSx blocks of size sNx along one axis 15 C | nPy*nSy blocks of size sNy along another axis and one 16 C | block of size Nz along the final axis. 17 C | Blocks have overlap regions of size OLx and OLy along the 18 C | dimensions that are subdivided. 9 C | The design here supports a three-dimensional model grid 10 C | with indices I,J and K. The three-dimensional domain 11 C | is comprised of nPx*nSx blocks (or tiles) of size sNx 12 C | along the first (left-most index) axis, nPy*nSy blocks 13 C | of size sNy along the second axis and one block of size 14 C | Nr along the vertical (third) axis. 15 C | Blocks/tiles have overlap regions of size OLx and OLy 16 C | along the dimensions that are subdivided. 19 17 C *==========================================================* 20 18 C \ev 19 C 20 C Voodoo numbers controlling data layout: 21 C sNx :: Number of X points in tile. 22 C sNy :: Number of Y points in tile. 23 C OLx :: Tile overlap extent in X. 24 C OLy :: Tile overlap extent in Y. 25 C nSx :: Number of tiles per process in X. 26 C nSy :: Number of tiles per process in Y. 27 C nPx :: Number of processes to use in X. 28 C nPy :: Number of processes to use in Y. 29 C Nx :: Number of points in X for the full domain. 30 C Ny :: Number of points in Y for the full domain. 31 C Nr :: Number of points in vertical direction. 21 32 CEOP 22 C Voodoo numbers controlling data layout.23 C sNx :: No. X points in sub-grid.24 C sNy :: No. Y points in sub-grid.25 C OLx :: Overlap extent in X.26 C OLy :: Overlat extent in Y.27 C nSx :: No. sub-grids in X.28 C nSy :: No. sub-grids in Y.29 C nPx :: No. of processes to use in X.30 C nPy :: No. of processes to use in Y.31 C Nx :: No. points in X for the total domain.32 C Ny :: No. points in Y for the total domain.33 C Nr :: No. points in Z for full process domain.34 33 INTEGER sNx 35 34 INTEGER sNy … … 63 62 PARAMETER ( MAX_OLX = OLx, 64 63 & MAX_OLY = OLy ) 64 -
issm/trunk-jpl/test/MITgcm/code/do_oceanic_phys.F
r22681 r23083 1 C $Header: /u/gcmpack/MITgcm/model/src/do_oceanic_phys.F,v 1.149 2017/02/12 20:18:24 gforget Exp $2 C $Name: $3 4 1 #include "PACKAGES_CONFIG.h" 5 2 #include "CPP_OPTIONS.h" -
issm/trunk-jpl/test/MITgcm/code/eeboot_minimal.F
r22681 r23083 1 C $Header: /u/gcmpack/MITgcm/eesupp/src/eeboot_minimal.F,v 1.31 2017/07/26 21:23:07 jmc Exp $2 C $Name: $3 4 1 #include "PACKAGES_CONFIG.h" 5 2 #include "CPP_EEOPTIONS.h" -
issm/trunk-jpl/test/MITgcm/code/eedie.F
r22681 r23083 1 C $Header: /u/gcmpack/MITgcm/eesupp/src/eedie.F,v 1.13 2012/10/11 19:15:18 jmc Exp $2 C $Name: $3 4 1 #include "CPP_EEOPTIONS.h" 5 2 #ifdef USE_LIBHPM -
issm/trunk-jpl/test/MITgcm/get_mitgcm.sh
r23071 r23083 9 9 if [ ! -d install ]; then 10 10 source install.sh 11 else 12 cd install 13 git pull 14 cd .. 11 15 fi -
issm/trunk-jpl/test/MITgcm/install.sh
r21997 r23083 4 4 rm -rf install 5 5 6 #Add cvs repository7 export CVSROOT=':pserver:cvsanon@mitgcm.org:/u/gcmpack'8 9 6 #Download code from server 10 echo loging into MITgcm CVS server 11 echo enter MITgcm CVS password: cvsanon 12 #Login only the first time 13 #cvs login 14 cvs co -P MITgcm_code 7 git clone --depth=1 https://github.com/MITgcm/MITgcm.git 15 8 16 9 #Move -
issm/trunk-jpl/test/NightlyRun/test4002.m
r23075 r23083 6 6 final_time=1/365; 7 7 8 %To download and recompile MITgcm from scratch: 9 % rm -rf $ISSM_DIR/test/MITgcm/install 10 % rm -rf $ISSM_DIR/test/MITgcm/build 11 % rm $ISSM_DIR/test/MITgcm/code/SIZE.h 12 8 13 %Organizer 9 14 mkdir Models 10 15 org=organizer('repository','Models/','prefix','IceOcean.','steps',steps); 11 16 12 presentdirectory=pwd; 17 presentdirectory=pwd; 13 18 14 19 % {{{ Parameters:
Note:
See TracChangeset
for help on using the changeset viewer.