Changeset 23083


Ignore:
Timestamp:
08/08/18 12:16:12 (7 years ago)
Author:
dmenemen
Message:

switching MITgcm installation to github
and updating to latest MITgcm version
Archive4002.arch remains unchanged!

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 
    41CBOP
    52C     !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 C
    41CBOP
    52C    !ROUTINE: SIZE.h
     
    85C    !DESCRIPTION: \bv
    96C     *==========================================================*
    10 C     | SIZE.h Declare size of underlying computational grid.     
     7C     | SIZE.h Declare size of underlying computational grid.
    118C     *==========================================================*
    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.                           
     9C     | The design here supports a three-dimensional model grid
     10C     | with indices I,J and K. The three-dimensional domain
     11C     | is comprised of nPx*nSx blocks (or tiles) of size sNx
     12C     | along the first (left-most index) axis, nPy*nSy blocks
     13C     | of size sNy along the second axis and one block of size
     14C     | Nr along the vertical (third) axis.
     15C     | Blocks/tiles have overlap regions of size OLx and OLy
     16C     | along the dimensions that are subdivided.
    1917C     *==========================================================*
    2018C     \ev
     19C
     20C     Voodoo numbers controlling data layout:
     21C     sNx :: Number of X points in tile.
     22C     sNy :: Number of Y points in tile.
     23C     OLx :: Tile overlap extent in X.
     24C     OLy :: Tile overlap extent in Y.
     25C     nSx :: Number of tiles per process in X.
     26C     nSy :: Number of tiles per process in Y.
     27C     nPx :: Number of processes to use in X.
     28C     nPy :: Number of processes to use in Y.
     29C     Nx  :: Number of points in X for the full domain.
     30C     Ny  :: Number of points in Y for the full domain.
     31C     Nr  :: Number of points in vertical direction.
    2132CEOP
    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.
    3433      INTEGER sNx
    3534      INTEGER sNy
     
    6362      PARAMETER ( MAX_OLX = OLx,
    6463     &            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 
    41#include "PACKAGES_CONFIG.h"
    52#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 
    41#include "PACKAGES_CONFIG.h"
    52#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 
    41#include "CPP_EEOPTIONS.h"
    52#ifdef USE_LIBHPM
  • issm/trunk-jpl/test/MITgcm/get_mitgcm.sh

    r23071 r23083  
    99if [ ! -d install ]; then
    1010    source install.sh
     11else
     12    cd install
     13    git pull
     14    cd ..
    1115fi
  • issm/trunk-jpl/test/MITgcm/install.sh

    r21997 r23083  
    44rm -rf install
    55
    6 #Add cvs repository
    7 export CVSROOT=':pserver:cvsanon@mitgcm.org:/u/gcmpack'
    8 
    96#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
     7git clone --depth=1 https://github.com/MITgcm/MITgcm.git
    158
    169#Move
  • issm/trunk-jpl/test/NightlyRun/test4002.m

    r23075 r23083  
    66final_time=1/365;
    77
     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
    813%Organizer
    914mkdir Models
    1015org=organizer('repository','Models/','prefix','IceOcean.','steps',steps);
    1116
    12 presentdirectory=pwd; 
     17presentdirectory=pwd;
    1318
    1419% {{{ Parameters:
Note: See TracChangeset for help on using the changeset viewer.