Skip to content

Commit 442009d

Browse files
fix for easy
1 parent cf890bb commit 442009d

File tree

1 file changed

+6
-0
lines changed
  • GEOSagcm_GridComp/GEOSphysics_GridComp/GEOSsurface_GridComp/Utils/Raster/makebcs

1 file changed

+6
-0
lines changed

GEOSagcm_GridComp/GEOSphysics_GridComp/GEOSsurface_GridComp/Utils/Raster/makebcs/make_bcs_ease.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ def make_bcs_ease(config):
6464
os.makedirs(log_dir)
6565

6666
account = get_account()
67+
TOPO_VERSION = topo_version_for_bcs(config['lbcsv'])
6768
ims = '%04d'%config['im']
6869
jms = '%04d'%config['jm']
70+
NC = ims
71+
SGNAME = ""
6972
RS = str(config['im'])+'x'+ str(config['jm'])
7073

7174
script_template = get_script_head() + ease_template + get_script_mv(config['grid_type'])
@@ -80,6 +83,8 @@ def make_bcs_ease(config):
8083
MAKE_BCS_INPUT_DIR = config['inputdir'], \
8184
IM = ims, \
8285
JM = jms, \
86+
NC = NC, \
87+
SGNAME = SGNAME, \
8388
MASKFILE = config['MASKFILE'], \
8489
lbcsv = config['lbcsv'], \
8590
TRIPOL_OCEAN = False, \
@@ -88,6 +93,7 @@ def make_bcs_ease(config):
8893
RS = '_'+RS,\
8994
RC = RS+'_DE',\
9095
SCRATCH_DIR = scratch_dir, \
96+
TOPO_VERSION = TOPO_VERSION, \
9197
NCPUS = config['NCPUS'])
9298

9399
ease_job = open(bcjob,'wt')

0 commit comments

Comments
 (0)