Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix subdaily to daily ( cut for time) #202

Merged
merged 17 commits into from
May 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 31 additions & 28 deletions src/Applications/LDAS_App/GEOSldas_LDAS.rc
Original file line number Diff line number Diff line change
Expand Up @@ -41,39 +41,39 @@ LSM_CHOICE: 1
# If only whitelist should be used, specify dummy valuessuch that:
# MINLON > MAXLON and MINLAT > MAXLAT.
#
# MINLON : -180.
# MAXLON : 180.
# MINLAT : -90.
# MAXLAT : 90.
# MINLON: -180.
# MAXLON: 180.
# MINLAT: -90.
# MAXLAT: 90.
#
# Specify path and filenames for blacklist and whitelist files:
# (May leave blank.)
#
# BLACK_FILE : ''
# WHITE_FILE : ''
# BLACK_FILE: ''
# WHITE_FILE: ''


# ---- Surface meteorological forcing: Time step
#
# Should be set in the exeinp file where MET_PATH is defined
# 3600 = default
#
# FORCE_DTSTEP : 3600
# FORCE_DTSTEP: 3600

# ---- Surface meteorological forcing: Horizonal interpolation
#
# 1 : bilinear interpolation (default)
# 0 : nearest neighbor
#
MET_HINTERP : 1
MET_HINTERP: 1


# ---- Specify if running model only or data assimilation
#
# NO : model only (DEFAULT; with --runmodel option)
# YES : assimilation (without --runmodel option)
#
LAND_ASSIM : NO
LAND_ASSIM: NO


# ---- Perturbations: On/off
Expand All @@ -83,11 +83,11 @@ LAND_ASSIM : NO
# 0 : No perturbactions.
# 1 : With perturbations.
#
PERTURBATIONS : 0
PERTURBATIONS: 0

# ---- Perturbations: ID of first ensemble member
#
FIRST_ENS_ID : 0
FIRST_ENS_ID: 0


# ---- Path to special namelist input files
Expand All @@ -98,15 +98,15 @@ FIRST_ENS_ID : 0
# LDASsa_SPECIAL_inputs_ensprop.nml
# LDASsa_SPECIAL_inputs_catbias.nml
#
# NML_INPUT_PATH : ''
# NML_INPUT_PATH: ''


# ---- Microwave Radiative Transfer Model (mwRTM) parameter file name (nc4 format) used for Tb assimilation
#
# This file can be converted from binary with the program mwrtm_bin2nc4.x.
# If empty or commented out, GEOSldas will search the restart directory.
#
# MWRTM_FILE : ''
# MWRTM_FILE: ''


# ---- Job segments: Length
Expand All @@ -115,7 +115,7 @@ FIRST_ENS_ID : 0
# Default is the entire simulation period (END_DATE minus BEG_DATE).
# Format: yyyymmdd hhmmss
#
# JOB_SGMT : 00000100 000000
# JOB_SGMT: 00000100 000000

# ---- Job segments: Number
#
Expand All @@ -124,31 +124,34 @@ FIRST_ENS_ID : 0
# Low values for NUM_SGMT are recommended for run-time and storage efficiency.
# Default is 1.
#
# NUM_SGMT : 1
# NUM_SGMT: 1


# ---- Output: Write log file (YES/NO)?
#
LDAS_logit : YES
LDAS_logit: YES

# ---- Output: HISTORY definition of model diagnostics
#
# User-defined path and filename of output (HISTORY) specification file.
# If empty, ldas_setup will generate a default HISTORY.rc file.
#
# HISTRC_FILE : ''
# HISTRC_FILE: ''

# ---- Write only monthly output?
# ---- Concatenate sub-daily nc4 files into daily nc4 files and write monthly-mean output?
#
# Monthly files can be created from daily files.
# Accurate monthly averages require setting "ref_time" in HISTORY.rc to "000000"
# Optional post-processing of model diagnostics output into bundled daily files and monthly means.
# Reduces the file count and (optionally) the output volume.
#
# 0 : Output bundled into daily files per HISTORY specifications (default).
# 1 : Monthly files will be created. Daily files will *not* be deleted.
# 2 : Monthly files will be created and daily files will be deleted automatically.
# Accurate monthly-means of time-average Collections require setting "ref_time" to "000000" in HISTRC_FILE!
#
# MONTHLY_OUTPUT : 0

# 0 : No post-processing (default).
# 1 : For complete days, concatenate (bundle) sub-daily nc4 files, if any, into daily nc4 files.
# For complete months, write monthly-mean nc4 files.
# 2 : As in 1, but delete daily nc4 files.
#
# POSTPROC_HIST: 0


# ---- Name of file containing Surface GridComp resource parameters
#
Expand All @@ -161,12 +164,12 @@ SURFRC: LDAS.rc

# ---- No dycore for offline
#
DYCORE : none
DYCORE: none

# ---- Only one surface level
#
LM : 1
LM: 1

# ---- For MAPL_RestartOptional
#
MAPL_ENABLE_BOOTSTRAP : YES
MAPL_ENABLE_BOOTSTRAP: YES
Loading