diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 9db52d085..52d4395b6 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -9,6 +9,6 @@ # Support for public releases and documentation -docs/* @hertneky @fossell @camshe -scripts/run_upp @hertneky @fossell @camshe +docs/* @gspetro-NOAA +scripts/run_upp @FernandoAndrade-NOAA @gspetro-NOAA diff --git a/.github/workflows/intel.yml b/.github/workflows/intel.yml index ad3f5140b..1e5eed2ff 100644 --- a/.github/workflows/intel.yml +++ b/.github/workflows/intel.yml @@ -110,6 +110,6 @@ jobs: export FC=mpiifort cd UPP mkdir -p build && cd build - cmake -DCMAKE_INSTALL_PREFIX=../install .. + cmake -DENABLE_DOCS=ON -DCMAKE_INSTALL_PREFIX=../install .. make -j2 VERBOSE=1 make install diff --git a/.gitignore b/.gitignore index 4f4bbc2dd..b9b565e10 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ # USE CAUTION WHEN ADDING WILDCARDS, as some builds use different filename # # conventions than others # ############################################################################## +build +install build/*/ install*/ tests/build diff --git a/CMakeLists.txt b/CMakeLists.txt index c078bb327..3a30be77a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -113,7 +113,6 @@ if(IFI_FOUND OR INTERNAL_IFI) endif() add_subdirectory(sorc) -add_subdirectory(parm) # If desired, build the doxygen docs. if(ENABLE_DOCS) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index d4ca030c9..df6fb502a 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -97,7 +97,22 @@ pipeline { sh ''' echo $(pwd) cd ci/ - ./rt.sh -a ${ACCNR} -r `pwd`/rundir -t `pwd`/../ + echo $CHANGE_ID + export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/NOAA-EMC/UPP/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url') + export FORK_BRANCH=$(curl --silent https://api.github.com/repos/NOAA-EMC/UPP/pulls/$CHANGE_ID | jq -r '.head.ref') + ./rt.sh -a ${ACCNR} -r `pwd`/rundir + cd ../tests/logs + git remote -v + git fetch --no-recurse-submodules origin + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + echo "Orion testing concluded..." + git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 + git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 + git pull sshorigin $FORK_BRANCH + git add rt.log.ORION + git commit -m "Orion Jobs Completed." + git push sshorigin HEAD:$FORK_BRANCH ''' } } @@ -124,7 +139,22 @@ pipeline { sh ''' echo $(pwd) cd ci/ - ./rt.sh -a ${ACCNR} -r `pwd`/rundir -t `pwd`/../ + echo $CHANGE_ID + export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/NOAA-EMC/UPP/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url') + export FORK_BRANCH=$(curl --silent https://api.github.com/repos/NOAA-EMC/UPP/pulls/$CHANGE_ID | jq -r '.head.ref') + ./rt.sh -a ${ACCNR} -r `pwd`/rundir + cd ../tests/logs + git remote -v + git fetch --no-recurse-submodules origin + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + echo "Hera testing concluded..." + git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 + git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 + git pull sshorigin $FORK_BRANCH + git add rt.log.HERA + git commit -m "Hera Jobs Completed." + git push sshorigin HEAD:$FORK_BRANCH ''' } } @@ -151,7 +181,22 @@ pipeline { sh ''' echo $(pwd) cd ci/ - ./rt.sh -a ${ACCNR} -r `pwd`/rundir -t `pwd`/../ + echo $CHANGE_ID + export SSH_ORIGIN=$(curl --silent https://api.github.com/repos/NOAA-EMC/UPP/pulls/$CHANGE_ID | jq -r '.head.repo.ssh_url') + export FORK_BRANCH=$(curl --silent https://api.github.com/repos/NOAA-EMC/UPP/pulls/$CHANGE_ID | jq -r '.head.ref') + ./rt.sh -a ${ACCNR} -r `pwd`/rundir + cd ../tests/logs + git remote -v + git fetch --no-recurse-submodules origin + git config user.email "ecc.platform@noaa.gov" + git config user.name "epic-cicd-jenkins" + echo "Hercules testing concluded..." + git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 + git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 + git pull sshorigin $FORK_BRANCH + git add rt.log.HERCULES + git commit -m "Hercules Jobs Completed." + git push sshorigin HEAD:$FORK_BRANCH ''' } } diff --git a/ci/rt.sh b/ci/rt.sh index 57cea7942..dba1e239f 100755 --- a/ci/rt.sh +++ b/ci/rt.sh @@ -4,9 +4,11 @@ # Wen Meng, 12/2020, First version. # Fernando Andrade-Maldonado 5/2023 rework for CLI Options # Fernando Andrade-Maldonado / Wen Meng 9/2023 Add Hercules, fix typos, and refactor -# +# Fernando Andrade-Maldonado 4/2024 Additional Log info ###################################################################### +SECONDS=0 + git_branch="develop" git_url="https://github.com/NOAA-EMC/UPP.git" clone_on="no" @@ -65,27 +67,28 @@ if [ $mac2 = hf ]; then # for HERA export machine=HERA export homedir=${homedir:-"/scratch2/NAGAPE/epic/UPP/test_suite"} export rundir=${rundir:-"/scratch1/NCEPDEV/stmp2/${USER}"} - module use /scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core + module use /scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core module load stack-intel/2021.5.0 module load stack-intel-oneapi-mpi/2021.5.1 module load prod_util/2.1.1 -elif [ $mac = O ] ; then +elif [ $mac3 = orio ] ; then export machine=ORION export homedir=${homedir:-"/work/noaa/epic/UPP"} export rundir=${rundir:-"/work2/noaa/stmp/$USER"} - module use /work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core - module load stack-intel/2022.0.2 - module load stack-intel-oneapi-mpi/2021.5.1 + module use /work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core + module load stack-intel/2021.9.0 + module load stack-intel-oneapi-mpi/2021.9.0 module load prod_util/2.1.1 + module load python/3.10.8 elif [ $mac3 = herc ] ; then export machine=HERCULES export homedir=${homedir:-"/work/noaa/epic/UPP"} export rundir=${rundir:-"/work2/noaa/stmp/$USER"} - module use /work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core + module use /work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core module load stack-intel/2021.9.0 module load stack-intel-oneapi-mpi/2021.9.0 module load prod_util/2.1.1 - module load stack-python/3.10.13 + module load python/3.10.8 fi #set working directory @@ -236,17 +239,42 @@ for job_id in $jobid_list; do fi done +elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) ) + python ${test_v}/ci/rt-status.py test_results=$? # Cleanup rt log +cd ${test_v} + +UPP_HASH=$(git rev-parse HEAD) +SUBMODULE_HASHES=$(git submodule status --recursive) +DATE="$(date '+%Y%m%d %T')" + cd ${test_v}/ci -echo "rundir: ${rundir}" > rt.log.${machine}.temp + +cat << EOF > rt.log.${machine}.temp +===== Start of UPP Regression Testing Log ===== +UPP Hash Tested: +${UPP_HASH} + +Submodule hashes: +${SUBMODULE_HASHES} + +Run directory: ${rundir} +Baseline directory: ${homedir} + +Total runtime: ${elapsed_time} +Test Date: ${DATE} +Summary Results: + +EOF + cat rt.log.${machine} | grep "test:" >> rt.log.${machine}.temp cat rt.log.${machine} | grep "baseline" >> rt.log.${machine}.temp python ${test_v}/ci/rt-status.py >> rt.log.${machine}.temp -cat rt.log.${machine}.temp > rt.log.${machine} -rm rt.log.${machine}.temp +echo "===== End of UPP Regression Testing Log =====" >> rt.log.${machine}.temp +mv rt.log.${machine}.temp rt.log.${machine} mv rt.log.${machine} ${test_v}/tests/logs # should indicate failure to Jenkins diff --git a/ci/spack.yaml b/ci/spack.yaml index 8070074bd..4f3714ed1 100644 --- a/ci/spack.yaml +++ b/ci/spack.yaml @@ -10,8 +10,8 @@ spack: - netcdf-fortran@4.6.1 - bacio@2.4.1 - w3emc@2.10.0 - - g2@3.4.5 - - g2tmpl@1.10.2 + - g2@3.5.1 + - g2tmpl@1.13.0 - sp@2.5.0 - ip@4.3.0 - sigio@2.3.2 diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index c0609df47..b829210e3 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -1,4 +1,4 @@ -# Doxyfile 1.9.1 +# Doxyfile 1.9.8 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. @@ -12,6 +12,16 @@ # For lists, items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (\" \"). +# +# Note: +# +# Use doxygen to compare the used configuration file with the template +# configuration file: +# doxygen -x [configFile] +# Use doxygen to compare the used configuration file with the template +# configuration file without replacing the environment variables or CMake type +# replacement variables: +# doxygen -x_noenv [configFile] #--------------------------------------------------------------------------- # Project related configuration options @@ -60,16 +70,28 @@ PROJECT_LOGO = OUTPUT_DIRECTORY = -# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- -# directories (in 2 levels) under the output directory of each output format and -# will distribute the generated files over these directories. Enabling this +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096 +# sub-directories (in 2 levels) under the output directory of each output format +# and will distribute the generated files over these directories. Enabling this # option can be useful when feeding doxygen a huge amount of source files, where # putting all generated files in the same directory would otherwise causes -# performance problems for the file system. +# performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to +# control the number of sub-directories. # The default value is: NO. CREATE_SUBDIRS = NO +# Controls the number of sub-directories that will be created when +# CREATE_SUBDIRS tag is set to YES. Level 0 represents 16 directories, and every +# level increment doubles the number of directories, resulting in 4096 +# directories at level 8 which is the default and also the maximum value. The +# sub-directories are organized in 2 levels, the first level always has a fixed +# number of 16 directories. +# Minimum value: 0, maximum value: 8, default value: 8. +# This tag requires that the tag CREATE_SUBDIRS is set to YES. + +CREATE_SUBDIRS_LEVEL = 8 + # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII # characters to appear in the names of generated files. If set to NO, non-ASCII # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode @@ -81,14 +103,14 @@ ALLOW_UNICODE_NAMES = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. -# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, -# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), -# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, -# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, -# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, -# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, -# Ukrainian and Vietnamese. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Bulgarian, +# Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, English +# (United States), Esperanto, Farsi (Persian), Finnish, French, German, Greek, +# Hindi, Hungarian, Indonesian, Italian, Japanese, Japanese-en (Japanese with +# English messages), Korean, Korean-en (Korean with English messages), Latvian, +# Lithuanian, Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, +# Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, +# Swedish, Turkish, Ukrainian and Vietnamese. # The default value is: English. OUTPUT_LANGUAGE = English @@ -240,16 +262,16 @@ TAB_SIZE = 4 # the documentation. An alias has the form: # name=value # For example adding -# "sideeffect=@par Side Effects:\n" +# "sideeffect=@par Side Effects:^^" # will allow you to put the command \sideeffect (or @sideeffect) in the # documentation, which will result in a user-defined paragraph with heading -# "Side Effects:". You can put \n's in the value part of an alias to insert -# newlines (in the resulting output). You can put ^^ in the value part of an -# alias to insert a newline as if a physical newline was in the original file. -# When you need a literal { or } or , in the value part of an alias you have to -# escape them by means of a backslash (\), this can lead to conflicts with the -# commands \{ and \} for these it is advised to use the version @{ and @} or use -# a double escape (\\{ and \\}) +# "Side Effects:". Note that you cannot put \n's in the value part of an alias +# to insert newlines (in the resulting output). You can put ^^ in the value part +# of an alias to insert a newline as if a physical newline was in the original +# file. When you need a literal { or } or , in the value part of an alias you +# have to escape them by means of a backslash (\), this can lead to conflicts +# with the commands \{ and \} for these it is advised to use the version @{ and +# @} or use a double escape (\\{ and \\}) ALIASES = @@ -294,8 +316,8 @@ OPTIMIZE_OUTPUT_SLICE = NO # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, and # language is one of the parsers supported by doxygen: IDL, Java, JavaScript, -# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, -# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice, +# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: # FortranFree, unknown formatted Fortran: Fortran. In the later case the parser # tries to guess whether the code is fixed or free formatted code, this is the # default for Fortran type files). For instance to make doxygen treat .inc files @@ -331,6 +353,17 @@ MARKDOWN_SUPPORT = YES TOC_INCLUDE_HEADINGS = 5 +# The MARKDOWN_ID_STYLE tag can be used to specify the algorithm used to +# generate identifiers for the Markdown headings. Note: Every identifier is +# unique. +# Possible values are: DOXYGEN use a fixed 'autotoc_md' string followed by a +# sequence number starting at 0 and GITHUB use the lower case version of title +# with any whitespace replaced by '-' and punctuation characters removed. +# The default value is: DOXYGEN. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +MARKDOWN_ID_STYLE = DOXYGEN + # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by putting a % sign in front of the word or @@ -442,19 +475,27 @@ TYPEDEF_HIDES_STRUCT = NO LOOKUP_CACHE_SIZE = 0 -# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use +# The NUM_PROC_THREADS specifies the number of threads doxygen is allowed to use # during processing. When set to 0 doxygen will based this on the number of # cores available in the system. You can set it explicitly to a value larger # than 0 to get more control over the balance between CPU load and processing # speed. At this moment only the input processing can be done using multiple # threads. Since this is still an experimental feature the default is set to 1, -# which efficively disables parallel processing. Please report any issues you +# which effectively disables parallel processing. Please report any issues you # encounter. Generating dot graphs in parallel is controlled by the # DOT_NUM_THREADS setting. # Minimum value: 0, maximum value: 32, default value: 1. NUM_PROC_THREADS = 1 +# If the TIMESTAMP tag is set different from NO then each generated page will +# contain the date or date and time when the page was generated. Setting this to +# NO can help when comparing the output of multiple runs. +# Possible values are: YES, NO, DATETIME and DATE. +# The default value is: NO. + +TIMESTAMP = NO + #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- @@ -536,7 +577,8 @@ HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. If set # to NO, these classes will be included in the various overviews. This option -# has no effect if EXTRACT_ALL is enabled. +# will also hide undocumented C++ concepts if enabled. This option has no effect +# if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_CLASSES = NO @@ -567,14 +609,15 @@ INTERNAL_DOCS = NO # filesystem is case sensitive (i.e. it supports files in the same directory # whose names only differ in casing), the option must be set to YES to properly # deal with such files in case they appear in the input. For filesystems that -# are not case sensitive the option should be be set to NO to properly deal with +# are not case sensitive the option should be set to NO to properly deal with # output files written for symbols that only differ in casing, such as for two # classes, one named CLASS and the other named Class, and to also support # references to files without having to specify the exact matching casing. On # Windows (including Cygwin) and MacOS, users should typically set this option # to NO, whereas on Linux or other Unix flavors it should typically be set to # YES. -# The default value is: system dependent. +# Possible values are: SYSTEM, NO and YES. +# The default value is: SYSTEM. CASE_SENSE_NAMES = YES @@ -592,6 +635,12 @@ HIDE_SCOPE_NAMES = NO HIDE_COMPOUND_REFERENCE= NO +# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class +# will show which file needs to be included to use the class. +# The default value is: YES. + +SHOW_HEADERFILE = YES + # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of # the files that are included by a file in the documentation of that file. # The default value is: YES. @@ -749,7 +798,8 @@ FILE_VERSION_FILTER = # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. You can # optionally specify a file name after the option, if omitted DoxygenLayout.xml -# will be used as the name of the layout file. +# will be used as the name of the layout file. See also section "Changing the +# layout of pages" for information. # # Note that if you run doxygen from a directory containing a file called # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE @@ -795,30 +845,53 @@ WARNINGS = YES WARN_IF_UNDOCUMENTED = YES # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some parameters -# in a documented function, or documenting parameters that don't exist or using -# markup commands wrongly. +# potential errors in the documentation, such as documenting some parameters in +# a documented function twice, or documenting parameters that don't exist or +# using markup commands wrongly. # The default value is: YES. WARN_IF_DOC_ERROR = YES +# If WARN_IF_INCOMPLETE_DOC is set to YES, doxygen will warn about incomplete +# function parameter documentation. If set to NO, doxygen will accept that some +# parameters have no documentation without warning. +# The default value is: YES. + +WARN_IF_INCOMPLETE_DOC = YES + # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that # are documented, but have no documentation for their parameters or return -# value. If set to NO, doxygen will only warn about wrong or incomplete -# parameter documentation, but not about the absence of documentation. If -# EXTRACT_ALL is set to YES then this flag will automatically be disabled. +# value. If set to NO, doxygen will only warn about wrong parameter +# documentation, but not about the absence of documentation. If EXTRACT_ALL is +# set to YES then this flag will automatically be disabled. See also +# WARN_IF_INCOMPLETE_DOC # The default value is: NO. WARN_NO_PARAMDOC = YES +# If WARN_IF_UNDOC_ENUM_VAL option is set to YES, doxygen will warn about +# undocumented enumeration values. If set to NO, doxygen will accept +# undocumented enumeration values. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: NO. + +WARN_IF_UNDOC_ENUM_VAL = NO + # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when # a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS # then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but # at the end of the doxygen process doxygen will return with a non-zero status. -# Possible values are: NO, YES and FAIL_ON_WARNINGS. +# If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS_PRINT then doxygen behaves +# like FAIL_ON_WARNINGS but in case no WARN_LOGFILE is defined doxygen will not +# write the warning messages in between other messages but write them at the end +# of a run, in case a WARN_LOGFILE is defined the warning messages will be +# besides being in the defined file also be shown at the end of a run, unless +# the WARN_LOGFILE is defined as - i.e. standard output (stdout) in that case +# the behavior will remain as with the setting FAIL_ON_WARNINGS. +# Possible values are: NO, YES, FAIL_ON_WARNINGS and FAIL_ON_WARNINGS_PRINT. # The default value is: NO. -WARN_AS_ERROR = NO +WARN_AS_ERROR = YES # The WARN_FORMAT tag determines the format of the warning messages that doxygen # can produce. The string should contain the $file, $line, and $text tags, which @@ -826,13 +899,27 @@ WARN_AS_ERROR = NO # and the warning text. Optionally the format may contain $version, which will # be replaced by the version of the file (if it could be obtained via # FILE_VERSION_FILTER) +# See also: WARN_LINE_FORMAT # The default value is: $file:$line: $text. WARN_FORMAT = "$file:$line: $text" +# In the $text part of the WARN_FORMAT command it is possible that a reference +# to a more specific place is given. To make it easier to jump to this place +# (outside of doxygen) the user can define a custom "cut" / "paste" string. +# Example: +# WARN_LINE_FORMAT = "'vi $file +$line'" +# See also: WARN_FORMAT +# The default value is: at line $line of file $file. + +WARN_LINE_FORMAT = "at line $line of file $file" + # The WARN_LOGFILE tag can be used to specify a file to which warning and error # messages should be written. If left blank the output is written to standard -# error (stderr). +# error (stderr). In case the file specified cannot be opened for writing the +# warning and error messages are written to standard error. When as file - is +# specified the warning and error messages are written to standard output +# (stdout). WARN_LOGFILE = @@ -847,7 +934,7 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = @abs_top_srcdir@/doc/user_guide.md \ - = @abs_top_srcdir@/doc/2D-decomp.md \ + @abs_top_srcdir@/doc/2D-decomp.md \ @abs_top_srcdir@/sorc/ncep_post.fd \ @config_srcdir@ @@ -856,10 +943,21 @@ INPUT = @abs_top_srcdir@/doc/user_guide.md \ # libiconv (or the iconv built into libc) for the transcoding. See the libiconv # documentation (see: # https://www.gnu.org/software/libiconv/) for the list of possible encodings. +# See also: INPUT_FILE_ENCODING # The default value is: UTF-8. INPUT_ENCODING = UTF-8 +# This tag can be used to specify the character encoding of the source files +# that doxygen parses The INPUT_FILE_ENCODING tag can be used to specify +# character encoding on a per file pattern basis. Doxygen will compare the file +# name with each pattern and apply the encoding instead of the default +# INPUT_ENCODING) if there is a match. The character encodings are a list of the +# form: pattern=encoding (like *.php=ISO-8859-1). See cfg_input_encoding +# "INPUT_ENCODING" for further information on supported encodings. + +INPUT_FILE_ENCODING = + # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and # *.h) to filter out the source-files in the directories. @@ -871,12 +969,12 @@ INPUT_ENCODING = UTF-8 # Note the list of default checked file patterns might differ from the list of # default file extension mappings. # -# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, -# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, -# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, -# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), -# *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl, -# *.ucf, *.qsf and *.ice. +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cxxm, +# *.cpp, *.cppm, *.c++, *.c++m, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, +# *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, *.h++, *.ixx, *.l, *.cs, *.d, *.php, +# *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be +# provided as doxygen C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.f18, *.f, *.for, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice. FILE_PATTERNS = *.F90 \ *.f90 \ @@ -920,10 +1018,7 @@ EXCLUDE_PATTERNS = # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories use the pattern */test/* +# ANamespace::AClass, ANamespace::*Test EXCLUDE_SYMBOLS = @@ -968,6 +1063,11 @@ IMAGE_PATH = # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. # +# Note that doxygen will use the data processed and written to standard output +# for further processing, therefore nothing else, like debug statements or used +# commands (so in case of a Windows batch file always use @echo OFF), should be +# written to standard output. +# # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. @@ -1009,13 +1109,14 @@ FILTER_SOURCE_PATTERNS = USE_MDFILE_AS_MAINPAGE = @abs_top_srcdir@/doc/user_guide.md -# By default, all characters from position 72 are to be considered as comment. -# This prevents Doxygen from recognizing certain variables as undocumented -# because the variables are processed as comments. -# Setting FORTRAN_COMMENT_AFTER to a larger value makes it possible to -# process longer lines before the automatic comment starts. +# The Fortran standard specifies that for fixed formatted Fortran code all +# characters from position 72 are to be considered as comment. A common +# extension is to allow longer lines before the automatic comment starts. The +# setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can +# be processed before the automatic comment starts. +# Minimum value: 7, maximum value: 10000, default value: 72. -FORTRAN_COMMENT_AFTER = 200 +FORTRAN_COMMENT_AFTER = 200 #--------------------------------------------------------------------------- # Configuration options related to source browsing @@ -1114,10 +1215,11 @@ VERBATIM_HEADERS = YES ALPHABETICAL_INDEX = NO -# In case all classes in a project start with a common prefix, all classes will -# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag -# can be used to specify a prefix (or a list of prefixes) that should be ignored -# while generating the index headers. +# The IGNORE_PREFIX tag can be used to specify a prefix (or a list of prefixes) +# that should be ignored while generating the index headers. The IGNORE_PREFIX +# tag works for classes, function and member names. The entity will be placed in +# the alphabetical list under the first letter of the entity name that remains +# after removing the prefix. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. IGNORE_PREFIX = @@ -1196,7 +1298,12 @@ HTML_STYLESHEET = # Doxygen will copy the style sheet files to the output directory. # Note: The order of the extra style sheet files is of importance (e.g. the last # style sheet in the list overrules the setting of the previous ones in the -# list). For an example see the documentation. +# list). +# Note: Since the styling of scrollbars can currently not be overruled in +# Webkit/Chromium, the styling will be left out of the default doxygen.css if +# one or more extra stylesheets have been specified. So if scrollbar +# customization is desired it has to be added explicitly. For an example see the +# documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_STYLESHEET = @@ -1211,9 +1318,22 @@ HTML_EXTRA_STYLESHEET = HTML_EXTRA_FILES = +# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output +# should be rendered with a dark or light theme. +# Possible values are: LIGHT always generate light mode output, DARK always +# generate dark mode output, AUTO_LIGHT automatically set the mode according to +# the user preference, use light mode if no preference is set (the default), +# AUTO_DARK automatically set the mode according to the user preference, use +# dark mode if no preference is set and TOGGLE allow to user to switch between +# light and dark mode via a button. +# The default value is: AUTO_LIGHT. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE = AUTO_LIGHT + # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the style sheet and background images according to -# this color. Hue is specified as an angle on a colorwheel, see +# this color. Hue is specified as an angle on a color-wheel, see # https://en.wikipedia.org/wiki/Hue for more information. For instance the value # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 # purple, and 360 is red again. @@ -1223,7 +1343,7 @@ HTML_EXTRA_FILES = HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors -# in the HTML output. For a value of 0 the output will use grayscales only. A +# in the HTML output. For a value of 0 the output will use gray-scales only. A # value of 255 will produce the most vivid colors. # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. @@ -1241,15 +1361,6 @@ HTML_COLORSTYLE_SAT = 100 HTML_COLORSTYLE_GAMMA = 80 -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting this -# to YES can help to show when doxygen was last run and thus if the -# documentation is up to date. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_TIMESTAMP = NO - # If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML # documentation will contain a main index with vertical navigation menus that # are dynamically created via JavaScript. If disabled, the navigation index will @@ -1269,6 +1380,13 @@ HTML_DYNAMIC_MENUS = YES HTML_DYNAMIC_SECTIONS = NO +# If the HTML_CODE_FOLDING tag is set to YES then classes and functions can be +# dynamically folded and expanded in the generated HTML source code. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_CODE_FOLDING = YES + # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries # shown in the various tree structured indices initially; the user can expand # and collapse entries dynamically later on. Doxygen will expand the tree to @@ -1305,6 +1423,13 @@ GENERATE_DOCSET = NO DOCSET_FEEDNAME = "Doxygen generated docs" +# This tag determines the URL of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDURL = + # This tag specifies a string that should uniquely identify the documentation # set bundle. This should be a reverse domain-name style string, e.g. # com.mycompany.MyDocSet. Doxygen will append .docset to the name. @@ -1330,8 +1455,12 @@ DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three # additional HTML index files: index.hhp, index.hhc, and index.hhk. The # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -# (see: -# https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows. +# on Windows. In the beginning of 2021 Microsoft took the original page, with +# a.o. the download links, offline the HTML help workshop was already many years +# in maintenance mode). You can download the HTML help workshop from the web +# archives at Installation executable (see: +# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo +# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe). # # The HTML Help Workshop contains a compiler that can convert all HTML output # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML @@ -1388,6 +1517,16 @@ BINARY_TOC = NO TOC_EXPAND = NO +# The SITEMAP_URL tag is used to specify the full URL of the place where the +# generated documentation will be placed on the server by the user during the +# deployment of the documentation. The generated sitemap is called sitemap.xml +# and placed on the directory specified by HTML_OUTPUT. In case no SITEMAP_URL +# is specified no sitemap is generated. For information about the sitemap +# protocol see https://www.sitemaps.org +# This tag requires that the tag GENERATE_HTML is set to YES. + +SITEMAP_URL = + # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help @@ -1490,16 +1629,28 @@ DISABLE_INDEX = NO # to work a browser that supports JavaScript, DHTML, CSS and frames is required # (i.e. any modern browser). Windows users are probably better off using the # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can -# further fine-tune the look of the index. As an example, the default style -# sheet generated by doxygen has an example that shows how to put an image at -# the root of the tree instead of the PROJECT_NAME. Since the tree basically has -# the same information as the tab index, you could consider setting -# DISABLE_INDEX to YES when enabling this option. +# further fine tune the look of the index (see "Fine-tuning the output"). As an +# example, the default style sheet generated by doxygen has an example that +# shows how to put an image at the root of the tree instead of the PROJECT_NAME. +# Since the tree basically has the same information as the tab index, you could +# consider setting DISABLE_INDEX to YES when enabling this option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_TREEVIEW = YES +# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the +# FULL_SIDEBAR option determines if the side bar is limited to only the treeview +# area (value NO) or if it should extend to the full height of the window (value +# YES). Setting this to YES gives a layout similar to +# https://docs.readthedocs.io with more room for contents, but less room for the +# project logo, title, and description. If either GENERATE_TREEVIEW or +# DISABLE_INDEX is set to NO, this option has no effect. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FULL_SIDEBAR = NO + # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. # @@ -1524,6 +1675,13 @@ TREEVIEW_WIDTH = 250 EXT_LINKS_IN_WINDOW = NO +# If the OBFUSCATE_EMAILS tag is set to YES, doxygen will obfuscate email +# addresses. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +OBFUSCATE_EMAILS = YES + # If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg # tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see # https://inkscape.org) to generate formulas as SVG images instead of PNGs for @@ -1561,11 +1719,29 @@ FORMULA_MACROFILE = USE_MATHJAX = NO +# With MATHJAX_VERSION it is possible to specify the MathJax version to be used. +# Note that the different versions of MathJax have different requirements with +# regards to the different settings, so it is possible that also other MathJax +# settings have to be changed when switching between the different MathJax +# versions. +# Possible values are: MathJax_2 and MathJax_3. +# The default value is: MathJax_2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_VERSION = MathJax_2 + # When MathJax is enabled you can set the default output format to be used for -# the MathJax output. See the MathJax site (see: -# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. +# the MathJax output. For more details about the output format see MathJax +# version 2 (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3 +# (see: +# http://docs.mathjax.org/en/latest/web/components/output.html). # Possible values are: HTML-CSS (which is slower, but has the best -# compatibility), NativeMML (i.e. MathML) and SVG. +# compatibility. This is the name for Mathjax version 2, for MathJax version 3 +# this will be translated into chtml), NativeMML (i.e. MathML. Only supported +# for NathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This +# is the name for Mathjax version 3, for MathJax version 2 this will be +# translated into HTML-CSS) and SVG. # The default value is: HTML-CSS. # This tag requires that the tag USE_MATHJAX is set to YES. @@ -1578,15 +1754,21 @@ MATHJAX_FORMAT = HTML-CSS # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax # Content Delivery Network so you can quickly see the result without installing # MathJax. However, it is strongly recommended to install a local copy of -# MathJax from https://www.mathjax.org before deployment. -# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. +# MathJax from https://www.mathjax.org before deployment. The default value is: +# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2 +# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3 # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax # extension names that should be enabled during MathJax rendering. For example +# for MathJax version 2 (see +# https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions): # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# For example for MathJax version 3 (see +# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html): +# MATHJAX_EXTENSIONS = ams # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_EXTENSIONS = @@ -1766,29 +1948,31 @@ PAPER_TYPE = a4 EXTRA_PACKAGES = -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the -# generated LaTeX document. The header should contain everything until the first -# chapter. If it is left blank doxygen will generate a standard header. See -# section "Doxygen usage" for information on how to let doxygen write the -# default header to a separate file. +# The LATEX_HEADER tag can be used to specify a user-defined LaTeX header for +# the generated LaTeX document. The header should contain everything until the +# first chapter. If it is left blank doxygen will generate a standard header. It +# is highly recommended to start with a default header using +# doxygen -w latex new_header.tex new_footer.tex new_stylesheet.sty +# and then modify the file new_header.tex. See also section "Doxygen usage" for +# information on how to generate the default header that doxygen normally uses. # -# Note: Only use a user-defined header if you know what you are doing! The -# following commands have a special meaning inside the header: $title, -# $datetime, $date, $doxygenversion, $projectname, $projectnumber, -# $projectbrief, $projectlogo. Doxygen will replace $title with the empty -# string, for the replacement values of the other commands the user is referred -# to HTML_HEADER. +# Note: Only use a user-defined header if you know what you are doing! +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. The following +# commands have a special meaning inside the header (and footer): For a +# description of the possible markers and block names see the documentation. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_HEADER = -# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the -# generated LaTeX document. The footer should contain everything after the last -# chapter. If it is left blank doxygen will generate a standard footer. See +# The LATEX_FOOTER tag can be used to specify a user-defined LaTeX footer for +# the generated LaTeX document. The footer should contain everything after the +# last chapter. If it is left blank doxygen will generate a standard footer. See # LATEX_HEADER for more information on how to generate a default footer and what -# special commands can be used inside the footer. -# -# Note: Only use a user-defined footer if you know what you are doing! +# special commands can be used inside the footer. See also section "Doxygen +# usage" for information on how to generate the default footer that doxygen +# normally uses. Note: Only use a user-defined footer if you know what you are +# doing! # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_FOOTER = @@ -1831,10 +2015,16 @@ PDF_HYPERLINKS = YES USE_PDFLATEX = YES -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode -# command to the generated LaTeX files. This will instruct LaTeX to keep running -# if errors occur, instead of asking the user for help. This option is also used -# when generating formulas in HTML. +# The LATEX_BATCHMODE tag signals the behavior of LaTeX in case of an error. +# Possible values are: NO same as ERROR_STOP, YES same as BATCH, BATCH In batch +# mode nothing is printed on the terminal, errors are scrolled as if is +# hit at every error; missing files that TeX tries to input or request from +# keyboard input (\read on a not open input stream) cause the job to abort, +# NON_STOP In nonstop mode the diagnostic message will appear on the terminal, +# but there is no possibility of user interaction just like in batch mode, +# SCROLL In scroll mode, TeX will stop only for missing files to input or if +# keyboard input is necessary and ERROR_STOP In errorstop mode, TeX will stop at +# each error, asking for user intervention. # The default value is: NO. # This tag requires that the tag GENERATE_LATEX is set to YES. @@ -1855,14 +2045,6 @@ LATEX_HIDE_INDICES = NO LATEX_BIB_STYLE = plain -# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated -# page will contain the date and time when the page was generated. Setting this -# to NO can help when comparing the output of multiple runs. -# The default value is: NO. -# This tag requires that the tag GENERATE_LATEX is set to YES. - -LATEX_TIMESTAMP = NO - # The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute) # path from which the emoji images will be read. If a relative path is entered, # it will be relative to the LATEX_OUTPUT directory. If left blank the @@ -2028,13 +2210,39 @@ DOCBOOK_OUTPUT = docbook #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an -# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures +# AutoGen Definitions (see https://autogen.sourceforge.net/) file that captures # the structure of the code including all documentation. Note that this feature # is still experimental and incomplete at the moment. # The default value is: NO. GENERATE_AUTOGEN_DEF = NO +#--------------------------------------------------------------------------- +# Configuration options related to Sqlite3 output +#--------------------------------------------------------------------------- + +# If the GENERATE_SQLITE3 tag is set to YES doxygen will generate a Sqlite3 +# database with symbols found by doxygen stored in tables. +# The default value is: NO. + +GENERATE_SQLITE3 = NO + +# The SQLITE3_OUTPUT tag is used to specify where the Sqlite3 database will be +# put. If a relative path is entered the value of OUTPUT_DIRECTORY will be put +# in front of it. +# The default directory is: sqlite3. +# This tag requires that the tag GENERATE_SQLITE3 is set to YES. + +SQLITE3_OUTPUT = sqlite3 + +# The SQLITE3_OVERWRITE_DB tag is set to YES, the existing doxygen_sqlite3.db +# database file will be recreated with each doxygen run. If set to NO, doxygen +# will warn if an a database file is already found and not modify it. +# The default value is: YES. +# This tag requires that the tag GENERATE_SQLITE3 is set to YES. + +SQLITE3_RECREATE_DB = YES + #--------------------------------------------------------------------------- # Configuration options related to the Perl module output #--------------------------------------------------------------------------- @@ -2109,7 +2317,8 @@ SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by the -# preprocessor. +# preprocessor. Note that the INCLUDE_PATH is not recursive, so the setting of +# RECURSIVE has no effect here. # This tag requires that the tag SEARCH_INCLUDES is set to YES. INCLUDE_PATH = @@ -2176,15 +2385,15 @@ TAGFILES = GENERATE_TAGFILE = -# If the ALLEXTERNALS tag is set to YES, all external class will be listed in -# the class index. If set to NO, only the inherited external classes will be -# listed. +# If the ALLEXTERNALS tag is set to YES, all external classes and namespaces +# will be listed in the class and namespace index. If set to NO, only the +# inherited external classes will be listed. # The default value is: NO. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed -# in the modules index. If set to NO, only the current project's groups will be +# in the topic index. If set to NO, only the current project's groups will be # listed. # The default value is: YES. @@ -2198,16 +2407,9 @@ EXTERNAL_GROUPS = NO EXTERNAL_PAGES = NO #--------------------------------------------------------------------------- -# Configuration options related to the dot tool +# Configuration options related to diagram generator tools #--------------------------------------------------------------------------- -# You can include diagrams made with dia in doxygen documentation. Doxygen will -# then run dia to produce the diagram and insert it in the documentation. The -# DIA_PATH tag allows you to specify the directory where the dia binary resides. -# If left empty dia is assumed to be found in the default search path. - -DIA_PATH = - # If set to YES the inheritance and collaboration graphs will hide inheritance # and usage relations if the target is undocumented or is not a class. # The default value is: YES. @@ -2216,10 +2418,10 @@ HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz (see: -# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent +# https://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent # Bell Labs. The other options in this section have no effect if this option is # set to NO -# The default value is: YES. +# The default value is: NO. HAVE_DOT = NO @@ -2233,32 +2435,73 @@ HAVE_DOT = NO DOT_NUM_THREADS = 0 -# By default doxygen will tell dot to use the default font as specified with -# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set -# the path where dot can find it using this tag. +# DOT_COMMON_ATTR is common attributes for nodes, edges and labels of +# subgraphs. When you want a differently looking font in the dot files that +# doxygen generates you can specify fontname, fontcolor and fontsize attributes. +# For details please see Node, +# Edge and Graph Attributes specification You need to make sure dot is able +# to find the font, which can be done by putting it in a standard location or by +# setting the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. Default graphviz fontsize is 14. +# The default value is: fontname=Helvetica,fontsize=10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_COMMON_ATTR = "fontname=Helvetica,fontsize=10" + +# DOT_EDGE_ATTR is concatenated with DOT_COMMON_ATTR. For elegant style you can +# add 'arrowhead=open, arrowtail=open, arrowsize=0.5'. Complete documentation about +# arrows shapes. +# The default value is: labelfontname=Helvetica,labelfontsize=10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=10" + +# DOT_NODE_ATTR is concatenated with DOT_COMMON_ATTR. For view without boxes +# around nodes set 'shape=plain' or 'shape=plaintext' Shapes specification +# The default value is: shape=box,height=0.2,width=0.4. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NODE_ATTR = "shape=box,height=0.2,width=0.4" + +# You can set the path where dot can find font specified with fontname in +# DOT_COMMON_ATTR and others dot attributes. # This tag requires that the tag HAVE_DOT is set to YES. DOT_FONTPATH = -# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for -# each documented class showing the direct and indirect inheritance relations. -# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. +# If the CLASS_GRAPH tag is set to YES or GRAPH or BUILTIN then doxygen will +# generate a graph for each documented class showing the direct and indirect +# inheritance relations. In case the CLASS_GRAPH tag is set to YES or GRAPH and +# HAVE_DOT is enabled as well, then dot will be used to draw the graph. In case +# the CLASS_GRAPH tag is set to YES and HAVE_DOT is disabled or if the +# CLASS_GRAPH tag is set to BUILTIN, then the built-in generator will be used. +# If the CLASS_GRAPH tag is set to TEXT the direct and indirect inheritance +# relations will be shown as texts / links. +# Possible values are: NO, YES, TEXT, GRAPH and BUILTIN. # The default value is: YES. -# This tag requires that the tag HAVE_DOT is set to YES. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a # graph for each documented class showing the direct and indirect implementation # dependencies (inheritance, containment, and class references variables) of the -# class with other documented classes. +# class with other documented classes. Explicit enabling a collaboration graph, +# when COLLABORATION_GRAPH is set to NO, can be accomplished by means of the +# command \collaborationgraph. Disabling a collaboration graph can be +# accomplished by means of the command \hidecollaborationgraph. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for -# groups, showing the direct groups dependencies. +# groups, showing the direct groups dependencies. Explicit enabling a group +# dependency graph, when GROUP_GRAPHS is set to NO, can be accomplished by means +# of the command \groupgraph. Disabling a directory graph can be accomplished by +# means of the command \hidegroupgraph. See also the chapter Grouping in the +# manual. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. @@ -2318,7 +2561,9 @@ TEMPLATE_RELATIONS = NO # If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to # YES then doxygen will generate a graph for each documented file showing the # direct and indirect include dependencies of the file with other documented -# files. +# files. Explicit enabling an include graph, when INCLUDE_GRAPH is is set to NO, +# can be accomplished by means of the command \includegraph. Disabling an +# include graph can be accomplished by means of the command \hideincludegraph. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. @@ -2327,7 +2572,10 @@ INCLUDE_GRAPH = YES # If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are # set to YES then doxygen will generate a graph for each documented file showing # the direct and indirect include dependencies of the file with other documented -# files. +# files. Explicit enabling an included by graph, when INCLUDED_BY_GRAPH is set +# to NO, can be accomplished by means of the command \includedbygraph. Disabling +# an included by graph can be accomplished by means of the command +# \hideincludedbygraph. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. @@ -2367,22 +2615,30 @@ GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the # dependencies a directory has on other directories in a graphical way. The # dependency relations are determined by the #include relations between the -# files in the directories. +# files in the directories. Explicit enabling a directory graph, when +# DIRECTORY_GRAPH is set to NO, can be accomplished by means of the command +# \directorygraph. Disabling a directory graph can be accomplished by means of +# the command \hidedirectorygraph. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. DIRECTORY_GRAPH = YES +# The DIR_GRAPH_MAX_DEPTH tag can be used to limit the maximum number of levels +# of child directories generated in directory dependency graphs by dot. +# Minimum value: 1, maximum value: 25, default value: 1. +# This tag requires that the tag DIRECTORY_GRAPH is set to YES. + +DIR_GRAPH_MAX_DEPTH = 1 + # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. For an explanation of the image formats see the section # output formats in the documentation of the dot tool (Graphviz (see: -# http://www.graphviz.org/)). +# https://www.graphviz.org/)). # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order # to make the SVG files visible in IE 9+ (other browsers do not have this # requirement). -# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, -# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, -# gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo, +# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo, # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and # png:gdiplus:gdiplus. # The default value is: png. @@ -2415,11 +2671,12 @@ DOT_PATH = DOTFILE_DIRS = -# The MSCFILE_DIRS tag can be used to specify one or more directories that -# contain msc files that are included in the documentation (see the \mscfile -# command). +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. -MSCFILE_DIRS = +DIA_PATH = # The DIAFILE_DIRS tag can be used to specify one or more directories that # contain dia files that are included in the documentation (see the \diafile @@ -2428,10 +2685,10 @@ MSCFILE_DIRS = DIAFILE_DIRS = # When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the -# path where java can find the plantuml.jar file. If left blank, it is assumed -# PlantUML is not used or called during a preprocessing step. Doxygen will -# generate a warning when it encounters a \startuml command in this case and -# will not generate output for the diagram. +# path where java can find the plantuml.jar file or to the filename of jar file +# to be used. If left blank, it is assumed PlantUML is not used or called during +# a preprocessing step. Doxygen will generate a warning when it encounters a +# \startuml command in this case and will not generate output for the diagram. PLANTUML_JAR_PATH = @@ -2481,6 +2738,8 @@ DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page # explaining the meaning of the various boxes and arrows in the dot generated # graphs. +# Note: This tag requires that UML_LOOK isn't set, i.e. the doxygen internal +# graphical representation for inheritance and collaboration diagrams is used. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. @@ -2489,8 +2748,24 @@ GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate # files that are used to generate the various graphs. # -# Note: This setting is not only used for dot files but also for msc and -# plantuml temporary files. +# Note: This setting is not only used for dot files but also for msc temporary +# files. # The default value is: YES. DOT_CLEANUP = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. If the MSCGEN_TOOL tag is left empty (the default), then doxygen will +# use a built-in version of mscgen tool to produce the charts. Alternatively, +# the MSCGEN_TOOL tag can also specify the name an external tool. For instance, +# specifying prog as the value, doxygen will call the tool as prog -T +# -o . The external tool should support +# output file formats "png", "eps", "svg", and "ismap". + +MSCGEN_TOOL = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = diff --git a/doc/UserGuide/BuildingRunningTesting/InputsOutputs.rst b/doc/UserGuide/BuildingRunningTesting/InputsOutputs.rst index 67a50c936..4f3a2074f 100644 --- a/doc/UserGuide/BuildingRunningTesting/InputsOutputs.rst +++ b/doc/UserGuide/BuildingRunningTesting/InputsOutputs.rst @@ -31,9 +31,7 @@ Model Forecast The UPP ingests FV3 :term:`write component` files in parallel :term:`netCDF` format. -The table below is a list of the unified model variables available from the :term:`FV3` model core. Whether a -specific variable is able to be read by the UPP relies on dependencies such as physics options and choice of model. -This table does not include variables that are diagnosed when running the UPP. +The table below is a list of the unified model variables available from the :term:`FV3` model core. Whether a specific variable is able to be read by the UPP relies on dependencies such as physics options and choice of model. This table does not include variables that are diagnosed when running the UPP. UFS Unified Model Variables - :doc:`../tables/UFS_unified_variables_table` @@ -44,32 +42,149 @@ UFS Unified Model Variables ITAG ---- -The file called ``itag`` is a text file that contains the fortran namelist ``&model_inputs`` as -well as the 2D decomposition specification in ``&nampgb``. It is read in by the ``upp.x`` executable -from standard input (stdin -- unit 5) and is generated automatically within the UFS application workflow or standalone run -script based on user-defined options. It should not be necessary to edit this file. For description purposes, -the namelists ``&model_inputs`` and ``&nampgb`` (in the ``itag`` file) contain the following lines for FV3: +The file called ``itag`` is a Fortran namelist file that contains two sections: ``&model_inputs`` and ``&nampgb``. It is read in by the ``upp.x`` executable from standard input (stdin -- unit 5). Most UFS applications generate it automatically based on user-defined application-level options. All UPP namelist choices are described here. :bolditalic:`&model_inputs` -#. ``fileName``: Name of the FV3 (pressure level) output file to be post-processed. - -#. ``IOFORM``: Format of FV3 model output (netcdfpara). - -#. ``grib``: Format of UPP output (grib2) - -#. ``DateStr``: Forecast valid time (not model start time) in YYYY-MM-DD_HH:00:00 format (the forecast time - desired to be post-processed). - -#. ``MODELNAME``: Model used (GFS, FV3R --- regional FV3, also known as the :term:`LAM`). - -#. ``fileNameFlux``: Name of the FV3 (surface) output file to be post-processed. - -#. ``fileNameFlat``: Name of configuration file (``postxconfig-NT.txt``) +The ``&model_inputs`` section parameterizes choices about the set of model output files that will be used for the UPP. + +.. list-table:: *Description of the &model_inputs namelist section.* + :widths: 15 40 20 20 + :header-rows: 1 + + * - Variable Name + - Description + - Data Type + - Default Value + * - ``datestr`` + - Time stamp being processed (e.g., 2022-08-02_19:00:00). + - character(len=19) + - n/a + * - ``filename`` + - Name of input dynamics file; name of full 3-D model output file. + - character(len=256) + - n/a + * - ``filenameflat`` + - Input configuration text file defining the requested fields. + - character(len=256) + - postxconfig-NT.txt + * - ``filenameflux`` + - Name of input physics file; name of 2-D model output file with physics and surface fields. + - character(len=256) + - n/a + * - ``grib`` + - Grib type (Note that UPP only supports Grib2 currently) + - character(5) + - grib2 + * - ``ioform`` + - Input file format. Choices: binarynemsio or netcdf + - character(len=20) + - n/a + * - ``modelname`` + - Model name used by UPP internally (e.g., FV3R for RRFS, 3DRTMA, HAFS; GFS for GFS and GEFS; RAPR for RAP and HRRR; NMM for NAM) + - character(len=4) + - n/a :bolditalic:`&nampgb` -#. ``numx``: Number of subdomains in the x-direction used for 2D decomposition. +The ``&nampgb`` section parameterizes choices concerning the processing done in UPP. + +.. list-table:: *Description of the &nampgb namelist section.* + :widths: 25 40 20 15 + :header-rows: 1 + + * - Variable Name + - Description + - Data Type + - Default Value + * - ``aqf_on`` + - Turn on Air Quality Forecasting (CMAQ-based) + - logical + - .false. + * - ``d2d_chem`` + - Turn on option to process the 2D aerosol/chemical tracers + - logical + - .false. + * - ``d3d_on`` + - Turn on option to use dynamic 3D fields from GFS + - logical + - .false. + * - ``filenameaer`` + - aerosols file name + - character(len=256) + - "" + * - ``gccpp_on`` + - Turn on option to process the aerosol/chemical tracers related output from UFS-Chem (CCPP-Chem) model + - logical + - .false. + * - ``gocart_on`` + - Turn on option to process the aerosol/chemical tracers related output from GEFS-Aerosols model (GOCART) + - logical + - .false. + * - ``gtg_on`` + - Turn on GTG (Graphical Turbulence Guidance) + - logical + - .false. + * - ``hyb_sigp`` + - Not used + - logical + - .true. + * - ``kpo`` + - The number of pressure levels, if different than standard one specified by ``SPLDEF`` described below. + - integer + - 0 + * - ``kpv`` + - The number of output potential vorticity levels + - integer + - 8 + * - ``kth`` + - The number of output isentropic levels + - integer + - 6 + * - ``method_blsn`` + - Turn on blowing snow effect on visibility diagnostic (default=true) + - logical + - .true. + * - ``nasa_on`` + - Turn on option to process the aerosol/chemical tracers related output from UFS-Aerosols model (NASA GOCART) + - logical + - .false. + * - ``numx`` + - The number of i regions in a 2D decomposition; Each i row is distibuted to numx ranks; numx=1 is the special case of a 1D decomposition in Y only. + - integer + - 1 + * - ``po`` + - List indicating pressure levels in output + - real,dimension(70) + - 0 + * - ``popascal`` + - Switch to indicate if pressure levels are in pascals (multply by 100 if false) + - logical + - .false. + * - ``pv`` + - List indicating the potential vorticity level output + - real,dimension(70) + - (/0.5,-0.5,1.0,-1.0,1.5,-1.5,2.0,-2.0,(0.,k=kpv+1,70)/) + * - ``rdaod`` + - Turn on the option to process the AOD from the GFS scheme + - logical + - .false. + * - ``slrutah_on`` + - Calculate snow to liquid ratio (SLR) using method from University of Utah.(default=false) + - logical + - .false. + * - ``th`` + - List indicating isentropic level output + - real,dimension(70) + - (/310.,320.,350.,450.,550.,650.,(0.,k=kth+1,70)/) + * - ``vtimeunits`` + - valid time units, default="", Choices: FMIN + - character(len=4) + - "" + * - ``write_ifi_debug_files`` + - Write debug files for In-Flight Icing (IFI), a restricted option in UPP + - logical + - .false. .. _control-file: @@ -77,8 +192,7 @@ the namelists ``&model_inputs`` and ``&nampgb`` (in the ``itag`` file) contain t Control File ------------ -The user interacts with the UPP through the control file to define what fields and levels to output. It -is composed of a header and a body. The header specifies the output file information. The body includes which fields and levels to process. +The user interacts with the UPP through the control file to define what fields and levels to output. It is composed of a header and a body. The header specifies the output file information. The body includes which fields and levels to process. A default control file, ``postxconfig-NT.txt``, is provided and read by the UPP. Users who wish to customize the control file to add or remove fields and/or levels may do so by modifying ``postcntrl.xml`` and then remaking the text file as described in the later section: :ref:`create_txt_file`. @@ -88,41 +202,30 @@ A default control file, ``postxconfig-NT.txt``, is provided and read by the UPP. .. _control-output: Selecting Which Variables the UPP Outputs -------------------------------------------- +----------------------------------------- -To output a field, the body of the control file needs to contain an entry for the appropriate variable. -If an entry for a particular field is not yet available in the control file, it may be added to the -control file with the appropriate entries for that field. For variables found on vertical levels (e.g., isobaric or height levels), the desired levels to be output must be listed (see next section: -:ref:`control_levels`). A list of available GRIB2 fields that can be output by UPP can be found in the -table :doc:`../tables/UPP_GRIB2_Table_byID`. Please note that some fields are dependent on model, physics, and other fields. +To output a field, the body of the control file needs to contain an entry for the appropriate variable. If an entry for a particular field is not yet available in the control file, it may be added to the control file with the appropriate entries for that field. For variables found on vertical levels (e.g., isobaric or height levels), the desired levels to be output must be listed (see next section: :ref:`control_levels`). A list of available GRIB2 fields that can be output by UPP can be found in the table :doc:`../tables/UPP_GRIB2_Table_byID`. Please note that some fields are dependent on model, physics, and other fields. .. _control_levels: Controlling which levels the UPP outputs ---------------------------------------- -The ```` tag in the ``postcntrl.xml`` file is used to list the desired levels for output. The following -levels are currently available for output: +The ```` tag in the ``postcntrl.xml`` file is used to list the desired levels for output. The following levels are currently available for output: + +- For isobaric output, 46 levels are possible, from 2 to 1000 hPa (*2, 5, 7, 10, 20, 30, 50, 70 mb and then every 25 mb from 75 to 1000 mb*). The complete list of levels is specified in ``sorc/ncep_post.fd/CTLBLK.f``. -- For isobaric output, 46 levels are possible, from 2 to 1000 hPa (*2, 5, 7, 10, 20, 30, 50, 70 mb and - then every 25 mb from 75 to 1000 mb*). The complete list of levels is specified in - ``sorc/ncep_post.fd/CTLBLK.f``. - - Modify specification of variable ``LSMDEF`` to change the number of pressure levels: LSMDEF=47 - Modify specification of ``SPLDEF`` array to change the values of pressure levels: (/200.,500.,700.,1000.,2000.,3000.,5000.,7000.,7500.,10000.,12500.,15000.,17500.,20000., …/) - + - For model-level output, all model levels are possible, from the highest to the lowest. - When using the Noah LSM, the soil layers are 0-10 cm, 10-40 cm, 40-100 cm, and 100-200 cm. -- When using the RUC LSM, the soil levels are 0 cm, 1 cm, 4 cm, 10 cm, 30 cm, 60 cm, 100 cm, 160 cm, - and 300 cm. (For the old RUC LSM, there are only 6 layers, and if using this, you will need to change - ``NSOIL`` for “RUC LSM” from 9 to 6 in the ``sorc/ncep_post.fd/WRFPOST.f`` routine.) +- When using the RUC LSM, the soil levels are 0 cm, 1 cm, 4 cm, 10 cm, 30 cm, 60 cm, 100 cm, 160 cm, and 300 cm. (For the old RUC LSM, there are only 6 layers, and if using this, you will need to change ``NSOIL`` for “RUC LSM” from 9 to 6 in the ``sorc/ncep_post.fd/WRFPOST.f`` routine.) - When using Pliem-Xiu LSM, there are two layers: 0-1 cm, 1-100 cm -- For low, mid, and high cloud layers, the layers are :math:`\geq`\ 642 hPa, :math:`\geq`\ 350 hPa, and - <350 hPa, respectively. +- For low, mid, and high cloud layers, the layers are :math:`\geq`\ 642 hPa, :math:`\geq`\ 350 hPa, and <350 hPa, respectively. - For PBL layer averages, the levels correspond to 6 layers with a thickness of 30 hPa each. -- For flight level, the levels are 30 m, 50 m, 80 m, 100 m, 305 m, 457 m, 610 m, 914 m, 1524 m, 1829 m, - 2134 m, 2743 m, 3658 m, 4572 m, 6000 m, 7010 m. +- For flight level, the levels are 30 m, 50 m, 80 m, 100 m, 305 m, 457 m, 610 m, 914 m, 1524 m, 1829 m, 2134 m, 2743 m, 3658 m, 4572 m, 6000 m, 7010 m. - For AGL radar reflectivity, the levels are 4000 and 1000 m. - For surface or shelter-level output, the ```` is not necessary. @@ -131,25 +234,16 @@ levels are currently available for output: Creating the Flat Text File --------------------------- -If the control file requires any modifications, a preprocessing step will be required by the user to -convert the modified XML file ``parm/postcntrl.xml`` to a flat text file -``parm/postxconfig-NT.txt``. The user will first need to edit the ``postcntrl.xml`` -file to declare which fields are to be output from the UPP. +If the control file requires any modifications, a preprocessing step will be required by the user to convert the modified XML file ``parm/postcntrl.xml`` to a flat text file ``parm/postxconfig-NT.txt``. The user will first need to edit the ``postcntrl.xml`` file to declare which fields are to be output from the UPP. -In order to ensure that the user-edited XML files are error free, XML stylesheets -(``parm/EMC_POST_CTRL_Schema.xsd`` and ``EMC_POST_Avblflds_Schema.xsd``) can -be used to validate both the ``postcntrl.xml`` and ``post_avblflds.xml`` files, -respectively. Confirmation of validation will be given (e.g., ``postcntrl.xml`` validates) or otherwise -return errors if it does not match the schema. This step is optional, but acts as a safeguard to avoid -run-time failures with the UPP. To run the validation: +In order to ensure that the user-edited XML files are error free, XML stylesheets (``parm/EMC_POST_CTRL_Schema.xsd`` and ``EMC_POST_Avblflds_Schema.xsd``) can be used to validate both the ``postcntrl.xml`` and ``post_avblflds.xml`` files respectively. Confirmation of validation will be given (e.g., ``postcntrl.xml`` validates) or otherwise return errors if it does not match the schema. This step is optional, but acts as a safeguard to avoid run-time failures with the UPP. To run the validation: .. code-block:: console xmllint --noout --schema EMC_POST_CTRL_Schema.xsd postcntrl.xml xmllint --noout --schema EMC_POST_Avblflds_Schema.xsd post_avblflds.xml -Once the XMLs are validated, the user will need to generate the flat file. The command below will run the -Perl program ``parm/PostXMLPreprocessor.pl`` to generate the post flat file: +Once the XMLs are validated, the user will need to generate the flat file. The command below will run the Perl program ``parm/PostXMLPreprocessor.pl`` to generate the post flat file: .. code-block:: console @@ -163,13 +257,11 @@ where ``your_user_defined_xml`` is your modified XML and ``your_user_defined_fla Output Files ============ -Upon a successful run, ``upp.x`` will generate GRIB2 output files in the post processor -working directory. These files will include all fields that were requested in the control file. +Upon a successful run, ``upp.x`` will generate GRIB2 output files in the post processor working directory. These files will include all fields that were requested in the control file. When running UPP standalone, the following GRIB2 output files will be generated: | **GFS Model**: ``GFSPRS.HHH`` | **LAM (Limited Area Model)**: ``NATLEV.HHH`` and ``PRSLEV.HHH`` -When executed with the provided run script, UPP provides log files in the post-processor working directory named -``upp.fHHH.out``, where ``HHH`` is the forecast hour. These log files may be consulted for further runtime information in the event of an error. +When executed with the provided run script, UPP provides log files in the post-processor working directory named ``upp.fHHH.out``, where ``HHH`` is the forecast hour. These log files may be consulted for further runtime information in the event of an error. diff --git a/doc/UserGuide/Reference/Glossary.rst b/doc/UserGuide/Reference/Glossary.rst index 1c86e92df..491117679 100644 --- a/doc/UserGuide/Reference/Glossary.rst +++ b/doc/UserGuide/Reference/Glossary.rst @@ -42,7 +42,7 @@ Glossary The radar-indicated top of an area of precipitation. Specifically, it contains the height of the 18 dBZ reflectivity value. EMC - The `Environmental Modeling Center `__. + The `Environmental Modeling Center `__. EPIC The `Earth Prediction Innovation Center `__ seeks to accelerate scientific research and modeling contributions through continuous and sustained community engagement in order to produce the most accurate and reliable operational modeling system in the world. @@ -159,4 +159,4 @@ Glossary The sequence of steps required to run an experiment from start to finish. write component - The output files written by the UFS Weather Model use an Earth System Modeling Framework (ESMF) component, referred to as the write component because the UPP cannot directly process output on the native grid types (e.g., “GFDLgrid”, “ESGgrid”). Output fields are interpolated to a write component grid before writing them to an output file. \ No newline at end of file + The output files written by the UFS Weather Model use an Earth System Modeling Framework (ESMF) component, referred to as the write component because the UPP cannot directly process output on the native grid types (e.g., “GFDLgrid”, “ESGgrid”). Output fields are interpolated to a write component grid before writing them to an output file. diff --git a/doc/UserGuide/requirements.in b/doc/UserGuide/requirements.in index 26c778f4a..a067648cf 100644 --- a/doc/UserGuide/requirements.in +++ b/doc/UserGuide/requirements.in @@ -1,3 +1,3 @@ -sphinx>=6.0.0 +sphinx>=7.2.0 sphinx_rtd_theme -sphinxcontrib-bibtex +sphinxcontrib-bibtex \ No newline at end of file diff --git a/doc/UserGuide/requirements.txt b/doc/UserGuide/requirements.txt index 3888acb01..e6d38a4eb 100644 --- a/doc/UserGuide/requirements.txt +++ b/doc/UserGuide/requirements.txt @@ -1,14 +1,14 @@ # -# This file is autogenerated by pip-compile with Python 3.9 +# This file is autogenerated by pip-compile with Python 3.11 # by the following command: # -# pip-compile requirements.in +# pip-compile --strip-extras requirements.in # alabaster==0.7.16 # via sphinx babel==2.14.0 # via sphinx -certifi==2024.2.2 +certifi==2024.7.4 # via requests charset-normalizer==3.3.2 # via requests @@ -22,11 +22,7 @@ idna==3.7 # via requests imagesize==1.4.1 # via sphinx -importlib-metadata==7.0.1 - # via - # sphinx - # sphinxcontrib-bibtex -jinja2==3.1.3 +jinja2==3.1.4 # via sphinx latexcodec==2.0.1 # via pybtex @@ -44,7 +40,7 @@ pygments==2.17.2 # via sphinx pyyaml==6.0.1 # via pybtex -requests==2.31.0 +requests==2.32.2 # via sphinx six==1.16.0 # via @@ -76,7 +72,5 @@ sphinxcontrib-qthelp==1.0.7 # via sphinx sphinxcontrib-serializinghtml==1.1.10 # via sphinx -urllib3==2.2.1 +urllib3==2.2.2 # via requests -zipp==3.17.0 - # via importlib-metadata diff --git a/doc/UserGuide/tables/UFS_unified_variables_table.csv b/doc/UserGuide/tables/UFS_unified_variables_table.csv index 1f835ae7e..f765c74e4 100644 --- a/doc/UserGuide/tables/UFS_unified_variables_table.csv +++ b/doc/UserGuide/tables/UFS_unified_variables_table.csv @@ -205,7 +205,7 @@ Particulate matter (PP10),pp10,pp10,3d,dyn,gocart_on=True Particulate matter (PM10),pm10,pp10,3d,dyn,nasa_on=True Dust emission fluxes (1-5),duem001/.../duem005,duem,2d,phy, all requested read into 3d array Dust sedimentation fluxes (1-5),dust1sd/.../dust5sd,dusd,2d, phy, all requested read into 3d array -Dust dry deposition fluxes (1-5),dust1dp/.../dust5dp,dupd,2d,phy, all requested read into 3d array +Dust dry deposition fluxes (1-5),dust1dp/.../dust5dp,dudp,2d,phy, all requested read into 3d array Dust wet deposition fluxes (1-5),dust1wtl/.../dust5wtl,duwt,2d,phy, all requested read into 3d array Dust scavenging fluxes (1-5),dust1wtc/.../dust5wtc,dusv,2d,phy, all requested read into 3d array Seasalt emission fluxes (1-5),ssem001/.../ssem005,ssem,2d,phy, all requested read into 3d array diff --git a/doc/user_guide.md b/doc/user_guide.md index 9514436c0..463f740f4 100644 --- a/doc/user_guide.md +++ b/doc/user_guide.md @@ -20,7 +20,7 @@ products. Output from the UPP is in National Weather Service (NWS) and World Meteorological Organization (WMO) GRIB2 format and can be used directly by visualization, plotting, or verification packages, or for further downstream post-processing, e.g. statistical post-processing -techniques. Examples of UPP products include: +techniques. Examples of UPP products include: - T, Z, humidity, wind, cloud water, cloud ice, rain, and snow on pressure levels - SLP, shelter level T, humidity, and wind fields @@ -33,5 +33,18 @@ techniques. Examples of UPP products include: - Radar reflectivity products - Satellite look-alike products -Support for the UFS UPP is provided through the UFS Forum by the -Developmental Testbed Center (DTC) for FV3-based applications. +**Prerequisites** +The UPP requires certain NCEPLIBS packages to be installed via the spack-stack project. For instructions on installing these packages as a bundle via spack-stack, see: https://spack-stack.readthedocs.io/en/latest/. The UPP/modulefiles directory indicates which package versions are used and supported on Level 1 systems. + +Community support for the Unified Forecast System (UFS) UPP in FV3-based applications is provided by the +Earth Prediction Innovation Center (EPIC). Community support for the UPP with WRF is no longer available. + +* Support for the UFS UPP is provided through [GitHub Discussions](https://github.com/NOAA-EMC/UPP/discussions). +* The UPP User's Guide for the latest standalone public release is [UPP v11.0.0](https://upp.readthedocs.io/en/upp_v11.0.0/). +* The UPP User's Guide for develop branch is [UPP develop](https://upp.readthedocs.io/en/develop/). +* The [UPP wiki](https://github.com/NOAA-EMC/UPP/wiki) includes relevant information and links for users and developers. +* Instructions on technical code documentation are available in a set of [Doxygen Documentation Slides](https://github.com/NOAA-EMC/UPP/wiki/DoxygenDocumentation.pdf). + +Code Managers: Wen Meng (EMC), Huiya Chuang (EMC), Fernando Andrade-Maldonado (EPIC) + + diff --git a/modulefiles/gaea.lua b/modulefiles/gaea.lua index 0e610cfd7..0330849a7 100644 --- a/modulefiles/gaea.lua +++ b/modulefiles/gaea.lua @@ -5,13 +5,7 @@ help([[ whatis([===[Loads libraries needed for building the UPP on Gaea ]===]) -load("PrgEnv-intel/8.3.3") -load("intel-classic/2023.1.0") -load("cray-mpich/8.1.25") -load("python/3.9.12") - -prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") -prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/modulefiles") +prepend_path("MODULEPATH", "/autofs/ncrc-svm1_proj/epic/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" load(pathJoin("stack-intel", stack_intel_ver)) @@ -19,8 +13,8 @@ load(pathJoin("stack-intel", stack_intel_ver)) stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.25" load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) -stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" -load(pathJoin("stack-python", stack_python_ver)) +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) load("upp_common") diff --git a/modulefiles/hercules.lua b/modulefiles/hercules.lua index da1722e68..2f42f5a79 100644 --- a/modulefiles/hercules.lua +++ b/modulefiles/hercules.lua @@ -3,7 +3,7 @@ Load environment to build UPP on hecules ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) @@ -14,8 +14,8 @@ load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) cmake_ver=os.getenv("cmake_ver") or "3.23.1" load(pathJoin("cmake", cmake_ver)) -stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" -load(pathJoin("stack-python", stack_python_ver)) +python_ver=os.getenv("python_ver") or "3.10.8" +load(pathJoin("python", python_ver)) load("upp_common") diff --git a/modulefiles/jet.lua b/modulefiles/jet.lua index a118c88aa..445659de9 100644 --- a/modulefiles/jet.lua +++ b/modulefiles/jet.lua @@ -2,7 +2,7 @@ help([[ Load environment to build UPP on Jet ]]) -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.6.0/envs/unified-env-rocky8/install/modulefiles/Core") +prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/noaacloud.lua b/modulefiles/noaacloud.lua new file mode 100644 index 000000000..fea49b784 --- /dev/null +++ b/modulefiles/noaacloud.lua @@ -0,0 +1,24 @@ +help([[ +Load environment to build UPP on NOAA Cloud +]]) + + +prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/contrib/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.3.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.3.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("upp_common") + +setenv("CC","mpiicc") +setenv("CXX","mpiicpc") +setenv("FC","mpiifort") + +whatis("Description: UPP build environment") diff --git a/modulefiles/orion.lua b/modulefiles/orion.lua index 669c260d9..372949fcb 100644 --- a/modulefiles/orion.lua +++ b/modulefiles/orion.lua @@ -3,17 +3,20 @@ Load environment to build UPP on orion ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") -stack_intel_ver=os.getenv("stack_intel_ver") or "2022.0.2" +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) -stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.1" +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.9.0" load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) cmake_ver=os.getenv("cmake_ver") or "3.23.1" load(pathJoin("cmake", cmake_ver)) +python_ver=os.getenv("python_ver") or "3.10.8" +load(pathJoin("python", python_ver)) + load("upp_common") setenv("CC","mpiicc") diff --git a/modulefiles/s4.lua b/modulefiles/s4.lua index 58faca1ba..ae37adc5c 100644 --- a/modulefiles/s4.lua +++ b/modulefiles/s4.lua @@ -5,7 +5,7 @@ -- --------------------------------------------------------------------------- -prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/data/prod/jedi/spack-stack/spack-stack-1.6.0/envs/upp-addon-env/install/modulefiles/Core") local stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" local stack_impi_ver=os.getenv("stack_impi_ver") or "2021.5.0" diff --git a/modulefiles/upp_common.lua b/modulefiles/upp_common.lua index 846b2d17a..b502415d7 100644 --- a/modulefiles/upp_common.lua +++ b/modulefiles/upp_common.lua @@ -9,7 +9,6 @@ local ufs_modules = { {["hdf5"] = "1.14.3"}, {["netcdf-c"] = "4.9.2"}, {["netcdf-fortran"] = "4.6.1"}, - {["parallelio"] = "2.6.2"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0.1"}, {["g2"] = "3.5.1"}, diff --git a/modulefiles/wcoss2.lua b/modulefiles/wcoss2.lua index eccb1d6df..2144d1b8f 100644 --- a/modulefiles/wcoss2.lua +++ b/modulefiles/wcoss2.lua @@ -23,8 +23,8 @@ load(pathJoin("jasper", jasper_ver)) load(pathJoin("libpng", libpng_ver)) load(pathJoin("zlib", zlib_ver)) -g2_ver=os.getenv("g2_ver") or "3.4.5" -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" +g2_ver=os.getenv("g2_ver") or "3.5.1" +g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.13.0" bacio_ver=os.getenv("bacio_ver") or "2.4.1" ip_ver=os.getenv("ip_ver") or "3.3.3" sp_ver=os.getenv("sp_ver") or "2.3.3" diff --git a/parm/CMakeLists.txt b/parm/CMakeLists.txt deleted file mode 100644 index 64e8bd8fc..000000000 --- a/parm/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -list(APPEND parmfiles - postxconfig-NT-GFS.txt - postxconfig-NT-GFS-F00.txt) - -install(FILES ${parmfiles} DESTINATION share) diff --git a/parm/POST-XML-Library-NT.pl b/parm/POST-XML-Library-NT.pl index baeb1c19b..0a58ec62c 100755 --- a/parm/POST-XML-Library-NT.pl +++ b/parm/POST-XML-Library-NT.pl @@ -93,6 +93,7 @@ scale_fact_fixed_sfc2_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale_fact_fixed_sfc2/text()', level2_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../level2/text()', aerosol_type_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../aerosol_type/text()', + prob_type_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../prob_type/text()', typ_intvl_size_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../typ_intvl_size/text()', scale_fact_1st_size_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale_fact_1st_size/text()', scale_val_1st_size_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale_val_1st_size/text()', @@ -103,6 +104,10 @@ scale_val_1st_wvlen_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale_val_1st_wvlen/text()', scale_fact_2nd_wvlen_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale_fact_2nd_wvlen/text()', scale_val_2nd_wvlen_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale_val_2nd_wvlen/text()', + scale_fact_lower_limit_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale_fact_lower_limit/text()', + scale_val_lower_limit_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale_val_lower_limit/text()', + scale_fact_upper_limit_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale_fact_upper_limit/text()', + scale_val_upper_limit_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale_val_upper_limit/text()', scale_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../scale/text()', stat_miss_val_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../stat_miss_val/text()', leng_time_range_prev_query => '/postxml/paramset/datset[text()=\'$inpone\']/../param/shortname[text()=\'$inptwo\']/../leng_time_range_prev/text()', @@ -129,6 +134,7 @@ scale_fact_fixed_sfc2_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale_fact_fixed_sfc2/text()', level2_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../level2/text()', aerosol_type_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../aerosol_type/text()', + prob_type_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../prob_type/text()', typ_intvl_size_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../typ_intvl_size/text()', scale_fact_1st_size_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale_fact_1st_size/text()', scale_val_1st_size_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale_val_1st_size/text()', @@ -139,6 +145,10 @@ scale_val_1st_wvlen_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale_val_1st_wvlen/text()', scale_fact_2nd_wvlen_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale_fact_2nd_wvlen/text()', scale_val_2nd_wvlen_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale_val_2nd_wvlen/text()', + scale_fact_lower_limit_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale_fact_lower_limit/text()', + scale_val_lower_limit_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale_val_lower_limit/text()', + scale_fact_upper_limit_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale_fact_upper_limit/text()', + scale_val_upper_limit_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale_val_upper_limit/text()', scale_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../scale/text()', stat_miss_val_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../stat_miss_val/text()', leng_time_range_prev_avil_query => '/postxml/post_avblflds/param/shortname[text()=\'$inpone\']/../leng_time_range_prev/text()', @@ -274,57 +284,72 @@ $xml_query_array[40][0] = "aerosol_type"; $xml_query_array[40][1] = aerosol_type_query; $xml_query_array[40][2] = "?"; - $xml_query_array[41][0] = "typ_intvl_size"; - $xml_query_array[41][1] = typ_intvl_size_query; + $xml_query_array[41][0] = "prob_type"; + $xml_query_array[41][1] = prob_type_query; $xml_query_array[41][2] = "?"; - $xml_query_array[42][0] = "scale_fact_1st_size"; - $xml_query_array[42][1] = scale_fact_1st_size_query; - $xml_query_array[42][2] = "0"; - $xml_query_array[43][0] = "scale_val_1st_size"; - $xml_query_array[43][1] = scale_val_1st_size_query; - $xml_query_array[43][2] = "0.0"; - $xml_query_array[44][0] = "scale_fact_2nd_size"; - $xml_query_array[44][1] = scale_fact_2nd_size_query; - $xml_query_array[44][2] = "0"; - $xml_query_array[45][0] = "scale_val_2nd_size"; - $xml_query_array[45][1] = scale_val_2nd_size_query; - $xml_query_array[45][2] = "0.0"; - $xml_query_array[46][0] = "typ_intvl_wvlen"; - $xml_query_array[46][1] = typ_intvl_wvlen_query; - $xml_query_array[46][2] = "?"; - $xml_query_array[47][0] = "scale_fact_1st_wvlen"; - $xml_query_array[47][1] = scale_fact_1st_wvlen_query; - $xml_query_array[47][2] = "0"; - $xml_query_array[48][0] = "scale_val_1st_wvlen"; - $xml_query_array[48][1] = scale_val_1st_wvlen_query; - $xml_query_array[48][2] = "0.0"; - $xml_query_array[49][0] = "scale_fact_2nd_wvlen"; - $xml_query_array[49][1] = scale_fact_2nd_wvlen_query; - $xml_query_array[49][2] = "0"; - $xml_query_array[50][0] = "scale_val_2nd_wvlen"; - $xml_query_array[50][1] = scale_val_2nd_wvlen_query; - $xml_query_array[50][2] = "0.0"; - $xml_query_array[51][0] = "scale"; - $xml_query_array[51][1] = scale_query; - $xml_query_array[51][2] = "?"; - $xml_query_array[52][0] = "stat_miss_val"; - $xml_query_array[52][1] = stat_miss_val_query; + $xml_query_array[42][0] = "typ_intvl_size"; + $xml_query_array[42][1] = typ_intvl_size_query; + $xml_query_array[42][2] = "?"; + $xml_query_array[43][0] = "scale_fact_1st_size"; + $xml_query_array[43][1] = scale_fact_1st_size_query; + $xml_query_array[43][2] = "0"; + $xml_query_array[44][0] = "scale_val_1st_size"; + $xml_query_array[44][1] = scale_val_1st_size_query; + $xml_query_array[44][2] = "0.0"; + $xml_query_array[45][0] = "scale_fact_2nd_size"; + $xml_query_array[45][1] = scale_fact_2nd_size_query; + $xml_query_array[45][2] = "0"; + $xml_query_array[46][0] = "scale_val_2nd_size"; + $xml_query_array[46][1] = scale_val_2nd_size_query; + $xml_query_array[46][2] = "0.0"; + $xml_query_array[47][0] = "typ_intvl_wvlen"; + $xml_query_array[47][1] = typ_intvl_wvlen_query; + $xml_query_array[47][2] = "?"; + $xml_query_array[48][0] = "scale_fact_1st_wvlen"; + $xml_query_array[48][1] = scale_fact_1st_wvlen_query; + $xml_query_array[48][2] = "0"; + $xml_query_array[49][0] = "scale_val_1st_wvlen"; + $xml_query_array[49][1] = scale_val_1st_wvlen_query; + $xml_query_array[49][2] = "0.0"; + $xml_query_array[50][0] = "scale_fact_2nd_wvlen"; + $xml_query_array[50][1] = scale_fact_2nd_wvlen_query; + $xml_query_array[50][2] = "0"; + $xml_query_array[51][0] = "scale_val_2nd_wvlen"; + $xml_query_array[51][1] = scale_val_2nd_wvlen_query; + $xml_query_array[51][2] = "0.0"; + $xml_query_array[52][0] = "scale_fact_lower_limit"; + $xml_query_array[52][1] = scale_fact_lower_limit_query; $xml_query_array[52][2] = "0"; - $xml_query_array[53][0] = "leng_time_range_prev"; - $xml_query_array[53][1] = leng_time_range_prev_query; - $xml_query_array[53][2] = "0"; - $xml_query_array[54][0] = "time_inc_betwn_succ_fld"; - $xml_query_array[54][1] = time_inc_betwn_succ_fld_query; + $xml_query_array[53][0] = "scale_val_lower_limit"; + $xml_query_array[53][1] = scale_val_lower_limit_query; + $xml_query_array[53][2] = "0.0"; + $xml_query_array[54][0] = "scale_fact_upper_limit"; + $xml_query_array[54][1] = scale_fact_upper_limit_query; $xml_query_array[54][2] = "0"; - $xml_query_array[55][0] = "type_of_time_inc"; - $xml_query_array[55][1] = type_of_time_inc_query; - $xml_query_array[55][2] = "?"; - $xml_query_array[56][0] = "stat_unit_time_key_succ"; - $xml_query_array[56][1] = stat_unit_time_key_succ_query; + $xml_query_array[55][0] = "scale_val_upper_limit"; + $xml_query_array[55][1] = scale_val_upper_limit_query; + $xml_query_array[55][2] = "0.0"; + $xml_query_array[56][0] = "scale"; + $xml_query_array[56][1] = scale_query; $xml_query_array[56][2] = "?"; - $xml_query_array[57][0] = "bit_map_flag"; - $xml_query_array[57][1] = bit_map_flag_query; - $xml_query_array[57][2] = "?"; + $xml_query_array[57][0] = "stat_miss_val"; + $xml_query_array[57][1] = stat_miss_val_query; + $xml_query_array[57][2] = "0"; + $xml_query_array[58][0] = "leng_time_range_prev"; + $xml_query_array[58][1] = leng_time_range_prev_query; + $xml_query_array[58][2] = "0"; + $xml_query_array[59][0] = "time_inc_betwn_succ_fld"; + $xml_query_array[59][1] = time_inc_betwn_succ_fld_query; + $xml_query_array[59][2] = "0"; + $xml_query_array[60][0] = "type_of_time_inc"; + $xml_query_array[60][1] = type_of_time_inc_query; + $xml_query_array[60][2] = "?"; + $xml_query_array[61][0] = "stat_unit_time_key_succ"; + $xml_query_array[61][1] = stat_unit_time_key_succ_query; + $xml_query_array[61][2] = "?"; + $xml_query_array[62][0] = "bit_map_flag"; + $xml_query_array[62][1] = bit_map_flag_query; + $xml_query_array[62][2] = "?"; #-------------------------------------------------------------- # param section in available table @@ -373,57 +398,72 @@ $xml_query_array[80][0] = "aerosol_type"; $xml_query_array[80][1] = aerosol_type_avil_query; $xml_query_array[80][2] = "?"; - $xml_query_array[81][0] = "typ_intvl_size"; - $xml_query_array[81][1] = typ_intvl_size_avil_query; + $xml_query_array[81][0] = "prob_type"; + $xml_query_array[81][1] = prob_type_avil_query; $xml_query_array[81][2] = "?"; - $xml_query_array[82][0] = "scale_fact_1st_size"; - $xml_query_array[82][1] = scale_fact_1st_size_avil_query; - $xml_query_array[82][2] = "0"; - $xml_query_array[83][0] = "scale_val_1st_size"; - $xml_query_array[83][1] = scale_val_1st_size_avil_query; - $xml_query_array[83][2] = "0.0"; - $xml_query_array[84][0] = "scale_fact_2nd_size"; - $xml_query_array[84][1] = scale_fact_2nd_size_avil_query; - $xml_query_array[84][2] = "0"; - $xml_query_array[85][0] = "scale_val_2nd_size"; - $xml_query_array[85][1] = scale_val_2nd_size_avil_query; - $xml_query_array[85][2] = "0.0"; - $xml_query_array[86][0] = "typ_intvl_wvlen"; - $xml_query_array[86][1] = typ_intvl_wvlen_avil_query; - $xml_query_array[86][2] = "?"; - $xml_query_array[87][0] = "scale_fact_1st_wvlen"; - $xml_query_array[87][1] = scale_fact_1st_wvlen_avil_query; - $xml_query_array[87][2] = "0"; - $xml_query_array[88][0] = "scale_val_1st_wvlen"; - $xml_query_array[88][1] = scale_val_1st_wvlen_avil_query; - $xml_query_array[88][2] = "0.0"; - $xml_query_array[89][0] = "scale_fact_2nd_wvlen"; - $xml_query_array[89][1] = scale_fact_2nd_wvlen_avil_query; - $xml_query_array[89][2] = "0"; - $xml_query_array[90][0] = "scale_val_2nd_wvlen"; - $xml_query_array[90][1] = scale_val_2nd_wvlen_avil_query; - $xml_query_array[90][2] = "0.0"; - $xml_query_array[91][0] = "scale"; - $xml_query_array[91][1] = scale_avil_query; - $xml_query_array[91][2] = "?"; - $xml_query_array[92][0] = "stat_miss_val"; - $xml_query_array[92][1] = stat_miss_val_avil_query; + $xml_query_array[82][0] = "typ_intvl_size"; + $xml_query_array[82][1] = typ_intvl_size_avil_query; + $xml_query_array[82][2] = "?"; + $xml_query_array[83][0] = "scale_fact_1st_size"; + $xml_query_array[83][1] = scale_fact_1st_size_avil_query; + $xml_query_array[83][2] = "0"; + $xml_query_array[84][0] = "scale_val_1st_size"; + $xml_query_array[84][1] = scale_val_1st_size_avil_query; + $xml_query_array[84][2] = "0.0"; + $xml_query_array[85][0] = "scale_fact_2nd_size"; + $xml_query_array[85][1] = scale_fact_2nd_size_avil_query; + $xml_query_array[85][2] = "0"; + $xml_query_array[86][0] = "scale_val_2nd_size"; + $xml_query_array[86][1] = scale_val_2nd_size_avil_query; + $xml_query_array[86][2] = "0.0"; + $xml_query_array[87][0] = "typ_intvl_wvlen"; + $xml_query_array[87][1] = typ_intvl_wvlen_avil_query; + $xml_query_array[87][2] = "?"; + $xml_query_array[88][0] = "scale_fact_1st_wvlen"; + $xml_query_array[88][1] = scale_fact_1st_wvlen_avil_query; + $xml_query_array[88][2] = "0"; + $xml_query_array[89][0] = "scale_val_1st_wvlen"; + $xml_query_array[89][1] = scale_val_1st_wvlen_avil_query; + $xml_query_array[89][2] = "0.0"; + $xml_query_array[90][0] = "scale_fact_2nd_wvlen"; + $xml_query_array[90][1] = scale_fact_2nd_wvlen_avil_query; + $xml_query_array[90][2] = "0"; + $xml_query_array[91][0] = "scale_val_2nd_wvlen"; + $xml_query_array[91][1] = scale_val_2nd_wvlen_avil_query; + $xml_query_array[91][2] = "0.0"; + $xml_query_array[92][0] = "scale_fact_lower_limit"; + $xml_query_array[92][1] = scale_fact_lower_limit_avil_query; $xml_query_array[92][2] = "0"; - $xml_query_array[93][0] = "leng_time_range_prev"; - $xml_query_array[93][1] = leng_time_range_prev_avil_query; - $xml_query_array[93][2] = "0"; - $xml_query_array[94][0] = "time_inc_betwn_succ_fld"; - $xml_query_array[94][1] = time_inc_betwn_succ_fld_avil_query; + $xml_query_array[93][0] = "scale_val_lower_limit"; + $xml_query_array[93][1] = scale_val_lower_limit_avil_query; + $xml_query_array[93][2] = "0.0"; + $xml_query_array[94][0] = "scale_fact_upper_limit"; + $xml_query_array[94][1] = scale_fact_upper_limit_avil_query; $xml_query_array[94][2] = "0"; - $xml_query_array[95][0] = "type_of_time_inc"; - $xml_query_array[95][1] = type_of_time_inc_avil_query; - $xml_query_array[95][2] = "?"; - $xml_query_array[96][0] = "stat_unit_time_key_succ"; - $xml_query_array[96][1] = stat_unit_time_key_succ_avil_query; + $xml_query_array[95][0] = "scale_val_upper_limit"; + $xml_query_array[95][1] = scale_val_upper_limit_avil_query; + $xml_query_array[95][2] = "0.0"; + $xml_query_array[96][0] = "scale"; + $xml_query_array[96][1] = scale_avil_query; $xml_query_array[96][2] = "?"; - $xml_query_array[97][0] = "bit_map_flag"; - $xml_query_array[97][1] = bit_map_flag_avil_query; - $xml_query_array[97][2] = "?"; + $xml_query_array[97][0] = "stat_miss_val"; + $xml_query_array[97][1] = stat_miss_val_avil_query; + $xml_query_array[97][2] = "0"; + $xml_query_array[98][0] = "leng_time_range_prev"; + $xml_query_array[98][1] = leng_time_range_prev_avil_query; + $xml_query_array[98][2] = "0"; + $xml_query_array[99][0] = "time_inc_betwn_succ_fld"; + $xml_query_array[99][1] = time_inc_betwn_succ_fld_avil_query; + $xml_query_array[99][2] = "0"; + $xml_query_array[100][0] = "type_of_time_inc"; + $xml_query_array[100][1] = type_of_time_inc_avil_query; + $xml_query_array[100][2] = "?"; + $xml_query_array[101][0] = "stat_unit_time_key_succ"; + $xml_query_array[101][1] = stat_unit_time_key_succ_avil_query; + $xml_query_array[101][2] = "?"; + $xml_query_array[102][0] = "bit_map_flag"; + $xml_query_array[102][1] = bit_map_flag_avil_query; + $xml_query_array[102][2] = "?"; #-------------------------------------------------------------- # use XML LibXML package @@ -763,7 +803,7 @@ sub constract_ctrl_elements { # read all param elements from ctrl file # set record found counter # record found element data in $xml_query_array[$emt_ctrl_main][4] -# loop from array # 26-57 (see above) +# loop from array # 26-62 (see above) #-------------------------------------------------------------- my $param_ctrl_count=26; @@ -837,7 +877,7 @@ sub constract_ctrl_elements { $number_space_found = () = $tmp_regex_st =~/\s/g; $level2_array_count=$number_space_found+1; } - if ($param_ctrl_count == 51) { + if ($param_ctrl_count == 56) { $tmp_regex_st=~ s/\s{2}//g; $number_space_found = () = $tmp_regex_st =~/\s/g; $scale_array_count=$number_space_found+1; @@ -857,7 +897,7 @@ sub constract_ctrl_elements { $param_ctrl_count ++; - } while ($param_ctrl_count<=57); + } while ($param_ctrl_count<=62); #-------------------------------------------------------------- # Store in short name @@ -869,7 +909,7 @@ sub constract_ctrl_elements { # loop through counter array element in ctrl param data # read all param elements from avil file if not found in ctrl param section # set record found in array in "ctrl counter" - $xml_query_array[$emt_ctrl_main][4] -# loop from array # 66-97 (see above) +# loop from array # 66-102 (see above) #-------------------------------------------------------------- my $param_avil_count=66; @@ -932,7 +972,7 @@ sub constract_ctrl_elements { $number_space_found = () = $tmp_regex_st =~/\s/g; $level2_array_count=$number_space_found+1; } - if ($param_avil_count == 91) { + if ($param_avil_count == 96) { $tmp_regex_st=~ s/\s{2}//g; $number_space_found = () = $tmp_regex_st =~/\s/g; $scale_array_count=$number_space_found+1; @@ -943,7 +983,7 @@ sub constract_ctrl_elements { $param_avil_count ++; - } while ($param_avil_count<=97); + } while ($param_avil_count<=102); #-------------------------------------------------------------- # loop through all param section on ctrl array find those not found @@ -983,7 +1023,7 @@ sub constract_ctrl_elements { push (@output_resultset_list, constract_string_txt("level2_array_count",$level2_array_count)); $level2_array_count=0; } - if ($all_param_count == 51) { + if ($all_param_count == 56) { push (@output_resultset_list, constract_string_txt("scale_array_count",$scale_array_count)); $scale_array_count=0; } @@ -998,7 +1038,7 @@ sub constract_ctrl_elements { $xml_query_array[$all_param_count][4]=""; $all_param_count ++; - } while ($all_param_count<=57); + } while ($all_param_count<=62); } diff --git a/parm/README.make_flatfile b/parm/README.make_flatfile index a38db9ab6..e7befc1e5 100644 --- a/parm/README.make_flatfile +++ b/parm/README.make_flatfile @@ -6,14 +6,14 @@ To make a .txt flat file for UPP, follow these steps within the parm/ directory: 2) Select, then validate, the associated "postcntrl" file, e.g., - xmllint --noout --schema EMC_POST_CTRL_Schema.xsd fv3lam_rrfs.xml + xmllint --noout --schema EMC_POST_CTRL_Schema.xsd rrfs_postcntrl.xml 3) If file validation succeeds in steps (1) and (2), generate the .txt flat file, e.g., - perl PostXMLPreprocessor.pl fv3lam_rrfs.xml post_avblflds.xml postxconfig-NT-fv3lam_rrfs.txt + perl PostXMLPreprocessor.pl rrfs_postcntrl.xml post_avblflds.xml postxconfig-NT-rrfs.txt - In this example, "fv3lam_rrfs.xml" and "fv3lam_post_avblflds.xml" are input files, read by the perl - script. The "postxconfig-NT-fv3lam_rrfs.txt" flat file is the output file produced by the script, which + In this example, "rrfs_postcntrl.xml" and "post_avblflds.xml" are input files, read by the perl + script. The "postxconfig-NT-rrfs.txt" flat file is the output file produced by the script, which can have any name. Note that a log file will be created by this script, in addition to the flat file. diff --git a/parm/postcntrl_gefs.xml b/parm/gefs/postcntrl_gefs.xml similarity index 100% rename from parm/postcntrl_gefs.xml rename to parm/gefs/postcntrl_gefs.xml diff --git a/parm/postcntrl_gefs_aerosol.xml b/parm/gefs/postcntrl_gefs_aerosol.xml similarity index 100% rename from parm/postcntrl_gefs_aerosol.xml rename to parm/gefs/postcntrl_gefs_aerosol.xml diff --git a/parm/postcntrl_gefs_aerosol_f00.xml b/parm/gefs/postcntrl_gefs_aerosol_f00.xml similarity index 100% rename from parm/postcntrl_gefs_aerosol_f00.xml rename to parm/gefs/postcntrl_gefs_aerosol_f00.xml diff --git a/parm/postcntrl_gefs_chem.xml b/parm/gefs/postcntrl_gefs_chem.xml similarity index 100% rename from parm/postcntrl_gefs_chem.xml rename to parm/gefs/postcntrl_gefs_chem.xml diff --git a/parm/postcntrl_gefs_f00.xml b/parm/gefs/postcntrl_gefs_f00.xml similarity index 100% rename from parm/postcntrl_gefs_f00.xml rename to parm/gefs/postcntrl_gefs_f00.xml diff --git a/parm/postcntrl_gefs_wafs.xml b/parm/gefs/postcntrl_gefs_wafs.xml similarity index 100% rename from parm/postcntrl_gefs_wafs.xml rename to parm/gefs/postcntrl_gefs_wafs.xml diff --git a/parm/postxconfig-NT-GEFS-aerosol.txt b/parm/gefs/postxconfig-NT-gefs-aerosol.txt similarity index 91% rename from parm/postxconfig-NT-GEFS-aerosol.txt rename to parm/gefs/postxconfig-NT-gefs-aerosol.txt index 43b0cc5a0..43ee26abc 100644 --- a/parm/postxconfig-NT-GEFS-aerosol.txt +++ b/parm/gefs/postxconfig-NT-gefs-aerosol.txt @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -407,6 +457,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -518,6 +583,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -555,6 +625,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -592,6 +667,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -629,6 +709,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -666,6 +751,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -703,6 +793,7 @@ surface ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -740,6 +835,7 @@ surface ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -777,6 +877,7 @@ surface ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -851,6 +961,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -888,6 +1003,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1036,6 +1171,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1073,6 +1213,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1258,6 +1423,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1332,6 +1507,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1369,6 +1549,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1443,6 +1633,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1480,6 +1675,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1517,6 +1717,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1554,6 +1759,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1628,6 +1843,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1885,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1702,6 +1927,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1739,6 +1969,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1776,6 +2011,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1813,6 +2053,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1850,6 +2095,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1887,6 +2137,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1896,6 +2147,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1924,6 +2179,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1961,6 +2221,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1998,6 +2263,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2035,6 +2305,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2072,6 +2347,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2109,6 +2389,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2146,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2183,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2220,6 +2515,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2229,6 +2525,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2257,6 +2557,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2266,6 +2567,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2294,6 +2599,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2303,6 +2609,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2331,6 +2641,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2340,6 +2651,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2368,6 +2683,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2377,6 +2693,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2405,6 +2725,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2414,6 +2735,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2442,6 +2767,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2451,6 +2777,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2479,6 +2809,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2488,6 +2819,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2516,6 +2851,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2525,6 +2861,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2553,6 +2893,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2562,6 +2903,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2590,6 +2935,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2599,6 +2945,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2627,6 +2977,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2636,6 +2987,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2664,6 +3019,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2673,6 +3029,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2701,6 +3061,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2710,6 +3071,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2738,6 +3103,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2747,6 +3113,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2775,6 +3145,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2784,6 +3155,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2812,6 +3187,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2821,6 +3197,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2849,6 +3229,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2858,6 +3239,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2886,6 +3271,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2895,6 +3281,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2923,6 +3313,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2932,6 +3323,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2960,6 +3355,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2969,6 +3365,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2997,6 +3397,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3006,6 +3407,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3034,6 +3439,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3043,6 +3449,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3071,6 +3481,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3080,6 +3491,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3108,6 +3523,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3117,6 +3533,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3145,6 +3565,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3154,6 +3575,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3182,6 +3607,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3191,6 +3617,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3219,6 +3649,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3228,6 +3659,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3256,6 +3691,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3265,6 +3701,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3293,6 +3733,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3302,6 +3743,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3330,6 +3775,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3339,6 +3785,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3367,6 +3817,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3376,6 +3827,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3404,6 +3859,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -3413,6 +3869,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3441,6 +3901,7 @@ RH ? ? ? +? 0 0.0 0 @@ -3450,6 +3911,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3478,6 +3943,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3487,6 +3953,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3515,6 +3985,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3524,6 +3995,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3552,6 +4027,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3561,6 +4037,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3589,6 +4069,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3598,6 +4079,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3626,6 +4111,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3635,6 +4121,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3663,6 +4153,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3672,6 +4163,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3700,6 +4195,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3709,6 +4205,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3737,6 +4237,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3746,6 +4247,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3774,6 +4279,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3783,6 +4289,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3811,6 +4321,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3820,7 +4331,11 @@ sigma_lvl 0.0 0 0.0 -1 +0 +0.0 +0 +0.0 +1 2.0 0 0 @@ -3848,6 +4363,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3857,6 +4373,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3885,6 +4405,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -3894,6 +4415,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3922,6 +4447,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -3931,6 +4457,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3959,6 +4489,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3968,6 +4499,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3996,6 +4531,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4005,6 +4541,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4033,6 +4573,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4042,6 +4583,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4070,6 +4615,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4079,6 +4625,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4107,6 +4657,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4116,6 +4667,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4144,6 +4699,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4153,6 +4709,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4181,6 +4741,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4190,6 +4751,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4218,6 +4783,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4227,6 +4793,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4255,6 +4825,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4264,6 +4835,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4292,6 +4867,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4301,6 +4877,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4329,6 +4909,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4338,6 +4919,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4366,6 +4951,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4375,6 +4961,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4403,6 +4993,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4412,6 +5003,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4440,6 +5035,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4449,6 +5045,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4477,6 +5077,7 @@ low_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4486,6 +5087,10 @@ low_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4514,6 +5119,7 @@ mid_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4523,6 +5129,10 @@ mid_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4551,6 +5161,7 @@ high_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4560,6 +5171,10 @@ high_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4588,6 +5203,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4597,6 +5213,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4625,6 +5245,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4634,6 +5255,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4662,6 +5287,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4671,6 +5297,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4699,6 +5329,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4708,6 +5339,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4736,6 +5371,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4745,6 +5381,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4773,6 +5413,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4782,6 +5423,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4810,6 +5455,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4819,6 +5465,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -4847,6 +5497,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4856,6 +5507,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4884,6 +5539,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4893,6 +5549,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -4921,6 +5581,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4930,6 +5591,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4958,6 +5623,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4967,6 +5633,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4995,6 +5665,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5004,6 +5675,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5032,6 +5707,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5041,6 +5717,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5069,6 +5749,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5078,6 +5759,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5106,6 +5791,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5115,6 +5801,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5143,6 +5833,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5152,6 +5843,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5180,6 +5875,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5189,6 +5885,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5217,6 +5917,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5226,6 +5927,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5254,6 +5959,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5263,6 +5969,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5291,6 +6001,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5300,6 +6011,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5328,6 +6043,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5337,6 +6053,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5365,6 +6085,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5374,6 +6095,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5402,6 +6127,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5411,6 +6137,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5439,6 +6169,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5448,6 +6179,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5476,6 +6211,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5485,6 +6221,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5513,6 +6253,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5522,6 +6263,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5550,6 +6295,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5559,6 +6305,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5587,6 +6337,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5596,6 +6347,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5624,6 +6379,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5633,6 +6389,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5661,6 +6421,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5670,6 +6431,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5698,6 +6463,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5707,6 +6473,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5735,6 +6505,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -5744,6 +6515,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5772,6 +6547,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5781,6 +6557,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5809,6 +6589,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5818,6 +6599,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5846,11 +6631,16 @@ planetary_bound_lyr ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -5883,6 +6673,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -5892,6 +6683,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5920,6 +6715,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -5929,6 +6725,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5957,6 +6757,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5966,6 +6767,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -5994,6 +6799,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6003,6 +6809,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6031,6 +6841,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6040,6 +6851,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6068,6 +6883,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6077,6 +6893,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6105,6 +6925,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6114,6 +6935,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6142,6 +6967,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -6151,6 +6977,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6179,6 +7009,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6188,6 +7019,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6216,6 +7051,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6225,6 +7061,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6253,6 +7093,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6262,6 +7103,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6290,6 +7135,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6299,6 +7145,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6327,6 +7177,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6336,6 +7187,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6364,6 +7219,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6373,6 +7229,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6400,6 +7260,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 2 @@ -6410,6 +7271,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6437,6 +7302,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 20 @@ -6447,6 +7313,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6474,6 +7344,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 36 @@ -6484,6 +7355,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6511,6 +7386,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 60 @@ -6521,6 +7397,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6548,6 +7428,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 120 @@ -6558,6 +7439,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6585,6 +7470,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 8 6 @@ -6595,6 +7481,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6622,6 +7512,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 2 @@ -6632,6 +7523,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6659,6 +7554,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 10 @@ -6669,6 +7565,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6696,6 +7596,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 30 @@ -6706,6 +7607,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6733,6 +7638,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 100 @@ -6743,6 +7649,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6770,6 +7680,7 @@ hybrid_lvl 0 ? black_carbon_hydrophilic +? equall_to_first_limit 10 236 @@ -6780,6 +7691,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6807,6 +7722,7 @@ hybrid_lvl 0 ? black_carbon_hydrophobic +? equall_to_first_limit 10 236 @@ -6817,6 +7733,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6844,6 +7764,7 @@ hybrid_lvl 0 ? particulate_org_matter_hydrophilic +? equall_to_first_limit 10 424 @@ -6854,6 +7775,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6881,6 +7806,7 @@ hybrid_lvl 0 ? particulate_org_matter_hydrophobic +? equall_to_first_limit 10 424 @@ -6891,6 +7817,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6918,6 +7848,7 @@ hybrid_lvl 0 ? sulphate_dry +? equall_to_first_limit 9 139 @@ -6928,6 +7859,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -6955,6 +7890,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -6965,6 +7901,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -6992,6 +7932,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -7002,6 +7943,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7029,6 +7974,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -7039,6 +7985,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7066,6 +8016,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -7076,6 +8027,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7103,6 +8058,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -7113,6 +8069,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7140,6 +8100,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -7150,6 +8111,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7177,6 +8142,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -7187,6 +8153,10 @@ between_first_second_limit 545 9 565 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7214,6 +8184,7 @@ surface 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -7224,6 +8195,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7251,6 +8226,7 @@ surface 0 ? dust_dry +? smaller_than_first_limit 6 10 @@ -7261,6 +8237,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7288,6 +8268,7 @@ surface 0 ? sea_salt_dry +? smaller_than_first_limit 7 25 @@ -7298,6 +8279,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7325,6 +8310,7 @@ surface 0 ? total_aerosol +? smaller_than_first_limit 6 10 @@ -7335,6 +8321,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7362,6 +8352,7 @@ surface 0 ? total_aerosol +? smaller_than_first_limit 7 25 @@ -7372,6 +8363,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7399,6 +8394,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 10 @@ -7409,6 +8405,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7436,6 +8436,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 7 25 @@ -7446,6 +8447,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7473,6 +8478,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -7483,6 +8489,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7510,6 +8520,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 7 25 @@ -7520,6 +8531,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7547,6 +8562,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 10 236 @@ -7557,6 +8573,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7584,6 +8604,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 10 424 @@ -7594,6 +8615,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7621,6 +8646,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 7 25 @@ -7631,6 +8657,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7659,6 +8689,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7668,6 +8699,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7696,6 +8731,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7705,6 +8741,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7733,6 +8773,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7742,6 +8783,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 diff --git a/parm/postxconfig-NT-gefs-chem.txt b/parm/gefs/postxconfig-NT-gefs-chem.txt similarity index 100% rename from parm/postxconfig-NT-gefs-chem.txt rename to parm/gefs/postxconfig-NT-gefs-chem.txt diff --git a/parm/postxconfig-NT-GEFS-F00-aerosol.txt b/parm/gefs/postxconfig-NT-gefs-f00-aerosol.txt similarity index 92% rename from parm/postxconfig-NT-GEFS-F00-aerosol.txt rename to parm/gefs/postxconfig-NT-gefs-f00-aerosol.txt index b5e2b750b..c619d0e90 100644 --- a/parm/postxconfig-NT-GEFS-F00-aerosol.txt +++ b/parm/gefs/postxconfig-NT-gefs-f00-aerosol.txt @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -407,6 +457,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -518,6 +583,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -555,6 +625,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -592,6 +667,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -629,6 +709,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -666,6 +751,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -703,6 +793,7 @@ surface ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -740,6 +835,7 @@ surface ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -777,6 +877,7 @@ surface ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -851,6 +961,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -888,6 +1003,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1036,6 +1171,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1073,6 +1213,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1258,6 +1423,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1332,6 +1507,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1369,6 +1549,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1443,6 +1633,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1480,6 +1675,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1517,6 +1717,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1554,6 +1759,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1628,6 +1843,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1885,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1702,6 +1927,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1739,6 +1969,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1776,6 +2011,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1813,6 +2053,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1850,6 +2095,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1887,6 +2137,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -1896,6 +2147,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1924,6 +2179,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1961,6 +2221,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1998,6 +2263,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2035,6 +2305,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2072,6 +2347,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2109,6 +2389,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2146,6 +2431,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2183,6 +2473,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2220,6 +2515,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2229,6 +2525,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2257,6 +2557,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2266,6 +2567,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2294,6 +2599,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2303,6 +2609,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2331,6 +2641,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2340,6 +2651,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2368,6 +2683,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2377,6 +2693,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2405,6 +2725,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -2414,6 +2735,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2442,6 +2767,7 @@ RH ? ? ? +? 0 0.0 0 @@ -2451,6 +2777,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2479,6 +2809,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2488,6 +2819,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2516,6 +2851,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2525,6 +2861,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2553,6 +2893,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2562,6 +2903,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2590,6 +2935,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2599,6 +2945,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2627,6 +2977,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2636,6 +2987,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2664,6 +3019,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2673,6 +3029,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2701,6 +3061,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2710,6 +3071,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2738,6 +3103,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2747,6 +3113,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2775,6 +3145,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2784,6 +3155,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2812,6 +3187,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -2821,6 +3197,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2849,6 +3229,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -2858,6 +3239,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2886,6 +3271,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -2895,6 +3281,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2923,6 +3313,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -2932,6 +3323,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2960,6 +3355,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -2969,6 +3365,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2997,6 +3397,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3006,6 +3407,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3034,6 +3439,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3043,6 +3449,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3071,6 +3481,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3080,6 +3491,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3108,6 +3523,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3117,6 +3533,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3145,6 +3565,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3154,6 +3575,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3182,6 +3607,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3191,6 +3617,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3219,6 +3649,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3228,6 +3659,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3256,6 +3691,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3265,6 +3701,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3293,6 +3733,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3302,6 +3743,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3330,6 +3775,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3339,6 +3785,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3367,6 +3817,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3376,6 +3827,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3404,6 +3859,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3413,6 +3869,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3441,6 +3901,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3450,6 +3911,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3478,6 +3943,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3487,6 +3953,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3515,6 +3985,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3524,6 +3995,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3552,6 +4027,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3561,6 +4037,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3589,6 +4069,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -3598,6 +4079,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3626,6 +4111,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3635,6 +4121,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3663,6 +4153,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3672,6 +4163,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3700,6 +4195,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3709,6 +4205,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3737,6 +4237,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3746,6 +4247,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3774,6 +4279,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3783,6 +4289,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3811,6 +4321,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3820,6 +4331,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3848,6 +4363,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3857,6 +4373,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3885,6 +4405,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3894,6 +4415,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3922,6 +4447,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3931,6 +4457,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3959,6 +4489,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3968,6 +4499,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3996,6 +4531,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4005,6 +4541,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4033,6 +4573,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4042,6 +4583,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4070,6 +4615,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4079,6 +4625,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4107,6 +4657,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4116,6 +4667,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4144,6 +4699,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -4153,6 +4709,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4181,6 +4741,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4190,6 +4751,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4218,11 +4783,16 @@ planetary_bound_lyr ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -4255,6 +4825,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4264,6 +4835,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4292,6 +4867,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4301,6 +4877,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4329,6 +4909,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4338,6 +4919,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4366,6 +4951,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4375,6 +4961,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4403,6 +4993,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4412,6 +5003,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4440,6 +5035,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4449,6 +5045,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4477,6 +5077,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4486,6 +5087,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4514,6 +5119,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -4523,6 +5129,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4551,6 +5161,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4560,6 +5171,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4588,6 +5203,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4597,6 +5213,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4625,6 +5245,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4634,6 +5255,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4662,6 +5287,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4671,6 +5297,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4699,6 +5329,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4708,6 +5339,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4736,6 +5371,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4745,6 +5381,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4772,6 +5412,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 2 @@ -4782,6 +5423,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -4809,6 +5454,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 20 @@ -4819,6 +5465,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -4846,6 +5496,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 36 @@ -4856,6 +5507,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -4883,6 +5538,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 60 @@ -4893,6 +5549,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -4920,6 +5580,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 120 @@ -4930,6 +5591,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -4957,6 +5622,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 8 6 @@ -4967,6 +5633,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -4994,6 +5664,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 2 @@ -5004,6 +5675,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -5031,6 +5706,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 10 @@ -5041,6 +5717,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -5068,6 +5748,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 30 @@ -5078,6 +5759,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -5105,6 +5790,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 100 @@ -5115,6 +5801,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -5142,6 +5832,7 @@ hybrid_lvl 0 ? black_carbon_hydrophilic +? equall_to_first_limit 10 236 @@ -5152,6 +5843,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -5179,6 +5874,7 @@ hybrid_lvl 0 ? black_carbon_hydrophobic +? equall_to_first_limit 10 236 @@ -5189,6 +5885,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -5216,6 +5916,7 @@ hybrid_lvl 0 ? particulate_org_matter_hydrophilic +? equall_to_first_limit 10 424 @@ -5226,6 +5927,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -5253,6 +5958,7 @@ hybrid_lvl 0 ? particulate_org_matter_hydrophobic +? equall_to_first_limit 10 424 @@ -5263,6 +5969,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -5290,6 +6000,7 @@ hybrid_lvl 0 ? sulphate_dry +? equall_to_first_limit 9 139 @@ -5300,6 +6011,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -5327,6 +6042,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -5337,6 +6053,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5364,6 +6084,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -5374,6 +6095,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5401,6 +6126,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -5411,6 +6137,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5438,6 +6168,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -5448,6 +6179,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5475,6 +6210,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -5485,6 +6221,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5512,6 +6252,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -5522,6 +6263,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5549,6 +6294,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -5559,6 +6305,10 @@ between_first_second_limit 545 9 565 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5586,6 +6336,7 @@ surface 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -5596,6 +6347,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5623,6 +6378,7 @@ surface 0 ? dust_dry +? smaller_than_first_limit 6 10 @@ -5633,6 +6389,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5660,6 +6420,7 @@ surface 0 ? sea_salt_dry +? smaller_than_first_limit 7 25 @@ -5670,6 +6431,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5697,6 +6462,7 @@ surface 0 ? total_aerosol +? smaller_than_first_limit 6 10 @@ -5707,6 +6473,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5734,6 +6504,7 @@ surface 0 ? total_aerosol +? smaller_than_first_limit 7 25 @@ -5744,6 +6515,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5771,6 +6546,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 10 @@ -5781,6 +6557,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5808,6 +6588,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 7 25 @@ -5818,6 +6599,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5845,6 +6630,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -5855,6 +6641,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5882,6 +6672,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 7 25 @@ -5892,6 +6683,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5919,6 +6714,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 10 236 @@ -5929,6 +6725,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5956,6 +6756,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 10 424 @@ -5966,6 +6767,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5993,6 +6798,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 7 25 @@ -6003,6 +6809,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -6031,6 +6841,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6040,6 +6851,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6068,6 +6883,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6077,6 +6893,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6105,6 +6925,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6114,6 +6935,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 diff --git a/parm/postxconfig-NT-GEFS-F00.txt b/parm/gefs/postxconfig-NT-gefs-f00.txt similarity index 91% rename from parm/postxconfig-NT-GEFS-F00.txt rename to parm/gefs/postxconfig-NT-gefs-f00.txt index 29010f64a..720971ee2 100644 --- a/parm/postxconfig-NT-GEFS-F00.txt +++ b/parm/gefs/postxconfig-NT-gefs-f00.txt @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -407,6 +457,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -518,6 +583,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -555,6 +625,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -592,6 +667,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -629,6 +709,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -666,6 +751,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -703,6 +793,7 @@ surface ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -740,6 +835,7 @@ surface ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -777,6 +877,7 @@ surface ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -851,6 +961,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -888,6 +1003,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1036,6 +1171,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1073,6 +1213,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1258,6 +1423,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1332,6 +1507,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1369,6 +1549,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1443,6 +1633,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1480,6 +1675,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1517,6 +1717,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1554,6 +1759,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1628,6 +1843,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1885,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1702,6 +1927,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1739,6 +1969,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1776,6 +2011,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1813,6 +2053,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1850,6 +2095,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1887,6 +2137,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -1896,6 +2147,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1924,6 +2179,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1961,6 +2221,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1998,6 +2263,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2035,6 +2305,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2072,6 +2347,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2109,6 +2389,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2146,6 +2431,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2183,6 +2473,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2220,6 +2515,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2229,6 +2525,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2257,6 +2557,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2266,6 +2567,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2294,6 +2599,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2303,6 +2609,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2331,6 +2641,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2340,6 +2651,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2368,6 +2683,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2377,6 +2693,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2405,6 +2725,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -2414,6 +2735,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2442,6 +2767,7 @@ RH ? ? ? +? 0 0.0 0 @@ -2451,6 +2777,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2479,6 +2809,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2488,6 +2819,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2516,6 +2851,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2525,6 +2861,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2553,6 +2893,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2562,6 +2903,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2590,6 +2935,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2599,6 +2945,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2627,6 +2977,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2636,6 +2987,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2664,6 +3019,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2673,6 +3029,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2701,6 +3061,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2710,6 +3071,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2738,6 +3103,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2747,6 +3113,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2775,6 +3145,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2784,6 +3155,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2812,6 +3187,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -2821,6 +3197,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2849,6 +3229,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -2858,6 +3239,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2886,6 +3271,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -2895,6 +3281,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2923,6 +3313,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -2932,6 +3323,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2960,6 +3355,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -2969,6 +3365,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2997,6 +3397,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3006,6 +3407,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3034,6 +3439,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3043,6 +3449,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3071,6 +3481,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3080,6 +3491,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3108,6 +3523,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3117,6 +3533,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3145,6 +3565,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3154,6 +3575,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3182,6 +3607,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3191,6 +3617,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3219,6 +3649,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3228,6 +3659,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3256,6 +3691,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3265,6 +3701,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3293,6 +3733,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3302,6 +3743,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3330,6 +3775,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3339,6 +3785,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3367,6 +3817,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3376,6 +3827,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3404,6 +3859,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3413,6 +3869,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3441,6 +3901,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3450,6 +3911,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3478,6 +3943,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3487,6 +3953,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3515,6 +3985,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3524,6 +3995,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3552,6 +4027,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3561,6 +4037,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3589,6 +4069,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -3598,6 +4079,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3626,6 +4111,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3635,6 +4121,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3663,6 +4153,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3672,6 +4163,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3700,6 +4195,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3709,6 +4205,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3737,6 +4237,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3746,6 +4247,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3774,6 +4279,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3783,6 +4289,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3811,6 +4321,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3820,6 +4331,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3848,6 +4363,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3857,6 +4373,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3885,6 +4405,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3894,6 +4415,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3922,6 +4447,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3931,6 +4457,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3959,6 +4489,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3968,6 +4499,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3996,6 +4531,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4005,6 +4541,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4033,6 +4573,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4042,6 +4583,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4070,6 +4615,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4079,6 +4625,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4107,6 +4657,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4116,6 +4667,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4144,6 +4699,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -4153,6 +4709,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4181,6 +4741,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4190,6 +4751,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4218,6 +4783,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4227,6 +4793,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4255,6 +4825,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4264,6 +4835,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4292,6 +4867,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4301,6 +4877,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4329,6 +4909,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4338,6 +4919,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4366,6 +4951,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4375,6 +4961,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4403,6 +4993,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4412,6 +5003,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4440,6 +5035,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4449,6 +5045,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4477,6 +5077,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4486,6 +5087,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4514,6 +5119,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -4523,6 +5129,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4551,6 +5161,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4560,6 +5171,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4588,6 +5203,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4597,6 +5213,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4625,6 +5245,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4634,6 +5255,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4662,6 +5287,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4671,6 +5297,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4699,6 +5329,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4708,6 +5339,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4736,6 +5371,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4745,6 +5381,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4773,6 +5413,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4782,6 +5423,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4810,6 +5455,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4819,6 +5465,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4847,6 +5497,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4856,6 +5507,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 diff --git a/parm/postxconfig-NT-GEFS-WAFS.txt b/parm/gefs/postxconfig-NT-gefs-wafs.txt similarity index 100% rename from parm/postxconfig-NT-GEFS-WAFS.txt rename to parm/gefs/postxconfig-NT-gefs-wafs.txt diff --git a/parm/postxconfig-NT-GEFS.txt b/parm/gefs/postxconfig-NT-gefs.txt similarity index 91% rename from parm/postxconfig-NT-GEFS.txt rename to parm/gefs/postxconfig-NT-gefs.txt index dcbc2b77a..60db0cb57 100644 --- a/parm/postxconfig-NT-GEFS.txt +++ b/parm/gefs/postxconfig-NT-gefs.txt @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -407,6 +457,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -518,6 +583,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -555,6 +625,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -592,6 +667,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -629,6 +709,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -666,6 +751,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -703,6 +793,7 @@ surface ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -740,6 +835,7 @@ surface ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -777,6 +877,7 @@ surface ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -851,6 +961,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -888,6 +1003,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1036,6 +1171,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1073,6 +1213,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1258,6 +1423,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1332,6 +1507,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1369,6 +1549,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1443,6 +1633,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1480,6 +1675,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1517,6 +1717,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1554,6 +1759,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1628,6 +1843,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1885,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1702,6 +1927,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1739,6 +1969,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1776,6 +2011,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1813,6 +2053,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1850,6 +2095,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1887,6 +2137,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1896,6 +2147,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1924,6 +2179,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1961,6 +2221,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1998,6 +2263,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2035,6 +2305,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2072,6 +2347,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2109,6 +2389,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2146,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2183,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2220,6 +2515,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2229,6 +2525,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2257,6 +2557,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2266,6 +2567,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2294,6 +2599,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2303,6 +2609,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2331,6 +2641,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2340,6 +2651,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2368,6 +2683,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2377,6 +2693,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2405,6 +2725,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2414,6 +2735,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2442,6 +2767,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2451,6 +2777,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2479,6 +2809,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2488,6 +2819,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2516,6 +2851,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2525,6 +2861,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2553,6 +2893,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2562,6 +2903,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2590,6 +2935,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2599,6 +2945,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2627,6 +2977,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2636,6 +2987,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2664,6 +3019,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2673,6 +3029,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2701,6 +3061,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2710,6 +3071,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2738,6 +3103,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2747,6 +3113,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2775,6 +3145,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2784,6 +3155,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2812,6 +3187,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2821,6 +3197,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2849,6 +3229,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2858,6 +3239,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2886,6 +3271,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2895,6 +3281,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2923,6 +3313,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2932,6 +3323,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2960,6 +3355,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2969,6 +3365,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2997,6 +3397,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3006,6 +3407,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3034,6 +3439,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3043,6 +3449,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3071,6 +3481,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3080,6 +3491,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3108,6 +3523,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3117,6 +3533,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3145,6 +3565,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3154,6 +3575,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3182,6 +3607,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3191,6 +3617,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3219,6 +3649,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3228,6 +3659,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3256,6 +3691,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3265,6 +3701,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3293,6 +3733,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3302,6 +3743,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3330,6 +3775,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3339,6 +3785,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3367,6 +3817,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3376,6 +3827,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3404,6 +3859,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -3413,6 +3869,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3441,6 +3901,7 @@ RH ? ? ? +? 0 0.0 0 @@ -3450,6 +3911,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3478,6 +3943,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3487,6 +3953,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3515,6 +3985,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3524,6 +3995,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3552,6 +4027,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3561,6 +4037,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3589,6 +4069,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3598,6 +4079,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3626,6 +4111,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3635,6 +4121,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3663,6 +4153,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3672,6 +4163,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3700,6 +4195,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3709,6 +4205,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3737,6 +4237,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3746,6 +4247,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3774,6 +4279,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3783,6 +4289,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3811,6 +4321,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3820,6 +4331,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3848,6 +4363,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3857,6 +4373,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3885,6 +4405,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -3894,6 +4415,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3922,6 +4447,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -3931,6 +4457,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -3959,6 +4489,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3968,6 +4499,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3996,6 +4531,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4005,6 +4541,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4033,6 +4573,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4042,6 +4583,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4070,6 +4615,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4079,6 +4625,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4107,6 +4657,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4116,6 +4667,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4144,6 +4699,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4153,6 +4709,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4181,6 +4741,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4190,6 +4751,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4218,6 +4783,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4227,6 +4793,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4255,6 +4825,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4264,6 +4835,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4292,6 +4867,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4301,6 +4877,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4329,6 +4909,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4338,6 +4919,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4366,6 +4951,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4375,6 +4961,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4403,6 +4993,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4412,6 +5003,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4440,6 +5035,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4449,6 +5045,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4477,6 +5077,7 @@ low_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4486,6 +5087,10 @@ low_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4514,6 +5119,7 @@ mid_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4523,6 +5129,10 @@ mid_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4551,6 +5161,7 @@ high_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4560,6 +5171,10 @@ high_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4588,11 +5203,16 @@ low_cloud_top_lvl ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -4625,6 +5245,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4634,6 +5255,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4662,6 +5287,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4671,6 +5297,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4699,6 +5329,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4708,6 +5339,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4736,6 +5371,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4745,6 +5381,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4773,6 +5413,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4782,6 +5423,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4810,6 +5455,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4819,6 +5465,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -4847,6 +5497,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4856,6 +5507,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4884,6 +5539,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4893,6 +5549,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -4921,6 +5581,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4930,6 +5591,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4958,6 +5623,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4967,6 +5633,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4995,6 +5665,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5004,6 +5675,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5032,6 +5707,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5041,6 +5717,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5069,6 +5749,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5078,6 +5759,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5106,6 +5791,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5115,6 +5801,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5143,6 +5833,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5152,6 +5843,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5180,6 +5875,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5189,6 +5885,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5217,6 +5917,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5226,6 +5927,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5254,6 +5959,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5263,6 +5969,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5291,6 +6001,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5300,6 +6011,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5328,6 +6043,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5337,6 +6053,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5365,6 +6085,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5374,6 +6095,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5402,6 +6127,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5411,6 +6137,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5439,6 +6169,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5448,6 +6179,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5476,6 +6211,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5485,6 +6221,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5513,6 +6253,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5522,6 +6263,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5550,6 +6295,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5559,6 +6305,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5587,6 +6337,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5596,6 +6347,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5624,6 +6379,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5633,6 +6389,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5661,6 +6421,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5670,6 +6431,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5698,6 +6463,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5707,6 +6473,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5735,6 +6505,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -5744,6 +6515,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5772,6 +6547,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5781,6 +6557,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5809,6 +6589,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5818,6 +6599,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5846,6 +6631,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -5855,6 +6641,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5883,6 +6673,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -5892,6 +6683,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5920,6 +6715,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -5929,6 +6725,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5957,6 +6757,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5966,6 +6767,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -5994,6 +6799,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6003,6 +6809,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6031,6 +6841,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6040,6 +6851,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6068,6 +6883,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6077,6 +6893,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6105,6 +6925,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6114,6 +6935,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6142,6 +6967,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -6151,6 +6977,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6179,6 +7009,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6188,6 +7019,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6216,6 +7051,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6225,6 +7061,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6253,6 +7093,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6262,6 +7103,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6290,6 +7135,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6299,6 +7145,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6327,6 +7177,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6336,6 +7187,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6364,6 +7219,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6373,6 +7229,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6401,6 +7261,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6410,6 +7271,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6438,6 +7303,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6447,6 +7313,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6475,6 +7345,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6484,6 +7355,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 diff --git a/parm/post_tag_gfs128 b/parm/gfs/post_tag_gfs128 similarity index 100% rename from parm/post_tag_gfs128 rename to parm/gfs/post_tag_gfs128 diff --git a/parm/post_tag_gfs65 b/parm/gfs/post_tag_gfs65 similarity index 100% rename from parm/post_tag_gfs65 rename to parm/gfs/post_tag_gfs65 diff --git a/parm/postcntrl_gfs.xml b/parm/gfs/postcntrl_gfs.xml similarity index 100% rename from parm/postcntrl_gfs.xml rename to parm/gfs/postcntrl_gfs.xml diff --git a/parm/postcntrl_gfs_anl.xml b/parm/gfs/postcntrl_gfs_anl.xml similarity index 100% rename from parm/postcntrl_gfs_anl.xml rename to parm/gfs/postcntrl_gfs_anl.xml diff --git a/parm/postcntrl_gfs_f00.xml b/parm/gfs/postcntrl_gfs_f00.xml similarity index 100% rename from parm/postcntrl_gfs_f00.xml rename to parm/gfs/postcntrl_gfs_f00.xml diff --git a/parm/postcntrl_gfs_f00_two.xml b/parm/gfs/postcntrl_gfs_f00_two.xml similarity index 100% rename from parm/postcntrl_gfs_f00_two.xml rename to parm/gfs/postcntrl_gfs_f00_two.xml diff --git a/parm/postcntrl_gfs_flux.xml b/parm/gfs/postcntrl_gfs_flux.xml similarity index 100% rename from parm/postcntrl_gfs_flux.xml rename to parm/gfs/postcntrl_gfs_flux.xml diff --git a/parm/postcntrl_gfs_flux_f00.xml b/parm/gfs/postcntrl_gfs_flux_f00.xml similarity index 100% rename from parm/postcntrl_gfs_flux_f00.xml rename to parm/gfs/postcntrl_gfs_flux_f00.xml diff --git a/parm/postcntrl_gfs_goes.xml b/parm/gfs/postcntrl_gfs_goes.xml similarity index 97% rename from parm/postcntrl_gfs_goes.xml rename to parm/gfs/postcntrl_gfs_goes.xml index 16d5bbf9e..8a8b193a1 100755 --- a/parm/postcntrl_gfs_goes.xml +++ b/parm/gfs/postcntrl_gfs_goes.xml @@ -2,7 +2,7 @@ - GFSPRS + GFSGOES 0 ncep_nco v2003 diff --git a/parm/postcntrl_gfs_two.xml b/parm/gfs/postcntrl_gfs_two.xml similarity index 100% rename from parm/postcntrl_gfs_two.xml rename to parm/gfs/postcntrl_gfs_two.xml diff --git a/parm/postcntrl_gfs_wafs.xml b/parm/gfs/postcntrl_gfs_wafs.xml similarity index 100% rename from parm/postcntrl_gfs_wafs.xml rename to parm/gfs/postcntrl_gfs_wafs.xml diff --git a/parm/postcntrl_gfs_wafs_anl.xml b/parm/gfs/postcntrl_gfs_wafs_anl.xml similarity index 100% rename from parm/postcntrl_gfs_wafs_anl.xml rename to parm/gfs/postcntrl_gfs_wafs_anl.xml diff --git a/parm/postcntrl_gfs_wafs_ext.xml b/parm/gfs/postcntrl_gfs_wafs_ext.xml similarity index 100% rename from parm/postcntrl_gfs_wafs_ext.xml rename to parm/gfs/postcntrl_gfs_wafs_ext.xml diff --git a/parm/postxconfig-NT-GFS-ANL.txt b/parm/gfs/postxconfig-NT-gfs-anl.txt similarity index 93% rename from parm/postxconfig-NT-GFS-ANL.txt rename to parm/gfs/postxconfig-NT-gfs-anl.txt index 638505e89..64813eb1d 100644 --- a/parm/postxconfig-NT-GFS-ANL.txt +++ b/parm/gfs/postxconfig-NT-gfs-anl.txt @@ -36,6 +36,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -73,6 +78,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -110,6 +120,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -147,6 +162,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -184,6 +204,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -221,6 +246,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -230,6 +256,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -258,6 +288,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -267,6 +298,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -295,6 +330,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -304,6 +340,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -332,6 +372,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -341,6 +382,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -369,6 +414,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -378,6 +424,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -406,6 +456,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -415,6 +466,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -443,6 +498,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -452,6 +508,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -480,6 +540,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -489,6 +550,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -517,6 +582,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -526,6 +592,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -554,6 +624,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -563,6 +634,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -591,6 +666,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -600,6 +676,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -628,6 +708,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -637,6 +718,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -665,6 +750,7 @@ surface ? ? ? +? 0 0.0 0 @@ -674,6 +760,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -702,6 +792,7 @@ surface ? ? ? +? 0 0.0 0 @@ -711,6 +802,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -739,6 +834,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -748,6 +844,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -776,6 +876,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -785,6 +886,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -813,6 +918,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -822,6 +928,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -850,6 +960,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -859,6 +970,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -887,6 +1002,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -896,6 +1012,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -924,6 +1044,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -933,6 +1054,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -961,6 +1086,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -970,6 +1096,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -998,6 +1128,7 @@ RH ? ? ? +? 0 0.0 0 @@ -1007,6 +1138,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1035,6 +1170,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -1044,6 +1180,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1072,6 +1212,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -1081,6 +1222,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1109,6 +1254,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -1118,6 +1264,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1146,6 +1296,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -1155,6 +1306,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1183,6 +1338,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -1192,6 +1348,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1220,6 +1380,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -1229,6 +1390,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1257,6 +1422,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -1266,6 +1432,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1294,6 +1464,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1303,6 +1474,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1331,6 +1506,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1340,6 +1516,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1368,6 +1548,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1377,6 +1558,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1405,6 +1590,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -1414,6 +1600,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1442,6 +1632,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -1451,6 +1642,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1479,6 +1674,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -1488,6 +1684,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1516,6 +1716,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -1525,6 +1726,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1553,6 +1758,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -1562,6 +1768,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1590,6 +1800,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -1599,6 +1810,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1627,6 +1842,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -1636,6 +1852,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1664,6 +1884,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -1673,6 +1894,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1701,6 +1926,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -1710,6 +1936,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1738,6 +1968,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -1747,6 +1978,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1775,6 +2010,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -1784,6 +2020,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1812,6 +2052,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -1821,6 +2062,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1849,6 +2094,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -1858,6 +2104,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -1886,6 +2136,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -1895,6 +2146,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1923,6 +2178,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -1932,6 +2188,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1960,6 +2220,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -1969,6 +2230,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1997,6 +2262,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2006,6 +2272,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2034,6 +2304,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2043,6 +2314,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2071,6 +2346,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2080,6 +2356,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2108,6 +2388,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2117,6 +2398,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2145,6 +2430,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2154,6 +2440,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2182,6 +2472,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2191,6 +2482,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2219,6 +2514,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2228,6 +2524,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2256,6 +2556,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2265,6 +2566,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -2293,6 +2598,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2302,6 +2608,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2330,6 +2640,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2339,6 +2650,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2367,6 +2682,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2376,6 +2692,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2404,6 +2724,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2413,6 +2734,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2441,6 +2766,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2450,6 +2776,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2478,6 +2808,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2487,6 +2818,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2515,6 +2850,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2524,6 +2860,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2552,6 +2892,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2561,6 +2902,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2589,6 +2934,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2598,6 +2944,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2626,6 +2976,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2635,6 +2986,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2663,6 +3018,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -2672,6 +3028,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2700,6 +3060,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -2709,6 +3070,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2737,6 +3102,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -2746,6 +3112,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2774,6 +3144,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -2783,6 +3154,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2811,6 +3186,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -2820,6 +3196,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2848,6 +3228,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -2857,6 +3238,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2885,6 +3270,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -2894,6 +3280,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2922,6 +3312,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -2931,6 +3322,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2959,6 +3354,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -2968,6 +3364,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2996,6 +3396,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3005,6 +3406,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3033,6 +3438,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3042,6 +3448,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3070,6 +3480,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3079,6 +3490,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3107,6 +3522,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3116,6 +3532,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3144,6 +3564,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3153,6 +3574,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3181,6 +3606,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3190,6 +3616,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3218,6 +3648,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3227,6 +3658,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3255,6 +3690,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3264,6 +3700,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3292,6 +3732,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3301,6 +3742,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3329,6 +3774,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3338,6 +3784,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3366,6 +3816,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3375,6 +3826,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3403,6 +3858,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3412,6 +3868,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/parm/postxconfig-NT-GFS-F00-TWO.txt b/parm/gfs/postxconfig-NT-gfs-f00-two.txt similarity index 92% rename from parm/postxconfig-NT-GFS-F00-TWO.txt rename to parm/gfs/postxconfig-NT-gfs-f00-two.txt index 1757a50c1..95c932343 100644 --- a/parm/postxconfig-NT-GFS-F00-TWO.txt +++ b/parm/gfs/postxconfig-NT-gfs-f00-two.txt @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -407,6 +457,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -518,6 +583,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -555,6 +625,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -592,6 +667,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -629,6 +709,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -666,6 +751,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -703,6 +793,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -740,6 +835,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -777,6 +877,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -851,6 +961,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -888,6 +1003,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1036,6 +1171,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1073,6 +1213,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1258,6 +1423,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1332,6 +1507,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1369,6 +1549,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1443,6 +1633,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1480,6 +1675,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1517,6 +1717,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1554,6 +1759,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1628,6 +1843,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1885,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1702,6 +1927,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1739,6 +1969,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1776,6 +2011,7 @@ spec_hgt_lvl_above_grnd 0. 0. ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1813,6 +2053,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1850,6 +2095,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1887,6 +2137,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1896,6 +2147,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1924,6 +2179,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1961,6 +2221,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1998,6 +2263,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2035,6 +2305,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2072,6 +2347,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2109,6 +2389,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2146,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2183,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2220,6 +2515,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2229,6 +2525,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2257,6 +2557,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2266,6 +2567,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2294,6 +2599,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2303,6 +2609,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2331,6 +2641,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2340,6 +2651,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2368,6 +2683,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2377,6 +2693,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2405,6 +2725,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2414,6 +2735,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2442,6 +2767,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2451,6 +2777,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2479,6 +2809,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2488,6 +2819,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2516,6 +2851,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2525,6 +2861,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2553,6 +2893,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2562,6 +2903,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2590,6 +2935,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2599,6 +2945,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2627,6 +2977,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2636,6 +2987,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2664,6 +3019,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2673,6 +3029,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2701,6 +3061,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2710,6 +3071,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2738,6 +3103,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2747,6 +3113,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -2775,6 +3145,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -2784,6 +3155,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2812,6 +3187,7 @@ RH ? ? ? +? 0 0.0 0 @@ -2821,6 +3197,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2849,6 +3229,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2858,6 +3239,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2886,6 +3271,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2895,6 +3281,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2923,6 +3313,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2932,6 +3323,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2960,6 +3355,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2969,6 +3365,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2997,6 +3397,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3006,6 +3407,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3034,6 +3439,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3043,6 +3449,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3071,6 +3481,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3080,6 +3491,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3108,6 +3523,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3117,6 +3533,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3145,6 +3565,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3154,6 +3575,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3182,6 +3607,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3191,6 +3617,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3219,6 +3649,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3228,6 +3659,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3256,6 +3691,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -3265,6 +3701,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3293,6 +3733,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -3302,6 +3743,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3330,6 +3775,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3339,6 +3785,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3367,6 +3817,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3376,6 +3827,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3404,6 +3859,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3413,6 +3869,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3441,6 +3901,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3450,6 +3911,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3478,6 +3943,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3487,6 +3953,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3515,6 +3985,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3524,6 +3995,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3552,6 +4027,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3561,6 +4037,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3589,6 +4069,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3598,6 +4079,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3626,6 +4111,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3635,6 +4121,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3663,11 +4153,16 @@ max_wind ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -3700,6 +4195,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3709,6 +4205,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3737,6 +4237,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3746,6 +4247,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3774,6 +4279,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3783,6 +4289,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3811,6 +4321,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3820,6 +4331,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3848,6 +4363,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3857,6 +4373,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3885,6 +4405,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3894,6 +4415,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3922,6 +4447,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3931,6 +4457,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3959,6 +4489,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -3968,6 +4499,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3996,6 +4531,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4005,6 +4541,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4033,6 +4573,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4042,6 +4583,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4070,6 +4615,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4079,6 +4625,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4107,6 +4657,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4116,6 +4667,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4144,6 +4699,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4153,6 +4709,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4181,6 +4741,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4190,6 +4751,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4218,6 +4783,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4227,6 +4793,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4255,6 +4825,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4264,6 +4835,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4292,6 +4867,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4301,6 +4877,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4329,6 +4909,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4338,6 +4919,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4366,6 +4951,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4375,6 +4961,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4403,6 +4993,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4412,6 +5003,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4440,6 +5035,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4449,6 +5045,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4477,6 +5077,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4486,6 +5087,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4514,6 +5119,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -4523,6 +5129,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4551,6 +5161,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4560,6 +5171,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4588,6 +5203,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4597,6 +5213,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4625,6 +5245,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4634,6 +5255,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4662,6 +5287,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4671,6 +5297,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4699,6 +5329,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4708,6 +5339,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4736,6 +5371,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4745,6 +5381,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4773,6 +5413,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4782,6 +5423,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4810,6 +5455,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4819,6 +5465,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4847,6 +5497,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4856,6 +5507,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4884,6 +5539,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4893,6 +5549,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4921,6 +5581,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4930,6 +5591,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4958,6 +5623,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4967,6 +5633,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4995,6 +5665,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -5004,6 +5675,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5032,6 +5707,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -5041,6 +5717,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5069,6 +5749,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5078,6 +5759,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5106,6 +5791,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5115,6 +5801,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5143,6 +5833,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -5152,6 +5843,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5180,6 +5875,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5189,6 +5885,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5217,6 +5917,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5226,6 +5927,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5254,6 +5959,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5263,6 +5969,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5291,6 +6001,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5300,6 +6011,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5328,6 +6043,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5337,6 +6053,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5365,6 +6085,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -5374,6 +6095,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5402,6 +6127,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5411,6 +6137,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5439,6 +6169,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5448,6 +6179,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5476,6 +6211,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5485,6 +6221,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5512,6 +6252,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -5522,6 +6263,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5549,6 +6294,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -5559,6 +6305,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5586,6 +6336,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -5596,6 +6347,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5623,6 +6378,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -5633,6 +6389,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5660,6 +6420,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -5670,6 +6431,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5697,6 +6462,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -5707,6 +6473,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5751,6 +6521,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5760,6 +6531,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5788,6 +6563,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5797,6 +6573,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -5825,6 +6605,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5834,6 +6615,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5862,6 +6647,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5871,6 +6657,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5899,6 +6689,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5908,6 +6699,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5936,6 +6731,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5945,6 +6741,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5973,6 +6773,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5982,6 +6783,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6010,6 +6815,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6019,6 +6825,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6047,6 +6857,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -6056,6 +6867,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6084,6 +6899,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -6093,6 +6909,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6121,6 +6941,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -6130,6 +6951,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6158,6 +6983,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6167,6 +6993,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6195,6 +7025,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6204,6 +7035,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6232,6 +7067,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6241,6 +7077,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6269,6 +7109,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6278,6 +7119,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6306,6 +7151,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6315,6 +7161,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6343,6 +7193,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6352,6 +7203,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6380,6 +7235,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6389,6 +7245,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6417,6 +7277,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -6426,6 +7287,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6454,6 +7319,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6463,6 +7329,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6491,6 +7361,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6500,6 +7371,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6528,6 +7403,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6537,6 +7413,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6565,6 +7445,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6574,6 +7455,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6602,6 +7487,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6611,6 +7497,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6639,6 +7529,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6648,6 +7539,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6676,6 +7571,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6685,6 +7581,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6713,6 +7613,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6722,6 +7623,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6750,6 +7655,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6759,6 +7665,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6787,6 +7697,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6796,6 +7707,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6824,6 +7739,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6833,6 +7749,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6861,6 +7781,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6870,6 +7791,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6898,6 +7823,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6907,6 +7833,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6935,6 +7865,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6944,6 +7875,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6972,6 +7907,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6981,6 +7917,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7009,6 +7949,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7018,6 +7959,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -7046,6 +7991,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7055,6 +8001,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7083,6 +8033,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7092,6 +8043,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7120,6 +8075,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -7129,6 +8085,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7157,6 +8117,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7166,6 +8127,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7194,6 +8159,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7203,6 +8169,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7231,6 +8201,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7240,6 +8211,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7268,6 +8243,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7277,6 +8253,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -7305,6 +8285,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7314,6 +8295,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7342,6 +8327,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7351,6 +8337,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7379,6 +8369,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7388,6 +8379,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7416,6 +8411,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -7425,6 +8421,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7453,6 +8453,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7462,6 +8463,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/parm/postxconfig-NT-GFS-F00.txt b/parm/gfs/postxconfig-NT-gfs-f00.txt similarity index 92% rename from parm/postxconfig-NT-GFS-F00.txt rename to parm/gfs/postxconfig-NT-gfs-f00.txt index 33159fce8..413be41f8 100644 --- a/parm/postxconfig-NT-GFS-F00.txt +++ b/parm/gfs/postxconfig-NT-gfs-f00.txt @@ -36,6 +36,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -73,6 +78,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -110,6 +120,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -147,6 +162,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -184,6 +204,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -221,6 +246,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -230,6 +256,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -258,6 +288,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -267,6 +298,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -295,6 +330,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -304,6 +340,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -332,6 +372,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -341,6 +382,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -369,6 +414,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -378,6 +424,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -406,6 +456,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -415,6 +466,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -443,6 +498,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -452,6 +508,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -480,6 +540,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -489,6 +550,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -517,6 +582,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -526,6 +592,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -554,6 +624,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -563,6 +634,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -591,6 +666,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -600,6 +676,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -628,6 +708,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -637,6 +718,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -665,6 +750,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -674,6 +760,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -702,6 +792,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -711,6 +802,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -739,6 +834,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -748,6 +844,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -776,6 +876,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -785,6 +886,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -813,6 +918,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -822,6 +928,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -850,6 +960,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -859,6 +970,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -887,6 +1002,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -896,6 +1012,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -924,6 +1044,7 @@ surface ? ? ? +? 0 0.0 0 @@ -933,6 +1054,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -961,6 +1086,7 @@ surface ? ? ? +? 0 0.0 0 @@ -970,6 +1096,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -998,6 +1128,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1007,6 +1138,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1035,6 +1170,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1044,6 +1180,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1072,6 +1212,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1081,6 +1222,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1109,6 +1254,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1118,6 +1264,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1146,6 +1296,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1155,6 +1306,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1183,6 +1338,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1192,6 +1348,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1220,6 +1380,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1229,6 +1390,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1257,6 +1422,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1266,6 +1432,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1294,6 +1464,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1303,6 +1474,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1331,6 +1506,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1340,6 +1516,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1368,6 +1548,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1377,6 +1558,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1405,6 +1590,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1414,6 +1600,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1442,6 +1632,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1451,6 +1642,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1479,6 +1674,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1488,6 +1684,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1516,6 +1716,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1525,6 +1726,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1553,6 +1758,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1562,6 +1768,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1590,6 +1800,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1599,6 +1810,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1627,6 +1842,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1636,6 +1852,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1664,6 +1884,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1673,6 +1894,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1701,6 +1926,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1710,6 +1936,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1738,6 +1968,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1747,6 +1978,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1775,6 +2010,7 @@ spec_hgt_lvl_above_grnd 0. 0. ? ? +? 0 0.0 0 @@ -1784,6 +2020,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1812,6 +2052,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1821,6 +2062,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1849,6 +2094,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1858,6 +2104,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1886,6 +2136,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1895,6 +2146,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1923,6 +2178,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1932,6 +2188,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1960,6 +2220,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1969,6 +2230,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1997,6 +2262,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2006,6 +2272,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2034,6 +2304,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2043,6 +2314,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2071,6 +2346,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2080,6 +2356,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2108,6 +2388,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2117,6 +2398,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2145,6 +2430,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2154,6 +2440,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2182,6 +2472,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2191,6 +2482,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2219,6 +2514,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2228,6 +2524,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2256,6 +2556,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2265,6 +2566,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2293,6 +2598,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2302,6 +2608,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2330,6 +2640,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2339,6 +2650,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2367,6 +2682,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2376,6 +2692,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2404,6 +2724,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2413,6 +2734,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2441,6 +2766,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2450,6 +2776,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2478,6 +2808,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2487,6 +2818,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2515,6 +2850,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2524,6 +2860,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2552,6 +2892,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -2561,6 +2902,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2589,6 +2934,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2598,6 +2944,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2626,6 +2976,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2635,6 +2986,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2663,6 +3018,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2672,6 +3028,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2700,6 +3060,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2709,6 +3070,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2737,6 +3102,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2746,6 +3112,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -2774,6 +3144,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -2783,6 +3154,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2811,6 +3186,7 @@ RH ? ? ? +? 0 0.0 0 @@ -2820,6 +3196,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2848,6 +3228,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2857,6 +3238,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2885,6 +3270,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2894,6 +3280,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2922,6 +3312,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2931,6 +3322,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2959,6 +3354,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2968,6 +3364,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2996,6 +3396,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3005,6 +3406,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3033,6 +3438,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3042,6 +3448,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3070,6 +3480,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3079,6 +3490,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3107,6 +3522,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3116,6 +3532,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3144,6 +3564,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3153,6 +3574,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3181,6 +3606,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3190,6 +3616,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3218,6 +3648,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -3227,6 +3658,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3255,6 +3690,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -3264,6 +3700,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3292,6 +3732,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -3301,6 +3742,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3329,6 +3774,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3338,6 +3784,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3366,6 +3816,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3375,6 +3826,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3403,6 +3858,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3412,6 +3868,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3440,6 +3900,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3449,6 +3910,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3477,6 +3942,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3486,6 +3952,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3514,6 +3984,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3523,6 +3994,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3551,6 +4026,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3560,6 +4036,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3588,6 +4068,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3597,6 +4078,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3625,6 +4110,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3634,6 +4120,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3662,6 +4152,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3671,6 +4162,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3699,6 +4194,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -3708,6 +4204,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3736,6 +4236,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3745,6 +4246,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3773,6 +4278,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3782,6 +4288,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3810,11 +4320,16 @@ entire_atmos_single_lyr ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -3847,6 +4362,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3856,6 +4372,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3884,6 +4404,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3893,6 +4414,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3921,6 +4446,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3930,6 +4456,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3958,6 +4488,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -3967,6 +4498,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3995,6 +4530,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4004,6 +4540,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4032,6 +4572,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4041,6 +4582,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4069,6 +4614,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4078,6 +4624,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4106,6 +4656,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4115,6 +4666,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4143,6 +4698,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -4152,6 +4708,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4180,6 +4740,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4189,6 +4750,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4217,6 +4782,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4226,6 +4792,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4254,6 +4824,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4263,6 +4834,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4291,6 +4866,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4300,6 +4876,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4328,6 +4908,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4337,6 +4918,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4365,6 +4950,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -4374,6 +4960,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4402,6 +4992,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4411,6 +5002,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4439,6 +5034,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4448,6 +5044,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4476,6 +5076,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4485,6 +5086,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4513,6 +5118,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -4522,6 +5128,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4550,6 +5160,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4559,6 +5170,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4587,6 +5202,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4596,6 +5212,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4624,6 +5244,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4633,6 +5254,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4661,6 +5286,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -4670,6 +5296,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4698,6 +5328,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4707,6 +5338,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4735,6 +5370,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4744,6 +5380,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4772,6 +5412,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4781,6 +5422,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4809,6 +5454,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4818,6 +5464,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4846,6 +5496,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4855,6 +5506,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4883,6 +5538,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4892,6 +5548,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4920,6 +5580,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4929,6 +5590,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4957,6 +5622,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4966,6 +5632,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4994,6 +5664,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -5003,6 +5674,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5031,6 +5706,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -5040,6 +5716,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5068,6 +5748,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5077,6 +5758,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5105,6 +5790,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5114,6 +5800,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5142,6 +5832,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -5151,6 +5842,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5179,6 +5874,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5188,6 +5884,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5216,6 +5916,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5225,6 +5926,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5253,6 +5958,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5262,6 +5968,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5290,6 +6000,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5299,6 +6010,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5327,6 +6042,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5336,6 +6052,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5364,6 +6084,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -5373,6 +6094,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5401,6 +6126,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5410,6 +6136,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5438,6 +6168,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5447,6 +6178,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5475,6 +6210,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5484,6 +6220,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5511,6 +6251,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -5521,6 +6262,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5548,6 +6293,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -5558,6 +6304,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5585,6 +6335,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -5595,6 +6346,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5622,6 +6377,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -5632,6 +6388,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5659,6 +6419,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -5669,6 +6430,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -5696,6 +6461,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -5706,6 +6472,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 diff --git a/parm/postxconfig-NT-GFS-FLUX-F00.txt b/parm/gfs/postxconfig-NT-gfs-flux-f00.txt similarity index 90% rename from parm/postxconfig-NT-GFS-FLUX-F00.txt rename to parm/gfs/postxconfig-NT-gfs-flux-f00.txt index e4b856dae..de661263c 100644 --- a/parm/postxconfig-NT-GFS-FLUX-F00.txt +++ b/parm/gfs/postxconfig-NT-gfs-flux-f00.txt @@ -36,6 +36,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -73,6 +78,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -110,6 +120,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -147,6 +162,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -184,6 +204,7 @@ surface ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -221,6 +246,7 @@ surface ? ? ? +? 0 0.0 0 @@ -230,6 +256,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -258,6 +288,7 @@ surface ? ? ? +? 0 0.0 0 @@ -267,6 +298,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -295,6 +330,7 @@ surface ? ? ? +? 0 0.0 0 @@ -304,6 +340,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -332,6 +372,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -341,6 +382,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -369,6 +414,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -378,6 +424,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -406,6 +456,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -415,6 +466,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -443,6 +498,7 @@ surface ? ? ? +? 0 0.0 0 @@ -452,6 +508,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -480,6 +540,7 @@ surface ? ? ? +? 0 0.0 0 @@ -489,6 +550,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -517,6 +582,7 @@ surface ? ? ? +? 0 0.0 0 @@ -526,6 +592,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -554,6 +624,7 @@ surface ? ? ? +? 0 0.0 0 @@ -563,6 +634,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -591,6 +666,7 @@ surface ? ? ? +? 0 0.0 0 @@ -600,6 +676,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -628,6 +708,7 @@ surface ? ? ? +? 0 0.0 0 @@ -637,6 +718,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -665,6 +750,7 @@ surface ? ? ? +? 0 0.0 0 @@ -674,6 +760,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -702,6 +792,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -711,6 +802,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -739,6 +834,7 @@ surface ? ? ? +? 0 0.0 0 @@ -748,6 +844,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -776,6 +876,7 @@ surface ? ? ? +? 0 0.0 0 @@ -785,6 +886,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -813,6 +918,7 @@ surface ? ? ? +? 0 0.0 0 @@ -822,6 +928,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -850,6 +960,7 @@ surface ? ? ? +? 0 0.0 0 @@ -859,6 +970,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -887,6 +1002,7 @@ surface ? ? ? +? 0 0.0 0 @@ -896,6 +1012,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -924,6 +1044,7 @@ surface ? ? ? +? 0 0.0 0 @@ -933,6 +1054,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -961,6 +1086,7 @@ surface ? ? ? +? 0 0.0 0 @@ -970,6 +1096,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -998,6 +1128,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1007,6 +1138,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1035,6 +1170,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1044,6 +1180,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1072,6 +1212,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1081,6 +1222,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1109,6 +1254,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1118,6 +1264,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1146,6 +1296,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1155,6 +1306,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1183,6 +1338,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1192,6 +1348,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1220,6 +1380,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1229,6 +1390,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1257,6 +1422,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1266,6 +1432,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1294,6 +1464,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1303,6 +1474,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1331,6 +1506,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1340,6 +1516,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1368,6 +1548,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1377,6 +1558,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1405,6 +1590,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -1414,6 +1600,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1442,6 +1632,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1451,6 +1642,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1479,6 +1674,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1488,6 +1684,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1516,6 +1716,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -1525,6 +1726,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1553,6 +1758,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -1562,6 +1768,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -1590,6 +1800,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -1599,6 +1810,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1627,6 +1842,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -1636,6 +1852,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1664,6 +1884,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -1673,6 +1894,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1701,6 +1926,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -1710,6 +1936,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1738,6 +1968,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1747,6 +1978,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/parm/postxconfig-NT-GFS-FLUX.txt b/parm/gfs/postxconfig-NT-gfs-flux.txt similarity index 90% rename from parm/postxconfig-NT-GFS-FLUX.txt rename to parm/gfs/postxconfig-NT-gfs-flux.txt index 081a54c2c..db02aba61 100644 --- a/parm/postxconfig-NT-GFS-FLUX.txt +++ b/parm/gfs/postxconfig-NT-gfs-flux.txt @@ -36,6 +36,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -73,6 +78,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -110,6 +120,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -147,6 +162,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -184,6 +204,7 @@ surface ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -221,6 +246,7 @@ surface ? ? ? +? 0 0.0 0 @@ -230,6 +256,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -258,6 +288,7 @@ surface ? ? ? +? 0 0.0 0 @@ -267,6 +298,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -295,6 +330,7 @@ surface ? ? ? +? 0 0.0 0 @@ -304,6 +340,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -332,6 +372,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -341,6 +382,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -369,6 +414,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -378,6 +424,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -406,6 +456,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -415,6 +466,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -443,6 +498,7 @@ surface ? ? ? +? 0 0.0 0 @@ -452,6 +508,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -480,6 +540,7 @@ surface ? ? ? +? 0 0.0 0 @@ -489,6 +550,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -517,6 +582,7 @@ surface ? ? ? +? 0 0.0 0 @@ -526,6 +592,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -554,6 +624,7 @@ surface ? ? ? +? 0 0.0 0 @@ -563,6 +634,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -591,6 +666,7 @@ surface ? ? ? +? 0 0.0 0 @@ -600,6 +676,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -628,6 +708,7 @@ surface ? ? ? +? 0 0.0 0 @@ -637,6 +718,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -665,6 +750,7 @@ surface ? ? ? +? 0 0.0 0 @@ -674,6 +760,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -702,6 +792,7 @@ surface ? ? ? +? 0 0.0 0 @@ -711,6 +802,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -739,6 +834,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -748,6 +844,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -776,6 +876,7 @@ surface ? ? ? +? 0 0.0 0 @@ -785,6 +886,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -813,6 +918,7 @@ surface ? ? ? +? 0 0.0 0 @@ -822,6 +928,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -850,6 +960,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -859,6 +970,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -887,6 +1002,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -896,6 +1012,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -924,6 +1044,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -933,6 +1054,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -961,6 +1086,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -970,6 +1096,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -998,6 +1128,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1007,6 +1138,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1035,6 +1170,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1044,6 +1180,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1072,6 +1212,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1081,6 +1222,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1109,6 +1254,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1118,6 +1264,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1146,6 +1296,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1155,6 +1306,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1183,6 +1338,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1192,6 +1348,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1220,6 +1380,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1229,6 +1390,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1257,6 +1422,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1266,6 +1432,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1294,6 +1464,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1303,6 +1474,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1331,6 +1506,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1340,6 +1516,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1368,6 +1548,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1377,6 +1558,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1405,6 +1590,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1414,6 +1600,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1442,6 +1632,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1451,6 +1642,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1479,6 +1674,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1488,6 +1684,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1516,6 +1716,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1525,6 +1726,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1553,6 +1758,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1562,6 +1768,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1590,6 +1800,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1599,6 +1810,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1627,6 +1842,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1636,6 +1852,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1664,6 +1884,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1673,6 +1894,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1701,6 +1926,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1710,6 +1936,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1738,6 +1968,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1747,6 +1978,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1775,6 +2010,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1784,6 +2020,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1812,6 +2052,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1821,6 +2062,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1849,6 +2094,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1858,6 +2104,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1886,6 +2136,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1895,6 +2146,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1923,6 +2178,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1932,6 +2188,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1960,6 +2220,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1969,6 +2230,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1997,6 +2262,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2006,6 +2272,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2034,6 +2304,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2043,6 +2314,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2071,6 +2346,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2080,6 +2356,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2108,6 +2388,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2117,6 +2398,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2145,6 +2430,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2154,6 +2440,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2182,6 +2472,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2191,6 +2482,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2219,6 +2514,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2228,6 +2524,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2256,6 +2556,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2265,6 +2566,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2293,6 +2598,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2302,6 +2608,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2330,6 +2640,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2339,6 +2650,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2367,6 +2682,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2376,6 +2692,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2404,6 +2724,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2413,6 +2734,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2441,6 +2766,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2450,6 +2776,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2478,6 +2808,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2487,6 +2818,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2515,6 +2850,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2524,6 +2860,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2552,6 +2892,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2561,6 +2902,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2589,6 +2934,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2598,6 +2944,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2626,6 +2976,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -2635,6 +2986,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2663,6 +3018,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -2672,6 +3028,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2700,6 +3060,7 @@ low_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -2709,6 +3070,10 @@ low_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2737,6 +3102,7 @@ mid_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -2746,6 +3112,10 @@ mid_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2774,6 +3144,7 @@ high_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -2783,6 +3154,10 @@ high_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2811,6 +3186,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -2820,6 +3196,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2848,6 +3228,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -2857,6 +3238,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2885,6 +3270,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -2894,6 +3280,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2922,6 +3312,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -2931,6 +3322,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2959,6 +3354,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -2968,6 +3364,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2996,6 +3396,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -3005,6 +3406,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3033,6 +3438,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -3042,6 +3448,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3070,6 +3480,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -3079,6 +3490,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3107,6 +3522,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3116,6 +3532,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3144,6 +3564,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3153,6 +3574,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3181,6 +3606,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3190,6 +3616,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3218,6 +3648,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3227,6 +3658,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3255,6 +3690,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3264,6 +3700,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3292,6 +3732,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3301,6 +3742,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3329,6 +3774,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3338,6 +3784,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3366,6 +3816,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3375,6 +3826,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3403,6 +3858,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3412,6 +3868,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3440,6 +3900,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3449,6 +3910,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3477,6 +3942,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3486,6 +3952,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3514,6 +3984,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3523,6 +3994,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3551,6 +4026,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3560,6 +4036,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3588,6 +4068,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3597,6 +4078,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3625,6 +4110,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3634,6 +4120,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3662,6 +4152,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3671,6 +4162,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3699,6 +4194,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3708,6 +4204,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3736,6 +4236,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3745,6 +4246,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3773,6 +4278,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3782,6 +4288,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3810,6 +4320,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3819,6 +4330,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3847,6 +4362,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -3856,6 +4372,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3884,6 +4404,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3893,6 +4414,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3921,6 +4446,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3930,6 +4456,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3958,6 +4488,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3967,6 +4498,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3995,6 +4530,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4004,6 +4540,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4032,6 +4572,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4041,6 +4582,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4069,6 +4614,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4078,6 +4624,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4106,6 +4656,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4115,6 +4666,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4143,6 +4698,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4152,6 +4708,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/parm/postxconfig-NT-GFS-GOES.txt b/parm/gfs/postxconfig-NT-gfs-goes.txt similarity index 91% rename from parm/postxconfig-NT-GFS-GOES.txt rename to parm/gfs/postxconfig-NT-gfs-goes.txt index 510347582..25970c216 100644 --- a/parm/postxconfig-NT-GFS-GOES.txt +++ b/parm/gfs/postxconfig-NT-gfs-goes.txt @@ -1,6 +1,6 @@ 1 4 -GFSPRS +GFSGOES 0 ncep_nco v2003 @@ -36,6 +36,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -73,6 +78,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -110,6 +120,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -147,6 +162,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 diff --git a/parm/postxconfig-NT-GFS-TWO.txt b/parm/gfs/postxconfig-NT-gfs-two.txt similarity index 91% rename from parm/postxconfig-NT-GFS-TWO.txt rename to parm/gfs/postxconfig-NT-gfs-two.txt index b6484bc1a..fb2556c37 100644 --- a/parm/postxconfig-NT-GFS-TWO.txt +++ b/parm/gfs/postxconfig-NT-gfs-two.txt @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -407,6 +457,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -518,6 +583,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -555,6 +625,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -592,6 +667,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -629,6 +709,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -666,6 +751,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -703,6 +793,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -740,6 +835,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -777,6 +877,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -851,6 +961,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -888,6 +1003,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1036,6 +1171,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1073,6 +1213,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1258,6 +1423,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1332,6 +1507,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1369,6 +1549,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1443,6 +1633,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1480,6 +1675,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1517,6 +1717,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1554,6 +1759,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1628,6 +1843,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1665,6 +1885,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1702,6 +1927,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1739,6 +1969,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1776,6 +2011,7 @@ spec_hgt_lvl_above_grnd 0. 0. ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1813,6 +2053,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1850,6 +2095,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1887,6 +2137,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1896,6 +2147,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1924,6 +2179,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1961,6 +2221,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1998,6 +2263,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2035,6 +2305,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2072,6 +2347,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2109,6 +2389,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2146,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2183,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2220,6 +2515,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2229,6 +2525,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2257,6 +2557,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2266,6 +2567,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2294,6 +2599,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2303,6 +2609,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2331,6 +2641,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2340,6 +2651,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2368,6 +2683,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2377,6 +2693,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2405,6 +2725,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2414,6 +2735,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2442,6 +2767,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2451,6 +2777,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2479,6 +2809,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2488,6 +2819,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2516,6 +2851,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2525,6 +2861,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2553,6 +2893,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2562,6 +2903,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2590,6 +2935,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2599,6 +2945,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2627,6 +2977,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2636,6 +2987,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2664,6 +3019,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2673,6 +3029,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2701,6 +3061,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2710,6 +3071,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2738,6 +3103,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2747,6 +3113,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2775,6 +3145,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2784,6 +3155,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2812,6 +3187,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2821,6 +3197,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2849,6 +3229,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2858,6 +3239,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2886,6 +3271,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2895,6 +3281,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2923,6 +3313,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2932,6 +3323,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2960,6 +3355,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2969,6 +3365,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2997,6 +3397,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3006,6 +3407,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3034,6 +3439,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3043,6 +3449,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3071,6 +3481,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3080,6 +3491,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3108,6 +3523,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3117,6 +3533,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3145,6 +3565,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3154,6 +3575,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3182,6 +3607,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3191,6 +3617,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3219,6 +3649,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3228,6 +3659,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3256,6 +3691,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3265,6 +3701,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3293,6 +3733,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3302,6 +3743,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3330,6 +3775,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3339,6 +3785,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3367,6 +3817,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3376,6 +3827,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3404,6 +3859,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3413,6 +3869,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3441,6 +3901,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3450,6 +3911,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3478,6 +3943,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3487,6 +3953,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3515,6 +3985,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3524,6 +3995,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3552,6 +4027,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3561,6 +4037,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3589,6 +4069,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3598,6 +4079,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3626,6 +4111,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3635,6 +4121,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3663,6 +4153,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3672,6 +4163,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3700,6 +4195,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3709,6 +4205,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3737,6 +4237,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -3746,6 +4247,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3774,6 +4279,7 @@ RH ? ? ? +? 0 0.0 0 @@ -3783,6 +4289,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3811,6 +4321,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3820,7 +4331,11 @@ hghst_trop_frz_lvl 0.0 0 0.0 -1 +0 +0.0 +0 +0.0 +1 6.0 0 0 @@ -3848,6 +4363,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3857,6 +4373,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3885,6 +4405,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3894,6 +4415,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3922,6 +4447,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3931,6 +4457,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3959,6 +4489,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3968,6 +4499,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3996,6 +4531,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4005,6 +4541,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4033,6 +4573,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -4042,6 +4583,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4070,6 +4615,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4079,6 +4625,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4107,6 +4657,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4116,6 +4667,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4144,6 +4699,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -4153,6 +4709,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4181,6 +4741,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -4190,6 +4751,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4218,6 +4783,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -4227,6 +4793,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4255,6 +4825,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -4264,6 +4835,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4292,6 +4867,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4301,6 +4877,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4329,6 +4909,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4338,6 +4919,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4366,6 +4951,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4375,6 +4961,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4403,6 +4993,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4412,6 +5003,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4440,6 +5035,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4449,6 +5045,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4477,6 +5077,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4486,6 +5087,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4514,6 +5119,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4523,6 +5129,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4551,6 +5161,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4560,6 +5171,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4588,6 +5203,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4597,6 +5213,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4625,6 +5245,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4634,6 +5255,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4662,6 +5287,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4671,6 +5297,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4699,6 +5329,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4708,6 +5339,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4736,6 +5371,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4745,6 +5381,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4773,6 +5413,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4782,6 +5423,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4810,6 +5455,7 @@ low_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4819,6 +5465,10 @@ low_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4847,6 +5497,7 @@ mid_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4856,6 +5507,10 @@ mid_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4884,6 +5539,7 @@ high_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4893,6 +5549,10 @@ high_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4921,6 +5581,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4930,6 +5591,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4958,6 +5623,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4967,6 +5633,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4995,6 +5665,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5004,6 +5675,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5032,6 +5707,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5041,6 +5717,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5069,6 +5749,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5078,6 +5759,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5106,6 +5791,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5115,6 +5801,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5143,6 +5833,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5152,6 +5843,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5180,6 +5875,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5189,6 +5885,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5217,6 +5917,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5226,6 +5927,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5254,6 +5959,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5263,6 +5969,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5291,6 +6001,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5300,6 +6011,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5328,6 +6043,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5337,6 +6053,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5365,6 +6085,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5374,6 +6095,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5402,6 +6127,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5411,6 +6137,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5439,6 +6169,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5448,6 +6179,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5476,6 +6211,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5485,6 +6221,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5513,6 +6253,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5522,6 +6263,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5550,6 +6295,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5559,6 +6305,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5587,6 +6337,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5596,6 +6347,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5624,6 +6379,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5633,6 +6389,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5661,6 +6421,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5670,6 +6431,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5698,6 +6463,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5707,6 +6473,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5735,6 +6505,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5744,6 +6515,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5772,6 +6547,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5781,6 +6557,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5809,6 +6589,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5818,6 +6599,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5846,6 +6631,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5855,6 +6641,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5883,6 +6673,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5892,6 +6683,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5920,6 +6715,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5929,6 +6725,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5957,6 +6757,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5966,6 +6767,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5994,6 +6799,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6003,6 +6809,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6031,6 +6841,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6040,6 +6851,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6068,6 +6883,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -6077,6 +6893,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6105,6 +6925,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6114,6 +6935,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6142,6 +6967,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6151,6 +6977,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6179,6 +7009,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6188,6 +7019,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6216,6 +7051,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6225,6 +7061,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6253,6 +7093,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6262,6 +7103,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6290,6 +7135,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6299,6 +7145,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -6327,6 +7177,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6336,6 +7187,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6364,6 +7219,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6373,6 +7229,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6401,6 +7261,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6410,6 +7271,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6438,6 +7303,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6447,6 +7313,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6475,6 +7345,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6484,6 +7355,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6512,6 +7387,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6521,6 +7397,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6549,6 +7429,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6558,6 +7439,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6586,6 +7471,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6595,6 +7481,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6623,6 +7513,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6632,6 +7523,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6660,6 +7555,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6669,6 +7565,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6697,6 +7597,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6706,6 +7607,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6734,6 +7639,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -6743,6 +7649,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6771,6 +7681,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -6780,6 +7691,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6808,6 +7723,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -6817,6 +7733,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6845,6 +7765,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -6854,6 +7775,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6882,6 +7807,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -6891,6 +7817,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6919,6 +7849,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6928,6 +7859,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6956,6 +7891,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6965,6 +7901,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6993,6 +7933,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7002,6 +7943,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7030,6 +7975,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7039,6 +7985,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7067,6 +8017,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7076,6 +8027,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7104,6 +8059,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7113,6 +8069,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7141,6 +8101,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7150,6 +8111,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7178,6 +8143,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7187,6 +8153,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7215,6 +8185,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7224,6 +8195,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7252,6 +8227,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7261,6 +8237,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7289,6 +8269,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7298,6 +8279,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7325,6 +8310,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -7335,6 +8321,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7362,6 +8352,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -7372,6 +8363,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7399,6 +8394,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -7409,6 +8405,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7436,6 +8436,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -7446,6 +8447,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7473,6 +8478,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -7483,6 +8489,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7510,6 +8520,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -7520,6 +8531,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7548,6 +8563,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7557,6 +8573,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7601,6 +8621,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7610,7 +8631,11 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 -1 +0 +0.0 +0 +0.0 +1 4.0 0 0 @@ -7638,6 +8663,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7647,6 +8673,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -7675,6 +8705,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7684,6 +8715,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7712,6 +8747,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7721,6 +8757,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7749,6 +8789,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7758,6 +8799,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7786,6 +8831,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7795,6 +8841,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7823,6 +8873,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7832,6 +8883,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7860,6 +8915,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7869,6 +8925,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7897,6 +8957,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -7906,6 +8967,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7934,6 +8999,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -7943,6 +9009,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7971,6 +9041,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -7980,6 +9051,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8008,6 +9083,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8017,6 +9093,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8045,6 +9125,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8054,6 +9135,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8082,6 +9167,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8091,6 +9177,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8119,6 +9209,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8128,6 +9219,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8156,6 +9251,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8165,6 +9261,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8193,6 +9293,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8202,6 +9303,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8230,6 +9335,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8239,6 +9345,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8267,6 +9377,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8276,6 +9387,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8304,6 +9419,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8313,6 +9429,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8341,6 +9461,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8350,6 +9471,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8378,6 +9503,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8387,6 +9513,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8415,6 +9545,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -8424,6 +9555,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8452,6 +9587,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -8461,6 +9597,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8489,6 +9629,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -8498,6 +9639,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8526,6 +9671,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8535,6 +9681,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8563,6 +9713,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8572,6 +9723,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8600,6 +9755,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8609,6 +9765,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8637,6 +9797,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -8646,6 +9807,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8674,6 +9839,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8683,6 +9849,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8711,6 +9881,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8720,6 +9891,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8748,6 +9923,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8757,6 +9933,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8785,6 +9965,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8794,6 +9975,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8822,6 +10007,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8831,6 +10017,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8859,6 +10049,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8868,6 +10059,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8896,6 +10091,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8905,6 +10101,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8933,6 +10133,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8942,6 +10143,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8970,6 +10175,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -8979,6 +10185,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9007,6 +10217,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9016,6 +10227,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9044,6 +10259,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9053,6 +10269,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9081,6 +10301,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9090,6 +10311,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9118,6 +10343,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9127,6 +10353,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9155,6 +10385,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9164,6 +10395,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9192,6 +10427,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9201,6 +10437,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9229,6 +10469,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9238,6 +10479,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9266,6 +10511,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9275,6 +10521,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9303,6 +10553,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9312,6 +10563,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9340,6 +10595,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9349,6 +10605,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9377,6 +10637,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9386,6 +10647,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9414,6 +10679,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9423,6 +10689,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9451,6 +10721,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9460,6 +10731,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9488,6 +10763,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9497,6 +10773,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9525,6 +10805,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9534,6 +10815,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9562,6 +10847,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9571,6 +10857,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9599,6 +10889,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9608,6 +10899,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9636,6 +10931,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9645,6 +10941,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9673,6 +10973,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9682,6 +10983,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9710,6 +11015,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9719,6 +11025,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9747,6 +11057,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9756,6 +11067,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9784,6 +11099,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9793,6 +11109,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9821,11 +11141,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -9858,6 +11183,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9867,6 +11193,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9895,6 +11225,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9904,6 +11235,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9932,6 +11267,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9941,6 +11277,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9969,6 +11309,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9978,6 +11319,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10006,6 +11351,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10015,6 +11361,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10043,6 +11393,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10052,6 +11403,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -10080,6 +11435,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10089,6 +11445,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10117,6 +11477,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10126,6 +11487,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10154,6 +11519,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10163,6 +11529,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10191,6 +11561,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10200,6 +11571,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10228,6 +11603,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10237,6 +11613,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10265,6 +11645,7 @@ low_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10274,6 +11655,10 @@ low_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10302,6 +11687,7 @@ mid_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10311,6 +11697,10 @@ mid_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10339,6 +11729,7 @@ high_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -10348,6 +11739,10 @@ high_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10376,6 +11771,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10385,6 +11781,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10413,6 +11813,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10422,6 +11823,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10450,6 +11855,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10459,6 +11865,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10487,6 +11897,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10496,6 +11907,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10524,6 +11939,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10533,6 +11949,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10561,6 +11981,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -10570,6 +11991,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10598,6 +12023,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -10607,6 +12033,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10635,6 +12065,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -10644,6 +12075,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10672,6 +12107,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -10681,6 +12117,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10709,6 +12149,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10718,6 +12159,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -10746,6 +12191,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10755,6 +12201,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -10783,6 +12233,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10792,6 +12243,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10820,6 +12275,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10829,6 +12285,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10857,6 +12317,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10866,6 +12327,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10894,6 +12359,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10903,6 +12369,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10931,6 +12401,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10940,6 +12411,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10968,6 +12443,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10977,6 +12453,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -11005,6 +12485,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11014,6 +12495,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11042,6 +12527,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11051,6 +12537,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11079,6 +12569,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11088,6 +12579,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -11116,6 +12611,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11125,6 +12621,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11153,6 +12653,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11162,6 +12663,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11190,6 +12695,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11199,6 +12705,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11227,6 +12737,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11236,6 +12747,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11264,6 +12779,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11273,6 +12789,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11301,6 +12821,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11310,6 +12831,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11338,6 +12863,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11347,6 +12873,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11375,6 +12905,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11384,6 +12915,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11412,6 +12947,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -11421,6 +12957,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11449,6 +12989,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11458,6 +12999,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11486,6 +13031,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11495,6 +13041,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11523,6 +13073,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11532,6 +13083,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11560,6 +13115,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11569,6 +13125,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11597,6 +13157,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11606,6 +13167,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11634,6 +13199,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11643,6 +13209,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11671,6 +13241,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11680,6 +13251,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11708,6 +13283,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11717,6 +13293,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/parm/postxconfig-NT-GFS-WAFS-ANL.txt b/parm/gfs/postxconfig-NT-gfs-wafs-anl.txt similarity index 100% rename from parm/postxconfig-NT-GFS-WAFS-ANL.txt rename to parm/gfs/postxconfig-NT-gfs-wafs-anl.txt diff --git a/parm/postxconfig-NT-GFS-WAFS-EXT.txt b/parm/gfs/postxconfig-NT-gfs-wafs-ext.txt similarity index 100% rename from parm/postxconfig-NT-GFS-WAFS-EXT.txt rename to parm/gfs/postxconfig-NT-gfs-wafs-ext.txt diff --git a/parm/postxconfig-NT-GFS-WAFS.txt b/parm/gfs/postxconfig-NT-gfs-wafs.txt similarity index 100% rename from parm/postxconfig-NT-GFS-WAFS.txt rename to parm/gfs/postxconfig-NT-gfs-wafs.txt diff --git a/parm/postxconfig-NT-GFS.txt b/parm/gfs/postxconfig-NT-gfs.txt similarity index 92% rename from parm/postxconfig-NT-GFS.txt rename to parm/gfs/postxconfig-NT-gfs.txt index 9d4370860..04f7765d2 100644 --- a/parm/postxconfig-NT-GFS.txt +++ b/parm/gfs/postxconfig-NT-gfs.txt @@ -36,6 +36,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -73,6 +78,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -110,6 +120,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -147,6 +162,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -184,6 +204,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -221,6 +246,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -230,6 +256,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -258,6 +288,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -267,6 +298,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -295,6 +330,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -304,6 +340,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -332,6 +372,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -341,6 +382,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -369,6 +414,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -378,6 +424,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -406,6 +456,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -415,6 +466,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -443,6 +498,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -452,6 +508,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -480,6 +540,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -489,6 +550,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -517,6 +582,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -526,6 +592,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -554,6 +624,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -563,6 +634,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -591,6 +666,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -600,6 +676,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -628,6 +708,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -637,6 +718,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -665,6 +750,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -674,6 +760,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -702,6 +792,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -711,6 +802,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -739,6 +834,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -748,6 +844,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -776,6 +876,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -785,6 +886,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -813,6 +918,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -822,6 +928,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -850,6 +960,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -859,6 +970,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -887,6 +1002,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -896,6 +1012,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -924,6 +1044,7 @@ surface ? ? ? +? 0 0.0 0 @@ -933,6 +1054,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -961,6 +1086,7 @@ surface ? ? ? +? 0 0.0 0 @@ -970,6 +1096,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -998,6 +1128,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1007,6 +1138,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1035,6 +1170,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1044,6 +1180,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1072,6 +1212,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1081,6 +1222,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1109,6 +1254,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -1118,6 +1264,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1146,6 +1296,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1155,6 +1306,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1183,6 +1338,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1192,6 +1348,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1220,6 +1380,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1229,6 +1390,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1257,6 +1422,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1266,6 +1432,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1294,6 +1464,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1303,6 +1474,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1331,6 +1506,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1340,6 +1516,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1368,6 +1548,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1377,6 +1558,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1405,6 +1590,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1414,6 +1600,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1442,6 +1632,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1451,6 +1642,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1479,6 +1674,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1488,6 +1684,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1516,6 +1716,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1525,6 +1726,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1553,6 +1758,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1562,6 +1768,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1590,6 +1800,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1599,6 +1810,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1627,6 +1842,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1636,6 +1852,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1664,6 +1884,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1673,6 +1894,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1701,6 +1926,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1710,6 +1936,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1738,6 +1968,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1747,6 +1978,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1775,6 +2010,7 @@ spec_hgt_lvl_above_grnd 0. 0. ? ? +? 0 0.0 0 @@ -1784,6 +2020,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1812,6 +2052,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1821,6 +2062,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1849,6 +2094,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -1858,6 +2104,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1886,6 +2136,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1895,6 +2146,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1923,6 +2178,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1932,6 +2188,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1960,6 +2220,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1969,6 +2230,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1997,6 +2262,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2006,6 +2272,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2034,6 +2304,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2043,6 +2314,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2071,6 +2346,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2080,6 +2356,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2108,6 +2388,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2117,6 +2398,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2145,6 +2430,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2154,6 +2440,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2182,6 +2472,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2191,6 +2482,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2219,6 +2514,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2228,6 +2524,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2256,6 +2556,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2265,6 +2566,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2293,6 +2598,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2302,6 +2608,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2330,6 +2640,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2339,6 +2650,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2367,6 +2682,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2376,6 +2692,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2404,6 +2724,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -2413,6 +2734,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2441,6 +2766,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2450,6 +2776,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2478,6 +2808,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2487,6 +2818,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2515,6 +2850,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2524,6 +2860,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2552,6 +2892,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2561,6 +2902,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2589,6 +2934,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2598,6 +2944,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2626,6 +2976,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2635,6 +2986,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2663,6 +3018,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2672,6 +3028,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2700,6 +3060,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2709,6 +3070,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2737,6 +3102,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2746,6 +3112,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2774,6 +3144,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2783,6 +3154,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2811,6 +3186,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -2820,6 +3196,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2848,6 +3228,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2857,6 +3238,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2885,6 +3270,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2894,6 +3280,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2922,6 +3312,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2931,6 +3322,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2959,6 +3354,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2968,6 +3364,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2996,6 +3396,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3005,6 +3406,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3033,6 +3438,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3042,6 +3448,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3070,6 +3480,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3079,6 +3490,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3107,6 +3522,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3116,6 +3532,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3144,6 +3564,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3153,6 +3574,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3181,6 +3606,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3190,6 +3616,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3218,6 +3648,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3227,6 +3658,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3255,6 +3690,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3264,6 +3700,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3292,6 +3732,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3301,6 +3742,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3329,6 +3774,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3338,6 +3784,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3366,6 +3816,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3375,6 +3826,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3403,6 +3858,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3412,6 +3868,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3440,6 +3900,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3449,6 +3910,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3477,6 +3942,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3486,6 +3952,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3514,6 +3984,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -3523,6 +3994,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3551,6 +4026,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3560,6 +4036,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3588,6 +4068,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3597,6 +4078,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3625,6 +4110,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3634,6 +4120,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3662,6 +4152,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3671,6 +4162,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3699,6 +4194,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3708,6 +4204,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3736,6 +4236,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -3745,6 +4246,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3773,6 +4278,7 @@ RH ? ? ? +? 0 0.0 0 @@ -3782,6 +4288,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3810,6 +4320,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3819,6 +4330,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3847,6 +4362,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3856,6 +4372,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3884,6 +4404,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3893,6 +4414,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3921,6 +4446,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3930,6 +4456,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3958,6 +4488,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -3967,6 +4498,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -3995,6 +4530,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4004,6 +4540,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4032,6 +4572,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -4041,6 +4582,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4069,6 +4614,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4078,6 +4624,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4106,6 +4656,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -4115,6 +4666,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4143,6 +4698,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -4152,6 +4708,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4180,6 +4740,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -4189,6 +4750,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4217,6 +4782,7 @@ sigma_lvl 94. ? ? +? 0 0.0 0 @@ -4226,6 +4792,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4254,6 +4824,7 @@ sigma_lvl 72. ? ? +? 0 0.0 0 @@ -4263,6 +4834,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4291,6 +4866,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4300,6 +4876,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4328,6 +4908,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4337,6 +4918,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4365,6 +4950,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4374,6 +4960,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4402,6 +4992,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4411,6 +5002,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4439,6 +5034,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4448,6 +5044,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4476,6 +5076,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -4485,6 +5086,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4513,6 +5118,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4522,6 +5128,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4550,6 +5160,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4559,6 +5170,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4587,6 +5202,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4596,6 +5212,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4624,6 +5244,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4633,6 +5254,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4661,6 +5286,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -4670,6 +5296,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4698,6 +5328,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4707,6 +5338,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4735,6 +5370,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4744,6 +5380,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4772,6 +5412,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4781,6 +5422,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4809,6 +5454,7 @@ low_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4818,6 +5464,10 @@ low_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4846,6 +5496,7 @@ mid_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4855,6 +5506,10 @@ mid_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4883,6 +5538,7 @@ high_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4892,6 +5548,10 @@ high_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4920,6 +5580,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4929,6 +5590,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4957,6 +5622,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4966,6 +5632,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4994,6 +5664,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5003,6 +5674,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5031,6 +5706,7 @@ low_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5040,6 +5716,10 @@ low_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5068,6 +5748,7 @@ mid_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5077,6 +5758,10 @@ mid_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5105,6 +5790,7 @@ high_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5114,6 +5800,10 @@ high_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5142,6 +5832,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5151,6 +5842,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5179,6 +5874,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5188,6 +5884,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5216,6 +5916,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5225,6 +5926,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5253,6 +5958,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5262,6 +5968,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5290,6 +6000,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5299,6 +6010,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5327,6 +6042,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5336,6 +6052,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5364,6 +6084,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5373,6 +6094,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5401,6 +6126,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5410,6 +6136,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5438,6 +6168,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5447,6 +6178,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5475,6 +6210,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5484,6 +6220,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5512,6 +6252,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5521,6 +6262,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5549,6 +6294,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -5558,6 +6304,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5586,6 +6336,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5595,6 +6346,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5623,6 +6378,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5632,6 +6388,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5660,11 +6420,16 @@ pot_vort_sfc ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -5697,6 +6462,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5706,6 +6472,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5734,6 +6504,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5743,6 +6514,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5771,6 +6546,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -5780,6 +6556,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5808,6 +6588,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5817,6 +6598,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5845,6 +6630,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5854,6 +6640,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5882,6 +6672,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5891,6 +6682,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5919,6 +6714,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5928,6 +6724,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5956,6 +6756,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5965,6 +6766,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5993,6 +6798,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6002,6 +6808,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6030,6 +6840,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6039,6 +6850,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6067,6 +6882,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -6076,6 +6892,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6104,6 +6924,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6113,6 +6934,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6141,6 +6966,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6150,6 +6976,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6178,6 +7008,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6187,6 +7018,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6215,6 +7050,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6224,6 +7060,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6252,6 +7092,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -6261,6 +7102,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6289,6 +7134,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6298,6 +7144,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -6326,6 +7176,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6335,6 +7186,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6363,6 +7218,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6372,6 +7228,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6400,6 +7260,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6409,6 +7270,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6437,6 +7302,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6446,6 +7312,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6474,6 +7344,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6483,6 +7354,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6511,6 +7386,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6520,6 +7396,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6548,6 +7428,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6557,6 +7438,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6585,6 +7470,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6594,6 +7480,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6622,6 +7512,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6631,6 +7522,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6659,6 +7554,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6668,6 +7564,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6696,6 +7596,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6705,6 +7606,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6733,6 +7638,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -6742,6 +7648,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6770,6 +7680,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -6779,6 +7690,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6807,6 +7722,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -6816,6 +7732,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6844,6 +7764,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -6853,6 +7774,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6881,6 +7806,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -6890,6 +7816,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6918,6 +7848,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6927,6 +7858,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6955,6 +7890,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6964,6 +7900,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6992,6 +7932,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7001,6 +7942,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7029,6 +7974,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7038,6 +7984,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7066,6 +8016,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7075,6 +8026,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7103,6 +8058,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7112,6 +8068,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7140,6 +8100,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7149,6 +8110,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7177,6 +8142,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7186,6 +8152,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7214,6 +8184,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7223,6 +8194,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7251,6 +8226,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7260,6 +8236,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7288,6 +8268,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7297,6 +8278,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7324,6 +8309,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -7334,6 +8320,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7361,6 +8351,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -7371,6 +8362,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7398,6 +8393,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -7408,6 +8404,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7435,6 +8435,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -7445,6 +8446,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7472,6 +8477,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -7482,6 +8488,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7509,6 +8519,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -7519,6 +8530,10 @@ between_first_second_limit 545 9 555 +0 +0.0 +0 +0.0 1 9.0 0 @@ -7547,6 +8562,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7556,6 +8572,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 diff --git a/parm/hfip_postcntrl.xml b/parm/hfip_postcntrl.xml new file mode 100755 index 000000000..370282e85 --- /dev/null +++ b/parm/hfip_postcntrl.xml @@ -0,0 +1,1201 @@ + + + + 2DFLD + 4 + ncep_emc + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + hrrr + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + + VEG_ON_SURFACE + 3.0 + + + + VEG_MIN_ON_SURFACE + 3.0 + + + + VEG_MAX_ON_SURFACE + 3.0 + + + + LAI_ON_SURFACE + -3.0 + + + + MAPS_PRMSL_ON_MEAN_SEA_LVL + -0.1 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + -4.0 + + + + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + -4.0 + + + + RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + 3.0 + + + + GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + -4.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + 4.0 + + + + SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + 6.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + PRES_ON_SURFACE + 4.0 + + + + WEASD_ON_SURFACE + -5.0 + + + + SNOWC_ON_SURFACE + 3.0 + + + + SNOD_ON_SURFACE + 5.0 + + + + GSD_ACM_SNOD_ON_SURFACE + 5.0 + + + + VGTYP_ON_SURFACE + NCEP + 3.0 + + + + 4LFTX_ON_SPEC_PRES_ABOVE_GRND + 18000. + 0. + 3.0 + + + + LFTX_ON_ISOBARIC_SFC_500-1000hpa + 50000. + 100000. + 3.0 + + + + ICEC_ON_SURFACE + 1.0 + + + + CAPE_ON_SURFACE + 3.0 + + + + BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND + 18000. + 0. + 3.0 + + + + MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND + 9000. + 0. + 3.0 + + + + UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND + 25500. + 0. + 3.0 + + + + CAPE_ON_0_3KM_ABOVE_GRND + 0. + 3000. + 4.0 + + + + CIN_ON_SURFACE + 3.0 + + + + BEST_CIN_ON_SPEC_PRES_ABOVE_GRND + 18000. + 0. + 3.0 + + + + MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND + 9000. + 0. + 3.0 + + + + UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND + 25500. + 0. + 3.0 + + + + HGT_ON_LFC + 6.0 + + + + PLPL_ON_SPEC_PRES_ABOVE_GRND + NCEP + 25500. + 0. + 3.0 + + + + PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + -3.0 + + + + HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + 3000. 1000. + 4.0 + + + + EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + 4.0 + + + + DENDRITIC_LAYER_DEPTH + NCEP + 261. + 256. + 4.0 + + + + ENHANCED_STRETCHING_POTENTIAL + NCEP + 0. + 3000. + 4.0 + + + + CRITICAL_ANGLE + NCEP + 0. + 500. + 4.0 + + + + ACM_APCP_ON_SURFACE + 5.0 + + + + ACM_WEASD_ON_SURFACE + 5.0 + + + + ACM_GRAUPEL_ON_SURFACE + 6.0 + + + + ACM_FRAIN_ON_SURFACE + 6.0 + + + + BUCKET_WEASD_ON_SURFACE + 5.0 + + + + BUCKET_APCP_ON_SURFACE + 5.0 + + + + BUCKET_GRAUPEL_ON_SURFACE + 6.0 + + + + GSD_CSNOW_ON_SURFACE + 1.0 + + + + GSD_CICEP_ON_SURFACE + 1.0 + + + + GSD_CFRZR_ON_SURFACE + 1.0 + + + + GSD_INST_CRAIN_ON_SURFACE + 1.0 + + + + INST_PRATE_ON_SURFACE + 3.0 + + + + GSD_HGT_ON_CLOUD_CEILING + -3.0 + + + + GSD_HGT_ON_CLOUD_BASE + -3.0 + + + + GSD_HGT_ON_CLOUD_TOP + -3.0 + + + + HPBL_ON_SURFACE + -4.0 + + + + REFC_ON_ENTIRE_ATMOS + NCEP + -4.0 + + + + MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + NCEP + spec_hgt_lvl_above_grnd + 1000. + -4.0 + + + + MAX_REF_ON_ISOTHERMAL_-10C + NCEP + -4.0 + + + + REFD_ON_ISOTHERMAL + NCEP + isothermal + 263. + -4.0 + + + + GSD_VIS_ON_SURFACE + 2.7 + + + + TMP_ON_SURFACE + -4.0 + + + + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + MAX_MAXUVV_ON_SPEC_PRES_LVL_ABOVE_GRND_10-100hpa + NCEP + -4.0 + + + + MAX_MAXDVV_ON_SPEC_HGT_LVL_ABOVE_GRND_10-100hpa + NCEP + -4.0 + + + + MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + NCEP + 3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + NCEP + 3.0 + + + + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + NCEP + 3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + NCEP + 3.0 + + + + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + NCEP + 3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + NCEP + 3.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + 5.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + 5.0 + + + + GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER + 4.0 + + + + GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER + 4.0 + + + + GSD_HAILCAST_HAIL_DIAMETER + 4.0 + + + + AVE_DZDT_ON_SIGMA_LVL_0.5-0.8 + -4.0 + + + + MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR + 3.0 + + + + HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC + -3.0 + + + + USTM_ON_SPEC_HGT_LVL_ABOVE_GRND + 0. + 6000. + -4.0 + + + + VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND + 0. + 6000. + -4.0 + + + + VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + 0. + 1000. + -4.0 + + + + VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + 0. + 1000. + -4.0 + + + + VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + 0. + 6000. + -4.0 + + + + VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + 0. + 6000. + -4.0 + + + + GUST_ON_SURFACE + -4.0 + + + + INST_TCDC_ON_ENTIRE_ATMOS + 3.0 + + + + LCDC_ON_LOW_CLOUD_LYR + 3.0 + + + + MCDC_ON_MID_CLOUD_LYR + 3.0 + + + + HCDC_ON_HIGH_CLOUD_LYR + 3.0 + + + + TCDC_ON_BOUND_LYR + 3.0 + + + + LAND_ON_SURFACE + 1.0 + + + + GSD_ECHOTOP_ON_CLOUD_TOP + 6.0 + + + + GSD_VIL_ON_ENTIRE_ATMOS + NCEP + 6.0 + + + + GSD_RADARVIL_ON_ENTIRE_ATMOS + 6.0 + + + + HGT_ON_EQUIL_LVL + -1.0 + + + + GSD_MAX_LTG_THREAT1_ON_ENTIRE_ATMOS + 4.0 + + + + GSD_MAX_LTG_THREAT2_ON_ENTIRE_ATMOS + 4.0 + + + + GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS + 4.0 + + + + GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + NCEP + -4.0 + + + + GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km + NCEP + -4.0 + + + + GSD_PRES_ON_CLOUD_BASE + 3.0 + + + + PRES_ON_CLOUD_TOP + 3.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND + 80. + -4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND + 80. + -4.0 + + + + HGT_ON_0C_ISOTHERM + 6.0 + + + + RH_ON_0C_ISOTHERM + -0.1 + + + + GSD_PRES_ON_0C_ISOTHERM + 3.0 + + + + GSD_PRES_ON_HGHST_TROP_FRZ_LVL + 3.0 + + + + HGT_ON_HGHST_TROP_FRZ_LVL + 3.0 + + + + RH_ON_HGHST_TROP_FRZ_LVL + -0.1 + + + + HGT_ON_HGHST_TROP_-10C_LVL + 3.0 + + + + HGT_ON_HGHST_TROP_-20C_LVL + 3.0 + + + + CPOFP_ON_SURFACE + -4.0 + + + + INST_DSWRF_ON_SURFACE + 4.0 + + + + INST_DLWRF_ON_SURFACE + 4.0 + + + + INST_USWRF_ON_SURFACE + -3.0 + + + + INST_ULWRF_ON_SURFACE + -3.0 + + + + INST_SWDDNI_ON_SURFACE + 4.0 + + + + INST_SWDDIF_ON_SURFACE + 4.0 + + + + INST_ULWRF_ON_TOP_OF_ATMOS + 4.0 + + + + INST_USWRF_ON_TOP_OF_ATMOS + 4.0 + + + + INST_GFLUX_ON_SURFACE + 3.0 + + + + INST_SHTFL_ON_SURFACE + 3.0 + + + + INST_LHTFL_ON_SURFACE + 3.0 + + + + ACM_SSRUN_ON_SURFACE + -3.0 + + + + ACM_BGRUN_ON_SURFACE + -3.0 + + + + CNWAT_ON_SURFACE + 1.0 + + + + SFCR_ON_SURFACE + 4.0 + + + + FRICV_ON_SURFACE + 3.0 + + + + GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS + NCEP + 3.0 + + + + MSTAV_ON_DEPTH_BEL_LAND_SFC + 3.0 + + + + HGT_ON_SURFACE + -5.0 + + + + DZDT_ON_ISOBARIC_SFC + DZDT + 70000. + -5.0 + + + + AOD_ON_ENTIRE_ATMOS_SINGLE_LYR + 5.0 + + + + SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR + 5.0 + + + + MEAN_FIRE_RDIATV_PWR + 4.0 + + + + TCOLW_ON_ENTIRE_ATMOS + 5.0 + + + + TCOLI_ON_ENTIRE_ATMOS + 6.0 + + + + + + PRSLEV + 4 + ncep_emc + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + hrrr + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + HGT_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 101320. + -5.0 + + + + TMP_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -4.0 + + + + RH_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -3.0 + + + + DPT_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -4.0 + + + + SPFH_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 4.0 + + + + VVEL_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -5.0 + + + + UGRD_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -4.0 + + + + VGRD_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -4.0 + + + + ABSV_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + CLMR_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + CICE_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + RWMR_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + SNMR_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + GRMR_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + TSOIL_ON_DEPTH_BEL_LAND_SFC + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 4.0 + + + + SOILW_ON_DEPTH_BEL_LAND_SFC + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 3.0 + + + + + + NATLEV + 4 + ncep_emc + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + hrrr + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + PRES_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 6.0 + + + + HGT_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + -5.0 + + + + TMP_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + -4.0 + + + + SPFH_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 4.0 + + + + UGRD_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + -4.0 + + + + VGRD_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + -4.0 + + + + VVEL_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + -5.0 + + + + CLMR_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 3.0 + + + + CICE_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 3.0 + + + + RWMR_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 5.0 + + + + SNMR_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 3.0 + + + + GRMR_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 3.0 + + + + NCCD_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 3.0 + + + + NCIP_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 3.0 + + + + NCRAIN_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 5.0 + + + + NCWFA_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 3.0 + + + + NCIFA_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 3.0 + + + + TKE_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + -2.0 + + + + FRACCC_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 3.0 + + + + SMOKE_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. + 6.0 + + + + SOILW_ON_DEPTH_BEL_LAND_SFC + 2 + 0. 1. + 2 + 0. 1. + 3.0 + + + + + diff --git a/parm/hrrr_postcntrl.xml b/parm/hrrr_postcntrl.xml index d01d39a80..2b0d9445c 100755 --- a/parm/hrrr_postcntrl.xml +++ b/parm/hrrr_postcntrl.xml @@ -1099,7 +1099,7 @@ - GSD_NCCD_ON_HYBRID_LVL + NCCD_ON_HYBRID_LVL 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. @@ -1107,7 +1107,7 @@ - GSD_NCIP_ON_HYBRID_LVL + NCIP_ON_HYBRID_LVL 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. @@ -1115,7 +1115,7 @@ - GSD_NCRAIN_ON_HYBRID_LVL + NCRAIN_ON_HYBRID_LVL 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. diff --git a/parm/makefile b/parm/makefile index 55a82d860..137a115d9 100644 --- a/parm/makefile +++ b/parm/makefile @@ -18,60 +18,66 @@ RM=rm -f # Make sure all of the .txt files are in the ALL_TXT variable. ALL_TXT= \ - postxconfig-NT-GFS.txt \ - postxconfig-NT-GFS-GOES.txt \ - postxconfig-NT-GFS-ANL.txt \ - postxconfig-NT-GFS-F00.txt \ - postxconfig-NT-GFS-FLUX.txt \ - postxconfig-NT-GFS-FLUX-F00.txt \ + ./gfs/postxconfig-NT-gfs.txt \ + ./gfs/postxconfig-NT-gfs-goes.txt \ + ./gfs/postxconfig-NT-gfs-anl.txt \ + ./gfs/postxconfig-NT-gfs-f00.txt \ + ./gfs/postxconfig-NT-gfs-flux.txt \ + ./gfs/postxconfig-NT-gfs-flux-f00.txt \ + ./gfs/postxconfig-NT-gfs-two.txt \ + ./gfs/postxconfig-NT-gfs-f00-two.txt \ + ./gefs/postxconfig-NT-gefs.txt \ + ./gefs/postxconfig-NT-gefs-f00.txt \ + ./gefs/postxconfig-NT-gefs-aerosol.txt \ + ./gefs/postxconfig-NT-gefs-f00-aerosol.txt \ + ./sfs/postxconfig-NT-sfs.txt \ postxconfig-NT-NMM.txt \ postxconfig-NT-NGAC.txt \ - postxconfig-NT-GEFS.txt \ - postxconfig-NT-GEFS-F00.txt \ + postxconfig-NT-hafs_ar_nosat.txt \ + postxconfig-NT-hafs_ar_nosat_l65.txt \ postxconfig-NT-hafs_sat.txt \ postxconfig-NT-hafs_nosat.txt \ postxconfig-NT-hafs.txt \ - postxconfig-NT-GFS-TWO.txt \ - postxconfig-NT-GFS-F00-TWO.txt \ postxconfig-NT-hrrr.txt \ postxconfig-NT-rap.txt \ - postxconfig-NT-fv3lam_rrfs.txt \ + postxconfig-NT-rrfs.txt \ + postxconfig-NT-rrfs_subh.txt \ postxconfig-NT-UFS-aerosol.txt \ postxconfig-NT-UFS-aerosol-F00.txt \ - postxconfig-NT-GEFS-aerosol.txt \ - postxconfig-NT-GEFS-F00-aerosol.txt \ - postxconfig-NT-AQM.txt \ - postxconfig-NT-SFS.txt + postxconfig-NT-AQM.txt .PHONY: all clean all: $(ALL_TXT) clean: $(RM) $(ALL_TXT) -postxconfig-NT-GFS.txt: postcntrl_gfs.xml post_avblflds.xml -postxconfig-NT-GFS-GOES.txt: postcntrl_gfs_goes.xml post_avblflds.xml -postxconfig-NT-GFS-ANL.txt: postcntrl_gfs_anl.xml post_avblflds.xml -postxconfig-NT-GFS-F00.txt: postcntrl_gfs_f00.xml post_avblflds.xml -postxconfig-NT-GFS-FLUX.txt: postcntrl_gfs_flux.xml post_avblflds.xml -postxconfig-NT-GFS-FLUX-F00.txt: postcntrl_gfs_flux_f00.xml post_avblflds.xml +./gfs/postxconfig-NT-gfs.txt: ./gfs/postcntrl_gfs.xml post_avblflds.xml +./gfs/postxconfig-NT-gfs-goes.txt: ./gfs/postcntrl_gfs_goes.xml post_avblflds.xml +./gfs/postxconfig-NT-gfs-anl.txt: ./gfs/postcntrl_gfs_anl.xml post_avblflds.xml +./gfs/postxconfig-NT-gfs-f00.txt: ./gfs/postcntrl_gfs_f00.xml post_avblflds.xml +./gfs/postxconfig-NT-gfs-flux.txt: ./gfs/postcntrl_gfs_flux.xml post_avblflds.xml +./gfs/postxconfig-NT-gfs-flux-f00.txt: ./gfs/postcntrl_gfs_flux_f00.xml post_avblflds.xml +./gfs/postxconfig-NT-gfs-two.txt: ./gfs/postcntrl_gfs_two.xml post_avblflds.xml +./gfs/postxconfig-NT-gfs-f00-two.txt: ./gfs/postcntrl_gfs_f00_two.xml post_avblflds.xml +./gefs/postxconfig-NT-gefs.txt: ./gefs/postcntrl_gefs.xml post_avblflds.xml +./gefs/postxconfig-NT-gefs-f00.txt: ./gefs/postcntrl_gefs_f00.xml post_avblflds.xml +./gefs/postxconfig-NT-gefs-aerosol.txt: ./gefs/postcntrl_gefs_aerosol.xml post_avblflds.xml +./gefs/postxconfig-NT-gefs-f00-aerosol.txt: ./gefs/postcntrl_gefs_aerosol_f00.xml post_avblflds.xml +./sfs/postxconfig-NT-sfs.txt: ./sfs/postcntrl_sfs.xml post_avblflds.xml postxconfig-NT-NMM.txt: nam_cntrl_cmaq.xml nam_post_avblflds.xml postxconfig-NT-NGAC.txt: ngac_postcntrl.xml ngac_post_avblflds.xml -postxconfig-NT-GEFS.txt: postcntrl_gefs.xml post_avblflds.xml -postxconfig-NT-GEFS-F00.txt: postcntrl_gefs_f00.xml post_avblflds.xml postxconfig-NT-hafs_sat.txt: postcntrl_hafs_sat.xml post_avblflds.xml postxconfig-NT-hafs_nosat.txt: postcntrl_hafs_nosat.xml post_avblflds.xml +postxconfig-NT-hafs_ar_nosat.txt: postcntrl_hafs_ar_nosat.xml post_avblflds.xml +postxconfig-NT-hafs_ar_nosat_l65.txt: postcntrl_hafs_ar_nosat_l65.xml post_avblflds.xml postxconfig-NT-hafs.txt: postcntrl_hafs.xml post_avblflds.xml -postxconfig-NT-GFS-TWO.txt: postcntrl_gfs_two.xml post_avblflds.xml -postxconfig-NT-GFS-F00-TWO.txt: postcntrl_gfs_f00_two.xml post_avblflds.xml postxconfig-NT-hrrr.txt: hrrr_postcntrl.xml post_avblflds_raphrrr.xml postxconfig-NT-rap.txt: rap_postcntrl.xml post_avblflds_raphrrr.xml -postxconfig-NT-fv3lam_rrfs.txt: fv3lam_rrfs.xml post_avblflds.xml +postxconfig-NT-rrfs.txt: rrfs_postcntrl.xml post_avblflds.xml +postxconfig-NT-rrfs_subh.txt: rrfs_postcntrl_subh.xml post_avblflds.xml postxconfig-NT-UFS-aerosol.txt: postcntrl_ufs_aerosol.xml post_avblflds.xml postxconfig-NT-UFS-aerosol-F00.txt: postcntrl_ufs_aerosol_f00.xml post_avblflds.xml -postxconfig-NT-GEFS-aerosol.txt: postcntrl_gefs_aerosol.xml post_avblflds.xml -postxconfig-NT-GEFS-F00-aerosol.txt: postcntrl_gefs_aerosol_f00.xml post_avblflds.xml postxconfig-NT-AQM.txt: aqm.xml post_avblflds.xml -postxconfig-NT-SFS.txt: postcntrl_sfs.xml post_avblflds.xml %.txt: $(PERL) $(PERLXML) $^ $@ diff --git a/parm/nam_post_avblflds.xml b/parm/nam_post_avblflds.xml index 1601ce92b..af9035e83 100644 --- a/parm/nam_post_avblflds.xml +++ b/parm/nam_post_avblflds.xml @@ -5115,7 +5115,7 @@ 752 - GSD_NCIP_ON_HYBRID_LVL + NCIP_ON_HYBRID_LVL Number concentration for ice particles on hybrid level NCIP hybrid_lvl @@ -5124,7 +5124,7 @@ 754 - GSD_NCRAIN_ON_HYBRID_LVL + NCRAIN_ON_HYBRID_LVL NCRAIN hybrid_lvl 3.0 diff --git a/parm/ngac_post_avblflds.xml b/parm/ngac_post_avblflds.xml index 49057cdfe..c170e084c 100644 --- a/parm/ngac_post_avblflds.xml +++ b/parm/ngac_post_avblflds.xml @@ -5114,7 +5114,7 @@ 752 - GSD_NCIP_ON_HYBRID_LVL + NCIP_ON_HYBRID_LVL Number concentration for ice particles on hybrid level NCIP hybrid_lvl @@ -5123,7 +5123,7 @@ 754 - GSD_NCRAIN_ON_HYBRID_LVL + NCRAIN_ON_HYBRID_LVL NCRAIN hybrid_lvl 3.0 diff --git a/parm/post_avblflds.xml b/parm/post_avblflds.xml index 52580b14d..ac518b3aa 100755 --- a/parm/post_avblflds.xml +++ b/parm/post_avblflds.xml @@ -4508,6 +4508,17 @@ 6.0 + + 525 + BUCKET1_ASNOW_ON_SURFACE + bucket Var density snowfall on surface + tmpl4_8 + ASNOW + ACM + surface + 4.0 + + 526 BUCKET1_APCP_ON_SURFACE @@ -4521,10 +4532,11 @@ 527 - BUCKET1_ACPCP_ON_SURFACE - bucket Convective precipitation on surface + BUCKET1_FRZR_ON_SURFACE + bucket Freezing rain on surface tmpl4_8 - ACPCP + FRZR + NCEP ACM surface 4.0 @@ -4532,10 +4544,10 @@ 528 - BUCKET1_NCPCP_ON_SURFACE - bucket Large scale precipitation on surface + BUCKET1_TSNOWP_ON_SURFACE + bucket snow on surface tmpl4_8 - NCPCP + TSNOWP ACM surface 4.0 @@ -6857,7 +6869,10 @@ tmpl4_48 AEMFLX particulate_org_matter_dry - surface + entire_atmos_single_lyr + smaller_than_first_limit + 7 + 25 5.0 @@ -6874,7 +6889,7 @@ 747 - GSD_NCCD_ON_HYBRID_LVL + NCCD_ON_HYBRID_LVL Number concentration for cloud water drops on hybrid level NCONCD hybrid_lvl @@ -6918,7 +6933,7 @@ 752 - GSD_NCIP_ON_HYBRID_LVL + NCIP_ON_HYBRID_LVL Number concentration for ice particles on hybrid level NCCICE hybrid_lvl @@ -6936,7 +6951,7 @@ 754 - GSD_NCRAIN_ON_HYBRID_LVL + NCRAIN_ON_HYBRID_LVL SPNCR hybrid_lvl 3.0 @@ -6945,8 +6960,10 @@ 755 HWP_ON_SURFACE + tmpl4_8 Hourly Wildfire Potential on surface WFIREPOT + AVE surface 5.0 @@ -6977,6 +6994,20 @@ 4.0 + + 759 + AVE_PM25_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + tmpl4_46 + MASSDEN + AVE + spec_hgt_lvl_above_grnd + smaller_than_first_limit + 7 + 25 + 8. + 6.0 + + 760 GSD_MIXR_ON_SPEC_HGT_LVL_ABOVE_GRND_2m @@ -7028,7 +7059,7 @@ 766 - GSD_NCWFA_ON_HYBRID_LVL + NCWFA_ON_HYBRID_LVL PMTF NCEP hybrid_lvl @@ -7069,6 +7100,20 @@ 3.0 + + 771 + AVE_PM10_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + tmpl4_46 + MASSDEN + AVE + spec_hgt_lvl_above_grnd + 8. + smaller_than_first_limit + 7 + 100 + 6.0 + + 772 INST_SWDDNI_ON_SURFACE @@ -7450,108 +7495,140 @@ 913 1H_FFG_EXCEEDANCE - tmpl4_8 + tmpl4_9 QPFFFG NCEP ACM + prob_above_lower_limit surface + 0 + 1.0 + 4.0 914 ACM_FFG_EXCEEDANCE - tmpl4_8 + tmpl4_9 QPFFFG NCEP ACM + prob_above_lower_limit surface + 0 + 1.0 + 4.0 915 1H_2YARI_EXCEEDANCE - tmpl4_8 + tmpl4_9 QPFARI NCEP ACM + prob_above_lower_limit surface + 0 + 2.0 4.0 916 ACM_2YARI_EXCEEDANCE - tmpl4_8 + tmpl4_9 QPFARI NCEP ACM + prob_above_lower_limit surface + 0 + 2.0 4.0 917 1H_5YARI_EXCEEDANCE - tmpl4_8 + tmpl4_9 QPFARI NCEP ACM + prob_above_lower_limit surface + 0 + 5.0 4.0 918 ACM_5YARI_EXCEEDANCE - tmpl4_8 + tmpl4_9 QPFARI NCEP ACM + prob_above_lower_limit surface + 0 + 5.0 4.0 919 1H_10YARI_EXCEEDANCE - tmpl4_8 + tmpl4_9 QPFARI NCEP ACM + prob_above_lower_limit surface + 0 + 10.0 4.0 920 ACM_10YARI_EXCEEDANCE - tmpl4_8 + tmpl4_9 QPFARI NCEP ACM + prob_above_lower_limit surface + 0 + 10.0 4.0 921 1H_100YARI_EXCEEDANCE - tmpl4_8 + tmpl4_9 QPFARI NCEP ACM + prob_above_lower_limit surface + 0 + 100.0 4.0 922 ACM_100YARI_EXCEEDANCE - tmpl4_8 + tmpl4_9 QPFARI NCEP ACM + prob_above_lower_limit surface + 0 + 100.0 4.0 @@ -8335,5 +8412,72 @@ 6.0 + + 1015 + EBB_ON_HYBRID_LVL + tmpl4_48 + AEMFLX + particulate_org_matter_dry + hybrid_lvl + smaller_than_first_limit + 7 + 25 + 6.0 + + + + 1016 + EBB_ON_ISOBARIC_SFC + tmpl4_48 + AEMFLX + particulate_org_matter_dry + isobaric_sfc + smaller_than_first_limit + 7 + 25 + 6.0 + + + + 1017 + EBB_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + tmpl4_48 + AEMFLX + particulate_org_matter_dry + spec_hgt_lvl_above_grnd + 8. + smaller_than_first_limit + 7 + 25 + 6.0 + + + + 1018 + NCCD_ON_ISOBARIC_SFC + Number concentration for cloud water drops on isobaric surfaces + NCONCD + isobaric_sfc + 3.0 + + + + 1019 + NCIP_ON_ISOBARIC_SFC + Number concentration for ice particles on isobaric surfaces + NCCICE + isobaric_sfc + 3.0 + + + + 1020 + NCRAIN_ON_ISOBARIC_SFC + Number concentration for rain on isobaric surfaces + SPNCR + isobaric_sfc + 3.0 + + diff --git a/parm/post_avblflds_raphrrr.xml b/parm/post_avblflds_raphrrr.xml index 65895a026..0e7fbb740 100755 --- a/parm/post_avblflds_raphrrr.xml +++ b/parm/post_avblflds_raphrrr.xml @@ -5298,7 +5298,7 @@ 747 - GSD_NCCD_ON_HYBRID_LVL + NCCD_ON_HYBRID_LVL Number concentration for cloud water drops on hybrid level NCONCD hybrid_lvl @@ -5324,7 +5324,7 @@ 752 - GSD_NCIP_ON_HYBRID_LVL + NCIP_ON_HYBRID_LVL Number concentration for ice particles on hybrid level NCCICE hybrid_lvl @@ -5333,7 +5333,7 @@ 754 - GSD_NCRAIN_ON_HYBRID_LVL + NCRAIN_ON_HYBRID_LVL SPNCR hybrid_lvl 3.0 diff --git a/parm/postcntrl_gfs_goes.xml-new b/parm/postcntrl_gfs_goes.xml-new deleted file mode 100755 index 056fad120..000000000 --- a/parm/postcntrl_gfs_goes.xml-new +++ /dev/null @@ -1,165 +0,0 @@ - - - - - GFSPRS - 0 - ncep_nco - v2003 - local_tab_yes1 - fcst - oper - fcst - fcst - hour - nws_ncep - gfs_avn - complex_packing_spatial_diff - 2nd_ord_sptdiff - fltng_pnt - lossless - - - SBT122_ON_TOP_OF_ATMOS - 4.0 - - - - SBT123_ON_TOP_OF_ATMOS - 4.0 - - - - SBT124_ON_TOP_OF_ATMOS - 4.0 - - - - SBT126_ON_TOP_OF_ATMOS - 4.0 - - - - SBTA167_ON_TOP_OF_ATMOS - SBTA167 - 4.0 - - - - SBTA168_ON_TOP_OF_ATMOS - SBTA168 - 4.0 - - - - SBTA169_ON_TOP_OF_ATMOS - SBTA169 - 4.0 - - - - SBTA1610_ON_TOP_OF_ATMOS - SBTA1610 - 4.0 - - - - SBTA1611_ON_TOP_OF_ATMOS - SBTA1611 - 4.0 - - - - SBTA1612_ON_TOP_OF_ATMOS - SBTA1612 - 4.0 - - - - SBTA1613_ON_TOP_OF_ATMOS - SBTA1613 - 4.0 - - - - SBTA1614_ON_TOP_OF_ATMOS - SBTA1614 - 4.0 - - - - SBTA1615_ON_TOP_OF_ATMOS - SBTA1615 - 4.0 - - - - SBTA1616_ON_TOP_OF_ATMOS - SBTA1616 - 4.0 - - - - SBTA177_ON_TOP_OF_ATMOS - SBTA177 - 4.0 - - - - SBTA178_ON_TOP_OF_ATMOS - SBTA178 - 4.0 - - - - SBTA179_ON_TOP_OF_ATMOS - SBTA179 - 4.0 - - - - SBTA1710_ON_TOP_OF_ATMOS - SBTA1710 - 4.0 - - - - SBTA1711_ON_TOP_OF_ATMOS - SBTA1711 - 4.0 - - - - SBTA1712_ON_TOP_OF_ATMOS - SBTA1712 - 4.0 - - - - SBTA1713_ON_TOP_OF_ATMOS - SBTA1713 - 4.0 - - - - SBTA1714_ON_TOP_OF_ATMOS - SBTA1714 - 4.0 - - - - SBTA1715_ON_TOP_OF_ATMOS - SBTA1715 - 4.0 - - - - SBTA1716_ON_TOP_OF_ATMOS - SBTA1716 - 4.0 - - - - - - diff --git a/parm/postcntrl_hafs_ar_nosat.xml b/parm/postcntrl_hafs_ar_nosat.xml new file mode 100755 index 000000000..77b49e120 --- /dev/null +++ b/parm/postcntrl_hafs_ar_nosat.xml @@ -0,0 +1,762 @@ + + + + + HURPRS + 32769 + ncep_nco + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + hafs + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + HGT_ON_ISOBARIC_SFC + HGT + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + TMP_ON_ISOBARIC_SFC + TMP + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + DPT_ON_ISOBARIC_SFC + DPT + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 5.0 + + + + SPFH_ON_ISOBARIC_SFC + SPFH + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 7.0 + + + + RH_ON_ISOBARIC_SFC + RH + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + UGRD_ON_ISOBARIC_SFC + UGRD + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + VGRD_ON_ISOBARIC_SFC + VGRD + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + DZDT_ON_ISOBARIC_SFC + DZDT + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 5.0 + + + + VVEL_ON_ISOBARIC_SFC + VVEL + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 5.0 + + + + ABSV_ON_ISOBARIC_SFC + ABSV + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + CLMR_ON_ISOBARIC_SFC + CLMR + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + ICMR_ON_ISOBARIC_SFC + ICMR + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + RWMR_ON_ISOBARIC_SFC + RWMR + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + SNMR_ON_ISOBARIC_SFC + SNMR + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + GRLE_ON_ISOBARIC_SFC + GRLE + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + REFD_ON_ISOBARIC_SFC + REFD + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + MSLET_ON_MEAN_SEA_LVL + MSLET + NCEP + 6.0 + + + + PRES_ON_MEAN_SEA_LVL + PRMSL + 6.0 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMP + 4.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + SPFH + 7.0 + + + + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DPT + 4.0 + + + + RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + RH + 3.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + UGRD + 10. + 4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + VGRD + 10. + 4.0 + + + + PRES_ON_SURFACE + PRES + 6.0 + + + + HGT_ON_SURFACE + HGT + 6.0 + + + + TMP_ON_SURFACE + TMP + 4.0 + + + + SFEXC_ON_SURFACE + SFEXC + NCEP + 4.0 + + + + CAPE_ON_SURFACE + CAPE + 4.0 + + + + CIN_ON_SURFACE + CIN + 4.0 + + + + PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + PWAT + 6.0 + + + + HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + HLCY + 3000. + 4.0 + + + + ACM_APCP_ON_SURFACE + APCP + -4.0 + + + + ACM_GRAUPEL_ON_SURFACE + 6.0 + + + + BUCKET_GRAUPEL_ON_SURFACE + 6.0 + + + + ACM_FRAIN_ON_SURFACE + 6.0 + + + + BUCKET_FRAIN_ON_SURFACE + 6.0 + + + + BUCKET_SNOWFALL_ON_SURFACE + 6.0 + + + + ACM_ACPCP_ON_SURFACE + ACPCP + -4.0 + + + + ACM_NCPCP_ON_SURFACE + NCPCP + -4.0 + + + + CACM_APCP_ON_SURFACE + -4.0 + + + + CACM_ACPCP_ON_SURFACE + -4.0 + + + + CACM_NCPCP_ON_SURFACE + -4.0 + + + + AVE_PRATE_ON_SURFACE + PRATE + 4.0 + + + + AVE_CPRAT_ON_SURFACE + CPRAT + 4.0 + + + + INST_TCDC_ON_ENTIRE_ATMOS + TCDC + 4.0 + + + + AVE_TCDC_ON_ENTIRE_ATMOS + TCDC + 4.0 + + + + INST_USWRF_ON_SURFACE + USWRF + NCEP + 6.0 + + + + INST_ULWRF_ON_SURFACE + ULWRF + NCEP + 6.0 + + + + AVE_DSWRF_ON_SURFACE + DSWRF + NCEP + 6.0 + + + + AVE_DLWRF_ON_SURFACE + DLWRF + NCEP + 4.0 + + + + AVE_USWRF_ON_SURFACE + USWRF + NCEP + 6.0 + + + + AVE_ULWRF_ON_SURFACE + ULWRF + NCEP + 4.0 + + + + AVE_USWRF_ON_TOP_OF_ATMOS + USWRF + NCEP + 6.0 + + + + AVE_ULWRF_ON_TOP_OF_ATMOS + ULWRF + NCEP + 4.0 + + + + INST_ULWRF_ON_TOP_OF_ATMOS + ULWRF + NCEP + 4.0 + + + + INST_DSWRF_ON_SURFACE + DSWRF + NCEP + 6.0 + + + + INST_DLWRF_ON_SURFACE + DLWRF + NCEP + 4.0 + + + + SFCR_ON_SURFACE + SFCR + 6.0 + + + + FRICV_ON_SURFACE + FRICV + NCEP + 4.0 + + + + UFLX_ON_SURFACE + UFLX + 4.0 + + + + VFLX_ON_SURFACE + VFLX + 4.0 + + + + INST_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + INST_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + NLAT_ON_SURFACE + NLAT + NCEP + 4.0 + + + + ELON_ON_SURFACE + ELON + NCEP + 4.0 + + + + LAND_ON_SURFACE + LAND + 1.0 + + + + WTMP_ON_SURFACE + WTMP + 4.0 + + + + PRES_ON_TROPOPAUSE + PRES + 6.0 + + + + HGT_ON_TROPOPAUSE + HGT + 6.0 + + + + TMP_ON_TROPOPAUSE + TMP + 4.0 + + + + POT_ON_TROPOPAUSE + POT + 5.0 + + + + UGRD_ON_TROPOPAUSE + UGRD + 4.0 + + + + VGRD_ON_TROPOPAUSE + VGRD + 4.0 + + + + VWSH_ON_TROPOPAUSE + VWSH + NCEP + 3.0 + + + + TMP_ON_CLOUD_TOP + TMP + 4.0 + + + + REFC_ON_ENTIRE_ATMOS + REFC + NCEP + 4.0 + + + + HPBL_ON_SURFACE + HPBL + NCEP + 6.0 + + + + TCOLW_ON_ENTIRE_ATMOS + TCOLW + NCEP + 5.0 + + + + TCOLI_ON_ENTIRE_ATMOS + TCOLI + NCEP + 5.0 + + + + TCOLR_ON_ENTIRE_ATMOS + TCOLR + NCEP + 5.0 + + + + TCOLS_ON_ENTIRE_ATMOS + TCOLS + NCEP + 5.0 + + + + TCOLC_ON_ENTIRE_ATMOS + TCOLC + NCEP + 5.0 + + + + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + WIND + -4.0 + + + + GUST_ON_SURFACE + GUST + 3.0 + + + + MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa + MAXUVV + -4.0 + + + + MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa + MAXDVV + -4.0 + + + + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + MXUPHL + NCEP + -3.0 + + + + MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + MXUPHL + NCEP + -3.0 + + + + + + + CNWAT_ON_SURFACE + CNWAT + 1.0 + + + + WEASD_ON_SURFACE + WEASD + 4.0 + + + + SNOWC_ON_SURFACE + SNOWC + 3.0 + + + + VEG_ON_SURFACE + VEG + 3.0 + + + + ACM_SNOWFALL_ON_SURFACE + 6.0 + + + + ACM_SNOM_ON_SURFACE + SNOM + 4.0 + + + + ACM_SSRUN_ON_SURFACE + SSRUN + 6.0 + + + + ACM_BGRUN_ON_SURFACE + BGRUN + 6.0 + + + + ACM_WATR_ON_SURFACE + WATR + 6.0 + + + + + + AVE_CRAIN_ON_SURFACE + NCEP + 1.0 + + + + AVE_CSNOW_ON_SURFACE + NCEP + 1.0 + + + + AVE_CICEP_ON_SURFACE + NCEP + 1.0 + + + + AVE_CFRZR_ON_SURFACE + NCEP + 1.0 + + + + NCCD_ON_HYBRID_LVL + NCONCD + + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. + 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. + 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. + 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. + 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. + 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. + 127. + + 3.0 + + + + NCIP_ON_HYBRID_LVL + NCCICE + + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. + 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. + 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. + 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. + 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. + 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. + 127. + + 3.0 + + + + NCRAIN_ON_HYBRID_LVL + SPNCR + + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. + 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. + 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. + 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. + 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. + 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. + 127. + + 3.0 + + + + NCCD_ON_ISOBARIC_SFC + NCONCD + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + NCIP_ON_ISOBARIC_SFC + NCCICE + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + NCRAIN_ON_ISOBARIC_SFC + SPNCR + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + + diff --git a/parm/postcntrl_hafs_ar_nosat_l65.xml b/parm/postcntrl_hafs_ar_nosat_l65.xml new file mode 100644 index 000000000..dd35f1cf0 --- /dev/null +++ b/parm/postcntrl_hafs_ar_nosat_l65.xml @@ -0,0 +1,748 @@ + + + + + HURPRS + 32769 + ncep_nco + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + hafs + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + HGT_ON_ISOBARIC_SFC + HGT + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + TMP_ON_ISOBARIC_SFC + TMP + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + DPT_ON_ISOBARIC_SFC + DPT + 10000. 20000. 30000. 50000. 70000. 85000. + 5.0 + + + + SPFH_ON_ISOBARIC_SFC + SPFH + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 7.0 + + + + RH_ON_ISOBARIC_SFC + RH + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + UGRD_ON_ISOBARIC_SFC + UGRD + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + VGRD_ON_ISOBARIC_SFC + VGRD + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + DZDT_ON_ISOBARIC_SFC + DZDT + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 5.0 + + + + VVEL_ON_ISOBARIC_SFC + VVEL + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 5.0 + + + + ABSV_ON_ISOBARIC_SFC + ABSV + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 4.0 + + + + CLMR_ON_ISOBARIC_SFC + CLMR + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + ICMR_ON_ISOBARIC_SFC + ICMR + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + RWMR_ON_ISOBARIC_SFC + RWMR + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + SNMR_ON_ISOBARIC_SFC + SNMR + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + GRLE_ON_ISOBARIC_SFC + GRLE + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 6.0 + + + + REFD_ON_ISOBARIC_SFC + REFD + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + + + + MSLET_ON_MEAN_SEA_LVL + MSLET + NCEP + 6.0 + + + + PRES_ON_MEAN_SEA_LVL + PRMSL + 6.0 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMP + 4.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + SPFH + 7.0 + + + + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DPT + 4.0 + + + + RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + RH + 3.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + UGRD + 10. + 4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + VGRD + 10. + 4.0 + + + + PRES_ON_SURFACE + PRES + 6.0 + + + + HGT_ON_SURFACE + HGT + 6.0 + + + + TMP_ON_SURFACE + TMP + 4.0 + + + + SFEXC_ON_SURFACE + SFEXC + NCEP + 4.0 + + + + CAPE_ON_SURFACE + CAPE + 4.0 + + + + CIN_ON_SURFACE + CIN + 4.0 + + + + PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + PWAT + 6.0 + + + + HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + HLCY + 3000. + 4.0 + + + + ACM_APCP_ON_SURFACE + APCP + -4.0 + + + + ACM_GRAUPEL_ON_SURFACE + 6.0 + + + + BUCKET_GRAUPEL_ON_SURFACE + 6.0 + + + + ACM_FRAIN_ON_SURFACE + 6.0 + + + + BUCKET_FRAIN_ON_SURFACE + 6.0 + + + + BUCKET_SNOWFALL_ON_SURFACE + 6.0 + + + + ACM_ACPCP_ON_SURFACE + ACPCP + -4.0 + + + + ACM_NCPCP_ON_SURFACE + NCPCP + -4.0 + + + + CACM_APCP_ON_SURFACE + -4.0 + + + + CACM_ACPCP_ON_SURFACE + -4.0 + + + + CACM_NCPCP_ON_SURFACE + -4.0 + + + + AVE_PRATE_ON_SURFACE + PRATE + 4.0 + + + + AVE_CPRAT_ON_SURFACE + CPRAT + 4.0 + + + + INST_TCDC_ON_ENTIRE_ATMOS + TCDC + 4.0 + + + + AVE_TCDC_ON_ENTIRE_ATMOS + TCDC + 4.0 + + + + INST_USWRF_ON_SURFACE + USWRF + NCEP + 6.0 + + + + INST_ULWRF_ON_SURFACE + ULWRF + NCEP + 6.0 + + + + AVE_DSWRF_ON_SURFACE + DSWRF + NCEP + 6.0 + + + + AVE_DLWRF_ON_SURFACE + DLWRF + NCEP + 4.0 + + + + AVE_USWRF_ON_SURFACE + USWRF + NCEP + 6.0 + + + + AVE_ULWRF_ON_SURFACE + ULWRF + NCEP + 4.0 + + + + AVE_USWRF_ON_TOP_OF_ATMOS + USWRF + NCEP + 6.0 + + + + AVE_ULWRF_ON_TOP_OF_ATMOS + ULWRF + NCEP + 4.0 + + + + INST_ULWRF_ON_TOP_OF_ATMOS + ULWRF + NCEP + 4.0 + + + + INST_DSWRF_ON_SURFACE + DSWRF + NCEP + 6.0 + + + + INST_DLWRF_ON_SURFACE + DLWRF + NCEP + 4.0 + + + + SFCR_ON_SURFACE + SFCR + 6.0 + + + + FRICV_ON_SURFACE + FRICV + NCEP + 4.0 + + + + UFLX_ON_SURFACE + UFLX + 4.0 + + + + VFLX_ON_SURFACE + VFLX + 4.0 + + + + INST_SHTFL_ON_SURFACE + SHTFL + 4.0 + + + + INST_LHTFL_ON_SURFACE + LHTFL + 4.0 + + + + NLAT_ON_SURFACE + NLAT + NCEP + 4.0 + + + + ELON_ON_SURFACE + ELON + NCEP + 4.0 + + + + LAND_ON_SURFACE + LAND + 1.0 + + + + WTMP_ON_SURFACE + WTMP + 4.0 + + + + PRES_ON_TROPOPAUSE + PRES + 6.0 + + + + HGT_ON_TROPOPAUSE + HGT + 6.0 + + + + TMP_ON_TROPOPAUSE + TMP + 4.0 + + + + POT_ON_TROPOPAUSE + POT + 5.0 + + + + UGRD_ON_TROPOPAUSE + UGRD + 4.0 + + + + VGRD_ON_TROPOPAUSE + VGRD + 4.0 + + + + VWSH_ON_TROPOPAUSE + VWSH + NCEP + 3.0 + + + + TMP_ON_CLOUD_TOP + TMP + 4.0 + + + + REFC_ON_ENTIRE_ATMOS + REFC + NCEP + 4.0 + + + + HPBL_ON_SURFACE + HPBL + NCEP + 6.0 + + + + TCOLW_ON_ENTIRE_ATMOS + TCOLW + NCEP + 5.0 + + + + TCOLI_ON_ENTIRE_ATMOS + TCOLI + NCEP + 5.0 + + + + TCOLR_ON_ENTIRE_ATMOS + TCOLR + NCEP + 5.0 + + + + TCOLS_ON_ENTIRE_ATMOS + TCOLS + NCEP + 5.0 + + + + TCOLC_ON_ENTIRE_ATMOS + TCOLC + NCEP + 5.0 + + + + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + WIND + -4.0 + + + + GUST_ON_SURFACE + GUST + 3.0 + + + + MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa + MAXUVV + -4.0 + + + + MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa + MAXDVV + -4.0 + + + + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + MXUPHL + NCEP + -3.0 + + + + MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + MXUPHL + NCEP + -3.0 + + + + + + + CNWAT_ON_SURFACE + CNWAT + 1.0 + + + + WEASD_ON_SURFACE + WEASD + 4.0 + + + + SNOWC_ON_SURFACE + SNOWC + 3.0 + + + + VEG_ON_SURFACE + VEG + 3.0 + + + + ACM_SNOWFALL_ON_SURFACE + 6.0 + + + + ACM_SNOM_ON_SURFACE + SNOM + 4.0 + + + + ACM_SSRUN_ON_SURFACE + SSRUN + 6.0 + + + + ACM_BGRUN_ON_SURFACE + BGRUN + 6.0 + + + + ACM_WATR_ON_SURFACE + WATR + 6.0 + + + + + + AVE_CRAIN_ON_SURFACE + NCEP + 1.0 + + + + AVE_CSNOW_ON_SURFACE + NCEP + 1.0 + + + + AVE_CICEP_ON_SURFACE + NCEP + 1.0 + + + + AVE_CFRZR_ON_SURFACE + NCEP + 1.0 + + + + NCCD_ON_HYBRID_LVL + NCONCD + + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. + 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. + 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + + 3.0 + + + + NCIP_ON_HYBRID_LVL + NCCICE + + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. + 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. + 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + + 3.0 + + + + NCRAIN_ON_HYBRID_LVL + SPNCR + + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. + 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. + 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. + + 3.0 + + + + NCCD_ON_ISOBARIC_SFC + NCONCD + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + NCIP_ON_ISOBARIC_SFC + NCCICE + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + NCRAIN_ON_ISOBARIC_SFC + SPNCR + 1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. + 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. + 3.0 + + + + + diff --git a/parm/postxconfig-NT-AQM.txt b/parm/postxconfig-NT-AQM.txt index 54f199471..c25973d51 100644 --- a/parm/postxconfig-NT-AQM.txt +++ b/parm/postxconfig-NT-AQM.txt @@ -36,6 +36,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -73,6 +78,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -110,6 +120,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -147,6 +162,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -184,6 +204,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -221,6 +246,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -230,6 +256,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -258,6 +288,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -267,6 +298,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -295,6 +330,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -304,6 +340,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -332,6 +372,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -341,6 +382,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -369,6 +414,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -378,6 +424,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -406,6 +456,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -415,6 +466,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -443,6 +498,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -452,6 +508,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -480,6 +540,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -489,6 +550,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -517,6 +582,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -526,6 +592,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -554,6 +624,7 @@ surface ? ? ? +? 0 0.0 0 @@ -563,6 +634,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -591,6 +666,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -600,6 +676,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -628,6 +708,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -637,6 +718,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -665,6 +750,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -674,6 +760,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -702,6 +792,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -711,6 +802,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -739,6 +834,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -748,6 +844,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -776,6 +876,7 @@ surface ? ? ? +? 0 0.0 0 @@ -785,6 +886,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -813,6 +918,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -822,6 +928,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -850,6 +960,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -859,6 +970,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -886,6 +1001,7 @@ entire_atmos_single_lyr 0 ? total_aerosol +? smaller_than_first_limit 0 0 @@ -896,6 +1012,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -924,6 +1044,7 @@ surface ? ? ? +? 0 0.0 0 @@ -933,6 +1054,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 diff --git a/parm/postxconfig-NT-NGAC.txt b/parm/postxconfig-NT-NGAC.txt index 0fd559001..05c191f03 100644 --- a/parm/postxconfig-NT-NGAC.txt +++ b/parm/postxconfig-NT-NGAC.txt @@ -43,6 +43,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -53,6 +54,10 @@ between_first_second_limit 545 9 565 +0 +0.0 +0 +0.0 1 9.0 0 @@ -80,6 +85,7 @@ surface 0 ? dust_dry +? smaller_than_first_limit 6 10 @@ -90,6 +96,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -117,6 +127,7 @@ surface 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -127,6 +138,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -154,6 +169,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 10 @@ -164,6 +180,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -191,6 +211,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -201,6 +222,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -228,6 +253,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -238,6 +264,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -265,6 +295,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -275,6 +306,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -302,6 +337,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -312,6 +348,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -339,6 +379,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -349,6 +390,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -376,6 +421,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -386,6 +432,10 @@ between_first_second_limit 545 9 565 +0 +0.0 +0 +0.0 1 9.0 0 @@ -413,6 +463,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -423,6 +474,10 @@ between_first_second_limit 545 9 565 +0 +0.0 +0 +0.0 1 9.0 0 @@ -450,6 +505,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -460,6 +516,10 @@ between_first_second_limit 545 9 565 +0 +0.0 +0 +0.0 1 9.0 0 @@ -487,6 +547,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -497,6 +558,10 @@ between_first_second_limit 545 9 565 +0 +0.0 +0 +0.0 1 9.0 0 @@ -540,6 +605,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -550,6 +616,10 @@ between_first_second_limit 545 9 565 +0 +0.0 +0 +0.0 1 9.0 0 @@ -593,6 +663,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -603,6 +674,10 @@ between_first_second_limit 338 9 342 +0 +0.0 +0 +0.0 1 9.0 0 @@ -646,6 +721,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -656,6 +732,10 @@ between_first_second_limit 430 9 450 +0 +0.0 +0 +0.0 1 9.0 0 @@ -699,6 +779,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -709,6 +790,10 @@ between_first_second_limit 620 9 670 +0 +0.0 +0 +0.0 1 9.0 0 @@ -752,6 +837,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -762,6 +848,10 @@ between_first_second_limit 841 9 876 +0 +0.0 +0 +0.0 1 9.0 0 @@ -805,6 +895,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -815,6 +906,10 @@ between_first_second_limit 1628 9 1652 +0 +0.0 +0 +0.0 1 9.0 0 @@ -858,6 +953,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -868,6 +964,10 @@ between_first_second_limit 11000 9 11200 +0 +0.0 +0 +0.0 1 9.0 0 @@ -912,6 +1012,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -921,6 +1022,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -949,6 +1054,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -958,6 +1064,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -986,6 +1096,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -995,6 +1106,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1022,6 +1137,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 2 @@ -1032,6 +1148,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -1059,6 +1179,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 20 @@ -1069,6 +1190,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -1096,6 +1221,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 36 @@ -1106,6 +1232,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -1133,6 +1263,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 60 @@ -1143,6 +1274,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -1170,6 +1305,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 120 @@ -1180,6 +1316,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 diff --git a/parm/postxconfig-NT-NMM.txt b/parm/postxconfig-NT-NMM.txt index 5ebaf3085..1722ebace 100644 --- a/parm/postxconfig-NT-NMM.txt +++ b/parm/postxconfig-NT-NMM.txt @@ -38,6 +38,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -47,6 +48,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -75,6 +80,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -84,6 +90,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -112,6 +122,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -121,6 +132,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -149,6 +164,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -158,6 +174,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -186,6 +206,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -195,6 +216,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -223,6 +248,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -232,6 +258,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -260,6 +290,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -269,6 +300,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -297,6 +332,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -306,6 +342,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -334,6 +374,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -343,6 +384,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -371,6 +416,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -380,6 +426,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -408,6 +458,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -417,6 +468,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -445,6 +500,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -454,6 +510,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -482,6 +542,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -491,6 +552,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -519,6 +584,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -528,6 +594,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -556,6 +626,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -565,6 +636,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -593,6 +668,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -602,6 +678,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -630,6 +710,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -639,6 +720,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -667,6 +752,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -676,6 +762,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -704,6 +794,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -713,6 +804,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -741,6 +836,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -750,6 +846,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -778,6 +878,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -787,6 +888,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -815,6 +920,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -824,6 +930,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -852,6 +962,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -861,6 +972,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -889,6 +1004,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -898,6 +1014,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -926,6 +1046,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -935,6 +1056,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -963,6 +1088,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -972,6 +1098,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1000,6 +1130,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1009,6 +1140,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1037,6 +1172,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1046,6 +1182,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -1074,6 +1214,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1083,6 +1224,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1111,6 +1256,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1120,6 +1266,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1148,6 +1298,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1157,6 +1308,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1185,6 +1340,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1194,6 +1350,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1222,6 +1382,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1231,6 +1392,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1259,6 +1424,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1268,6 +1434,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1296,6 +1466,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1305,6 +1476,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1333,6 +1508,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1342,6 +1518,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1370,6 +1550,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1379,6 +1560,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1407,6 +1592,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -1416,6 +1602,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1444,6 +1634,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -1453,6 +1644,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1481,6 +1676,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1490,6 +1686,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1518,6 +1718,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1527,6 +1728,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1555,6 +1760,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1564,6 +1770,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1592,6 +1802,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1601,6 +1812,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1629,6 +1844,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1638,6 +1854,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1666,6 +1886,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1675,6 +1896,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1703,6 +1928,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1712,6 +1938,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1740,6 +1970,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1749,6 +1980,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1777,6 +2012,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1786,6 +2022,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1814,6 +2054,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1823,6 +2064,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1851,6 +2096,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1860,6 +2106,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1888,6 +2138,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1897,6 +2148,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1925,6 +2180,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1934,6 +2190,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1962,6 +2222,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1971,6 +2232,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1999,6 +2264,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2008,6 +2274,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2036,6 +2306,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -2045,6 +2316,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2073,6 +2348,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -2082,6 +2358,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2110,6 +2390,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -2119,6 +2400,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2147,6 +2432,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -2156,6 +2442,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2184,6 +2474,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -2193,6 +2484,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2221,6 +2516,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2230,6 +2526,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2258,6 +2558,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2267,6 +2568,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2295,6 +2600,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2304,6 +2610,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2332,6 +2642,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2341,6 +2652,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2369,6 +2684,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2378,6 +2694,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2406,6 +2726,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2415,6 +2736,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2443,6 +2768,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2452,6 +2778,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2480,6 +2810,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2489,6 +2820,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2517,6 +2852,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2526,6 +2862,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2554,6 +2894,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2563,6 +2904,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2591,6 +2936,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2600,6 +2946,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2628,6 +2978,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2637,6 +2988,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2665,6 +3020,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2674,6 +3030,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2702,6 +3062,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2711,6 +3072,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2739,6 +3104,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2748,6 +3114,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2776,6 +3146,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2785,6 +3156,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2813,6 +3188,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2822,6 +3198,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2850,6 +3230,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2859,6 +3240,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2887,6 +3272,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2896,6 +3282,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2924,6 +3314,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2933,6 +3324,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2961,6 +3356,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2970,6 +3366,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2998,6 +3398,7 @@ depth_bel_land_sfc 100. ? ? +? 0 0.0 0 @@ -3007,6 +3408,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3035,6 +3440,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3044,6 +3450,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3072,6 +3482,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -3081,6 +3492,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3109,6 +3524,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3118,6 +3534,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3146,6 +3566,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3155,6 +3576,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3183,6 +3608,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3192,6 +3618,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3220,6 +3650,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3229,6 +3660,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3257,6 +3692,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3266,6 +3702,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3294,6 +3734,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3303,6 +3744,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3331,6 +3776,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3340,6 +3786,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3368,6 +3818,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3377,6 +3828,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3405,6 +3860,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3414,6 +3870,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3442,6 +3902,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3451,6 +3912,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3479,6 +3944,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3488,6 +3954,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3516,6 +3986,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3525,6 +3996,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3553,6 +4028,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3562,6 +4038,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3590,6 +4070,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3599,6 +4080,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3627,6 +4112,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3636,6 +4122,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3664,6 +4154,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3673,6 +4164,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3701,6 +4196,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3710,6 +4206,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3738,6 +4238,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3747,6 +4248,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3775,6 +4280,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3784,6 +4290,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3812,6 +4322,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3821,7 +4332,11 @@ surface 0.0 0 0.0 -1 +0 +0.0 +0 +0.0 +1 4.0 0 0 @@ -3849,6 +4364,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3858,6 +4374,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3886,6 +4406,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3895,6 +4416,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3923,6 +4448,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3932,6 +4458,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3960,6 +4490,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3969,6 +4500,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3997,6 +4532,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4006,6 +4542,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4034,6 +4574,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4043,6 +4584,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4071,6 +4616,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4080,6 +4626,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4108,6 +4658,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4117,6 +4668,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4145,6 +4700,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4154,6 +4710,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4182,6 +4742,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4191,6 +4752,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4219,6 +4784,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4228,6 +4794,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4256,6 +4826,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4265,6 +4836,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4293,6 +4868,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4302,6 +4878,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4330,6 +4910,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4339,6 +4920,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4367,6 +4952,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4376,6 +4962,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4404,6 +4994,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4413,6 +5004,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4441,6 +5036,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4450,6 +5046,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4478,6 +5078,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4487,6 +5088,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4515,6 +5120,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4524,6 +5130,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4552,6 +5162,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -4561,6 +5172,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4589,6 +5204,7 @@ lvl_of_adiab_cond_from_sfc ? ? ? +? 0 0.0 0 @@ -4598,6 +5214,10 @@ lvl_of_adiab_cond_from_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4626,6 +5246,7 @@ lvl_of_adiab_cond_from_sfc ? ? ? +? 0 0.0 0 @@ -4635,6 +5256,10 @@ lvl_of_adiab_cond_from_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4663,6 +5288,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4672,6 +5298,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4700,6 +5330,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4709,6 +5340,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4737,6 +5372,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4746,6 +5382,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4774,6 +5414,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4783,6 +5424,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4811,6 +5456,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4820,6 +5466,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4848,6 +5498,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4857,6 +5508,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4885,6 +5540,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -4894,6 +5550,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4922,6 +5582,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -4931,6 +5592,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4959,6 +5624,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -4968,6 +5634,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4996,6 +5666,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5005,6 +5676,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5033,6 +5708,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5042,6 +5718,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5070,6 +5750,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5079,6 +5760,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5107,6 +5792,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5116,6 +5802,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5144,6 +5834,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5153,6 +5844,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.7 0 @@ -5181,6 +5876,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5190,6 +5886,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5218,6 +5918,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5227,6 +5928,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5255,6 +5960,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5264,6 +5970,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5292,6 +6002,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5301,6 +6012,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5329,6 +6044,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5338,6 +6054,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5366,6 +6086,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5375,6 +6096,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5403,6 +6128,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5412,6 +6138,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5440,6 +6170,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5449,6 +6180,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5477,6 +6212,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5486,6 +6222,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5514,6 +6254,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5523,6 +6264,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5551,6 +6296,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5560,6 +6306,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5588,6 +6338,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5597,6 +6348,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5625,6 +6380,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5634,6 +6390,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5662,6 +6422,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5671,6 +6432,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5699,6 +6464,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5708,6 +6474,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -5736,6 +6506,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5745,6 +6516,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5773,6 +6548,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5782,6 +6558,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5810,6 +6590,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5819,6 +6600,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5847,6 +6632,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5856,6 +6642,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5884,6 +6674,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5893,6 +6684,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5921,6 +6716,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5930,6 +6726,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5958,6 +6758,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5967,6 +6768,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5995,6 +6800,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6004,6 +6810,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6032,6 +6842,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6041,6 +6852,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6069,6 +6884,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -6078,6 +6894,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6106,6 +6926,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -6115,6 +6936,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6143,6 +6968,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -6152,6 +6978,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6180,6 +7010,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6189,6 +7020,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6217,6 +7052,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6226,6 +7062,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6254,6 +7094,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6263,6 +7104,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6291,6 +7136,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6300,6 +7146,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6328,6 +7178,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6337,6 +7188,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6365,6 +7220,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6374,6 +7230,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6402,6 +7262,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6411,6 +7272,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6439,6 +7304,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6448,6 +7314,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6476,6 +7346,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6485,6 +7356,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6513,6 +7388,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -6522,6 +7398,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6550,6 +7430,7 @@ RH ? ? ? +? 0 0.0 0 @@ -6559,6 +7440,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -6587,6 +7472,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -6596,6 +7482,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6624,6 +7514,7 @@ lwst_lvl_of_wet_bulb_zero ? ? ? +? 0 0.0 0 @@ -6633,6 +7524,10 @@ lwst_lvl_of_wet_bulb_zero 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -6661,6 +7556,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6670,6 +7566,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6698,6 +7598,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6707,6 +7608,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6735,6 +7640,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -6744,6 +7650,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6772,6 +7682,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -6781,6 +7692,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6809,6 +7724,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6818,6 +7734,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6846,6 +7766,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6855,6 +7776,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -6883,6 +7808,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -6892,6 +7818,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6920,6 +7850,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -6929,6 +7860,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6957,6 +7892,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6966,6 +7902,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6994,6 +7934,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -7003,6 +7944,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7031,6 +7976,7 @@ spec_pres_above_grnd 0. 6000. 15000. ? ? +? 0 0.0 0 @@ -7040,6 +7986,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7068,6 +8018,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -7077,6 +8028,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -7105,6 +8060,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -7114,6 +8070,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -7142,6 +8102,7 @@ sigma_lvl 66. ? ? +? 0 0.0 0 @@ -7151,6 +8112,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -7179,6 +8144,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -7188,6 +8154,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -7216,6 +8186,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -7225,6 +8196,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7253,6 +8228,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -7262,6 +8238,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7290,6 +8270,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -7299,6 +8280,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7327,6 +8312,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -7336,6 +8322,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7364,6 +8354,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -7373,6 +8364,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7401,6 +8396,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -7410,6 +8406,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7438,6 +8438,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -7447,6 +8448,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7475,6 +8480,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -7484,6 +8490,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7512,6 +8522,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -7521,6 +8532,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -7549,6 +8564,7 @@ sigma_lvl 96. ? ? +? 0 0.0 0 @@ -7558,6 +8574,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -7586,6 +8606,7 @@ sigma_lvl 47. ? ? +? 0 0.0 0 @@ -7595,7 +8616,11 @@ sigma_lvl 0.0 0 0.0 -1 +0 +0.0 +0 +0.0 +1 2.0 0 0 @@ -7623,6 +8648,7 @@ sigma_lvl 98. ? ? +? 0 0.0 0 @@ -7632,6 +8658,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -7660,6 +8690,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -7669,6 +8700,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7697,6 +8732,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -7706,6 +8742,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7734,6 +8774,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7743,6 +8784,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7771,6 +8816,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7780,6 +8826,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7808,6 +8858,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -7817,6 +8868,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7845,6 +8900,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7854,6 +8910,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7882,6 +8942,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7891,6 +8952,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7919,6 +8984,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7928,6 +8994,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7956,6 +9026,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7965,6 +9036,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7993,6 +9068,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -8002,6 +9078,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8030,6 +9110,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -8039,6 +9120,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8067,6 +9152,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8076,6 +9162,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8104,6 +9194,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8113,6 +9204,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8141,6 +9236,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8150,6 +9246,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8178,6 +9278,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8187,6 +9288,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8215,6 +9320,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8224,6 +9330,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8252,6 +9362,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8261,6 +9372,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8289,6 +9404,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8298,6 +9414,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8326,6 +9446,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8335,6 +9456,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8363,6 +9488,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8372,6 +9498,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8400,6 +9530,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -8409,6 +9540,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8437,6 +9572,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -8446,6 +9582,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8474,6 +9614,7 @@ shall_convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -8483,6 +9624,10 @@ shall_convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8511,6 +9656,7 @@ shall_convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -8520,6 +9666,10 @@ shall_convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8548,6 +9698,7 @@ grid_scale_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -8557,6 +9708,10 @@ grid_scale_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8585,6 +9740,7 @@ grid_scale_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -8594,6 +9750,10 @@ grid_scale_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8622,6 +9782,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8631,6 +9792,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -8659,6 +9824,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8668,6 +9834,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8696,6 +9866,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8705,6 +9876,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8733,6 +9908,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8742,6 +9918,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8770,6 +9950,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8779,6 +9960,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8807,6 +9992,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8816,6 +10002,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8844,6 +10034,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8853,6 +10044,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8881,6 +10076,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8890,6 +10086,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8918,6 +10118,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8927,6 +10128,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8955,6 +10160,7 @@ lwst_bot_lvl_of_supercooled_liq_water_lyr ? ? ? +? 0 0.0 0 @@ -8964,6 +10170,10 @@ lwst_bot_lvl_of_supercooled_liq_water_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8992,6 +10202,7 @@ hghst_top_lvl_of_supercooled_liq_water_lyr ? ? ? +? 0 0.0 0 @@ -9001,6 +10212,10 @@ hghst_top_lvl_of_supercooled_liq_water_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9029,6 +10244,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -9038,6 +10254,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9066,6 +10286,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9075,6 +10296,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9103,6 +10328,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9112,6 +10338,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9140,6 +10370,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9149,6 +10380,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9177,6 +10412,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9186,6 +10422,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9214,6 +10454,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9223,6 +10464,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9251,6 +10496,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9260,6 +10506,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9288,6 +10538,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9297,6 +10548,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9325,6 +10580,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -9334,6 +10590,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9362,6 +10622,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9371,6 +10632,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -9399,6 +10664,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9408,6 +10674,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9436,6 +10706,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9445,6 +10716,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9473,6 +10748,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9482,6 +10758,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9510,6 +10790,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9519,6 +10800,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9547,6 +10832,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9556,6 +10842,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9584,6 +10874,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -9593,6 +10884,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9621,6 +10916,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -9630,6 +10926,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9658,6 +10958,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -9667,6 +10968,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9695,6 +11000,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9704,6 +11010,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9732,6 +11042,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9741,6 +11052,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9769,6 +11084,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -9778,6 +11094,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9806,6 +11126,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -9815,6 +11136,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9843,6 +11168,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -9852,6 +11178,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9880,6 +11210,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -9889,6 +11220,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9917,6 +11252,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -9926,6 +11262,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9954,6 +11294,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -9963,6 +11304,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9991,6 +11336,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -10000,6 +11346,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10028,6 +11378,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -10037,6 +11388,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10065,6 +11420,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -10074,6 +11430,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10102,6 +11462,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -10111,6 +11472,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10139,6 +11504,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -10148,6 +11514,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10176,6 +11546,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -10185,6 +11556,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -10213,6 +11588,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -10222,6 +11598,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -10250,6 +11630,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10259,6 +11640,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -10287,6 +11672,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10296,6 +11682,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10324,6 +11714,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10333,6 +11724,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10361,6 +11756,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10370,6 +11766,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -10398,6 +11798,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10407,6 +11808,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -10435,6 +11840,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10444,6 +11850,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -10472,6 +11882,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10481,6 +11892,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -10509,6 +11924,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10518,6 +11934,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -10562,6 +11982,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10571,6 +11992,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10599,6 +12024,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10608,6 +12034,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -10636,6 +12066,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10645,6 +12076,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -10673,6 +12108,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10682,6 +12118,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10710,6 +12150,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10719,6 +12160,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10747,6 +12192,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10756,6 +12202,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -10784,6 +12234,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10793,6 +12244,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10821,6 +12276,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10830,6 +12286,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10858,6 +12318,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -10867,6 +12328,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10895,6 +12360,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -10904,6 +12370,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10932,6 +12402,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -10941,6 +12412,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10969,6 +12444,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -10978,6 +12454,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -11006,6 +12486,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11015,6 +12496,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11043,6 +12528,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11052,6 +12538,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11080,6 +12570,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11089,6 +12580,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -11117,6 +12612,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11126,6 +12622,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -11154,6 +12654,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11163,6 +12664,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11191,6 +12696,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11200,6 +12706,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11228,6 +12738,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11237,6 +12748,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.7 0 @@ -11265,6 +12780,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -11274,6 +12790,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11302,6 +12822,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -11311,6 +12832,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11339,6 +12864,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11348,6 +12874,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11376,6 +12906,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11385,7 +12916,11 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 -1 +0 +0.0 +0 +0.0 +1 4.0 0 0 @@ -11413,6 +12948,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11422,6 +12958,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11450,6 +12990,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11459,6 +13000,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11487,6 +13032,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11496,6 +13042,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11524,6 +13074,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11533,6 +13084,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11561,6 +13116,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11570,6 +13126,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11598,6 +13158,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11607,6 +13168,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -11635,6 +13200,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11644,6 +13210,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11672,6 +13242,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11681,6 +13252,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11709,6 +13284,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11718,6 +13294,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11746,6 +13326,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11755,6 +13336,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -11783,6 +13368,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11792,6 +13378,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11820,6 +13410,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11829,6 +13420,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11857,6 +13452,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -11866,6 +13462,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11894,6 +13494,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -11903,6 +13504,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11931,6 +13536,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -11940,6 +13546,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11968,6 +13578,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11977,6 +13588,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12005,6 +13620,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12014,6 +13630,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12042,6 +13662,7 @@ depth_bel_land_sfc 100. ? ? +? 0 0.0 0 @@ -12051,6 +13672,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12079,6 +13704,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -12088,6 +13714,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12116,6 +13746,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12125,6 +13756,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12153,6 +13788,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12162,6 +13798,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -12190,6 +13830,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12199,6 +13840,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12227,6 +13872,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -12236,6 +13882,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12264,6 +13914,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12273,6 +13924,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12301,6 +13956,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -12310,6 +13966,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12338,6 +13998,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -12347,6 +14008,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12375,6 +14040,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -12384,6 +14050,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12412,6 +14082,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -12421,6 +14092,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12449,6 +14124,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12458,6 +14134,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12486,6 +14166,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12495,6 +14176,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12523,6 +14208,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12532,6 +14218,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12560,6 +14250,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12569,6 +14260,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12597,6 +14292,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12606,6 +14302,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12634,6 +14334,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12643,6 +14344,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12671,6 +14376,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12680,6 +14386,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12708,6 +14418,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12717,6 +14428,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -12745,6 +14460,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12754,6 +14470,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -12782,6 +14502,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12791,6 +14512,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -12819,6 +14544,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12828,6 +14554,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -12856,6 +14586,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12865,6 +14596,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12893,6 +14628,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12902,6 +14638,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12930,6 +14670,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12939,6 +14680,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12967,6 +14712,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -12976,6 +14722,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13004,6 +14754,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13013,6 +14764,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13041,6 +14796,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13050,6 +14806,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13078,6 +14838,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13087,6 +14848,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13115,6 +14880,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13124,6 +14890,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13152,6 +14922,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13161,6 +14932,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13189,6 +14964,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13198,6 +14974,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13226,6 +15006,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13235,6 +15016,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13263,6 +15048,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13272,6 +15058,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13300,6 +15090,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13309,6 +15100,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13337,6 +15132,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13346,6 +15142,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13374,6 +15174,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13383,6 +15184,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13411,6 +15216,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13420,6 +15226,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13448,6 +15258,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13457,6 +15268,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13485,6 +15300,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13494,6 +15310,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13522,6 +15342,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13531,6 +15352,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13559,6 +15384,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13568,6 +15394,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13596,6 +15426,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13605,6 +15436,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13633,6 +15468,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13642,6 +15478,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13670,6 +15510,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13679,6 +15520,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13707,6 +15552,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13716,6 +15562,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13744,6 +15594,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -13753,6 +15604,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13781,6 +15636,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -13790,6 +15646,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13818,6 +15678,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13827,6 +15688,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13855,6 +15720,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13864,6 +15730,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13892,6 +15762,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13901,6 +15772,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13929,6 +15804,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13938,6 +15814,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.7 0 @@ -13966,6 +15846,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13975,6 +15856,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14003,6 +15888,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14012,6 +15898,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14040,6 +15930,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14049,6 +15940,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14077,6 +15972,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14086,6 +15982,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14114,6 +16014,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14123,6 +16024,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14151,6 +16056,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14160,6 +16066,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14188,6 +16098,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14197,6 +16108,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14225,6 +16140,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14234,6 +16150,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14262,6 +16182,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14271,6 +16192,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14299,6 +16224,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14308,6 +16234,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14336,6 +16266,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14345,6 +16276,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14373,6 +16308,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14382,6 +16318,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14410,6 +16350,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14419,6 +16360,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14447,6 +16392,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14456,6 +16402,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14484,6 +16434,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14493,6 +16444,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -14521,6 +16476,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14530,6 +16486,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14558,6 +16518,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14567,6 +16528,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -14595,6 +16560,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14604,6 +16570,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -14632,6 +16602,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14641,6 +16612,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14669,6 +16644,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14678,6 +16654,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -14706,6 +16686,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -14715,6 +16696,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -14743,6 +16728,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -14752,6 +16738,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14780,6 +16770,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -14789,6 +16780,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14817,6 +16812,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -14826,6 +16822,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14854,6 +16854,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -14863,6 +16864,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -14891,6 +16896,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -14900,6 +16906,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -14928,6 +16938,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -14937,6 +16948,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14965,6 +16980,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -14974,6 +16990,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -15002,6 +17022,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -15011,6 +17032,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15039,6 +17064,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -15048,6 +17074,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15076,6 +17106,7 @@ sigma_lvl 100. ? ? +? 0 0.0 0 @@ -15085,6 +17116,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -15113,6 +17148,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15122,6 +17158,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -15150,6 +17190,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -15159,7 +17200,11 @@ top_of_atmos 0.0 0 0.0 -1 +0 +0.0 +0 +0.0 +1 3.0 0 0 @@ -15187,6 +17232,7 @@ hybrid_lvl 21. ? ? +? 0 0.0 0 @@ -15196,6 +17242,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -15224,6 +17274,7 @@ hybrid_lvl 61. ? ? +? 0 0.0 0 @@ -15233,6 +17284,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -15261,6 +17316,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -15270,6 +17326,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -15298,6 +17358,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15307,6 +17368,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15335,6 +17400,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -15344,6 +17410,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15372,6 +17442,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -15381,6 +17452,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15409,6 +17484,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -15418,6 +17494,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15446,6 +17526,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -15455,6 +17536,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -15483,6 +17568,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -15492,6 +17578,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15520,6 +17610,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -15529,6 +17620,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15557,6 +17652,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -15566,6 +17662,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15594,6 +17694,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15603,6 +17704,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15631,6 +17736,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -15640,6 +17746,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -15668,6 +17778,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -15677,6 +17788,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -15705,6 +17820,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -15714,6 +17830,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -15742,6 +17862,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -15751,6 +17872,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -15779,6 +17904,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -15788,6 +17914,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -15816,6 +17946,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -15825,6 +17956,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -15853,6 +17988,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -15862,6 +17998,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -15890,6 +18030,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -15899,6 +18040,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15927,6 +18072,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -15936,6 +18082,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15964,6 +18114,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -15973,6 +18124,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -16001,6 +18156,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16010,6 +18166,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -16038,6 +18198,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16047,6 +18208,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16075,6 +18240,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16084,6 +18250,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16112,6 +18282,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -16121,6 +18292,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16149,6 +18324,7 @@ RH ? ? ? +? 0 0.0 0 @@ -16158,6 +18334,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -16186,6 +18366,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -16195,6 +18376,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16223,6 +18408,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16232,6 +18418,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16260,6 +18450,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16269,6 +18460,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16297,6 +18492,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16306,6 +18502,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16334,6 +18534,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -16343,6 +18544,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16371,6 +18576,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -16380,6 +18586,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16408,6 +18618,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -16417,6 +18628,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16445,6 +18660,7 @@ surface ? ? ? +? 0 0.0 0 @@ -16454,6 +18670,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -16482,6 +18702,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16491,6 +18712,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16519,6 +18744,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -16528,6 +18754,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16556,6 +18786,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -16565,6 +18796,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16593,6 +18828,7 @@ shall_convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -16602,6 +18838,10 @@ shall_convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16630,6 +18870,7 @@ shall_convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -16639,6 +18880,10 @@ shall_convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16667,6 +18912,7 @@ grid_scale_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -16676,6 +18922,10 @@ grid_scale_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16704,6 +18954,7 @@ grid_scale_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -16713,6 +18964,10 @@ grid_scale_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16741,6 +18996,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16750,6 +19006,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -16778,6 +19038,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16787,6 +19048,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -16815,6 +19080,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16824,6 +19090,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -16852,6 +19122,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16861,6 +19132,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -16889,6 +19164,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16898,6 +19174,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -16926,6 +19206,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16935,6 +19216,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -16963,6 +19248,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -16972,6 +19258,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -17000,6 +19290,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17009,6 +19300,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17037,6 +19332,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17046,6 +19342,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17074,6 +19374,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17083,6 +19384,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17111,6 +19416,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17120,6 +19426,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17148,6 +19458,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17157,6 +19468,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17185,6 +19500,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17194,6 +19510,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17222,6 +19542,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17231,6 +19552,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17259,6 +19584,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17268,6 +19594,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17296,6 +19626,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17305,6 +19636,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17333,6 +19668,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17342,6 +19678,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17370,6 +19710,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17379,6 +19720,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17407,6 +19752,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17416,6 +19762,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17444,6 +19794,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17453,6 +19804,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17481,6 +19836,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17490,6 +19846,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -17518,6 +19878,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17527,6 +19888,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17555,6 +19920,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17564,6 +19930,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17592,6 +19962,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17601,6 +19972,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17629,6 +20004,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17638,6 +20014,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17666,6 +20046,7 @@ lwst_lvl_of_wet_bulb_zero ? ? ? +? 0 0.0 0 @@ -17675,6 +20056,10 @@ lwst_lvl_of_wet_bulb_zero 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -17703,6 +20088,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17712,6 +20098,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -17740,6 +20130,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -17749,6 +20140,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17777,6 +20172,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -17786,6 +20182,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -17814,6 +20214,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17823,6 +20224,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -17851,6 +20256,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17860,6 +20266,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17888,6 +20298,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -17897,6 +20308,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -17925,6 +20340,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17934,6 +20350,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17962,6 +20382,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17971,6 +20392,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -17999,6 +20424,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -18008,6 +20434,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -18036,6 +20466,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18045,6 +20476,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18073,6 +20508,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18082,6 +20518,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18110,6 +20550,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -18119,6 +20560,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -18163,6 +20608,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -18172,6 +20618,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -18200,6 +20650,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -18209,6 +20660,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18237,6 +20692,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -18246,6 +20702,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18274,6 +20734,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -18283,6 +20744,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18311,6 +20776,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -18320,6 +20786,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -18348,6 +20818,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -18357,6 +20828,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18385,6 +20860,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -18394,6 +20870,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18422,6 +20902,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -18431,6 +20912,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18459,6 +20944,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -18468,6 +20954,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18496,6 +20986,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18505,6 +20996,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18533,6 +21028,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18542,6 +21038,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18570,6 +21070,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -18579,6 +21080,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18607,6 +21112,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18616,6 +21122,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18644,6 +21154,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18653,6 +21164,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18681,6 +21196,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18690,6 +21206,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18718,6 +21238,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18727,6 +21248,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18755,6 +21280,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18764,6 +21290,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -18792,6 +21322,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18801,6 +21332,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18829,6 +21364,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18838,6 +21374,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18866,6 +21406,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18875,6 +21416,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18903,6 +21448,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18912,6 +21458,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18940,6 +21490,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18949,6 +21500,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18977,6 +21532,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18986,6 +21542,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19014,6 +21574,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19023,6 +21584,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -19051,6 +21616,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19060,6 +21626,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -19088,6 +21658,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19097,6 +21668,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19125,6 +21700,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19134,6 +21710,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19162,6 +21742,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19171,6 +21752,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19199,6 +21784,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -19208,6 +21794,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19236,6 +21826,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -19245,6 +21836,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -19273,6 +21868,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -19282,6 +21878,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -19310,6 +21910,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -19319,6 +21920,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19347,6 +21952,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -19356,6 +21962,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19384,6 +21994,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -19393,6 +22004,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19421,6 +22036,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -19430,6 +22046,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19458,6 +22078,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -19467,6 +22088,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19495,6 +22120,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -19504,6 +22130,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19532,6 +22162,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -19541,6 +22172,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -19569,6 +22204,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -19578,6 +22214,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19606,6 +22246,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19615,6 +22256,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -19643,6 +22288,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19652,6 +22298,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -19680,6 +22330,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19689,6 +22340,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -19717,6 +22372,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19726,6 +22382,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19754,6 +22414,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19763,6 +22424,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19791,6 +22456,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -19800,6 +22466,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19828,6 +22498,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -19837,6 +22508,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19865,6 +22540,7 @@ depth_bel_land_sfc 200. ? ? +? 0 0.0 0 @@ -19874,6 +22550,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19902,6 +22582,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19911,6 +22592,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19939,6 +22624,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19948,6 +22634,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19976,6 +22666,7 @@ depth_bel_land_sfc 100. ? ? +? 0 0.0 0 @@ -19985,6 +22676,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -20013,6 +22708,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -20022,6 +22718,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -20050,6 +22750,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20059,6 +22760,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -20087,6 +22792,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20096,6 +22802,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -20124,6 +22834,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20133,6 +22844,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -20161,6 +22876,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -20170,6 +22886,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -20198,6 +22918,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -20207,6 +22928,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -20235,6 +22960,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20244,6 +22970,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -20272,6 +23002,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20281,6 +23012,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -20309,6 +23044,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20318,6 +23054,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -20346,11 +23086,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -20383,6 +23128,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20392,6 +23138,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -20420,6 +23170,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20429,6 +23180,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -20457,6 +23212,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20466,6 +23222,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -20494,6 +23254,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20503,6 +23264,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -20531,6 +23296,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20540,6 +23306,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -20568,6 +23338,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20577,6 +23348,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -20605,6 +23380,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20614,6 +23390,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -20642,6 +23422,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -20651,6 +23432,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -20679,6 +23464,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -20688,6 +23474,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -20716,6 +23506,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -20725,6 +23516,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -20753,6 +23548,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -20762,6 +23558,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -20790,6 +23590,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -20799,6 +23600,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -20827,6 +23632,7 @@ surface ? ? ? +? 0 0.0 0 @@ -20836,6 +23642,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -20864,6 +23674,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -20873,6 +23684,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -20901,6 +23716,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -20910,6 +23726,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -20938,6 +23758,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -20947,6 +23768,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -20975,6 +23800,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -20984,6 +23810,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21012,6 +23842,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -21021,6 +23852,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21049,6 +23884,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -21058,6 +23894,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21086,6 +23926,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -21095,6 +23936,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21123,6 +23968,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21132,6 +23978,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21160,6 +24010,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21169,6 +24020,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21197,6 +24052,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21206,6 +24062,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21234,6 +24094,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21243,6 +24104,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21271,6 +24136,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21280,6 +24146,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21308,6 +24178,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21317,6 +24188,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21345,6 +24220,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -21354,6 +24230,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21382,6 +24262,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -21391,6 +24272,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21419,6 +24304,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21428,6 +24314,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21456,6 +24346,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21465,6 +24356,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21493,6 +24388,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21502,6 +24398,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21530,6 +24430,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21539,6 +24440,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.7 0 @@ -21567,6 +24472,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21576,6 +24482,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21604,6 +24514,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21613,6 +24524,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21641,6 +24556,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21650,6 +24566,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21678,6 +24598,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21687,6 +24608,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -21715,6 +24640,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21724,6 +24650,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21752,6 +24682,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21761,6 +24692,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21789,6 +24724,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21798,6 +24734,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21826,6 +24766,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21835,6 +24776,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21863,6 +24808,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21872,6 +24818,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21900,6 +24850,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21909,6 +24860,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21937,6 +24892,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21946,6 +24902,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -21974,6 +24934,7 @@ surface ? ? ? +? 0 0.0 0 @@ -21983,6 +24944,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -22011,6 +24976,7 @@ surface ? ? ? +? 0 0.0 0 @@ -22020,6 +24986,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -22048,6 +25018,7 @@ surface ? ? ? +? 0 0.0 0 @@ -22057,6 +25028,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -22085,6 +25060,7 @@ surface ? ? ? +? 0 0.0 0 @@ -22094,6 +25070,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -22122,6 +25102,7 @@ surface ? ? ? +? 0 0.0 0 @@ -22131,6 +25112,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -22159,6 +25144,7 @@ surface ? ? ? +? 0 0.0 0 @@ -22168,6 +25154,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -22196,6 +25186,7 @@ surface ? ? ? +? 0 0.0 0 @@ -22205,6 +25196,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -22233,6 +25228,7 @@ surface ? ? ? +? 0 0.0 0 @@ -22242,6 +25238,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/parm/postxconfig-NT-UFS-aerosol-F00.txt b/parm/postxconfig-NT-UFS-aerosol-F00.txt index fd8828777..23f7c8f9e 100644 --- a/parm/postxconfig-NT-UFS-aerosol-F00.txt +++ b/parm/postxconfig-NT-UFS-aerosol-F00.txt @@ -36,6 +36,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -73,6 +78,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -110,6 +120,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -147,6 +162,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -184,6 +204,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -220,6 +245,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 2 @@ -230,6 +256,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -257,6 +287,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 20 @@ -267,6 +298,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -294,6 +329,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 36 @@ -304,6 +340,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -331,6 +371,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 60 @@ -341,6 +382,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -368,6 +413,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 120 @@ -378,6 +424,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -405,6 +455,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 8 6 @@ -415,6 +466,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -442,6 +497,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 2 @@ -452,6 +508,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -479,6 +539,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 10 @@ -489,6 +550,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -516,6 +581,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 30 @@ -526,6 +592,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -553,6 +623,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 100 @@ -563,6 +634,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -590,6 +665,7 @@ hybrid_lvl 0 ? black_carbon_hydrophilic +? equall_to_first_limit 10 236 @@ -600,6 +676,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -627,6 +707,7 @@ hybrid_lvl 0 ? black_carbon_hydrophobic +? equall_to_first_limit 10 236 @@ -637,6 +718,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -664,6 +749,7 @@ hybrid_lvl 0 ? particulate_org_matter_hydrophilic +? equall_to_first_limit 10 424 @@ -674,6 +760,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -701,6 +791,7 @@ hybrid_lvl 0 ? particulate_org_matter_hydrophobic +? equall_to_first_limit 10 424 @@ -711,6 +802,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -738,6 +833,7 @@ hybrid_lvl 0 ? sulphate_dry +? equall_to_first_limit 9 139 @@ -748,6 +844,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -776,6 +876,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -785,6 +886,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -813,6 +918,7 @@ surface ? ? ? +? 0 0.0 0 @@ -822,6 +928,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -849,6 +959,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -859,6 +970,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -886,6 +1001,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -896,6 +1012,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -923,6 +1043,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -933,6 +1054,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -960,6 +1085,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -970,6 +1096,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -997,6 +1127,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -1007,6 +1138,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1034,6 +1169,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -1044,6 +1180,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1071,6 +1211,7 @@ entire_atmos 0 ? nitrate_dry +? smaller_than_first_limit 6 20 @@ -1081,6 +1222,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1108,6 +1253,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -1118,6 +1264,10 @@ between_first_second_limit 545 9 565 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1145,6 +1295,7 @@ surface 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -1155,6 +1306,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1182,6 +1337,7 @@ surface 0 ? dust_dry +? smaller_than_first_limit 6 10 @@ -1192,6 +1348,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1219,6 +1379,7 @@ surface 0 ? sea_salt_dry +? smaller_than_first_limit 7 25 @@ -1229,6 +1390,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1256,6 +1421,7 @@ surface 0 ? total_aerosol +? smaller_than_first_limit 6 10 @@ -1266,6 +1432,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1293,6 +1463,7 @@ surface 0 ? total_aerosol +? smaller_than_first_limit 7 25 @@ -1303,6 +1474,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1330,6 +1505,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 10 @@ -1340,6 +1516,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1367,6 +1547,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 7 25 @@ -1377,6 +1558,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1404,6 +1589,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -1414,6 +1600,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1441,6 +1631,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 7 25 @@ -1451,6 +1642,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1478,6 +1673,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 10 236 @@ -1488,6 +1684,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1515,6 +1715,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 10 424 @@ -1525,6 +1726,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1552,6 +1757,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 7 25 @@ -1562,6 +1768,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1590,6 +1800,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1599,6 +1810,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1627,6 +1842,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1636,6 +1852,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1664,6 +1884,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1673,6 +1894,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1701,6 +1926,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1710,6 +1936,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1738,6 +1968,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1747,6 +1978,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 diff --git a/parm/postxconfig-NT-UFS-aerosol.txt b/parm/postxconfig-NT-UFS-aerosol.txt index f76bbc1ac..1780744ea 100644 --- a/parm/postxconfig-NT-UFS-aerosol.txt +++ b/parm/postxconfig-NT-UFS-aerosol.txt @@ -36,6 +36,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -73,6 +78,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -110,6 +120,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -147,6 +162,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -184,6 +204,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -220,6 +245,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 2 @@ -230,6 +256,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -257,6 +287,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 20 @@ -267,6 +298,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -294,6 +329,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 36 @@ -304,6 +340,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -331,6 +371,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 60 @@ -341,6 +382,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -368,6 +413,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 120 @@ -378,6 +424,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -405,6 +455,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 8 6 @@ -415,6 +466,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -442,6 +497,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 2 @@ -452,6 +508,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -479,6 +539,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 10 @@ -489,6 +550,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -516,6 +581,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 30 @@ -526,6 +592,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -553,6 +623,7 @@ hybrid_lvl 0 ? sea_salt_dry +? between_first_second_limit_noincl2ndlmt 7 100 @@ -563,6 +634,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -590,6 +665,7 @@ hybrid_lvl 0 ? black_carbon_hydrophilic +? equall_to_first_limit 10 236 @@ -600,6 +676,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -627,6 +707,7 @@ hybrid_lvl 0 ? black_carbon_hydrophobic +? equall_to_first_limit 10 236 @@ -637,6 +718,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -664,6 +749,7 @@ hybrid_lvl 0 ? particulate_org_matter_hydrophilic +? equall_to_first_limit 10 424 @@ -674,6 +760,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -701,6 +791,7 @@ hybrid_lvl 0 ? particulate_org_matter_hydrophobic +? equall_to_first_limit 10 424 @@ -711,6 +802,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -738,6 +833,7 @@ hybrid_lvl 0 ? sulphate_dry +? equall_to_first_limit 9 139 @@ -748,6 +844,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -775,6 +875,7 @@ hybrid_lvl 0 ? nitrate_dry +? equall_to_first_limit 9 139 @@ -785,6 +886,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -812,6 +917,7 @@ hybrid_lvl 0 ? ammonium_dry +? equall_to_first_limit 9 139 @@ -822,6 +928,10 @@ equall_to_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 11.0 0 @@ -850,6 +960,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -859,6 +970,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -887,6 +1002,7 @@ surface ? ? ? +? 0 0.0 0 @@ -896,6 +1012,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -923,6 +1043,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -933,6 +1054,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -960,6 +1085,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 6 20 @@ -970,6 +1096,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -997,6 +1127,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 6 20 @@ -1007,6 +1138,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1034,6 +1169,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 6 20 @@ -1044,6 +1180,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1071,6 +1211,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 6 20 @@ -1081,6 +1222,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1108,6 +1253,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 6 20 @@ -1118,6 +1264,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1145,6 +1295,7 @@ entire_atmos 0 ? nitrate_dry +? smaller_than_first_limit 6 20 @@ -1155,6 +1306,10 @@ between_first_second_limit 550 9 550 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1182,6 +1337,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 20 @@ -1192,6 +1348,10 @@ between_first_second_limit 545 9 565 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1219,6 +1379,7 @@ surface 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -1229,6 +1390,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1256,6 +1421,7 @@ surface 0 ? dust_dry +? smaller_than_first_limit 6 10 @@ -1266,6 +1432,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1293,6 +1463,7 @@ surface 0 ? sea_salt_dry +? smaller_than_first_limit 7 25 @@ -1303,6 +1474,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1330,6 +1505,7 @@ surface 0 ? total_aerosol +? smaller_than_first_limit 6 10 @@ -1340,6 +1516,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1367,6 +1547,7 @@ surface 0 ? total_aerosol +? smaller_than_first_limit 7 25 @@ -1377,6 +1558,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1404,6 +1589,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 6 10 @@ -1414,6 +1600,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1441,6 +1631,7 @@ entire_atmos 0 ? total_aerosol +? smaller_than_first_limit 7 25 @@ -1451,6 +1642,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1478,6 +1673,7 @@ entire_atmos 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -1488,6 +1684,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1515,6 +1715,7 @@ entire_atmos 0 ? sea_salt_dry +? smaller_than_first_limit 7 25 @@ -1525,6 +1726,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1552,6 +1757,7 @@ entire_atmos 0 ? black_carbon_dry +? smaller_than_first_limit 10 236 @@ -1562,6 +1768,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1589,6 +1799,7 @@ entire_atmos 0 ? particulate_org_matter_dry +? smaller_than_first_limit 10 424 @@ -1599,6 +1810,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1626,6 +1841,7 @@ entire_atmos 0 ? sulphate_dry +? smaller_than_first_limit 7 25 @@ -1636,6 +1852,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1663,6 +1883,7 @@ entire_atmos 0 ? nitrate_dry +? smaller_than_first_limit 7 25 @@ -1673,6 +1894,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1700,6 +1925,7 @@ entire_atmos 0 ? ammonium_dry +? smaller_than_first_limit 7 25 @@ -1710,6 +1936,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -1738,6 +1968,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1747,6 +1978,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1775,6 +2010,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1784,6 +2020,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1812,6 +2052,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1821,6 +2062,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1849,6 +2094,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1858,6 +2104,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1886,6 +2136,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1895,6 +2146,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 diff --git a/parm/postxconfig-NT-hafs.txt b/parm/postxconfig-NT-hafs.txt index 61b72c8cf..ab1e08fb5 100644 --- a/parm/postxconfig-NT-hafs.txt +++ b/parm/postxconfig-NT-hafs.txt @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -407,6 +457,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -444,6 +499,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -481,6 +541,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -518,6 +583,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -555,6 +625,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -592,6 +667,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -629,6 +709,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -666,6 +751,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -703,6 +793,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -740,6 +835,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -777,6 +877,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -814,6 +919,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -851,6 +961,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -888,6 +1003,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -925,6 +1045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -962,6 +1087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -999,6 +1129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1036,6 +1171,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1073,6 +1213,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1110,6 +1255,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1147,6 +1297,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1184,6 +1339,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1258,6 +1423,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1332,6 +1507,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1369,6 +1549,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1406,6 +1591,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1443,6 +1633,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1480,6 +1675,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1517,6 +1717,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1554,6 +1759,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1591,6 +1801,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1628,6 +1843,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1665,6 +1885,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1702,6 +1927,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1739,6 +1969,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1776,6 +2011,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1813,6 +2053,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1850,6 +2095,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1887,6 +2137,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1896,6 +2147,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1924,6 +2179,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1961,6 +2221,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1998,6 +2263,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2035,6 +2305,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2072,6 +2347,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2109,6 +2389,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2146,6 +2431,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2183,6 +2473,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2220,6 +2515,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2229,6 +2525,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2257,6 +2557,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2266,6 +2567,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2294,6 +2599,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2303,6 +2609,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2331,6 +2641,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2340,6 +2651,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2368,6 +2683,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2377,6 +2693,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2405,6 +2725,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2414,6 +2735,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2442,6 +2767,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2451,6 +2777,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2479,6 +2809,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2488,6 +2819,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2516,6 +2851,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2525,6 +2861,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2553,6 +2893,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2562,6 +2903,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2590,6 +2935,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2599,6 +2945,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2627,6 +2977,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -2636,6 +2987,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2664,6 +3019,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2673,6 +3029,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2701,6 +3061,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2710,6 +3071,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2738,6 +3103,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2747,6 +3113,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2775,6 +3145,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2784,6 +3155,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2812,6 +3187,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2821,6 +3197,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2849,6 +3229,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2858,6 +3239,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2886,6 +3271,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2895,6 +3281,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2923,6 +3313,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2932,6 +3323,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2960,6 +3355,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2969,6 +3365,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2997,6 +3397,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -3006,6 +3407,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3034,6 +3439,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -3043,6 +3449,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3071,6 +3481,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -3080,6 +3491,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -3108,6 +3523,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -3117,6 +3533,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -3161,6 +3581,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -3170,6 +3591,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3198,6 +3623,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -3207,6 +3633,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3235,6 +3665,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -3244,6 +3675,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3272,6 +3707,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -3281,6 +3717,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3309,6 +3749,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -3318,6 +3759,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3346,6 +3791,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -3355,6 +3801,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3383,6 +3833,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -3392,6 +3843,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3420,6 +3875,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -3429,6 +3885,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 diff --git a/parm/postxconfig-NT-hafs_ar_nosat.txt b/parm/postxconfig-NT-hafs_ar_nosat.txt new file mode 100644 index 000000000..55e6fd6ea --- /dev/null +++ b/parm/postxconfig-NT-hafs_ar_nosat.txt @@ -0,0 +1,4554 @@ +1 +108 +HURPRS +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hafs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +153 +CLMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +166 +ICMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ICMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface +1 +tmpl4_0 +GRLE +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +251 +REFD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +REFD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +105 +PRES_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +746 +ACM_GRAUPEL_ON_SURFACE +? +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +775 +BUCKET_GRAUPEL_ON_SURFACE +bucket graupel precipitation on surface +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +782 +ACM_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1003 +BUCKET_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1005 +BUCKET_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +33 +ACM_ACPCP_ON_SURFACE +? +1 +tmpl4_8 +ACPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +418 +CACM_ACPCP_ON_SURFACE +? +1 +tmpl4_8 +ACPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +271 +AVE_PRATE_ON_SURFACE +? +1 +tmpl4_8 +PRATE +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +272 +AVE_CPRAT_ON_SURFACE +? +1 +tmpl4_8 +CPRAT +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +NCEP +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1004 +ACM_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +343 +ACM_WATR_ON_SURFACE +? +1 +tmpl4_8 +WATR +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +317 +AVE_CRAIN_ON_SURFACE +? +1 +tmpl4_8 +CRAIN +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +555 +AVE_CSNOW_ON_SURFACE +average Categorical snow on surface +1 +tmpl4_8 +CSNOW +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +556 +AVE_CICEP_ON_SURFACE +average Categorical ice pellets on surface +1 +tmpl4_8 +CICEP +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +557 +AVE_CFRZR_ON_SURFACE +average Categorical freezing rain on surface +1 +tmpl4_8 +CFRZR +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +747 +NCCD_ON_HYBRID_LVL +Number concentration for cloud water drops on hybrid level +1 +tmpl4_0 +NCONCD +? +? +hybrid_lvl +0 +? +127 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. 127. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +752 +NCIP_ON_HYBRID_LVL +Number concentration for ice particles on hybrid level +1 +tmpl4_0 +NCCICE +? +? +hybrid_lvl +0 +? +127 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. 127. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +754 +NCRAIN_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPNCR +? +? +hybrid_lvl +0 +? +127 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87. 88. 89. 90. 91. 92. 93. 94. 95. 96. 97. 98. 99. 100. 101. 102. 103. 104. 105. 106. 107. 108. 109. 110. 111. 112. 113. 114. 115. 116. 117. 118. 119. 120. 121. 122. 123. 124. 125. 126. 127. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1018 +NCCD_ON_ISOBARIC_SFC +Number concentration for cloud water drops on isobaric surfaces +1 +tmpl4_0 +NCONCD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1019 +NCIP_ON_ISOBARIC_SFC +Number concentration for ice particles on isobaric surfaces +1 +tmpl4_0 +NCCICE +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1020 +NCRAIN_ON_ISOBARIC_SFC +Number concentration for rain on isobaric surfaces +1 +tmpl4_0 +SPNCR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? diff --git a/parm/postxconfig-NT-hafs_ar_nosat_l65.txt b/parm/postxconfig-NT-hafs_ar_nosat_l65.txt new file mode 100644 index 000000000..2e2e0ee28 --- /dev/null +++ b/parm/postxconfig-NT-hafs_ar_nosat_l65.txt @@ -0,0 +1,4554 @@ +1 +108 +HURPRS +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hafs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +6 +10000. 20000. 30000. 50000. 70000. 85000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +153 +CLMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +166 +ICMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ICMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +416 +GRLE_ON_ISOBARIC_SFC +Graupel mixing ration on isobaric surface +1 +tmpl4_0 +GRLE +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +251 +REFD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +REFD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +23 +MSLET_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLET +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +105 +PRES_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +PRMSL +? +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +169 +SFEXC_ON_SURFACE +? +1 +tmpl4_0 +SFEXC +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +746 +ACM_GRAUPEL_ON_SURFACE +? +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +775 +BUCKET_GRAUPEL_ON_SURFACE +bucket graupel precipitation on surface +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +782 +ACM_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1003 +BUCKET_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1005 +BUCKET_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +33 +ACM_ACPCP_ON_SURFACE +? +1 +tmpl4_8 +ACPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +34 +ACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +418 +CACM_ACPCP_ON_SURFACE +? +1 +tmpl4_8 +ACPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +419 +CACM_NCPCP_ON_SURFACE +? +1 +tmpl4_8 +NCPCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +271 +AVE_PRATE_ON_SURFACE +? +1 +tmpl4_8 +PRATE +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +272 +AVE_CPRAT_ON_SURFACE +? +1 +tmpl4_8 +CPRAT +? +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +144 +AVE_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +TCDC +? +AVE +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +126 +AVE_DSWRF_ON_SURFACE +? +1 +tmpl4_8 +DSWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +127 +AVE_DLWRF_ON_SURFACE +? +1 +tmpl4_8 +DLWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +128 +AVE_USWRF_ON_SURFACE +? +1 +tmpl4_8 +USWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +129 +AVE_ULWRF_ON_SURFACE +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +130 +AVE_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +USWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +131 +AVE_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +NCEP +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +133 +UFLX_ON_SURFACE +? +1 +tmpl4_0 +UFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +134 +VFLX_ON_SURFACE +? +1 +tmpl4_0 +VFLX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +48 +NLAT_ON_SURFACE +? +1 +tmpl4_0 +NLAT +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +49 +ELON_ON_SURFACE +? +1 +tmpl4_0 +ELON +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +151 +WTMP_ON_SURFACE +? +1 +tmpl4_0 +WTMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +54 +PRES_ON_TROPOPAUSE +? +1 +tmpl4_0 +PRES +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +177 +HGT_ON_TROPOPAUSE +? +1 +tmpl4_0 +HGT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +55 +TMP_ON_TROPOPAUSE +? +1 +tmpl4_0 +TMP +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +108 +POT_ON_TROPOPAUSE +? +1 +tmpl4_0 +POT +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +56 +UGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +UGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +57 +VGRD_ON_TROPOPAUSE +? +1 +tmpl4_0 +VGRD +? +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +58 +VWSH_ON_TROPOPAUSE +? +1 +tmpl4_0 +VWSH +NCEP +? +tropopause +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +168 +TMP_ON_CLOUD_TOP +? +1 +tmpl4_0 +TMP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +202 +TCOLR_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLR +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +203 +TCOLS_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLS +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +204 +TCOLC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXUVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc +0 +? +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1004 +ACM_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +121 +ACM_SNOM_ON_SURFACE +? +1 +tmpl4_8 +SNOM +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +343 +ACM_WATR_ON_SURFACE +? +1 +tmpl4_8 +WATR +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +317 +AVE_CRAIN_ON_SURFACE +? +1 +tmpl4_8 +CRAIN +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +555 +AVE_CSNOW_ON_SURFACE +average Categorical snow on surface +1 +tmpl4_8 +CSNOW +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +556 +AVE_CICEP_ON_SURFACE +average Categorical ice pellets on surface +1 +tmpl4_8 +CICEP +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +557 +AVE_CFRZR_ON_SURFACE +average Categorical freezing rain on surface +1 +tmpl4_8 +CFRZR +NCEP +AVE +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +747 +NCCD_ON_HYBRID_LVL +Number concentration for cloud water drops on hybrid level +1 +tmpl4_0 +NCONCD +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +752 +NCIP_ON_HYBRID_LVL +Number concentration for ice particles on hybrid level +1 +tmpl4_0 +NCCICE +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +754 +NCRAIN_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPNCR +? +? +hybrid_lvl +0 +? +65 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1018 +NCCD_ON_ISOBARIC_SFC +Number concentration for cloud water drops on isobaric surfaces +1 +tmpl4_0 +NCONCD +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1019 +NCIP_ON_ISOBARIC_SFC +Number concentration for ice particles on isobaric surfaces +1 +tmpl4_0 +NCCICE +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +1020 +NCRAIN_ON_ISOBARIC_SFC +Number concentration for rain on isobaric surfaces +1 +tmpl4_0 +SPNCR +? +? +isobaric_sfc +0 +? +57 +1. 2. 4. 7. 10. 20. 40. 70. 100. 200. 300. 500. 700. 1000. 1500. 2000. 3000. 4000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? diff --git a/parm/postxconfig-NT-hafs_nosat.txt b/parm/postxconfig-NT-hafs_nosat.txt index 1011a740a..a129771cf 100644 --- a/parm/postxconfig-NT-hafs_nosat.txt +++ b/parm/postxconfig-NT-hafs_nosat.txt @@ -36,6 +36,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -73,6 +78,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -110,6 +120,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -147,6 +162,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -184,6 +204,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -221,6 +246,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -230,6 +256,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -258,6 +288,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -267,6 +298,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -295,6 +330,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -304,6 +340,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -332,6 +372,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -341,6 +382,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -369,6 +414,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -378,6 +424,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -406,6 +456,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -415,6 +466,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -443,6 +498,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -452,6 +508,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -480,6 +540,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -489,6 +550,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -517,6 +582,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -526,6 +592,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -554,6 +624,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -563,6 +634,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -591,6 +666,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -600,6 +676,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -628,6 +708,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -637,6 +718,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -665,6 +750,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -674,6 +760,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -702,6 +792,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -711,6 +802,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -739,6 +834,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -748,6 +844,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -776,6 +876,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -785,6 +886,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -813,6 +918,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -822,6 +928,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -850,6 +960,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -859,6 +970,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -887,6 +1002,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -896,6 +1012,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -924,6 +1044,7 @@ surface ? ? ? +? 0 0.0 0 @@ -933,6 +1054,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -961,6 +1086,7 @@ surface ? ? ? +? 0 0.0 0 @@ -970,6 +1096,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -998,6 +1128,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1007,6 +1138,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1035,6 +1170,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1044,6 +1180,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1072,6 +1212,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1081,6 +1222,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1109,6 +1254,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1118,6 +1264,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1146,6 +1296,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1155,6 +1306,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1183,6 +1338,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1192,6 +1348,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1220,6 +1380,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1229,6 +1390,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1257,6 +1422,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1266,6 +1432,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1294,6 +1464,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1303,6 +1474,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1331,6 +1506,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1340,6 +1516,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1368,6 +1548,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1377,6 +1558,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1405,6 +1590,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1414,6 +1600,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1442,6 +1632,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1451,6 +1642,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1479,6 +1674,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1488,6 +1684,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1516,6 +1716,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1525,6 +1726,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1553,6 +1758,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1562,6 +1768,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1590,6 +1800,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1599,6 +1810,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1627,6 +1842,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1636,6 +1852,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1664,6 +1884,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1673,6 +1894,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1701,6 +1926,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1710,6 +1936,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1738,6 +1968,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1747,6 +1978,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1775,6 +2010,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1784,6 +2020,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1812,6 +2052,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1821,6 +2062,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1849,6 +2094,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1858,6 +2104,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1886,6 +2136,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1895,6 +2146,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1923,6 +2178,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1932,6 +2188,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1960,6 +2220,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1969,6 +2230,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1997,6 +2262,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2006,6 +2272,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2034,6 +2304,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2043,6 +2314,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2071,6 +2346,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2080,6 +2356,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2108,6 +2388,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2117,6 +2398,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2145,6 +2430,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2154,6 +2440,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2182,6 +2472,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2191,6 +2482,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2219,6 +2514,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2228,6 +2524,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2256,6 +2556,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2265,6 +2566,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2293,6 +2598,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2302,6 +2608,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2330,6 +2640,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2339,6 +2650,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2367,6 +2682,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2376,6 +2692,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2404,6 +2724,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2413,6 +2734,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2441,6 +2766,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2450,6 +2776,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2478,6 +2808,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2487,6 +2818,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2515,6 +2850,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2524,6 +2860,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2552,6 +2892,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2561,6 +2902,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2589,6 +2934,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2598,6 +2944,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2626,6 +2976,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -2635,6 +2986,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2663,6 +3018,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2672,6 +3028,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2700,6 +3060,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2709,6 +3070,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2737,6 +3102,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2746,6 +3112,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2774,6 +3144,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2783,6 +3154,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2811,6 +3186,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2820,6 +3196,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2848,6 +3228,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2857,6 +3238,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2885,6 +3270,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2894,6 +3280,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2922,6 +3312,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2931,6 +3322,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2959,6 +3354,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2968,6 +3364,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2996,6 +3396,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -3005,6 +3406,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3033,6 +3438,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -3042,6 +3448,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3070,6 +3480,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -3079,6 +3490,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -3107,6 +3522,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -3116,6 +3532,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 diff --git a/parm/postxconfig-NT-hafs_sat.txt b/parm/postxconfig-NT-hafs_sat.txt index f7142bd4b..7ddb46579 100644 --- a/parm/postxconfig-NT-hafs_sat.txt +++ b/parm/postxconfig-NT-hafs_sat.txt @@ -36,6 +36,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -73,6 +78,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -110,6 +120,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -147,6 +162,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -184,6 +204,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -221,6 +246,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -230,6 +256,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -258,6 +288,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -267,6 +298,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -295,6 +330,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -304,6 +340,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 diff --git a/parm/postxconfig-NT-hfip.txt b/parm/postxconfig-NT-hfip.txt new file mode 100644 index 000000000..0f98590a3 --- /dev/null +++ b/parm/postxconfig-NT-hfip.txt @@ -0,0 +1,6982 @@ +3 +18 +14 +133 +2DFLD +4 +ncep_emc +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +726 +VEG_MIN_ON_SURFACE +? +1 +tmpl4_0 +VEGMIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +729 +VEG_MAX_ON_SURFACE +? +1 +tmpl4_0 +VEGMAX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +254 +LAI_ON_SURFACE +? +1 +tmpl4_0 +LAI +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +445 +MAPS_PRMSL_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLMA +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +546 +GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +739 +SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m +? +1 +tmpl4_48 +MASSDEN +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +8. +? +0 +? +0 +? +particulate_org_matter_dry +? +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +725 +GSD_ACM_SNOD_ON_SURFACE +? +1 +tmpl4_8 +ASNOW +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +218 +VGTYP_ON_SURFACE +? +1 +tmpl4_0 +VGTYP +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +? +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +950 +CAPE_ON_0_3KM_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +952 +HGT_ON_LFC +? +1 +tmpl4_0 +HGT +? +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +953 +EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +EFHL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +955 +DENDRITIC_LAYER_DEPTH +? +1 +tmpl4_0 +LAYTH +NCEP +? +isothermal +0 +? +1 +261. +isothermal +0 +? +1 +256. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +956 +ENHANCED_STRETCHING_POTENTIAL +? +1 +tmpl4_0 +ESP +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +957 +CRITICAL_ANGLE +? +1 +tmpl4_0 +CANGLE +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +500. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +35 +ACM_WEASD_ON_SURFACE +? +1 +tmpl4_8 +WEASD +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +746 +ACM_GRAUPEL_ON_SURFACE +? +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +782 +ACM_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +437 +BUCKET_WEASD_ON_SURFACE +bucket snow precipitation on surface +1 +tmpl4_8 +WEASD +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +434 +BUCKET_APCP_ON_SURFACE +bucket Total precipitation on surface +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +775 +BUCKET_GRAUPEL_ON_SURFACE +bucket graupel precipitation on surface +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +559 +GSD_CSNOW_ON_SURFACE +GSD_Categorical snow on surface +1 +tmpl4_0 +CSNOW +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +560 +GSD_CICEP_ON_SURFACE +GSD_Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +561 +GSD_CFRZR_ON_SURFACE +GSD_Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +407 +GSD_INST_CRAIN_ON_SURFACE +GSD_instant precipitation type on surface +1 +tmpl4_0 +CRAIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +408 +GSD_HGT_ON_CLOUD_CEILING +GSD_geopotential height on cloud ceiling +1 +tmpl4_0 +HGT +? +? +cloud_ceilng +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +409 +GSD_HGT_ON_CLOUD_TOP +GSD_geopotential height on cloud top +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +REFD +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +783 +MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum u wind on 10 meter Above Ground +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +784 +MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum v wind on 10 meter Above Ground +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +788 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +789 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +794 +GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER +? +1 +tmpl4_8 +HAIL +? +MAX +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +795 +GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER +? +1 +tmpl4_8 +HAIL +? +MAX +sigma_lvl +1 +1 +1 +1. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +728 +GSD_HAILCAST_HAIL_DIAMETER +? +1 +tmpl4_8 +HAIL +? +MAX +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +425 +AVE_DZDT_ON_SIGMA_LVL_0.5-0.8 +average Vertical velocity between sigma lvl 0.5 and 0.8 +1 +tmpl4_8 +DZDT +? +AVE +sigma_lvl +1 +2 +1 +50. +sigma_lvl +1 +2 +1 +80. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +429 +MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR +Hourly Maximum of Column Vertical Integrated Graupel on entire atmosphere +1 +tmpl4_8 +MAXVIG +? +MAX +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +109 +HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +HGT +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +430 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +Vertical u-component shear between 0 to 1000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +431 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +Vertical v-component shear between 0 to 1000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +432 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical u-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +433 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical v-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +799 +TCDC_ON_BOUND_LYR +? +1 +tmpl4_0 +TCDC +? +? +bound_lyr_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +768 +GSD_ECHOTOP_ON_CLOUD_TOP +Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model level) +1 +tmpl4_0 +RETOP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +769 +GSD_VIL_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +VIL +NCEP +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +770 +GSD_RADARVIL_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +RADARVIL +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +443 +HGT_ON_EQUIL_LVL +geopotential height on Equilibrium level +1 +tmpl4_0 +HGT +? +? +equil_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LTNG +NCEP +MAX +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +748 +GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +757 +GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +4000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +412 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND +U-Component of Wind on Specified Height Level Above Ground +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +80. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +413 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND +V-Component of Wind on Specified Height Level Above Ground +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +80. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +753 +GSD_PRES_ON_0C_ISOTHERM +GSD_pressure on Level of 0 deg (C) isotherm +1 +tmpl4_0 +PRES +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +756 +GSD_PRES_ON_HGHST_TROP_FRZ_LVL +GSD_pressure on Highest tropospheric freezing level +1 +tmpl4_0 +PRES +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +350 +RH_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +RH +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +776 +HGT_ON_HGHST_TROP_-10C_LVL +height on highest tropospheric -10C level +1 +tmpl4_0 +HGT +? +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +779 +HGT_ON_HGHST_TROP_-20C_LVL +height on highest tropospheric -20C level +1 +tmpl4_0 +HGT +? +? +isothermal +0 +? +1 +253. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +772 +INST_SWDDNI_ON_SURFACE +? +1 +tmpl4_0 +VBDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +773 +INST_SWDDIF_ON_SURFACE +? +1 +tmpl4_0 +VDDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +719 +INST_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +USWRF +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +749 +GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS +RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER +1 +tmpl4_0 +RHPW +NCEP +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +1 +70000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +735 +AOD_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +AOTK +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +736 +SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_48 +COLMD +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +particulate_org_matter_dry +? +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +740 +MEAN_FIRE_RDIATV_PWR +? +1 +tmpl4_0 +CFNSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +PRSLEV +4 +ncep_emc +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +39 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +153 +CLMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLMR +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +NATLEV +4 +ncep_emc +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +124 +CLMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLMR +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +747 +NCCD_ON_HYBRID_LVL +Number concentration for cloud water drops on hybrid level +1 +tmpl4_0 +NCONCD +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +752 +NCIP_ON_HYBRID_LVL +Number concentration for ice particles on hybrid level +1 +tmpl4_0 +NCCICE +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +754 +NCRAIN_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPNCR +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +766 +NCWFA_ON_HYBRID_LVL +? +1 +tmpl4_0 +PMTF +NCEP +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +774 +FRACCC_ON_HYBRID_LVL +? +1 +tmpl4_0 +FRACCC +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +737 +SMOKE_ON_HYBRID_LVL +? +1 +tmpl4_48 +MASSDEN +? +? +hybrid_lvl +0 +? +79 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. +? +0 +? +0 +? +particulate_org_matter_dry +? +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +1 +2 +2 +0. 1. +depth_bel_land_sfc +1 +2 +2 +0. 1. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? diff --git a/parm/postxconfig-NT-hrrr.txt b/parm/postxconfig-NT-hrrr.txt index a24976cb5..f7e6550f9 100644 --- a/parm/postxconfig-NT-hrrr.txt +++ b/parm/postxconfig-NT-hrrr.txt @@ -38,6 +38,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -47,6 +48,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -75,6 +80,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -84,6 +90,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -112,6 +122,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -121,6 +132,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -149,6 +164,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -158,6 +174,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -186,6 +206,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -195,6 +216,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -223,6 +248,7 @@ surface ? ? ? +? 0 0.0 0 @@ -232,6 +258,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -260,6 +290,7 @@ surface ? ? ? +? 0 0.0 0 @@ -269,6 +300,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -297,6 +332,7 @@ surface ? ? ? +? 0 0.0 0 @@ -306,6 +342,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -334,6 +374,7 @@ surface ? ? ? +? 0 0.0 0 @@ -343,6 +384,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -371,6 +416,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -380,6 +426,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -408,6 +458,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -417,6 +468,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -445,6 +500,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -454,6 +510,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -482,6 +542,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -491,6 +552,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -519,6 +584,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -528,6 +594,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -556,6 +626,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -565,6 +636,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -593,6 +668,7 @@ spec_hgt_lvl_above_grnd ? particulate_org_matter_dry ? +? 0 0.0 0 @@ -602,6 +678,10 @@ particulate_org_matter_dry 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -630,6 +710,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -639,6 +720,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -667,6 +752,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -676,6 +762,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -704,6 +794,7 @@ surface ? ? ? +? 0 0.0 0 @@ -713,6 +804,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -741,6 +836,7 @@ surface ? ? ? +? 0 0.0 0 @@ -750,6 +846,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -778,6 +878,7 @@ surface ? ? ? +? 0 0.0 0 @@ -787,6 +888,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -815,6 +920,7 @@ surface ? ? ? +? 0 0.0 0 @@ -824,6 +930,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -852,6 +962,7 @@ surface ? ? ? +? 0 0.0 0 @@ -861,6 +972,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -889,6 +1004,7 @@ surface ? ? ? +? 0 0.0 0 @@ -898,6 +1014,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -926,6 +1046,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -935,6 +1056,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -963,6 +1088,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -972,6 +1098,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1000,6 +1130,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1009,6 +1140,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1037,6 +1172,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1046,6 +1182,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1074,6 +1214,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1083,6 +1224,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1111,6 +1256,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1120,6 +1266,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1148,6 +1298,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1157,6 +1308,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1185,6 +1340,7 @@ spec_hgt_lvl_above_grnd 3000. ? ? +? 0 0.0 0 @@ -1194,6 +1350,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1222,6 +1382,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1231,6 +1392,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1259,6 +1424,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1268,6 +1434,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1296,6 +1466,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1305,6 +1476,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1333,6 +1508,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1342,6 +1518,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1370,6 +1550,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -1379,6 +1560,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1407,6 +1592,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1416,6 +1602,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1444,6 +1634,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1453,6 +1644,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -1481,6 +1676,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1490,6 +1686,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1518,6 +1718,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1527,6 +1728,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1555,6 +1760,7 @@ isothermal 256. ? ? +? 0 0.0 0 @@ -1564,6 +1770,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1592,6 +1802,7 @@ spec_hgt_lvl_above_grnd 3000. ? ? +? 0 0.0 0 @@ -1601,6 +1812,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1629,6 +1844,7 @@ spec_hgt_lvl_above_grnd 500. ? ? +? 0 0.0 0 @@ -1638,6 +1854,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1666,6 +1886,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1675,6 +1896,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1703,6 +1928,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1712,6 +1938,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1740,6 +1970,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1749,6 +1980,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1777,6 +2012,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1786,6 +2022,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1814,6 +2054,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1823,6 +2064,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1851,6 +2096,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1860,6 +2106,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1888,6 +2138,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1897,6 +2148,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1925,6 +2180,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1934,6 +2190,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1962,6 +2222,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1971,6 +2232,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -1999,6 +2264,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2008,6 +2274,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2036,6 +2306,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2045,6 +2316,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2073,6 +2348,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2082,6 +2358,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2110,6 +2390,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -2119,6 +2400,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -2147,6 +2432,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -2156,6 +2442,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -2184,6 +2474,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -2193,6 +2484,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -2221,6 +2516,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2230,6 +2526,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2258,6 +2558,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -2267,6 +2568,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2295,6 +2600,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2304,6 +2610,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2332,6 +2642,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -2341,6 +2652,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2369,6 +2684,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -2378,6 +2694,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2406,6 +2726,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2415,6 +2736,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.7 0 @@ -2443,6 +2768,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2452,6 +2778,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2480,6 +2810,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2489,6 +2820,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2517,6 +2852,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2526,6 +2862,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2554,6 +2894,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2563,6 +2904,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2591,6 +2936,7 @@ spec_pres_above_grnd 100000. ? ? +? 0 0.0 0 @@ -2600,6 +2946,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2628,6 +2978,7 @@ spec_pres_above_grnd 100000. ? ? +? 0 0.0 0 @@ -2637,6 +2988,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2665,6 +3020,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -2674,6 +3030,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2702,6 +3062,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -2711,6 +3072,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2739,6 +3104,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -2748,6 +3114,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2776,6 +3146,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -2785,6 +3156,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2813,6 +3188,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -2822,6 +3198,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2850,6 +3230,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -2859,6 +3240,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2887,6 +3272,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -2896,6 +3282,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2924,6 +3314,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -2933,6 +3324,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -2961,6 +3356,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -2970,6 +3366,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2998,6 +3398,7 @@ sigma_lvl ? ? ? +? 0 0.0 0 @@ -3007,6 +3408,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3035,6 +3440,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3044,6 +3450,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3072,6 +3482,7 @@ sigma_lvl 80. ? ? +? 0 0.0 0 @@ -3081,6 +3492,10 @@ sigma_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3109,6 +3524,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3118,6 +3534,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3146,6 +3566,7 @@ lvl_of_adiab_cond_from_sfc ? ? ? +? 0 0.0 0 @@ -3155,6 +3576,10 @@ lvl_of_adiab_cond_from_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -3183,6 +3608,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -3192,6 +3618,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3220,6 +3650,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -3229,6 +3660,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3257,6 +3692,7 @@ spec_hgt_lvl_above_grnd 1000. ? ? +? 0 0.0 0 @@ -3266,6 +3702,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3294,6 +3734,7 @@ spec_hgt_lvl_above_grnd 1000. ? ? +? 0 0.0 0 @@ -3303,6 +3744,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3331,6 +3776,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -3340,6 +3786,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3368,6 +3818,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -3377,6 +3828,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3405,6 +3860,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3414,6 +3870,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3442,6 +3902,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -3451,6 +3912,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3479,6 +3944,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -3488,6 +3954,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3516,6 +3986,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -3525,6 +3996,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3553,6 +4028,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -3562,6 +4038,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3590,6 +4070,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -3599,6 +4080,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3627,6 +4112,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3636,6 +4122,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3664,6 +4154,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -3673,6 +4164,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3701,6 +4196,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -3710,6 +4206,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3738,6 +4238,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -3747,6 +4248,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3775,6 +4280,7 @@ equil_lvl ? ? ? +? 0 0.0 0 @@ -3784,6 +4290,10 @@ equil_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -3812,6 +4322,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3821,6 +4332,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3849,6 +4364,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3858,6 +4374,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3886,6 +4406,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -3895,6 +4416,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3923,6 +4448,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -3932,6 +4458,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3960,6 +4490,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3969,6 +4500,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3997,6 +4532,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4006,6 +4542,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -4034,6 +4574,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -4043,6 +4584,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4071,6 +4616,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -4080,6 +4626,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4108,6 +4658,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4117,6 +4668,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -4145,6 +4700,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -4154,6 +4710,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -4182,6 +4742,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -4191,6 +4752,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4219,6 +4784,7 @@ RH ? ? ? +? 0 0.0 0 @@ -4228,6 +4794,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -4256,6 +4826,7 @@ PRES ? ? ? +? 0 0.0 0 @@ -4265,6 +4836,10 @@ PRES 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4293,6 +4868,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -4302,6 +4878,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4330,6 +4910,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -4339,6 +4920,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4367,6 +4952,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -4376,6 +4962,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -4404,6 +4994,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -4413,6 +5004,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4441,6 +5036,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -4450,6 +5046,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4478,6 +5078,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4487,6 +5088,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -4515,6 +5120,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4524,6 +5130,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4552,6 +5162,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4561,6 +5172,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4589,6 +5204,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4598,6 +5214,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -4626,6 +5246,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4635,6 +5256,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -4663,6 +5288,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4672,6 +5298,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4700,6 +5330,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4709,6 +5340,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4737,6 +5372,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -4746,6 +5382,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4774,6 +5414,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -4783,6 +5424,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4811,6 +5456,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4820,6 +5466,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4848,6 +5498,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4857,6 +5508,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4885,6 +5540,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4894,6 +5550,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4922,6 +5582,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4931,6 +5592,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -4959,6 +5624,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4968,6 +5634,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -4996,6 +5666,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5005,6 +5676,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -5033,6 +5708,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5042,6 +5718,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5070,6 +5750,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5079,6 +5760,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5107,11 +5792,16 @@ entire_atmos ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -5144,6 +5834,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -5153,6 +5844,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5181,6 +5876,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5190,6 +5886,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -5218,6 +5918,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5227,6 +5928,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -5255,6 +5960,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5264,6 +5970,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5292,6 +6002,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5301,6 +6012,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5329,6 +6044,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5338,6 +6054,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5366,6 +6086,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5375,6 +6096,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5403,6 +6128,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5412,6 +6138,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5440,6 +6170,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -5449,6 +6180,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5477,6 +6212,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5486,6 +6222,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5514,6 +6254,7 @@ entire_atmos_single_lyr ? particulate_org_matter_dry ? +? 0 0.0 0 @@ -5523,6 +6264,10 @@ particulate_org_matter_dry 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5551,6 +6296,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5560,6 +6306,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5588,6 +6338,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -5597,6 +6348,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5625,6 +6380,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -5634,6 +6390,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5678,6 +6438,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5687,6 +6448,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -5715,6 +6480,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5724,6 +6490,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -5752,6 +6522,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5761,6 +6532,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -5789,6 +6564,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5798,6 +6574,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -5826,6 +6606,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5835,6 +6616,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5863,6 +6648,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5872,6 +6658,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -5900,6 +6690,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5909,6 +6700,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -5937,6 +6732,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5946,6 +6742,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -5974,6 +6774,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5983,6 +6784,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6011,6 +6816,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -6020,6 +6826,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6048,6 +6858,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -6057,6 +6868,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6085,6 +6900,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -6094,6 +6910,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6122,6 +6942,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -6131,6 +6952,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6159,6 +6984,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -6168,6 +6994,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6196,6 +7026,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -6205,6 +7036,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6233,6 +7068,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -6242,6 +7078,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6286,6 +7126,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6295,6 +7136,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6323,6 +7168,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6332,6 +7178,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -6360,6 +7210,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6369,6 +7220,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -6397,6 +7252,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6406,6 +7262,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6434,6 +7294,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6443,6 +7304,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -6471,6 +7336,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6480,6 +7346,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -6508,6 +7378,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6517,6 +7388,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -6545,6 +7420,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6554,6 +7430,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6582,6 +7462,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6591,6 +7472,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6619,6 +7504,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6628,6 +7514,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6656,6 +7546,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6665,6 +7556,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6693,6 +7588,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6702,6 +7598,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6711,7 +7611,7 @@ hybrid_lvl ? ? 747 -GSD_NCCD_ON_HYBRID_LVL +NCCD_ON_HYBRID_LVL Number concentration for cloud water drops on hybrid level 1 tmpl4_0 @@ -6730,6 +7630,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6739,6 +7640,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6748,7 +7653,7 @@ hybrid_lvl ? ? 752 -GSD_NCIP_ON_HYBRID_LVL +NCIP_ON_HYBRID_LVL Number concentration for ice particles on hybrid level 1 tmpl4_0 @@ -6767,6 +7672,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6776,6 +7682,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6785,7 +7695,7 @@ hybrid_lvl ? ? 754 -GSD_NCRAIN_ON_HYBRID_LVL +NCRAIN_ON_HYBRID_LVL ? 1 tmpl4_0 @@ -6804,6 +7714,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6813,6 +7724,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6841,6 +7756,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6850,6 +7766,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6878,6 +7798,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6887,6 +7808,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6915,6 +7840,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6924,6 +7850,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -6952,6 +7882,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6961,6 +7892,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6989,6 +7924,7 @@ hybrid_lvl ? particulate_org_matter_dry ? +? 0 0.0 0 @@ -6998,6 +7934,10 @@ particulate_org_matter_dry 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7026,6 +7966,7 @@ depth_bel_land_sfc 0. 1. ? ? +? 0 0.0 0 @@ -7035,6 +7976,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/parm/postxconfig-NT-rap.txt b/parm/postxconfig-NT-rap.txt index c8f5d97eb..d63c29e9d 100644 --- a/parm/postxconfig-NT-rap.txt +++ b/parm/postxconfig-NT-rap.txt @@ -37,6 +37,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -46,6 +47,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -74,6 +79,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -83,6 +89,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -111,6 +121,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -120,6 +131,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -148,6 +163,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -157,6 +173,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -185,6 +205,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -194,6 +215,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -222,6 +247,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -231,6 +257,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -259,6 +289,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -268,6 +299,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -296,6 +331,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -305,6 +341,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -333,6 +373,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -342,6 +383,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -370,6 +415,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -379,6 +425,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -407,6 +457,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -416,6 +467,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -444,6 +499,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -453,6 +509,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -481,6 +541,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -490,6 +551,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -518,6 +583,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -527,6 +593,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -555,6 +625,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -564,6 +635,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -592,6 +667,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -601,6 +677,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -629,6 +709,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -638,6 +719,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -666,6 +751,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -675,6 +761,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -703,6 +793,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -712,6 +803,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -740,6 +835,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -749,6 +845,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -777,6 +877,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -786,6 +887,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -814,6 +919,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -823,6 +929,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -851,6 +961,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -860,6 +971,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -888,6 +1003,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -897,6 +1013,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -925,6 +1045,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -934,6 +1055,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -962,6 +1087,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -971,6 +1097,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -999,6 +1129,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -1008,6 +1139,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1036,6 +1171,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -1045,6 +1181,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1073,6 +1213,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -1082,6 +1223,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1110,6 +1255,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -1119,6 +1265,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1147,6 +1297,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1156,6 +1307,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -1184,6 +1339,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1193,6 +1349,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -1221,6 +1381,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1230,6 +1391,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -1258,6 +1423,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1267,6 +1433,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1295,6 +1465,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1304,6 +1475,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1332,6 +1507,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1341,6 +1517,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1369,6 +1549,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1378,6 +1559,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -1406,6 +1591,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -1415,6 +1601,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -1443,6 +1633,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -1452,6 +1643,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -1480,6 +1675,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1489,6 +1685,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1517,6 +1717,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1526,6 +1727,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1554,6 +1759,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1563,6 +1769,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1591,6 +1801,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1600,6 +1811,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -1628,6 +1843,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1637,6 +1853,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1665,6 +1885,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1674,6 +1895,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1702,6 +1927,7 @@ spec_hgt_lvl_above_grnd ? particulate_org_matter_dry ? +? 0 0.0 0 @@ -1711,6 +1937,10 @@ particulate_org_matter_dry 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1739,6 +1969,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1748,6 +1979,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1776,6 +2011,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1785,6 +2021,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1813,6 +2053,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1822,6 +2063,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -1850,6 +2095,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1859,6 +2105,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1887,6 +2137,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1896,6 +2147,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1924,6 +2179,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1933,6 +2189,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1961,6 +2221,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1970,6 +2231,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1998,6 +2263,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2007,6 +2273,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2035,6 +2305,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2044,6 +2315,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2072,6 +2347,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2081,6 +2357,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2109,6 +2389,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2118,6 +2399,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2146,6 +2431,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2155,6 +2441,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -2183,6 +2473,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2192,6 +2483,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2220,6 +2515,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2229,6 +2525,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2257,6 +2557,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -2266,6 +2567,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -2294,6 +2599,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2303,6 +2609,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2331,6 +2641,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2340,6 +2651,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2368,6 +2683,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -2377,6 +2693,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2405,6 +2725,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2414,6 +2735,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2442,6 +2767,7 @@ isothermal 256. ? ? +? 0 0.0 0 @@ -2451,6 +2777,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2479,6 +2809,7 @@ spec_hgt_lvl_above_grnd 3000. ? ? +? 0 0.0 0 @@ -2488,6 +2819,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2516,6 +2851,7 @@ spec_hgt_lvl_above_grnd 500. ? ? +? 0 0.0 0 @@ -2525,6 +2861,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2553,6 +2893,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -2562,6 +2903,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2590,6 +2935,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2599,6 +2945,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2627,6 +2977,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2636,6 +2987,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2664,6 +3019,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2673,6 +3029,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2701,6 +3061,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2710,6 +3071,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2738,6 +3103,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -2747,6 +3113,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2775,6 +3145,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -2784,6 +3155,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2812,6 +3187,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2821,6 +3197,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2849,6 +3229,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -2858,6 +3239,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2886,6 +3271,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -2895,6 +3281,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2923,6 +3313,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -2932,6 +3323,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2960,6 +3355,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -2969,6 +3365,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -2997,6 +3397,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3006,6 +3407,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -3034,6 +3439,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3043,6 +3449,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3071,6 +3481,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3080,6 +3491,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3108,6 +3523,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3117,6 +3533,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3145,6 +3565,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3154,6 +3575,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3182,6 +3607,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3191,6 +3617,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3219,6 +3649,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3228,6 +3659,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3256,6 +3691,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3265,6 +3701,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3293,6 +3733,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3302,6 +3743,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3330,6 +3775,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3339,6 +3785,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3367,6 +3817,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3376,6 +3827,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -3404,6 +3859,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3413,6 +3869,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3441,6 +3901,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3450,6 +3911,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3478,6 +3943,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -3487,6 +3953,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3515,6 +3985,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3524,6 +3995,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3552,6 +4027,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3561,6 +4037,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3589,6 +4069,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3598,6 +4079,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3626,6 +4111,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3635,6 +4121,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3663,6 +4153,7 @@ spec_hgt_lvl_above_grnd 3000. ? ? +? 0 0.0 0 @@ -3672,6 +4163,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3700,6 +4195,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3709,6 +4205,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3737,6 +4237,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3746,6 +4247,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3774,6 +4279,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3783,6 +4289,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3811,6 +4321,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3820,6 +4331,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3848,6 +4363,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -3857,6 +4373,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3885,6 +4405,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -3894,6 +4415,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3922,6 +4447,7 @@ RH ? ? ? +? 0 0.0 0 @@ -3931,6 +4457,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -3959,6 +4489,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -3968,6 +4499,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3996,6 +4531,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -4005,6 +4541,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4033,6 +4573,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -4042,6 +4583,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -4070,6 +4615,7 @@ PRES ? ? ? +? 0 0.0 0 @@ -4079,6 +4625,10 @@ PRES 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4107,6 +4657,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -4116,6 +4667,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4144,6 +4699,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -4153,6 +4709,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4181,6 +4741,7 @@ lwst_lvl_of_wet_bulb_zero ? ? ? +? 0 0.0 0 @@ -4190,6 +4751,10 @@ lwst_lvl_of_wet_bulb_zero 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -4218,6 +4783,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4227,6 +4793,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -4255,6 +4825,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4264,6 +4835,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -4292,6 +4867,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -4301,6 +4877,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -4329,6 +4909,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -4338,6 +4919,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -4366,11 +4951,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -4403,6 +4993,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4412,6 +5003,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4440,6 +5035,7 @@ entire_atmos_single_lyr ? particulate_org_matter_dry ? +? 0 0.0 0 @@ -4449,6 +5045,10 @@ particulate_org_matter_dry 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4477,6 +5077,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4486,6 +5087,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4514,6 +5119,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4523,6 +5129,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4551,6 +5161,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4560,6 +5171,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4588,6 +5203,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4597,6 +5213,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4625,6 +5245,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4634,6 +5255,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4662,6 +5287,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -4671,6 +5297,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4699,6 +5329,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -4708,6 +5339,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4736,6 +5371,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4745,6 +5381,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -4773,6 +5413,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4782,6 +5423,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -4810,6 +5455,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4819,6 +5465,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4847,6 +5497,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4856,6 +5507,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4884,6 +5539,7 @@ shall_convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4893,6 +5549,10 @@ shall_convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4921,6 +5581,7 @@ shall_convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -4930,6 +5591,10 @@ shall_convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4958,6 +5623,7 @@ deep_convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -4967,6 +5633,10 @@ deep_convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4995,6 +5665,7 @@ deep_convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5004,6 +5675,10 @@ deep_convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5032,6 +5707,7 @@ convective_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -5041,6 +5717,10 @@ convective_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5069,6 +5749,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5078,6 +5759,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5106,6 +5791,7 @@ convective_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -5115,6 +5801,10 @@ convective_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -5143,6 +5833,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -5152,6 +5843,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5180,6 +5875,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5189,6 +5885,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5217,6 +5917,7 @@ convective_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5226,6 +5927,10 @@ convective_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5254,6 +5959,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -5263,6 +5969,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5291,6 +6001,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5300,6 +6011,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5328,6 +6043,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5337,6 +6053,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5365,6 +6085,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5374,6 +6095,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5402,6 +6127,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -5411,6 +6137,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5439,6 +6169,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -5448,6 +6179,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -5476,6 +6211,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -5485,6 +6221,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5513,6 +6253,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -5522,6 +6263,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5550,6 +6295,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -5559,6 +6305,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5587,6 +6337,7 @@ equil_lvl ? ? ? +? 0 0.0 0 @@ -5596,6 +6347,10 @@ equil_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -5624,6 +6379,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5633,6 +6389,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -5661,6 +6421,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5670,6 +6431,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -5698,6 +6463,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -5707,6 +6473,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -5735,6 +6505,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -5744,6 +6515,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5772,6 +6547,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -5781,6 +6557,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5809,6 +6589,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -5818,6 +6599,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5846,6 +6631,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -5855,6 +6641,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -5883,6 +6673,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -5892,6 +6683,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -5920,6 +6715,7 @@ spec_hgt_lvl_above_grnd 1000. ? ? +? 0 0.0 0 @@ -5929,6 +6725,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -5957,6 +6757,7 @@ spec_hgt_lvl_above_grnd 1000. ? ? +? 0 0.0 0 @@ -5966,6 +6767,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -5994,6 +6799,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -6003,6 +6809,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -6031,6 +6841,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -6040,6 +6851,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -6068,6 +6883,7 @@ surface ? ? ? +? 0 0.0 0 @@ -6077,6 +6893,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -6105,6 +6925,7 @@ lvl_of_adiab_cond_from_sfc ? ? ? +? 0 0.0 0 @@ -6114,6 +6935,10 @@ lvl_of_adiab_cond_from_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -6142,6 +6967,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -6151,6 +6977,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -6179,6 +7009,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -6188,6 +7019,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -6216,6 +7051,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -6225,6 +7061,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -6253,6 +7093,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -6262,6 +7103,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -6290,6 +7135,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -6299,6 +7145,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -6327,6 +7177,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -6336,6 +7187,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -6380,6 +7235,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6389,6 +7245,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6417,6 +7277,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6426,6 +7287,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -6454,6 +7319,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6463,6 +7329,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -6491,6 +7361,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6500,6 +7371,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6528,6 +7403,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6537,6 +7413,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -6565,6 +7445,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6574,6 +7455,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -6602,6 +7487,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6611,6 +7497,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -6639,6 +7529,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6648,6 +7539,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6676,6 +7571,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6685,6 +7581,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6713,6 +7613,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6722,6 +7623,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6750,6 +7655,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6759,6 +7665,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6787,6 +7697,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6796,6 +7707,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6805,7 +7720,7 @@ hybrid_lvl ? ? 747 -GSD_NCCD_ON_HYBRID_LVL +NCCD_ON_HYBRID_LVL Number concentration for cloud water drops on hybrid level 1 tmpl4_0 @@ -6824,6 +7739,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6833,6 +7749,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6842,7 +7762,7 @@ hybrid_lvl ? ? 752 -GSD_NCIP_ON_HYBRID_LVL +NCIP_ON_HYBRID_LVL Number concentration for ice particles on hybrid level 1 tmpl4_0 @@ -6861,6 +7781,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6870,6 +7791,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6879,7 +7804,7 @@ hybrid_lvl ? ? 754 -GSD_NCRAIN_ON_HYBRID_LVL +NCRAIN_ON_HYBRID_LVL ? 1 tmpl4_0 @@ -6898,6 +7823,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6907,6 +7833,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6935,6 +7865,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6944,6 +7875,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6972,6 +7907,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -6981,6 +7917,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7009,6 +7949,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7018,6 +7959,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -7046,6 +7991,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -7055,6 +8001,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7083,6 +8033,7 @@ hybrid_lvl ? particulate_org_matter_dry ? +? 0 0.0 0 @@ -7092,6 +8043,10 @@ particulate_org_matter_dry 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7120,6 +8075,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7129,6 +8085,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7157,6 +8117,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -7166,6 +8127,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -7194,6 +8159,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7203,6 +8169,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7231,6 +8201,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7240,6 +8211,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -7268,6 +8243,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7277,6 +8253,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -7305,6 +8285,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7314,6 +8295,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.7 0 @@ -7342,6 +8327,7 @@ lwst_lvl_of_wet_bulb_zero ? ? ? +? 0 0.0 0 @@ -7351,6 +8337,10 @@ lwst_lvl_of_wet_bulb_zero 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7379,6 +8369,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7388,6 +8379,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -7416,6 +8411,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7425,6 +8421,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -7453,6 +8453,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7462,6 +8463,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7490,6 +8495,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7499,6 +8505,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7527,6 +8537,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7536,6 +8547,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -7564,6 +8579,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7573,6 +8589,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -7601,6 +8621,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7610,6 +8631,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7638,6 +8663,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7647,6 +8673,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -7675,6 +8705,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7684,6 +8715,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -7712,6 +8747,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7721,6 +8757,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -7749,6 +8789,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7758,6 +8799,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -7786,6 +8831,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7795,6 +8841,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -7823,6 +8873,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -7832,6 +8883,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7860,6 +8915,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -7869,6 +8925,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -7897,6 +8957,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -7906,6 +8967,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -7934,6 +8999,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -7943,6 +9009,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -7971,6 +9041,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -7980,6 +9051,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8008,6 +9083,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -8017,6 +9093,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8045,6 +9125,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -8054,6 +9135,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8082,6 +9167,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -8091,6 +9177,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8119,6 +9209,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -8128,6 +9219,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8156,11 +9251,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -8193,6 +9293,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8202,6 +9303,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -8230,6 +9335,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8239,6 +9345,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -8267,6 +9377,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -8276,6 +9387,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8304,6 +9419,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8313,6 +9429,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8341,6 +9461,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8350,6 +9471,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8378,6 +9503,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8387,6 +9513,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8415,6 +9545,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8424,6 +9555,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8452,6 +9587,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8461,6 +9597,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8489,6 +9629,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8498,6 +9639,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8526,6 +9671,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8535,6 +9681,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8563,6 +9713,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8572,6 +9723,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8600,6 +9755,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8609,6 +9765,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -8637,6 +9797,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8646,6 +9807,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -8674,6 +9839,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8683,6 +9849,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8711,6 +9881,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8720,6 +9891,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8748,6 +9923,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8757,6 +9933,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8785,6 +9965,7 @@ spec_hgt_lvl_above_grnd ? particulate_org_matter_dry ? +? 0 0.0 0 @@ -8794,6 +9975,10 @@ particulate_org_matter_dry 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -8822,6 +10007,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8831,6 +10017,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8859,6 +10049,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8868,6 +10059,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8896,6 +10091,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8905,6 +10101,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8933,6 +10133,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8942,6 +10143,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -8970,6 +10175,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8979,6 +10185,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9007,6 +10217,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9016,6 +10227,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9044,6 +10259,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9053,6 +10269,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9081,6 +10301,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9090,6 +10311,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9118,6 +10343,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9127,6 +10353,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9155,6 +10385,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9164,6 +10395,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9192,6 +10427,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -9201,6 +10437,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9229,6 +10469,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9238,6 +10479,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9266,6 +10511,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9275,6 +10521,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9303,6 +10553,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9312,6 +10563,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9340,6 +10595,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9349,6 +10605,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9377,6 +10637,7 @@ entire_atmos_single_lyr ? particulate_org_matter_dry ? +? 0 0.0 0 @@ -9386,6 +10647,10 @@ particulate_org_matter_dry 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9414,6 +10679,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9423,6 +10689,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -9451,6 +10721,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9460,6 +10731,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -9488,6 +10763,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9497,6 +10773,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.7 0 @@ -9525,6 +10805,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9534,6 +10815,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9562,6 +10847,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -9571,6 +10857,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9599,6 +10889,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -9608,6 +10899,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9636,6 +10931,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9645,6 +10941,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9673,6 +10973,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9682,6 +10983,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9710,6 +11015,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -9719,6 +11025,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9747,6 +11057,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -9756,6 +11067,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9784,6 +11099,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -9793,6 +11109,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9821,6 +11141,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -9830,6 +11151,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9858,6 +11183,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -9867,6 +11193,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9895,6 +11225,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -9904,6 +11235,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9932,6 +11267,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -9941,6 +11277,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9969,6 +11309,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -9978,6 +11319,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -10006,6 +11351,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -10015,6 +11361,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -10043,6 +11393,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -10052,6 +11403,10 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 diff --git a/parm/postxconfig-NT-fv3lam_rrfs.txt b/parm/postxconfig-NT-rrfs.txt similarity index 92% rename from parm/postxconfig-NT-fv3lam_rrfs.txt rename to parm/postxconfig-NT-rrfs.txt index a0e47132a..ae513f714 100644 --- a/parm/postxconfig-NT-fv3lam_rrfs.txt +++ b/parm/postxconfig-NT-rrfs.txt @@ -1,8 +1,8 @@ 4 5 3 -235 -284 +229 +278 PRSLEV 32769 ncep_nco @@ -39,6 +39,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -48,6 +49,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -76,6 +81,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -85,6 +91,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -113,6 +123,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -122,6 +133,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -150,6 +165,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -159,6 +175,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -187,6 +207,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -196,6 +217,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -224,6 +249,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -233,6 +259,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -261,6 +291,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -270,6 +301,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -298,6 +333,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -307,6 +343,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -335,6 +375,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -344,6 +385,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -372,6 +417,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -381,6 +427,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -409,6 +459,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -418,6 +469,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -446,6 +501,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -455,6 +511,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -483,6 +543,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -492,6 +553,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -520,6 +585,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -529,6 +595,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -557,6 +627,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -566,6 +637,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -594,6 +669,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -603,6 +679,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -631,6 +711,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -640,6 +721,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -668,6 +753,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -677,6 +763,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -705,6 +795,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -714,6 +805,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -742,6 +837,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -751,6 +847,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -779,6 +879,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -788,6 +889,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -816,6 +921,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -825,6 +931,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -853,6 +963,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -862,6 +973,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -890,6 +1005,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -899,6 +1015,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -927,6 +1047,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -936,6 +1057,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -964,6 +1089,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -973,6 +1099,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1001,6 +1131,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1010,6 +1141,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1038,6 +1173,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1047,6 +1183,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1075,6 +1215,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1084,6 +1225,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1112,6 +1257,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1121,6 +1267,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1149,6 +1299,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1158,6 +1309,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1186,6 +1341,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -1195,6 +1351,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1223,6 +1383,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1232,6 +1393,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1260,6 +1425,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1269,6 +1435,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1297,6 +1467,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -1306,6 +1477,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -1334,6 +1509,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -1343,6 +1519,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1371,6 +1551,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1380,6 +1561,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1408,6 +1593,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1417,6 +1603,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1445,6 +1635,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1454,6 +1645,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1482,6 +1677,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1491,6 +1687,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1519,6 +1719,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1528,6 +1729,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1556,6 +1761,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -1565,6 +1771,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1593,6 +1803,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1602,6 +1813,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1630,6 +1845,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -1639,6 +1855,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1667,6 +1887,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1676,6 +1897,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1704,6 +1929,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1713,6 +1939,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -1741,6 +1971,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1750,6 +1981,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -1778,6 +2013,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1787,6 +2023,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1815,6 +2055,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1824,6 +2065,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1852,6 +2097,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -1861,6 +2107,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1889,6 +2139,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -1898,8 +2149,12 @@ depth_bel_land_sfc 0.0 0 0.0 -1 -4.0 +0 +0.0 +0 +0.0 +1 +4.0 0 0 0 @@ -1926,6 +2181,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -1935,6 +2191,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1963,6 +2223,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -1972,6 +2233,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2000,6 +2265,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2009,6 +2275,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2037,6 +2307,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2046,6 +2317,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2074,6 +2349,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2083,6 +2359,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2111,6 +2391,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2120,6 +2401,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2148,6 +2433,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2157,6 +2443,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2185,6 +2475,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2194,6 +2485,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2222,6 +2517,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2231,6 +2527,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2259,6 +2559,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2268,6 +2569,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2296,6 +2601,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2305,6 +2611,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2333,6 +2643,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2342,6 +2653,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2370,6 +2685,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2379,6 +2695,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2407,6 +2727,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2416,6 +2737,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2444,6 +2769,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2453,6 +2779,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2481,6 +2811,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2490,6 +2821,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 9.0 0 @@ -2518,6 +2853,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2527,6 +2863,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2555,6 +2895,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2564,6 +2905,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2592,6 +2937,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -2601,6 +2947,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2629,6 +2979,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2638,6 +2989,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2666,6 +3021,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -2675,6 +3031,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2703,6 +3063,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2712,6 +3073,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2740,6 +3105,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2749,6 +3115,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2777,6 +3147,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2786,6 +3157,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2814,6 +3189,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2823,6 +3199,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2851,6 +3231,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2860,6 +3241,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2888,6 +3273,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -2897,6 +3283,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2925,6 +3315,7 @@ spec_hgt_lvl_above_grnd 3000. ? ? +? 0 0.0 0 @@ -2934,6 +3325,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2962,6 +3357,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2971,6 +3367,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2999,6 +3399,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3008,6 +3409,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3036,6 +3441,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3045,6 +3451,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3073,6 +3483,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -3082,6 +3493,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3110,6 +3525,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3119,6 +3535,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3147,6 +3567,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3156,6 +3577,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3184,6 +3609,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3193,6 +3619,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3221,6 +3651,7 @@ spec_hgt_lvl_above_grnd 500. ? ? +? 0 0.0 0 @@ -3230,6 +3661,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3258,6 +3693,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3267,6 +3703,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3295,6 +3735,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3304,6 +3745,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3332,6 +3777,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3341,6 +3787,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3369,6 +3819,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3378,6 +3829,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3406,6 +3861,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3415,6 +3871,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3443,6 +3903,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3452,6 +3913,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3480,6 +3945,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3489,6 +3955,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3517,6 +3987,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3526,6 +3997,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3554,6 +4029,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3563,6 +4039,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3591,6 +4071,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3600,6 +4081,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -3628,6 +4113,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3637,6 +4123,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3665,6 +4155,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3674,6 +4165,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3702,6 +4197,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3711,6 +4207,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3739,6 +4239,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3748,6 +4249,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3776,6 +4281,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3785,6 +4291,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3813,6 +4323,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3822,6 +4333,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3850,6 +4365,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3859,6 +4375,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3887,6 +4407,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3896,6 +4417,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3924,6 +4449,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3933,6 +4459,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3961,6 +4491,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -3970,6 +4501,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3998,6 +4533,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4007,6 +4543,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4035,6 +4575,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -4044,6 +4585,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4072,6 +4617,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4081,6 +4627,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4109,6 +4659,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4118,6 +4669,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4146,6 +4701,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4155,6 +4711,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4183,6 +4743,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -4192,6 +4753,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4220,6 +4785,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4229,6 +4795,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4257,6 +4827,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -4266,6 +4837,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4294,6 +4869,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4303,6 +4879,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4331,6 +4911,7 @@ lvl_of_adiab_cond_from_sfc ? ? ? +? 0 0.0 0 @@ -4340,6 +4921,10 @@ lvl_of_adiab_cond_from_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -4368,6 +4953,7 @@ lvl_of_adiab_cond_from_sfc ? ? ? +? 0 0.0 0 @@ -4377,6 +4963,10 @@ lvl_of_adiab_cond_from_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4405,6 +4995,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4414,6 +5005,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4442,6 +5037,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4451,6 +5047,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4479,6 +5079,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4488,6 +5089,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4516,6 +5121,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4525,6 +5131,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4553,6 +5163,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4562,6 +5173,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4590,6 +5205,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4599,6 +5215,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4627,6 +5247,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -4636,6 +5257,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4664,6 +5289,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -4673,6 +5299,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4701,6 +5331,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -4710,6 +5341,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4738,6 +5373,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -4747,6 +5383,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -4775,6 +5415,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4784,6 +5425,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4812,6 +5457,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4821,6 +5467,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4849,6 +5499,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4858,6 +5509,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4886,6 +5541,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4895,6 +5551,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4923,6 +5583,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4932,6 +5593,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4960,6 +5625,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4969,6 +5635,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.7 0 @@ -4997,6 +5667,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5006,6 +5677,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5034,6 +5709,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5043,6 +5719,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5071,6 +5751,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5080,6 +5761,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5108,6 +5793,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5117,6 +5803,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5145,6 +5835,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5154,6 +5845,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5182,6 +5877,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5191,6 +5887,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5219,6 +5919,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5228,6 +5929,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5256,6 +5961,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5265,6 +5971,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5293,6 +6003,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5302,6 +6013,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5330,6 +6045,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5339,6 +6055,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5367,6 +6087,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5376,6 +6097,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5404,6 +6129,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5413,6 +6139,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -5441,6 +6171,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5450,6 +6181,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5478,6 +6213,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5487,6 +6223,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5515,6 +6255,7 @@ surface ? ? ? +? 0 0.0 0 @@ -5524,6 +6265,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -5552,6 +6297,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5561,6 +6307,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5589,6 +6339,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5598,6 +6349,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -5626,6 +6381,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5635,6 +6391,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5663,6 +6423,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5672,7 +6433,11 @@ tropopause 0.0 0 0.0 -1 +0 +0.0 +0 +0.0 +1 5.0 0 0 @@ -5700,6 +6465,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5709,6 +6475,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5737,6 +6507,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5746,6 +6517,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -5774,6 +6549,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -5783,6 +6559,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5811,6 +6591,7 @@ spec_hgt_lvl_above_grnd 1000. ? ? +? 0 0.0 0 @@ -5820,6 +6601,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5848,6 +6633,7 @@ spec_hgt_lvl_above_grnd 1000. ? ? +? 0 0.0 0 @@ -5857,6 +6643,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5885,6 +6675,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -5894,6 +6685,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5922,6 +6717,7 @@ spec_hgt_lvl_above_grnd 6000. ? ? +? 0 0.0 0 @@ -5931,6 +6727,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5959,6 +6759,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -5968,6 +6769,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -5996,6 +6801,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6005,6 +6811,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6033,6 +6843,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6042,6 +6853,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6070,6 +6885,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6079,6 +6895,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6107,6 +6927,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6116,6 +6937,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6144,6 +6969,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6153,6 +6979,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6181,6 +7011,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6190,6 +7021,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6218,6 +7053,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -6227,6 +7063,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6255,6 +7095,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -6264,6 +7105,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6292,6 +7137,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -6301,6 +7147,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6329,6 +7179,7 @@ RH ? ? ? +? 0 0.0 0 @@ -6338,6 +7189,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -6366,6 +7221,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -6375,6 +7231,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6403,6 +7263,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -6412,6 +7273,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -6440,6 +7305,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -6449,6 +7315,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6477,6 +7347,7 @@ equil_lvl ? ? ? +? 0 0.0 0 @@ -6486,6 +7357,10 @@ equil_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6514,6 +7389,7 @@ lwst_lvl_of_wet_bulb_zero ? ? ? +? 0 0.0 0 @@ -6523,6 +7399,10 @@ lwst_lvl_of_wet_bulb_zero 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -6551,6 +7431,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6560,6 +7441,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6588,6 +7473,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6597,6 +7483,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6625,6 +7515,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -6634,6 +7525,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6662,6 +7557,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -6671,6 +7567,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6699,6 +7599,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6708,6 +7609,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6736,6 +7641,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6745,6 +7651,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -6773,6 +7683,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -6782,6 +7693,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -6810,6 +7725,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6819,6 +7735,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6847,6 +7767,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -6856,6 +7777,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -6884,6 +7809,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -6893,6 +7819,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6921,6 +7851,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -6930,6 +7861,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -6958,6 +7893,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -6967,6 +7903,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -6995,6 +7935,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -7004,6 +7945,10 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7032,6 +7977,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7041,6 +7987,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7069,6 +8019,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -7078,6 +8029,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -7106,6 +8061,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7115,6 +8071,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7143,6 +8103,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7152,6 +8113,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7180,6 +8145,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7189,6 +8155,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7217,6 +8187,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -7226,6 +8197,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7254,6 +8229,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7263,6 +8239,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7291,6 +8271,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -7300,6 +8281,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -7328,6 +8313,7 @@ surface ? ? ? +? 0 0.0 0 @@ -7337,6 +8323,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7365,6 +8355,7 @@ grid_scale_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -7374,6 +8365,10 @@ grid_scale_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7402,6 +8397,7 @@ grid_scale_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -7411,6 +8407,10 @@ grid_scale_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -7419,15 +8419,15 @@ grid_scale_cloud_top_lvl ? ? ? -200 -TCOLW_ON_ENTIRE_ATMOS +979 +EFSH_ON_EFBL ? 1 tmpl4_0 -TCOLW +EFSH NCEP ? -entire_atmos_single_lyr +level_free_convection 0 ? 0 @@ -7439,6 +8439,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -7448,23 +8449,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-1.0 0 0 0 ? ? ? -201 -TCOLI_ON_ENTIRE_ATMOS +980 +EFSH_ON_EFTL ? 1 tmpl4_0 -TCOLI +EFSH +NCEP ? -? -entire_atmos_single_lyr +equil_lvl 0 ? 0 @@ -7476,48 +8481,16 @@ entire_atmos_single_lyr ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -5.0 -0 -0 -0 -? -? -? -979 -EFSH_ON_EFBL -? -1 -tmpl4_0 -EFSH -NCEP -? -level_free_convection -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -7530,12 +8503,12 @@ level_free_convection ? ? ? -980 -EFSH_ON_EFTL +982 +ELMELT_ON_EFTL ? 1 tmpl4_0 -EFSH +ELMELT NCEP ? equil_lvl @@ -7550,48 +8523,16 @@ equil_lvl ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 --1.0 -0 -0 -0 -? -? -? -982 -ELMELT_ON_EFTL -? -1 -tmpl4_0 -ELMELT -NCEP -? -equil_lvl -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -7624,6 +8565,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -7633,6 +8575,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7661,6 +8607,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -7670,6 +8617,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7698,6 +8649,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -7707,6 +8659,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7735,6 +8691,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -7744,6 +8701,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7772,6 +8733,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -7781,6 +8743,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7809,6 +8775,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -7818,6 +8785,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7846,6 +8817,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -7855,6 +8827,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7883,6 +8859,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -7892,6 +8869,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7920,6 +8901,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -7929,6 +8911,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7957,6 +8943,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -7966,6 +8953,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -7994,6 +8985,7 @@ level_free_convection ? ? ? +? 0 0.0 0 @@ -8003,6 +8995,10 @@ level_free_convection 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -1.0 0 @@ -8011,15 +9007,15 @@ level_free_convection ? ? ? -202 -TCOLR_ON_ENTIRE_ATMOS +287 +HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR ? 1 tmpl4_0 -TCOLR +HGT ? ? -entire_atmos_single_lyr +lwst_bot_lvl_of_supercooled_liq_water_lyr 0 ? 0 @@ -8031,6 +9027,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8040,23 +9037,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -203 -TCOLS_ON_ENTIRE_ATMOS +288 +HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR ? 1 tmpl4_0 -TCOLS +HGT ? ? -entire_atmos_single_lyr +hghst_top_lvl_of_supercooled_liq_water_lyr 0 ? 0 @@ -8068,6 +9069,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8077,6 +9079,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -8085,15 +9091,15 @@ entire_atmos_single_lyr ? ? ? -204 -TCOLC_ON_ENTIRE_ATMOS -? +408 +GSD_HGT_ON_CLOUD_CEILING +GSD_geopotential height on cloud ceiling 1 tmpl4_0 -TCOLC -NCEP +HGT ? -entire_atmos_single_lyr +? +cloud_ceilng 0 ? 0 @@ -8105,6 +9111,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8114,23 +9121,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-3.0 0 0 0 ? ? ? -428 -TCOLG_ON_ENTIRE_ATMOS +487 +GSD_EXP_CEILING ? 1 tmpl4_0 -TCOLG +CEIL ? ? -entire_atmos_single_lyr +cloud_ceilng 0 ? 0 @@ -8142,6 +9153,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8151,23 +9163,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-3.0 0 0 0 ? ? ? -285 -TCLSW_ON_ENTIRE_ATMOS +711 +GSD_EXP_CEILING_2 ? 1 tmpl4_0 -TCLSW -NCEP +CEIL ? -entire_atmos_single_lyr +? +cloud_base 0 ? 0 @@ -8179,6 +9195,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8188,23 +9205,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-3.0 0 0 0 ? ? ? -286 -TCOLM_ON_ENTIRE_ATMOS +282 +PRES_ON_TOP_OF_ATMOS ? 1 tmpl4_0 -TCOLM -NCEP +PRES ? -entire_atmos_single_lyr +? +top_of_atmos 0 ? 0 @@ -8216,6 +9237,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -8225,23 +9247,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +3.0 0 0 0 ? ? ? -287 -HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +389 +UGRD_ON_PLANETARY_BOUND_LYR ? 1 tmpl4_0 -HGT +UGRD ? ? -lwst_bot_lvl_of_supercooled_liq_water_lyr +planetary_bound_lyr 0 ? 0 @@ -8253,6 +9279,7 @@ lwst_bot_lvl_of_supercooled_liq_water_lyr ? ? ? +? 0 0.0 0 @@ -8262,23 +9289,27 @@ lwst_bot_lvl_of_supercooled_liq_water_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-4.0 0 0 0 ? ? ? -288 -HGT_ON_HGHST_TOP_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR +390 +VGRD_ON_PLANETARY_BOUND_LYR ? 1 tmpl4_0 -HGT +VGRD ? ? -hghst_top_lvl_of_supercooled_liq_water_lyr +planetary_bound_lyr 0 ? 0 @@ -8290,6 +9321,7 @@ hghst_top_lvl_of_supercooled_liq_water_lyr ? ? ? +? 0 0.0 0 @@ -8299,23 +9331,27 @@ hghst_top_lvl_of_supercooled_liq_water_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +-4.0 0 0 0 ? ? ? -408 -GSD_HGT_ON_CLOUD_CEILING -GSD_geopotential height on cloud ceiling +289 +HGT_ON_PLANETARY_BOUND_LYR +? 1 tmpl4_0 HGT ? ? -cloud_ceilng +planetary_bound_lyr 0 ? 0 @@ -8327,6 +9363,7 @@ cloud_ceilng ? ? ? +? 0 0.0 0 @@ -8336,171 +9373,27 @@ cloud_ceilng 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --3.0 +-4.0 0 0 0 ? ? ? -487 -GSD_EXP_CEILING +381 +MIXHT_ON_SURFACE ? 1 tmpl4_0 -CEIL -? -? -cloud_ceilng -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 --3.0 -0 -0 -0 -? -? -? -711 -GSD_EXP_CEILING_2 -? -1 -tmpl4_0 -CEIL -? -? -cloud_base -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 --3.0 -0 -0 -0 -? -? -? -282 -PRES_ON_TOP_OF_ATMOS -? -1 -tmpl4_0 -PRES -? -? -top_of_atmos -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -3.0 -0 -0 -0 -? -? -? -389 -UGRD_ON_PLANETARY_BOUND_LYR -? -1 -tmpl4_0 -UGRD -? -? -planetary_bound_lyr -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 --4.0 -0 -0 -0 -? -? -? -390 -VGRD_ON_PLANETARY_BOUND_LYR -? -1 -tmpl4_0 -VGRD +MIXHT ? ? -planetary_bound_lyr +surface 0 ? 0 @@ -8512,48 +9405,16 @@ planetary_bound_lyr ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 --4.0 -0 -0 -0 -? -? -? -289 -HGT_ON_PLANETARY_BOUND_LYR -? -1 -tmpl4_0 -HGT -? -? -planetary_bound_lyr -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -8566,15 +9427,15 @@ planetary_bound_lyr ? ? ? -381 -MIXHT_ON_SURFACE +400 +RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR ? 1 tmpl4_0 -MIXHT +RETOP ? ? -surface +entire_atmos_single_lyr 0 ? 0 @@ -8586,48 +9447,16 @@ surface ? ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 --4.0 -0 -0 -0 -? -? -? -400 -RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR -? -1 -tmpl4_0 -RETOP -? -? -entire_atmos_single_lyr -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 @@ -8660,6 +9489,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -8669,6 +9499,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8697,6 +9531,7 @@ surface ? ? ? +? 0 0.0 0 @@ -8706,6 +9541,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -8734,6 +9573,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8743,6 +9583,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8771,6 +9615,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8780,6 +9625,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -8808,6 +9657,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8817,6 +9667,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -8845,6 +9699,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8854,6 +9709,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -8882,6 +9741,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8891,6 +9751,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8919,6 +9783,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8928,6 +9793,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8956,6 +9825,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -8965,6 +9835,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -8993,6 +9867,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -9002,6 +9877,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9030,6 +9909,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -9039,6 +9919,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9067,6 +9951,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -9076,6 +9961,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9104,6 +9993,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9113,6 +10003,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -9141,6 +10035,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -9150,6 +10045,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -9178,6 +10077,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -9187,6 +10087,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -9215,6 +10119,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -9224,6 +10129,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9252,6 +10161,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -9261,6 +10171,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9289,6 +10203,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -9298,6 +10213,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9326,6 +10245,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9335,6 +10255,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9363,6 +10287,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9372,6 +10297,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9400,6 +10329,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9409,6 +10339,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9437,6 +10371,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -9446,6 +10381,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9474,6 +10413,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -9483,6 +10423,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -9511,6 +10455,7 @@ surface ? ? ? +? 0 0.0 0 @@ -9520,6 +10465,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -9548,6 +10497,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -9557,6 +10507,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -9585,6 +10539,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -9594,6 +10549,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -9606,7 +10565,7 @@ isothermal 1H_FFG_EXCEEDANCE ? 1 -tmpl4_8 +tmpl4_9 QPFFFG NCEP ACM @@ -9621,6 +10580,7 @@ surface 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9631,6 +10591,10 @@ surface 0.0 0 0.0 +0 +1.0 +0 +0.0 1 5.0 0 @@ -9643,7 +10607,7 @@ surface ACM_FFG_EXCEEDANCE ? 1 -tmpl4_8 +tmpl4_9 QPFFFG NCEP ACM @@ -9658,6 +10622,7 @@ surface 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9668,6 +10633,10 @@ surface 0.0 0 0.0 +0 +1.0 +0 +0.0 1 5.0 0 @@ -9680,7 +10649,7 @@ surface 1H_2YARI_EXCEEDANCE ? 1 -tmpl4_8 +tmpl4_9 QPFARI NCEP ACM @@ -9695,14 +10664,19 @@ surface 0 ? ? +prob_above_lower_limit +? +0 +0.0 +0 +0.0 ? 0 0.0 0 0.0 -? 0 -0.0 +2.0 0 0.0 1 @@ -9717,7 +10691,7 @@ surface ACM_2YARI_EXCEEDANCE ? 1 -tmpl4_8 +tmpl4_9 QPFARI NCEP ACM @@ -9732,6 +10706,7 @@ surface 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9742,6 +10717,10 @@ surface 0.0 0 0.0 +0 +2.0 +0 +0.0 1 5.0 0 @@ -9754,7 +10733,7 @@ surface 1H_5YARI_EXCEEDANCE ? 1 -tmpl4_8 +tmpl4_9 QPFARI NCEP ACM @@ -9769,6 +10748,7 @@ surface 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9779,6 +10759,10 @@ surface 0.0 0 0.0 +0 +5.0 +0 +0.0 1 5.0 0 @@ -9791,7 +10775,7 @@ surface ACM_5YARI_EXCEEDANCE ? 1 -tmpl4_8 +tmpl4_9 QPFARI NCEP ACM @@ -9806,6 +10790,7 @@ surface 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9816,6 +10801,10 @@ surface 0.0 0 0.0 +0 +5.0 +0 +0.0 1 5.0 0 @@ -9828,7 +10817,7 @@ surface 1H_10YARI_EXCEEDANCE ? 1 -tmpl4_8 +tmpl4_9 QPFARI NCEP ACM @@ -9843,6 +10832,7 @@ surface 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9853,6 +10843,10 @@ surface 0.0 0 0.0 +0 +10.0 +0 +0.0 1 5.0 0 @@ -9865,7 +10859,7 @@ surface ACM_10YARI_EXCEEDANCE ? 1 -tmpl4_8 +tmpl4_9 QPFARI NCEP ACM @@ -9880,6 +10874,7 @@ surface 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9890,6 +10885,10 @@ surface 0.0 0 0.0 +0 +10.0 +0 +0.0 1 5.0 0 @@ -9902,7 +10901,7 @@ surface 1H_100YARI_EXCEEDANCE ? 1 -tmpl4_8 +tmpl4_9 QPFARI NCEP ACM @@ -9917,6 +10916,7 @@ surface 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9927,6 +10927,10 @@ surface 0.0 0 0.0 +0 +100.0 +0 +0.0 1 5.0 0 @@ -9939,7 +10943,7 @@ surface ACM_100YARI_EXCEEDANCE ? 1 -tmpl4_8 +tmpl4_9 QPFARI NCEP ACM @@ -9954,6 +10958,7 @@ surface 0 ? ? +prob_above_lower_limit ? 0 0.0 @@ -9964,6 +10969,10 @@ surface 0.0 0 0.0 +0 +100.0 +0 +0.0 1 5.0 0 @@ -9980,7 +10989,7 @@ tmpl4_48 AEMFLX ? ? -surface +entire_atmos_single_lyr 0 ? 0 @@ -9992,11 +11001,16 @@ surface ? particulate_org_matter_dry ? +smaller_than_first_limit +7 +25 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -10028,6 +11042,7 @@ spec_hgt_lvl_above_grnd 0 ? particulate_org_matter_dry +? smaller_than_first_limit 7 25 @@ -10038,6 +11053,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10065,6 +11084,7 @@ entire_atmos_single_lyr 0 ? particulate_org_matter_dry +? smaller_than_first_limit 7 25 @@ -10075,6 +11095,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -10102,6 +11126,7 @@ spec_hgt_lvl_above_grnd 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -10112,6 +11137,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10139,6 +11168,7 @@ entire_atmos_single_lyr 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -10149,6 +11179,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -10176,6 +11210,7 @@ spec_hgt_lvl_above_grnd 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 25 @@ -10186,6 +11221,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10213,6 +11252,7 @@ entire_atmos_single_lyr 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 25 @@ -10223,6 +11263,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -10251,6 +11295,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -10260,6 +11305,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -10272,10 +11321,10 @@ entire_atmos_single_lyr HWP_ON_SURFACE Hourly Wildfire Potential on surface 1 -tmpl4_0 +tmpl4_8 WFIREPOT ? -? +AVE surface 0 ? @@ -10288,6 +11337,7 @@ surface ? ? ? +? 0 0.0 0 @@ -10297,6 +11347,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -10305,6 +11359,90 @@ surface ? ? ? +759 +AVE_PM25_ON_SPEC_HGT_LVL_ABOVE_GRND_8m +? +1 +tmpl4_46 +MASSDEN +? +AVE +spec_hgt_lvl_above_grnd +0 +? +1 +8. +? +0 +? +0 +? +? +? +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +771 +AVE_PM10_ON_SPEC_HGT_LVL_ABOVE_GRND_8m +? +1 +tmpl4_46 +MASSDEN +? +AVE +spec_hgt_lvl_above_grnd +0 +? +1 +8. +? +0 +? +0 +? +? +? +smaller_than_first_limit +7 +100 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? 955 DENDRITIC_LAYER_DEPTH ? @@ -10325,6 +11463,7 @@ isothermal 256. ? ? +? 0 0.0 0 @@ -10334,6 +11473,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10362,6 +11505,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10371,6 +11515,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -10399,6 +11547,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -10408,6 +11557,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -10436,6 +11589,7 @@ PRES ? ? ? +? 0 0.0 0 @@ -10445,6 +11599,10 @@ PRES 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -10473,6 +11631,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -10482,6 +11641,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -10510,6 +11673,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -10519,6 +11683,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10563,6 +11731,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10572,6 +11741,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10600,6 +11773,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10609,6 +11783,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -10637,6 +11815,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10646,6 +11825,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -10674,6 +11857,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10683,6 +11867,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10711,6 +11899,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10720,6 +11909,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10748,6 +11941,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10757,6 +11951,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10785,6 +11983,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -10794,6 +11993,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10822,6 +12025,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -10831,6 +12035,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -10859,6 +12067,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -10868,6 +12077,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10896,6 +12109,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -10905,6 +12119,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -10933,6 +12151,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -10942,6 +12161,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -10970,11 +12193,16 @@ hybrid_lvl ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -11007,6 +12235,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11016,6 +12245,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11044,6 +12277,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11053,6 +12287,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -11081,6 +12319,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11090,6 +12329,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11118,6 +12361,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -11127,6 +12371,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -0.1 0 @@ -11155,6 +12403,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -11164,6 +12413,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11192,6 +12445,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11201,6 +12455,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11229,6 +12487,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11238,6 +12497,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11266,6 +12529,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11275,6 +12539,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11303,6 +12571,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11312,6 +12581,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11340,6 +12613,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11349,6 +12623,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11377,6 +12655,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -11386,6 +12665,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11414,6 +12697,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11423,6 +12707,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11451,6 +12739,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11460,6 +12749,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11488,6 +12781,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11497,6 +12791,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -11525,6 +12823,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11534,6 +12833,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -11562,6 +12865,7 @@ surface ? ? ? +? 0 0.0 0 @@ -11571,6 +12875,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -11599,6 +12907,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -11608,6 +12917,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -11636,6 +12949,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -11645,6 +12959,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 7.0 0 @@ -11673,6 +12991,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -11682,6 +13001,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -11710,6 +13033,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -11719,6 +13043,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -11747,6 +13075,7 @@ isobaric_sfc 100000. ? ? +? 0 0.0 0 @@ -11756,6 +13085,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -11784,6 +13117,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -11793,6 +13127,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -11821,6 +13159,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -11830,6 +13169,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -11858,6 +13201,7 @@ spec_hgt_lvl_above_grnd 2000. ? ? +? 0 0.0 0 @@ -11867,6 +13211,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -11895,6 +13243,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -11904,6 +13253,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -11932,6 +13285,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -11941,6 +13295,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -11969,6 +13327,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -11978,6 +13337,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -12006,6 +13369,7 @@ spec_hgt_lvl_above_grnd 0000. ? ? +? 0 0.0 0 @@ -12015,6 +13379,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -12043,6 +13411,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12052,6 +13421,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12080,6 +13453,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -12089,6 +13463,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -12117,6 +13495,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -12126,6 +13505,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -12154,6 +13537,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -12163,6 +13547,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -12191,6 +13579,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -12200,6 +13589,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -12228,6 +13621,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -12237,6 +13631,10 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -12265,6 +13663,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -12274,6 +13673,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12302,6 +13705,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -12311,6 +13715,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12339,6 +13747,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -12348,6 +13757,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -12376,6 +13789,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -12385,6 +13799,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 0 @@ -12413,6 +13831,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -12422,6 +13841,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12450,6 +13873,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -12459,6 +13883,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12487,6 +13915,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -12496,6 +13925,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12524,6 +13957,7 @@ depth_bel_land_sfc 0. 1. 4. 10. 30. 60. 100. 160. 300. ? ? +? 0 0.0 0 @@ -12533,6 +13967,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12561,6 +13999,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12570,6 +14009,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12598,6 +14041,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12607,6 +14051,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12635,6 +14083,7 @@ depth_bel_land_sfc ? ? ? +? 0 0.0 0 @@ -12644,6 +14093,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12672,6 +14125,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12681,6 +14135,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12709,6 +14167,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12718,6 +14177,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -12746,6 +14209,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12755,6 +14219,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12783,6 +14251,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -12792,6 +14261,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12820,6 +14293,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -12829,6 +14303,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -12857,11 +14335,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -12894,6 +14377,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12903,6 +14387,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -12931,6 +14419,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12940,6 +14429,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -12968,6 +14461,7 @@ surface ? ? ? +? 0 0.0 0 @@ -12977,6 +14471,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13005,6 +14503,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13014,6 +14513,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -13042,6 +14545,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13051,6 +14555,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13079,6 +14587,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13088,6 +14597,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -13116,6 +14629,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13125,6 +14639,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -13153,6 +14671,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13162,6 +14681,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -13190,6 +14713,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13199,6 +14723,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -13227,6 +14755,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13236,6 +14765,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -13264,6 +14797,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13273,6 +14807,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -13301,6 +14839,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13310,6 +14849,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13319,7 +14862,7 @@ hybrid_lvl ? ? 747 -GSD_NCCD_ON_HYBRID_LVL +NCCD_ON_HYBRID_LVL Number concentration for cloud water drops on hybrid level 1 tmpl4_0 @@ -13338,6 +14881,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13347,6 +14891,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13375,6 +14923,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13384,6 +14933,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13393,7 +14946,7 @@ hybrid_lvl ? ? 752 -GSD_NCIP_ON_HYBRID_LVL +NCIP_ON_HYBRID_LVL Number concentration for ice particles on hybrid level 1 tmpl4_0 @@ -13412,6 +14965,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13421,6 +14975,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13449,6 +15007,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13458,6 +15017,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13486,6 +15049,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13495,6 +15059,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13523,6 +15091,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13532,6 +15101,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13560,6 +15133,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13569,6 +15143,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13578,7 +15156,7 @@ hybrid_lvl ? ? 754 -GSD_NCRAIN_ON_HYBRID_LVL +NCRAIN_ON_HYBRID_LVL ? 1 tmpl4_0 @@ -13597,6 +15175,7 @@ hybrid_lvl ? ? ? +? 0 0.0 0 @@ -13606,6 +15185,10 @@ hybrid_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13633,6 +15216,7 @@ hybrid_lvl 0 ? particulate_org_matter_dry +? smaller_than_first_limit 7 25 @@ -13643,6 +15227,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -13670,6 +15258,7 @@ hybrid_lvl 0 ? dust_dry +? smaller_than_first_limit 7 25 @@ -13680,6 +15269,10 @@ smaller_than_first_limit 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -13707,6 +15300,7 @@ hybrid_lvl 0 ? dust_dry +? between_first_second_limit_noincl2ndlmt 7 25 @@ -13717,6 +15311,10 @@ between_first_second_limit_noincl2ndlmt 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -13745,6 +15343,7 @@ low_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13754,6 +15353,10 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13782,6 +15385,7 @@ mid_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13791,6 +15395,10 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13819,6 +15427,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13828,6 +15437,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13856,6 +15469,7 @@ bound_lyr_cloud_lyr ? ? ? +? 0 0.0 0 @@ -13865,6 +15479,10 @@ bound_lyr_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13893,6 +15511,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13902,6 +15521,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13930,6 +15553,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -13939,6 +15563,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -13967,6 +15595,7 @@ surface ? ? ? +? 0 0.0 0 @@ -13976,6 +15605,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14004,6 +15637,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14013,6 +15647,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14041,6 +15679,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14050,6 +15689,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14078,6 +15721,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14087,6 +15731,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14115,6 +15763,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14124,6 +15773,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14152,6 +15805,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14161,6 +15815,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14189,6 +15847,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -14198,6 +15857,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14226,6 +15889,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -14235,6 +15899,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14263,6 +15931,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14272,6 +15941,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14300,6 +15973,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14309,6 +15983,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14337,6 +16015,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14346,6 +16025,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14374,6 +16057,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14383,6 +16067,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14411,6 +16099,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14420,6 +16109,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14448,6 +16141,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14457,6 +16151,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.7 0 @@ -14485,6 +16183,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14494,6 +16193,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14522,6 +16225,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14531,6 +16235,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14559,6 +16267,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14568,6 +16277,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14596,6 +16309,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14605,6 +16319,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14633,6 +16351,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14642,6 +16361,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14670,6 +16393,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14679,6 +16403,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14707,6 +16435,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14716,6 +16445,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14744,11 +16477,16 @@ surface ? ? ? +? +0 +0.0 +0 +0.0 +? 0 0.0 0 0.0 -? 0 0.0 0 @@ -14781,6 +16519,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14790,6 +16529,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14818,6 +16561,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14827,6 +16571,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14855,6 +16603,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14864,6 +16613,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -14892,6 +16645,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14901,6 +16655,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -14929,6 +16687,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14938,6 +16697,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -14966,6 +16729,7 @@ surface ? ? ? +? 0 0.0 0 @@ -14975,6 +16739,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -15003,6 +16771,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15012,6 +16781,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -15040,6 +16813,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15049,6 +16823,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -15077,6 +16855,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15086,6 +16865,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -15114,6 +16897,7 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? +? 0 0.0 0 @@ -15123,6 +16907,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -15151,66 +16939,34 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -69 -POT_ON_SPEC_PRES_ABOVE_GRND -? -1 -tmpl4_0 -POT -? -? -spec_pres_above_grnd -0 -? -1 -3000. -spec_pres_above_grnd -0 -? -1 -0. -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +3.0 0 0 0 ? ? ? -70 -DPT_ON_SPEC_PRES_ABOVE_GRND +69 +POT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -DPT +POT ? ? spec_pres_above_grnd @@ -15225,103 +16981,34 @@ spec_pres_above_grnd 0. ? ? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -3.0 -0 -0 -0 -? -? -? -71 -SPFH_ON_SPEC_PRES_ABOVE_GRND -? -1 -tmpl4_0 -SPFH -? -? -spec_pres_above_grnd -0 -? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd -0 -? -6 -0. 3000. 6000. 9000. 12000. 15000. -? -? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -5.0 -0 -0 -0 -? -? -? -72 -RH_ON_SPEC_PRES_ABOVE_GRND -? -1 -tmpl4_0 -RH -? -? -spec_pres_above_grnd -0 -? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd -0 -? -6 -0. 3000. 6000. 9000. 12000. 15000. -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -2.0 +4.0 0 0 0 ? ? ? -89 -PWAT_ON_SPEC_PRES_ABOVE_GRND +70 +DPT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -PWAT +DPT ? ? spec_pres_above_grnd @@ -15336,66 +17023,34 @@ spec_pres_above_grnd 0. ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -3.0 -0 -0 -0 -? -? -? -73 -UGRD_ON_SPEC_PRES_ABOVE_GRND -? -1 -tmpl4_0 -UGRD -? -? -spec_pres_above_grnd -0 -? -6 -3000. 6000. 9000. 12000. 15000. 18000. -spec_pres_above_grnd -0 -? -6 -0. 3000. 6000. 9000. 12000. 15000. -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -4.0 +3.0 0 0 0 ? ? ? -74 -VGRD_ON_SPEC_PRES_ABOVE_GRND +71 +SPFH_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -VGRD +SPFH ? ? spec_pres_above_grnd @@ -15410,78 +17065,47 @@ spec_pres_above_grnd 0. 3000. 6000. 9000. 12000. 15000. ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -4.0 -0 -0 -0 -? -? -? -282 -PRES_ON_TOP_OF_ATMOS -? -1 -tmpl4_0 -PRES -? -? -top_of_atmos -0 -? -0 -? -? -0 -? -0 -? -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -3.0 +5.0 0 0 0 ? ? ? -152 -INST_GFLUX_ON_SURFACE +72 +RH_ON_SPEC_PRES_ABOVE_GRND ? 1 -tmpl4_0 -GFLUX -NCEP -? -surface -0 -? -0 +tmpl4_0 +RH ? ? +spec_pres_above_grnd 0 ? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd 0 ? +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -15493,32 +17117,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +2.0 0 0 0 ? ? ? -30 -LFTX_ON_ISOBARIC_SFC_500-1000hpa +89 +PWAT_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -LFTX +PWAT ? ? -isobaric_sfc +spec_pres_above_grnd 0 ? 1 -50000. -isobaric_sfc +3000. +spec_pres_above_grnd 0 ? 1 -100000. +0. +? ? ? 0 @@ -15530,6 +17159,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -15538,23 +17171,24 @@ isobaric_sfc ? ? ? -32 -CAPE_ON_SURFACE +73 +UGRD_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CAPE -? +UGRD ? -surface -0 ? +spec_pres_above_grnd 0 ? -? +6 +3000. 6000. 9000. 12000. 15000. 18000. +spec_pres_above_grnd 0 ? -0 +6 +0. 3000. 6000. 9000. 12000. 15000. ? ? ? @@ -15567,6 +17201,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15575,24 +17213,25 @@ surface ? ? ? -566 -BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +74 +VGRD_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CAPE +VGRD ? ? spec_pres_above_grnd 0 ? -1 -18000. +6 +3000. 6000. 9000. 12000. 15000. 18000. spec_pres_above_grnd 0 ? -1 -0. +6 +0. 3000. 6000. 9000. 12000. 15000. +? ? ? 0 @@ -15604,6 +17243,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15612,24 +17255,25 @@ spec_pres_above_grnd ? ? ? -582 -MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +282 +PRES_ON_TOP_OF_ATMOS ? 1 tmpl4_0 -CAPE +PRES +? +? +top_of_atmos +0 +? +0 ? ? -spec_pres_above_grnd 0 ? -1 -9000. -spec_pres_above_grnd 0 ? -1 -0. +? ? ? 0 @@ -15641,32 +17285,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -584 -UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +152 +INST_GFLUX_ON_SURFACE ? 1 tmpl4_0 -CAPE +GFLUX +NCEP ? +surface +0 ? -spec_pres_above_grnd 0 ? -1 -25500. -spec_pres_above_grnd +? 0 ? -1 -0. +0 +? +? ? ? 0 @@ -15678,32 +17327,37 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -950 -CAPE_ON_0_3KM_ABOVE_GRND +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa ? 1 tmpl4_0 -CAPE +LFTX ? ? -spec_hgt_lvl_above_grnd +isobaric_sfc 0 ? 1 -0. -spec_hgt_lvl_above_grnd +50000. +isobaric_sfc 0 ? 1 -3000. +100000. +? ? ? 0 @@ -15715,20 +17369,24 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -107 -CIN_ON_SURFACE +32 +CAPE_ON_SURFACE ? 1 tmpl4_0 -CIN +CAPE ? ? surface @@ -15743,6 +17401,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15752,6 +17411,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15760,12 +17423,12 @@ surface ? ? ? -567 -BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CIN +CAPE ? ? spec_pres_above_grnd @@ -15780,6 +17443,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -15789,6 +17453,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15797,12 +17465,12 @@ spec_pres_above_grnd ? ? ? -583 -MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CIN +CAPE ? ? spec_pres_above_grnd @@ -15817,6 +17485,7 @@ spec_pres_above_grnd 0. ? ? +? 0 0.0 0 @@ -15826,6 +17495,10 @@ spec_pres_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15834,12 +17507,12 @@ spec_pres_above_grnd ? ? ? -585 -UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CIN +CAPE ? ? spec_pres_above_grnd @@ -15854,77 +17527,46 @@ spec_pres_above_grnd 0. ? ? -0 -0.0 -0 -0.0 ? 0 0.0 0 0.0 -1 -4.0 -0 -0 -0 -? -? -? -246 -PLPL_ON_SPEC_PRES_ABOVE_GRND -? -1 -tmpl4_0 -PLPL -NCEP -? -spec_pres_above_grnd -0 -? -1 -25500. -spec_pres_above_grnd -0 -? -1 -0. -? ? 0 0.0 0 0.0 -? 0 0.0 0 0.0 1 -6.0 +4.0 0 0 0 ? ? ? -162 -HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +950 +CAPE_ON_0_3KM_ABOVE_GRND ? 1 tmpl4_0 -HLCY +CAPE ? ? spec_hgt_lvl_above_grnd 0 ? -2 -3000. 1000. +1 +0. spec_hgt_lvl_above_grnd 0 ? -0 +1 +3000. ? ? ? @@ -15937,6 +17579,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -15945,13 +17591,13 @@ spec_hgt_lvl_above_grnd ? ? ? -953 -EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +107 +CIN_ON_SURFACE ? 1 tmpl4_0 -EFHL -NCEP +CIN +? ? surface 0 @@ -15965,6 +17611,7 @@ surface ? ? ? +? 0 0.0 0 @@ -15974,32 +17621,37 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -957 -CRITICAL_ANGLE +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -CANGLE -NCEP +CIN ? -spec_hgt_lvl_above_grnd +? +spec_pres_above_grnd 0 ? 1 -0. -spec_hgt_lvl_above_grnd +18000. +spec_pres_above_grnd 0 ? 1 -500. +0. +? ? ? 0 @@ -16011,31 +17663,36 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -163 -USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -USTM +CIN ? ? -spec_hgt_lvl_above_grnd +spec_pres_above_grnd 0 ? 1 -6000. -spec_hgt_lvl_above_grnd +9000. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -16048,6 +17705,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16056,23 +17717,24 @@ spec_hgt_lvl_above_grnd ? ? ? -164 -VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -VSTM +CIN ? ? -spec_hgt_lvl_above_grnd +spec_pres_above_grnd 0 ? 1 -6000. -spec_hgt_lvl_above_grnd +25500. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -16085,6 +17747,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16093,23 +17759,24 @@ spec_hgt_lvl_above_grnd ? ? ? -37 -LCDC_ON_LOW_CLOUD_LYR +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND ? 1 tmpl4_0 -LCDC -? -? -low_cloud_lyr -0 +PLPL +NCEP ? +spec_pres_above_grnd 0 ? -? +1 +25500. +spec_pres_above_grnd 0 ? -0 +1 +0. ? ? ? @@ -16122,31 +17789,36 @@ low_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -38 -MCDC_ON_MID_CLOUD_LYR +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -MCDC +HLCY ? ? -mid_cloud_lyr +spec_hgt_lvl_above_grnd 0 ? +2 +3000. 1000. +spec_hgt_lvl_above_grnd 0 ? -? 0 ? -0 ? ? ? @@ -16159,23 +17831,27 @@ mid_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -39 -HCDC_ON_HIGH_CLOUD_LYR +953 +EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -HCDC -? +EFHL +NCEP ? -high_cloud_lyr +surface 0 ? 0 @@ -16187,6 +17863,7 @@ high_cloud_lyr ? ? ? +? 0 0.0 0 @@ -16196,6 +17873,10 @@ high_cloud_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -16204,23 +17885,24 @@ high_cloud_lyr ? ? ? -144 -AVE_TCDC_ON_ENTIRE_ATMOS +957 +CRITICAL_ANGLE ? 1 -tmpl4_8 -TCDC -? -AVE -entire_atmos_single_lyr -0 +tmpl4_0 +CANGLE +NCEP ? +spec_hgt_lvl_above_grnd 0 ? -? +1 +0. +spec_hgt_lvl_above_grnd 0 ? -0 +1 +500. ? ? ? @@ -16233,6 +17915,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -16241,23 +17927,24 @@ entire_atmos_single_lyr ? ? ? -148 -PRES_ON_CLOUD_BASE +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -PRES +USTM ? ? -cloud_base +spec_hgt_lvl_above_grnd 0 ? +1 +6000. +spec_hgt_lvl_above_grnd 0 ? -? 0 ? -0 ? ? ? @@ -16270,31 +17957,36 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -149 -PRES_ON_CLOUD_TOP +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND ? 1 tmpl4_0 -PRES +VSTM ? ? -cloud_top +spec_hgt_lvl_above_grnd 0 ? +1 +6000. +spec_hgt_lvl_above_grnd 0 ? -? 0 ? -0 ? ? ? @@ -16307,23 +17999,27 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -168 -TMP_ON_CLOUD_TOP +37 +LCDC_ON_LOW_CLOUD_LYR ? 1 tmpl4_0 -TMP +LCDC ? ? -cloud_top +low_cloud_lyr 0 ? 0 @@ -16335,6 +18031,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -16344,23 +18041,27 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +3.0 0 0 0 ? ? ? -135 -AVE_GFLUX_ON_SURFACE +38 +MCDC_ON_MID_CLOUD_LYR ? 1 -tmpl4_8 -GFLUX -NCEP -AVE -surface +tmpl4_0 +MCDC +? +? +mid_cloud_lyr 0 ? 0 @@ -16372,6 +18073,7 @@ surface ? ? ? +? 0 0.0 0 @@ -16381,23 +18083,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -136 -AVE_SNOHF_ON_SURFACE +39 +HCDC_ON_HIGH_CLOUD_LYR ? 1 -tmpl4_8 -SNOHF +tmpl4_0 +HCDC ? -AVE -surface +? +high_cloud_lyr 0 ? 0 @@ -16409,6 +18115,7 @@ surface ? ? ? +? 0 0.0 0 @@ -16418,23 +18125,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -154 -INST_SHTFL_ON_SURFACE +144 +AVE_TCDC_ON_ENTIRE_ATMOS ? 1 -tmpl4_0 -SHTFL -? +tmpl4_8 +TCDC ? -surface +AVE +entire_atmos_single_lyr 0 ? 0 @@ -16446,6 +18157,7 @@ surface ? ? ? +? 0 0.0 0 @@ -16455,23 +18167,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -155 -INST_LHTFL_ON_SURFACE +148 +PRES_ON_CLOUD_BASE ? 1 tmpl4_0 -LHTFL +PRES ? ? -surface +cloud_base 0 ? 0 @@ -16483,6 +18199,7 @@ surface ? ? ? +? 0 0.0 0 @@ -16492,23 +18209,27 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -54 -PRES_ON_TROPOPAUSE +149 +PRES_ON_CLOUD_TOP ? 1 tmpl4_0 PRES ? ? -tropopause +cloud_top 0 ? 0 @@ -16520,6 +18241,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16529,6 +18251,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -16537,15 +18263,15 @@ tropopause ? ? ? -177 -HGT_ON_TROPOPAUSE +168 +TMP_ON_CLOUD_TOP ? 1 tmpl4_0 -HGT +TMP ? ? -tropopause +cloud_top 0 ? 0 @@ -16557,6 +18283,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16566,23 +18293,27 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +5.0 0 0 0 ? ? ? -55 -TMP_ON_TROPOPAUSE +135 +AVE_GFLUX_ON_SURFACE ? 1 -tmpl4_0 -TMP -? -? -tropopause +tmpl4_8 +GFLUX +NCEP +AVE +surface 0 ? 0 @@ -16594,6 +18325,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16603,23 +18335,27 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -56 -UGRD_ON_TROPOPAUSE +136 +AVE_SNOHF_ON_SURFACE ? 1 -tmpl4_0 -UGRD -? +tmpl4_8 +SNOHF ? -tropopause +AVE +surface 0 ? 0 @@ -16631,6 +18367,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16640,6 +18377,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16648,15 +18389,15 @@ tropopause ? ? ? -57 -VGRD_ON_TROPOPAUSE +154 +INST_SHTFL_ON_SURFACE ? 1 tmpl4_0 -VGRD +SHTFL ? ? -tropopause +surface 0 ? 0 @@ -16668,6 +18409,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16677,6 +18419,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -16685,15 +18431,15 @@ tropopause ? ? ? -58 -VWSH_ON_TROPOPAUSE +155 +INST_LHTFL_ON_SURFACE ? 1 tmpl4_0 -VWSH +LHTFL ? ? -tropopause +surface 0 ? 0 @@ -16705,6 +18451,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -16714,27 +18461,31 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -59 -TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +54 +PRES_ON_TROPOPAUSE ? 1 tmpl4_0 -TMP +PRES ? ? -spec_alt_above_mean_sea_lvl +tropopause +0 +? 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16742,6 +18493,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16751,27 +18503,31 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +6.0 0 0 0 ? ? ? -60 -UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +177 +HGT_ON_TROPOPAUSE ? 1 tmpl4_0 -UGRD +HGT ? ? -spec_alt_above_mean_sea_lvl +tropopause +0 +? 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16779,6 +18535,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16788,27 +18545,31 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -61 -VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +55 +TMP_ON_TROPOPAUSE ? 1 tmpl4_0 -VGRD +TMP ? ? -spec_alt_above_mean_sea_lvl +tropopause +0 +? 0 ? -10 -305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16816,6 +18577,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -16825,23 +18587,27 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +3.0 0 0 0 ? ? ? -62 -HGT_ON_0C_ISOTHERM +56 +UGRD_ON_TROPOPAUSE ? 1 tmpl4_0 -HGT +UGRD ? ? -0C_isotherm +tropopause 0 ? 0 @@ -16853,6 +18619,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -16862,23 +18629,27 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -63 -RH_ON_0C_ISOTHERM +57 +VGRD_ON_TROPOPAUSE ? 1 tmpl4_0 -RH +VGRD ? ? -0C_isotherm +tropopause 0 ? 0 @@ -16890,6 +18661,7 @@ RH ? ? ? +? 0 0.0 0 @@ -16899,23 +18671,27 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -2.0 +4.0 0 0 0 ? ? ? -165 -HGT_ON_HGHST_TROP_FRZ_LVL +58 +VWSH_ON_TROPOPAUSE ? 1 tmpl4_0 -HGT +VWSH ? ? -hghst_trop_frz_lvl +tropopause 0 ? 0 @@ -16927,6 +18703,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -16936,27 +18713,31 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -350 -RH_ON_HGHST_TROP_FRZ_LVL +59 +TMP_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL ? 1 tmpl4_0 -RH -? +TMP ? -hghst_trop_frz_lvl -0 ? +spec_alt_above_mean_sea_lvl 0 ? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -16964,6 +18745,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -16973,27 +18755,31 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --0.1 +3.0 0 0 0 ? ? ? -779 -HGT_ON_HGHST_TROP_-20C_LVL -height on highest tropospheric -20C level +60 +UGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? 1 tmpl4_0 -HGT +UGRD ? ? -isothermal +spec_alt_above_mean_sea_lvl 0 ? -1 -253. +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -17001,6 +18787,7 @@ isothermal ? ? ? +? 0 0.0 0 @@ -17010,27 +18797,31 @@ isothermal 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -443 -HGT_ON_EQUIL_LVL -geopotential height on Equilibrium level +61 +VGRD_ON_SPEC_ALT_ABOVE_MEAN_SEA_LVL +? 1 tmpl4_0 -HGT -? +VGRD ? -equil_lvl -0 ? +spec_alt_above_mean_sea_lvl 0 ? +10 +305. 457. 610. 914. 1524. 1829. 2134. 2743. 3658. 4572. ? 0 ? @@ -17038,6 +18829,7 @@ equil_lvl ? ? ? +? 0 0.0 0 @@ -17047,23 +18839,27 @@ equil_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 +4.0 0 0 0 ? ? ? -173 -PRES_ON_MAX_WIND +62 +HGT_ON_0C_ISOTHERM ? 1 tmpl4_0 -PRES +HGT ? ? -max_wind +0C_isotherm 0 ? 0 @@ -17075,6 +18871,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -17084,6 +18881,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17092,15 +18893,15 @@ max_wind ? ? ? -174 -HGT_ON_MAX_WIND +63 +RH_ON_0C_ISOTHERM ? 1 tmpl4_0 -HGT +RH ? ? -max_wind +0C_isotherm 0 ? 0 @@ -17112,6 +18913,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -17121,23 +18923,27 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +2.0 0 0 0 ? ? ? -175 -UGRD_ON_MAX_WIND +165 +HGT_ON_HGHST_TROP_FRZ_LVL ? 1 tmpl4_0 -UGRD +HGT ? ? -max_wind +hghst_trop_frz_lvl 0 ? 0 @@ -17149,6 +18955,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -17158,23 +18965,27 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +6.0 0 0 0 ? ? ? -176 -VGRD_ON_MAX_WIND +350 +RH_ON_HGHST_TROP_FRZ_LVL ? 1 tmpl4_0 -VGRD +RH ? ? -max_wind +hghst_trop_frz_lvl 0 ? 0 @@ -17186,6 +18997,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -17195,27 +19007,31 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 +-0.1 0 0 0 ? ? ? -422 -MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -maximum wind speed on 10 meter Above Ground +779 +HGT_ON_HGHST_TROP_-20C_LVL +height on highest tropospheric -20C level 1 -tmpl4_8 -WIND +tmpl4_0 +HGT ? -MAX -spec_hgt_lvl_above_grnd +? +isothermal 0 ? 1 -10. +253. ? 0 ? @@ -17223,6 +19039,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -17232,23 +19049,27 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 --4.0 +3.0 0 0 0 ? ? ? -178 -HGT_ON_CLOUD_BASE -? +443 +HGT_ON_EQUIL_LVL +geopotential height on Equilibrium level 1 tmpl4_0 HGT ? ? -cloud_base +equil_lvl 0 ? 0 @@ -17260,6 +19081,7 @@ cloud_base ? ? ? +? 0 0.0 0 @@ -17269,23 +19091,27 @@ cloud_base 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +3.0 0 0 0 ? ? ? -179 -HGT_ON_CLOUD_TOP +173 +PRES_ON_MAX_WIND ? 1 tmpl4_0 -HGT +PRES ? ? -cloud_top +max_wind 0 ? 0 @@ -17297,6 +19123,7 @@ cloud_top ? ? ? +? 0 0.0 0 @@ -17306,6 +19133,10 @@ cloud_top 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17314,15 +19145,15 @@ cloud_top ? ? ? -410 -GSD_VIS_ON_SURFACE -GSD_visibility on surface +174 +HGT_ON_MAX_WIND +? 1 tmpl4_0 -VIS +HGT ? ? -surface +max_wind 0 ? 0 @@ -17334,6 +19165,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17343,6 +19175,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17351,15 +19187,15 @@ surface ? ? ? -252 -REFC_ON_ENTIRE_ATMOS +175 +UGRD_ON_MAX_WIND ? 1 tmpl4_0 -REFC +UGRD ? ? -entire_atmos_single_lyr +max_wind 0 ? 0 @@ -17371,6 +19207,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -17380,6 +19217,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -17388,15 +19229,15 @@ entire_atmos_single_lyr ? ? ? -194 -PRES_ON_GRID_SCALE_CLOUD_BOT_LVL +176 +VGRD_ON_MAX_WIND ? 1 tmpl4_0 -PRES +VGRD ? ? -grid_scale_cloud_bot_lvl +max_wind 0 ? 0 @@ -17408,6 +19249,7 @@ grid_scale_cloud_bot_lvl ? ? ? +? 0 0.0 0 @@ -17417,27 +19259,31 @@ grid_scale_cloud_bot_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +4.0 0 0 0 ? ? ? -195 -PRES_ON_GRID_SCALE_CLOUD_TOP_LVL -? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground 1 -tmpl4_0 -PRES -? -? -grid_scale_cloud_top_lvl -0 +tmpl4_8 +WIND ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +10. ? 0 ? @@ -17445,6 +19291,7 @@ grid_scale_cloud_top_lvl ? ? ? +? 0 0.0 0 @@ -17454,23 +19301,27 @@ grid_scale_cloud_top_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -6.0 +-4.0 0 0 0 ? ? ? -200 -TCOLW_ON_ENTIRE_ATMOS +178 +HGT_ON_CLOUD_BASE ? 1 tmpl4_0 -TCOLW -NCEP +HGT ? -entire_atmos_single_lyr +? +cloud_base 0 ? 0 @@ -17482,6 +19333,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -17491,23 +19343,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -201 -TCOLI_ON_ENTIRE_ATMOS +179 +HGT_ON_CLOUD_TOP ? 1 tmpl4_0 -TCOLI +HGT ? ? -entire_atmos_single_lyr +cloud_top 0 ? 0 @@ -17519,6 +19375,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -17528,23 +19385,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -202 -TCOLR_ON_ENTIRE_ATMOS -? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface 1 tmpl4_0 -TCOLR +VIS ? ? -entire_atmos_single_lyr +surface 0 ? 0 @@ -17556,6 +19417,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -17565,20 +19427,24 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -203 -TCOLS_ON_ENTIRE_ATMOS +252 +REFC_ON_ENTIRE_ATMOS ? 1 tmpl4_0 -TCOLS +REFC ? ? entire_atmos_single_lyr @@ -17593,6 +19459,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -17602,23 +19469,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +4.0 0 0 0 ? ? ? -204 -TCOLC_ON_ENTIRE_ATMOS +194 +PRES_ON_GRID_SCALE_CLOUD_BOT_LVL ? 1 tmpl4_0 -TCOLC -NCEP +PRES ? -entire_atmos_single_lyr +? +grid_scale_cloud_bot_lvl 0 ? 0 @@ -17630,6 +19501,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -17639,23 +19511,27 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 ? ? ? -428 -TCOLG_ON_ENTIRE_ATMOS +195 +PRES_ON_GRID_SCALE_CLOUD_TOP_LVL ? 1 tmpl4_0 -TCOLG +PRES ? ? -entire_atmos_single_lyr +grid_scale_cloud_top_lvl 0 ? 0 @@ -17667,6 +19543,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -17676,8 +19553,12 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 +6.0 0 0 0 @@ -17704,6 +19585,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17713,6 +19595,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17741,6 +19627,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17750,6 +19637,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17778,6 +19669,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17787,6 +19679,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17815,6 +19711,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17824,6 +19721,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17852,6 +19753,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17861,6 +19763,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -17889,6 +19795,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17898,6 +19805,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17926,6 +19837,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17935,6 +19847,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -17963,6 +19879,7 @@ surface ? ? ? +? 0 0.0 0 @@ -17972,6 +19889,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18000,6 +19921,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18009,6 +19931,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18037,6 +19963,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18046,6 +19973,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18074,6 +20005,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18083,6 +20015,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18111,6 +20047,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18120,6 +20057,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18148,6 +20089,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18157,6 +20099,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -18185,6 +20131,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18194,6 +20141,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -18222,6 +20173,7 @@ lwst_lvl_of_wet_bulb_zero ? ? ? +? 0 0.0 0 @@ -18231,6 +20183,10 @@ lwst_lvl_of_wet_bulb_zero 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -5.0 0 @@ -18259,6 +20215,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18268,6 +20225,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -3.0 0 @@ -18296,6 +20257,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18305,6 +20267,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18333,6 +20299,7 @@ planetary_bound_lyr ? ? ? +? 0 0.0 0 @@ -18342,6 +20309,10 @@ planetary_bound_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -18370,6 +20341,7 @@ surface ? ? ? +? 0 0.0 0 @@ -18379,6 +20351,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 -4.0 0 @@ -18407,6 +20383,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18416,6 +20393,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18444,6 +20425,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18453,6 +20435,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18481,6 +20467,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18490,6 +20477,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18518,6 +20509,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18527,6 +20519,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18555,6 +20551,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18564,6 +20561,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18592,6 +20593,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18601,6 +20603,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18629,6 +20635,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18638,6 +20645,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18666,6 +20677,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18675,6 +20687,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18703,6 +20719,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18712,6 +20729,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18740,6 +20761,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18749,6 +20771,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18777,6 +20803,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18786,6 +20813,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18814,6 +20845,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18823,6 +20855,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18851,6 +20887,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18860,6 +20897,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18888,6 +20929,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18897,6 +20939,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18925,6 +20971,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18934,6 +20981,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18962,6 +21013,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -18971,6 +21023,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -18999,6 +21055,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -19008,6 +21065,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19036,6 +21097,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -19045,6 +21107,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19073,6 +21139,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -19082,6 +21149,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19110,6 +21181,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -19119,6 +21191,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19147,6 +21223,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -19156,6 +21233,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19184,6 +21265,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -19193,6 +21275,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19221,6 +21307,7 @@ surface ? ? ? +? 0 0.0 0 @@ -19230,6 +21317,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -19274,6 +21365,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -19283,6 +21375,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19311,6 +21407,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -19320,6 +21417,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19348,6 +21449,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -19357,6 +21459,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -19401,6 +21507,7 @@ entire_atmos ? ? ? +? 0 0.0 0 @@ -19410,6 +21517,10 @@ entire_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19438,6 +21549,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -19447,6 +21559,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19475,6 +21591,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -19484,6 +21601,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19512,6 +21633,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -19521,6 +21643,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -19549,6 +21675,7 @@ spec_alt_above_mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -19558,6 +21685,10 @@ spec_alt_above_mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 diff --git a/parm/postxconfig-NT-rrfs_mpas.txt b/parm/postxconfig-NT-rrfs_mpas.txt new file mode 100644 index 000000000..7573f5dd3 --- /dev/null +++ b/parm/postxconfig-NT-rrfs_mpas.txt @@ -0,0 +1,7402 @@ +3 +18 +14 +143 +WRFTWO +4 +ncep_emc +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +5 +50000. 70000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +5 +50000. 70000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +4 +50000. 70000. 85000. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +7 +25000. 30000. 50000. 70000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +7 +25000. 30000. 50000. 70000. 85000. 92500. 100000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +170 +VEG_ON_SURFACE +? +1 +tmpl4_0 +VEG +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +726 +VEG_MIN_ON_SURFACE +? +1 +tmpl4_0 +VEGMIN +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +729 +VEG_MAX_ON_SURFACE +? +1 +tmpl4_0 +VEGMAX +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +254 +LAI_ON_SURFACE +? +1 +tmpl4_0 +LAI +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +445 +MAPS_PRMSL_ON_MEAN_SEA_LVL +? +1 +tmpl4_0 +MSLMA +NCEP +? +mean_sea_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +114 +RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +RH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +546 +GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +POT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +739 +SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m +? +1 +tmpl4_48 +MASSDEN +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +8. +? +0 +? +0 +? +particulate_org_matter_dry +? +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +119 +WEASD_ON_SURFACE +? +1 +tmpl4_0 +WEASD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +120 +SNOWC_ON_SURFACE +? +1 +tmpl4_0 +SNOWC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +224 +SNOD_ON_SURFACE +? +1 +tmpl4_0 +SNOD +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +725 +GSD_ACM_SNOD_ON_SURFACE +? +1 +tmpl4_8 +ASNOW +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +31 +4LFTX_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +4LFTX +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +30 +LFTX_ON_ISOBARIC_SFC_500-1000hpa +? +1 +tmpl4_0 +LFTX +? +? +isobaric_sfc +0 +? +1 +50000. +isobaric_sfc +0 +? +1 +100000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +51 +ICEC_ON_SURFACE +? +1 +tmpl4_0 +ICEC +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +32 +CAPE_ON_SURFACE +? +1 +tmpl4_0 +CAPE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +566 +BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +582 +MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +584 +UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +950 +CAPE_ON_0_3KM_ABOVE_GRND +? +1 +tmpl4_0 +CAPE +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +107 +CIN_ON_SURFACE +? +1 +tmpl4_0 +CIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +567 +BEST_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +18000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +583 +MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +9000. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +585 +UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +CIN +? +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +952 +HGT_ON_LFC +? +1 +tmpl4_0 +HGT +? +? +level_free_convection +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +246 +PLPL_ON_SPEC_PRES_ABOVE_GRND +? +1 +tmpl4_0 +PLPL +NCEP +? +spec_pres_above_grnd +0 +? +1 +25500. +spec_pres_above_grnd +0 +? +1 +0. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +80 +PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +PWAT +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +162 +HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +HLCY +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +3000. 1000. +spec_hgt_lvl_above_grnd +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +953 +EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +EFHL +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +955 +DENDRITIC_LAYER_DEPTH +? +1 +tmpl4_0 +LAYTH +NCEP +? +isothermal +0 +? +1 +261. +isothermal +0 +? +1 +256. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +956 +ENHANCED_STRETCHING_POTENTIAL +? +1 +tmpl4_0 +ESP +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +957 +CRITICAL_ANGLE +? +1 +tmpl4_0 +CANGLE +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +500. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +87 +ACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +35 +ACM_WEASD_ON_SURFACE +? +1 +tmpl4_8 +WEASD +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +746 +ACM_GRAUPEL_ON_SURFACE +? +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +782 +ACM_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +437 +BUCKET_WEASD_ON_SURFACE +bucket snow precipitation on surface +1 +tmpl4_8 +WEASD +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +434 +BUCKET_APCP_ON_SURFACE +bucket Total precipitation on surface +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +775 +BUCKET_GRAUPEL_ON_SURFACE +bucket graupel precipitation on surface +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +559 +GSD_CSNOW_ON_SURFACE +GSD_Categorical snow on surface +1 +tmpl4_0 +CSNOW +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +560 +GSD_CICEP_ON_SURFACE +GSD_Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +561 +GSD_CFRZR_ON_SURFACE +GSD_Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +407 +GSD_INST_CRAIN_ON_SURFACE +GSD_instant precipitation type on surface +1 +tmpl4_0 +CRAIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +408 +GSD_HGT_ON_CLOUD_CEILING +GSD_geopotential height on cloud ceiling +1 +tmpl4_0 +HGT +? +? +cloud_ceilng +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +409 +GSD_HGT_ON_CLOUD_TOP +GSD_geopotential height on cloud top +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +221 +HPBL_ON_SURFACE +? +1 +tmpl4_0 +HPBL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +421 +MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MAXREF +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +785 +MAX_REF_ON_ISOTHERMAL_-10C +maximum reflectivity on -10C suface +1 +tmpl4_8 +REFD +NCEP +MAX +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +912 +REFD_ON_ISOTHERMAL +? +1 +tmpl4_0 +REFD +NCEP +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +2.7 +0 +0 +0 +? +? +? +26 +TMP_ON_SURFACE +? +1 +tmpl4_0 +TMP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +783 +MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum u wind on 10 meter Above Ground +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +784 +MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum v wind on 10 meter Above Ground +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +786 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +788 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +789 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MXUPHL +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +791 +GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km +? +1 +tmpl4_8 +MNUPHL +NCEP +MIN +spec_hgt_lvl_above_grnd +0 +? +1 +3000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +792 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +793 +GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +? +1 +tmpl4_8 +RELV +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +spec_hgt_lvl_above_grnd +0 +? +1 +0000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +794 +GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER +? +1 +tmpl4_8 +HAIL +? +MAX +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +795 +GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER +? +1 +tmpl4_8 +HAIL +? +MAX +sigma_lvl +1 +1 +1 +1. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +728 +GSD_HAILCAST_HAIL_DIAMETER +? +1 +tmpl4_8 +HAIL +? +MAX +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +425 +AVE_DZDT_ON_SIGMA_LVL_0.5-0.8 +average Vertical velocity between sigma lvl 0.5 and 0.8 +1 +tmpl4_8 +DZDT +? +AVE +sigma_lvl +1 +2 +1 +50. +sigma_lvl +1 +2 +1 +80. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +429 +MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR +Hourly Maximum of Column Vertical Integrated Graupel on entire atmosphere +1 +tmpl4_8 +MAXVIG +? +MAX +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +109 +HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC +? +1 +tmpl4_0 +HGT +? +? +lvl_of_adiab_cond_from_sfc +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +163 +USTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +USTM +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +164 +VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +VSTM +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +430 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +Vertical u-component shear between 0 to 1000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +431 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km +Vertical v-component shear between 0 to 1000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +432 +VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical u-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VUCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +433 +VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km +Vertical v-component shear between 0 to 6000m Above Ground +1 +tmpl4_0 +VVCSH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +0. +spec_hgt_lvl_above_grnd +0 +? +1 +6000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +161 +INST_TCDC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCDC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +37 +LCDC_ON_LOW_CLOUD_LYR +? +1 +tmpl4_0 +LCDC +? +? +low_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +38 +MCDC_ON_MID_CLOUD_LYR +? +1 +tmpl4_0 +MCDC +? +? +mid_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +39 +HCDC_ON_HIGH_CLOUD_LYR +? +1 +tmpl4_0 +HCDC +? +? +high_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +799 +TCDC_ON_BOUND_LYR +? +1 +tmpl4_0 +TCDC +? +? +bound_lyr_cloud_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +50 +LAND_ON_SURFACE +? +1 +tmpl4_0 +LAND +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +768 +GSD_ECHOTOP_ON_CLOUD_TOP +Echo top height (Highest height in meters of the 18-dBZ reflectivity on a model level) +1 +tmpl4_0 +RETOP +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +769 +GSD_VIL_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +VIL +NCEP +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +770 +GSD_RADARVIL_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +RADARVIL +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +443 +HGT_ON_EQUIL_LVL +geopotential height on Equilibrium level +1 +tmpl4_0 +HGT +? +? +equil_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-1.0 +0 +0 +0 +? +? +? +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LTNG +NCEP +MAX +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +748 +GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +1000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +757 +GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km +? +1 +tmpl4_0 +REFD +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +4000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +149 +PRES_ON_CLOUD_TOP +? +1 +tmpl4_0 +PRES +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +412 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND +U-Component of Wind on Specified Height Level Above Ground +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +80. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +413 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND +V-Component of Wind on Specified Height Level Above Ground +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +80. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +62 +HGT_ON_0C_ISOTHERM +? +1 +tmpl4_0 +HGT +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +63 +RH_ON_0C_ISOTHERM +? +1 +tmpl4_0 +RH +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +753 +GSD_PRES_ON_0C_ISOTHERM +GSD_pressure on Level of 0 deg (C) isotherm +1 +tmpl4_0 +PRES +? +? +0C_isotherm +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +756 +GSD_PRES_ON_HGHST_TROP_FRZ_LVL +GSD_pressure on Highest tropospheric freezing level +1 +tmpl4_0 +PRES +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +165 +HGT_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +HGT +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +350 +RH_ON_HGHST_TROP_FRZ_LVL +? +1 +tmpl4_0 +RH +? +? +hghst_trop_frz_lvl +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-0.1 +0 +0 +0 +? +? +? +776 +HGT_ON_HGHST_TROP_-10C_LVL +height on highest tropospheric -10C level +1 +tmpl4_0 +HGT +? +? +isothermal +0 +? +1 +263. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +779 +HGT_ON_HGHST_TROP_-20C_LVL +height on highest tropospheric -20C level +1 +tmpl4_0 +HGT +? +? +isothermal +0 +? +1 +253. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +772 +INST_SWDDNI_ON_SURFACE +? +1 +tmpl4_0 +VBDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +773 +INST_SWDDIF_ON_SURFACE +? +1 +tmpl4_0 +VDDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +719 +INST_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +USWRF +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +152 +INST_GFLUX_ON_SURFACE +? +1 +tmpl4_0 +GFLUX +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +154 +INST_SHTFL_ON_SURFACE +? +1 +tmpl4_0 +SHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +155 +INST_LHTFL_ON_SURFACE +? +1 +tmpl4_0 +LHTFL +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +122 +ACM_SSRUN_ON_SURFACE +? +1 +tmpl4_8 +SSRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +123 +ACM_BGRUN_ON_SURFACE +? +1 +tmpl4_8 +BGRUN +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +118 +CNWAT_ON_SURFACE +? +1 +tmpl4_0 +CNWAT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +44 +SFCR_ON_SURFACE +? +1 +tmpl4_0 +SFCR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +45 +FRICV_ON_SURFACE +? +1 +tmpl4_0 +FRICV +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +749 +GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS +RELATIVE HUMIDITY WITH RESPECT TO PRECIPITABLE WATER +1 +tmpl4_0 +RHPW +NCEP +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +284 +DZDT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DZDT +? +? +isobaric_sfc +0 +? +1 +70000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +457 +NON_NADIR_SBT123_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES12, Channel 3 on top of atmosphere +1 +tmpl4_0 +SBT123 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +458 +NON_NADIR_SBT124_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES12, Channel 4 on top of atmosphere +1 +tmpl4_0 +SBT124 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +461 +SBT113_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES11, Channel 3 on top of atmosphere +1 +tmpl4_0 +SBT113 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +461 +SBT113_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES11, Channel 3 on top of atmosphere +1 +tmpl4_0 +SBT113 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +462 +SBT114_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES11, Channel 4 on top of atmosphere +1 +tmpl4_0 +SBT114 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +462 +SBT114_ON_TOP_OF_ATMOS +Simulated Brightness Temperature for GOES11, Channel 4 on top of atmosphere +1 +tmpl4_0 +SBT114 +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +735 +AOD_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +AOTK +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +736 +SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_48 +COLMD +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +particulate_org_matter_dry +? +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +740 +MEAN_FIRE_RDIATV_PWR +? +1 +tmpl4_0 +CFNSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +WRFPRS +4 +ncep_emc +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +12 +HGT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +HGT +? +? +isobaric_sfc +0 +? +39 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +13 +TMP_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +TMP +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +17 +RH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RH +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +15 +DPT_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +DPT +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +16 +SPFH_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SPFH +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +20 +VVEL_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VVEL +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +18 +UGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +UGRD +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +19 +VGRD_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +VGRD +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +21 +ABSV_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +ABSV +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +153 +CLMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +CLMR +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +183 +RWMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +RWMR +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +184 +SNMR_ON_ISOBARIC_SFC +? +1 +tmpl4_0 +SNMR +? +? +isobaric_sfc +0 +? +40 +5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +116 +TSOIL_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +TSOIL +? +? +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +depth_bel_land_sfc +1 +2 +9 +0. 1. 4. 10. 30. 60. 100. 160. 300. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +WRFNAT +4 +ncep_emc +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +hour +nws_ncep +hrrr +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +1 +PRES_ON_HYBRID_LVL +? +1 +tmpl4_0 +PRES +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +77 +HGT_ON_HYBRID_LVL +? +1 +tmpl4_0 +HGT +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +2 +TMP_ON_HYBRID_LVL +? +1 +tmpl4_0 +TMP +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +5 +SPFH_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPFH +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +7 +UGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +UGRD +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +8 +VGRD_ON_HYBRID_LVL +? +1 +tmpl4_0 +VGRD +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +9 +VVEL_ON_HYBRID_LVL +? +1 +tmpl4_0 +VVEL +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-5.0 +0 +0 +0 +? +? +? +124 +CLMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +CLMR +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +181 +RWMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +RWMR +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +182 +SNMR_ON_HYBRID_LVL +? +1 +tmpl4_0 +SNMR +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +747 +NCCD_ON_HYBRID_LVL +Number concentration for cloud water drops on hybrid level +1 +tmpl4_0 +NCONCD +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +752 +NCIP_ON_HYBRID_LVL +Number concentration for ice particles on hybrid level +1 +tmpl4_0 +NCCICE +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +754 +NCRAIN_ON_HYBRID_LVL +? +1 +tmpl4_0 +SPNCR +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +767 +GSD_NCIFA_ON_HYBRID_LVL +? +1 +tmpl4_0 +PMTC +NCEP +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +11 +TKE_ON_HYBRID_LVL +? +1 +tmpl4_0 +TKE +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-2.0 +0 +0 +0 +? +? +? +774 +FRACCC_ON_HYBRID_LVL +? +1 +tmpl4_0 +FRACCC +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +737 +SMOKE_ON_HYBRID_LVL +? +1 +tmpl4_48 +MASSDEN +? +? +hybrid_lvl +0 +? +59 +1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. +? +0 +? +0 +? +particulate_org_matter_dry +? +smaller_than_first_limit +7 +25 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +117 +SOILW_ON_DEPTH_BEL_LAND_SFC +? +1 +tmpl4_0 +SOILW +NCEP +? +depth_bel_land_sfc +1 +2 +2 +0. 1. +depth_bel_land_sfc +1 +2 +2 +0. 1. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? diff --git a/parm/postxconfig-NT-rrfs_subh.txt b/parm/postxconfig-NT-rrfs_subh.txt new file mode 100644 index 000000000..9b7643ef4 --- /dev/null +++ b/parm/postxconfig-NT-rrfs_subh.txt @@ -0,0 +1,1740 @@ +1 +41 +PRSLEV +32769 +ncep_nco +v2003 +local_tab_yes1 +fcst +oper +fcst +fcst +minute +nws_ncep +rrfs +complex_packing_spatial_diff +2nd_ord_sptdiff +fltng_pnt +lossless +106 +TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +TMP +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +112 +SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +SPFH +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +113 +DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m +? +1 +tmpl4_0 +DPT +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +2. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +64 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +65 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +245 +GUST_ON_SURFACE +? +1 +tmpl4_0 +GUST +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +3.0 +0 +0 +0 +? +? +? +24 +PRES_ON_SURFACE +? +1 +tmpl4_0 +PRES +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +25 +HGT_ON_SURFACE +? +1 +tmpl4_0 +HGT +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +725 +GSD_ACM_SNOD_ON_SURFACE +? +1 +tmpl4_8 +ASNOW +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +9.0 +0 +0 +0 +? +? +? +417 +CACM_APCP_ON_SURFACE +? +1 +tmpl4_8 +APCP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +1004 +ACM_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +782 +ACM_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +746 +ACM_GRAUPEL_ON_SURFACE +? +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +407 +GSD_INST_CRAIN_ON_SURFACE +GSD_instant precipitation type on surface +1 +tmpl4_0 +CRAIN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +559 +GSD_CSNOW_ON_SURFACE +GSD_Categorical snow on surface +1 +tmpl4_0 +CSNOW +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +560 +GSD_CICEP_ON_SURFACE +GSD_Categorical ice pellets on surface +1 +tmpl4_0 +CICEP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +561 +GSD_CFRZR_ON_SURFACE +GSD_Categorical freezing rain on surface +1 +tmpl4_0 +CFRZR +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +1.0 +0 +0 +0 +? +? +? +167 +INST_PRATE_ON_SURFACE +? +1 +tmpl4_0 +PRATE +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +172 +CPOFP_ON_SURFACE +? +1 +tmpl4_0 +CPOFP +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface +1 +tmpl4_0 +VIS +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +141 +INST_USWRF_ON_SURFACE +? +1 +tmpl4_0 +USWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +142 +INST_ULWRF_ON_SURFACE +? +1 +tmpl4_0 +ULWRF +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +274 +INST_ULWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +ULWRF +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +719 +INST_USWRF_ON_TOP_OF_ATMOS +? +1 +tmpl4_0 +USWRF +? +? +top_of_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +156 +INST_DSWRF_ON_SURFACE +? +1 +tmpl4_0 +DSWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +157 +INST_DLWRF_ON_SURFACE +? +1 +tmpl4_0 +DLWRF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +772 +INST_SWDDNI_ON_SURFACE +? +1 +tmpl4_0 +VBDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +773 +INST_SWDDIF_ON_SURFACE +? +1 +tmpl4_0 +VDDSF +NCEP +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +576 +UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +UGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +80. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +577 +VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT +? +1 +tmpl4_0 +VGRD +? +? +spec_hgt_lvl_above_grnd +0 +? +1 +80. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +178 +HGT_ON_CLOUD_BASE +? +1 +tmpl4_0 +HGT +? +? +cloud_base +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +179 +HGT_ON_CLOUD_TOP +? +1 +tmpl4_0 +HGT +? +? +cloud_top +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +252 +REFC_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +REFC +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +253 +REFD_ON_SPEC_HGT_LVL_ABOVE_GRND +? +1 +tmpl4_0 +REFD +? +? +spec_hgt_lvl_above_grnd +0 +? +2 +4000. 1000. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +200 +TCOLW_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLW +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +201 +TCOLI_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +TCOLI +NCEP +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +5.0 +0 +0 +0 +? +? +? +408 +GSD_HGT_ON_CLOUD_CEILING +GSD_geopotential height on cloud ceiling +1 +tmpl4_0 +HGT +? +? +cloud_ceilng +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? +400 +RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR +? +1 +tmpl4_0 +RETOP +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +581 +VIL_ON_ENTIRE_ATMOS +entire atmosphere Vertically Integrated Liquid (kg/m-2) +1 +tmpl4_0 +VIL +? +? +entire_atmos_single_lyr +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +769 +GSD_VIL_ON_ENTIRE_ATMOS +? +1 +tmpl4_0 +VIL +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +7.0 +0 +0 +0 +? +? +? +427 +UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +Updraft Helicity on Specified Height Level Above Ground +1 +tmpl4_0 +UPHL +NCEP +? +spec_hgt_lvl_above_grnd +0 +? +1 +5000. +spec_hgt_lvl_above_grnd +0 +? +1 +2000. +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-3.0 +0 +0 +0 +? +? +? diff --git a/parm/rap_postcntrl.xml b/parm/rap_postcntrl.xml index 1101508db..a10653471 100644 --- a/parm/rap_postcntrl.xml +++ b/parm/rap_postcntrl.xml @@ -1124,7 +1124,7 @@ - GSD_NCCD_ON_HYBRID_LVL + NCCD_ON_HYBRID_LVL 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. @@ -1132,7 +1132,7 @@ - GSD_NCIP_ON_HYBRID_LVL + NCIP_ON_HYBRID_LVL 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. @@ -1140,7 +1140,7 @@ - GSD_NCRAIN_ON_HYBRID_LVL + NCRAIN_ON_HYBRID_LVL 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. diff --git a/parm/rrfs_mpas_postcntrl.xml b/parm/rrfs_mpas_postcntrl.xml new file mode 100644 index 000000000..376b8367f --- /dev/null +++ b/parm/rrfs_mpas_postcntrl.xml @@ -0,0 +1,1181 @@ + + + + WRFTWO + 4 + ncep_emc + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + hrrr + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + TMP_ON_ISOBARIC_SFC + 50000. 70000. 85000. 92500. 100000. + -4.0 + + + + DPT_ON_ISOBARIC_SFC + 50000. 70000. 85000. 92500. 100000. + -4.0 + + + + HGT_ON_ISOBARIC_SFC + 50000. 70000. 85000. 100000. + -5.0 + + + + UGRD_ON_ISOBARIC_SFC + 25000. 30000. 50000. 70000. 85000. 92500. 100000. + -4.0 + + + + VGRD_ON_ISOBARIC_SFC + 25000. 30000. 50000. 70000. 85000. 92500. 100000. + -4.0 + + + + VEG_ON_SURFACE + 3.0 + + + + VEG_MIN_ON_SURFACE + 3.0 + + + + VEG_MAX_ON_SURFACE + 3.0 + + + + LAI_ON_SURFACE + -3.0 + + + + MAPS_PRMSL_ON_MEAN_SEA_LVL + -0.1 + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + -4.0 + + + + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + -4.0 + + + + RH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + 3.0 + + + + GSD_POT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + -4.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + 4.0 + + + + SMOKE_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + 6.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + PRES_ON_SURFACE + 4.0 + + + + WEASD_ON_SURFACE + -5.0 + + + + SNOWC_ON_SURFACE + 3.0 + + + + SNOD_ON_SURFACE + 5.0 + + + + GSD_ACM_SNOD_ON_SURFACE + 5.0 + + + + 4LFTX_ON_SPEC_PRES_ABOVE_GRND + 18000. + 0. + 3.0 + + + + LFTX_ON_ISOBARIC_SFC_500-1000hpa + 50000. + 100000. + 3.0 + + + + ICEC_ON_SURFACE + 1.0 + + + + CAPE_ON_SURFACE + 3.0 + + + + BEST_CAPE_ON_SPEC_PRES_ABOVE_GRND + 18000. + 0. + 3.0 + + + + MIXED_LAYER_CAPE_ON_SPEC_PRES_ABOVE_GRND + 9000. + 0. + 3.0 + + + + UNSTABLE_CAPE_ON_SPEC_PRES_ABOVE_GRND + 25500. + 0. + 3.0 + + + + CAPE_ON_0_3KM_ABOVE_GRND + 0. + 3000. + 4.0 + + + + CIN_ON_SURFACE + 3.0 + + + + BEST_CIN_ON_SPEC_PRES_ABOVE_GRND + 18000. + 0. + 3.0 + + + + MIXED_LAYER_CIN_ON_SPEC_PRES_ABOVE_GRND + 9000. + 0. + 3.0 + + + + UNSTABLE_CIN_ON_SPEC_PRES_ABOVE_GRND + 25500. + 0. + 3.0 + + + + HGT_ON_LFC + 6.0 + + + + PLPL_ON_SPEC_PRES_ABOVE_GRND + NCEP + 25500. + 0. + 3.0 + + + + PWAT_ON_ENTIRE_ATMOS_SINGLE_LYR + -3.0 + + + + HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + 3000. 1000. + 4.0 + + + + EFF_HLCY_ON_SPEC_HGT_LVL_ABOVE_GRND + 4.0 + + + + DENDRITIC_LAYER_DEPTH + NCEP + 261. + 256. + 4.0 + + + + ENHANCED_STRETCHING_POTENTIAL + NCEP + 0. + 3000. + 4.0 + + + + CRITICAL_ANGLE + NCEP + 0. + 500. + 4.0 + + + + ACM_APCP_ON_SURFACE + 5.0 + + + + ACM_WEASD_ON_SURFACE + 5.0 + + + + ACM_GRAUPEL_ON_SURFACE + 6.0 + + + + ACM_FRAIN_ON_SURFACE + 6.0 + + + + BUCKET_WEASD_ON_SURFACE + 5.0 + + + + BUCKET_APCP_ON_SURFACE + 5.0 + + + + BUCKET_GRAUPEL_ON_SURFACE + 6.0 + + + + GSD_CSNOW_ON_SURFACE + 1.0 + + + + GSD_CICEP_ON_SURFACE + 1.0 + + + + GSD_CFRZR_ON_SURFACE + 1.0 + + + + GSD_INST_CRAIN_ON_SURFACE + 1.0 + + + + INST_PRATE_ON_SURFACE + 3.0 + + + + GSD_HGT_ON_CLOUD_CEILING + -3.0 + + + + GSD_HGT_ON_CLOUD_BASE + -3.0 + + + + GSD_HGT_ON_CLOUD_TOP + -3.0 + + + + HPBL_ON_SURFACE + -4.0 + + + + REFC_ON_ENTIRE_ATMOS + NCEP + -4.0 + + + + MAX_REF_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + NCEP + spec_hgt_lvl_above_grnd + 1000. + -4.0 + + + + MAX_REF_ON_ISOTHERMAL_-10C + NCEP + -4.0 + + + + REFD_ON_ISOTHERMAL + NCEP + isothermal + 263. + -4.0 + + + + GSD_VIS_ON_SURFACE + 2.7 + + + + TMP_ON_SURFACE + -4.0 + + + + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + MAX_MAXUVV_ON_SPEC_PRES_LVL_ABOVE_GRND_10-100hpa + NCEP + -4.0 + + + + MAX_MAXDVV_ON_SPEC_HGT_LVL_ABOVE_GRND_10-100hpa + NCEP + -4.0 + + + + MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + NCEP + 3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + NCEP + 3.0 + + + + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + NCEP + 3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + NCEP + 3.0 + + + + GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + NCEP + 3.0 + + + + GSD_MIN_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km + NCEP + 3.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-2km + 5.0 + + + + GSD_MAX_REL_VORT_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + 5.0 + + + + GSD_MAX_COLMAX_GRAUPEL_HAIL_DIAMETER + 4.0 + + + + GSD_MAX_SIGMA_LVL_MAX_GRAUPEL_HAIL_DIAMETER + 4.0 + + + + GSD_HAILCAST_HAIL_DIAMETER + 4.0 + + + + AVE_DZDT_ON_SIGMA_LVL_0.5-0.8 + -4.0 + + + + MAXVIG_ON_ENTIRE_ATMOS_SINGLE_LYR + 3.0 + + + + HGT_ON_LVL_OF_ADIAB_COND_FROM_SFC + -3.0 + + + + USTM_ON_SPEC_HGT_LVL_ABOVE_GRND + 0. + 6000. + -4.0 + + + + VSTM_ON_SPEC_HGT_LVL_ABOVE_GRND + 0. + 6000. + -4.0 + + + + VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + 0. + 1000. + -4.0 + + + + VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-1km + 0. + 1000. + -4.0 + + + + VUCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + 0. + 6000. + -4.0 + + + + VVCSH_ON_SPEC_HGT_LVL_ABOVE_GRND_0-6km + 0. + 6000. + -4.0 + + + + GUST_ON_SURFACE + -4.0 + + + + INST_TCDC_ON_ENTIRE_ATMOS + 3.0 + + + + LCDC_ON_LOW_CLOUD_LYR + 3.0 + + + + MCDC_ON_MID_CLOUD_LYR + 3.0 + + + + HCDC_ON_HIGH_CLOUD_LYR + 3.0 + + + + TCDC_ON_BOUND_LYR + 3.0 + + + + LAND_ON_SURFACE + 1.0 + + + + GSD_ECHOTOP_ON_CLOUD_TOP + 6.0 + + + + GSD_VIL_ON_ENTIRE_ATMOS + NCEP + 6.0 + + + + GSD_RADARVIL_ON_ENTIRE_ATMOS + 6.0 + + + + HGT_ON_EQUIL_LVL + -1.0 + + + + GSD_MAX_LTG_THREAT1_ON_ENTIRE_ATMOS + 4.0 + + + + GSD_MAX_LTG_THREAT2_ON_ENTIRE_ATMOS + 4.0 + + + + GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS + 4.0 + + + + GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_1km + NCEP + -4.0 + + + + GSD_REFL_ON_SPEC_HGT_LVL_ABOVE_GRND_4km + NCEP + -4.0 + + + + GSD_PRES_ON_CLOUD_BASE + 3.0 + + + + PRES_ON_CLOUD_TOP + 3.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND + 80. + -4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND + 80. + -4.0 + + + + HGT_ON_0C_ISOTHERM + 6.0 + + + + RH_ON_0C_ISOTHERM + -0.1 + + + + GSD_PRES_ON_0C_ISOTHERM + 3.0 + + + + GSD_PRES_ON_HGHST_TROP_FRZ_LVL + 3.0 + + + + HGT_ON_HGHST_TROP_FRZ_LVL + 3.0 + + + + RH_ON_HGHST_TROP_FRZ_LVL + -0.1 + + + + HGT_ON_HGHST_TROP_-10C_LVL + 3.0 + + + + HGT_ON_HGHST_TROP_-20C_LVL + 3.0 + + + + CPOFP_ON_SURFACE + -4.0 + + + + INST_DSWRF_ON_SURFACE + 4.0 + + + + INST_DLWRF_ON_SURFACE + 4.0 + + + + INST_USWRF_ON_SURFACE + -3.0 + + + + INST_ULWRF_ON_SURFACE + -3.0 + + + + INST_SWDDNI_ON_SURFACE + 4.0 + + + + INST_SWDDIF_ON_SURFACE + 4.0 + + + + INST_ULWRF_ON_TOP_OF_ATMOS + 4.0 + + + + INST_USWRF_ON_TOP_OF_ATMOS + 4.0 + + + + INST_GFLUX_ON_SURFACE + 3.0 + + + + INST_SHTFL_ON_SURFACE + 3.0 + + + + INST_LHTFL_ON_SURFACE + 3.0 + + + + ACM_SSRUN_ON_SURFACE + -3.0 + + + + ACM_BGRUN_ON_SURFACE + -3.0 + + + + CNWAT_ON_SURFACE + 1.0 + + + + SFCR_ON_SURFACE + 4.0 + + + + FRICV_ON_SURFACE + 3.0 + + + + GSD_RH_WRT_PRECIP_WATER_ON_ENTIRE_ATMOS + NCEP + 3.0 + + + + MSTAV_ON_DEPTH_BEL_LAND_SFC + 3.0 + + + + HGT_ON_SURFACE + -5.0 + + + + DZDT_ON_ISOBARIC_SFC + DZDT + 70000. + -5.0 + + + + NON_NADIR_SBT123_ON_TOP_OF_ATMOS + 4.0 + + + + NON_NADIR_SBT124_ON_TOP_OF_ATMOS + 4.0 + + + + SBT113_ON_TOP_OF_ATMOS + 4.0 + + + + SBT114_ON_TOP_OF_ATMOS + 4.0 + + + + AOD_ON_ENTIRE_ATMOS_SINGLE_LYR + 5.0 + + + + SMOKE_ON_ENTIRE_ATMOS_SINGLE_LYR + 5.0 + + + + MEAN_FIRE_RDIATV_PWR + 4.0 + + + + TCOLW_ON_ENTIRE_ATMOS + 5.0 + + + + TCOLI_ON_ENTIRE_ATMOS + 6.0 + + + + + + WRFPRS + 4 + ncep_emc + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + hrrr + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + HGT_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 101320. + -5.0 + + + + TMP_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -4.0 + + + + RH_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -3.0 + + + + DPT_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -4.0 + + + + SPFH_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 4.0 + + + + VVEL_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -5.0 + + + + UGRD_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -4.0 + + + + VGRD_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + -4.0 + + + + ABSV_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + CLMR_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + CICE_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + RWMR_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + SNMR_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + GRMR_ON_ISOBARIC_SFC + 5000. 7500. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. + 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. + 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. 101320. + 3.0 + + + + TSOIL_ON_DEPTH_BEL_LAND_SFC + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 4.0 + + + + + SOILW_ON_DEPTH_BEL_LAND_SFC + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 2 + 0. 1. 4. 10. 30. 60. 100. 160. 300. + 3.0 + + + + + + WRFNAT + 4 + ncep_emc + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + hour + nws_ncep + hrrr + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + PRES_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 6.0 + + + + HGT_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + -5.0 + + + + TMP_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + -4.0 + + + + SPFH_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 4.0 + + + + UGRD_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + -4.0 + + + + VGRD_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + -4.0 + + + + VVEL_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + -5.0 + + + + CLMR_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 3.0 + + + + CICE_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 3.0 + + + + RWMR_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 5.0 + + + + SNMR_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 3.0 + + + + GRMR_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 3.0 + + + + NCCD_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 3.0 + + + + NCIP_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 3.0 + + + + NCRAIN_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 5.0 + + + + GSD_NCWFA_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 3.0 + + + + GSD_NCIFA_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 3.0 + + + + TKE_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + -2.0 + + + + FRACCC_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 3.0 + + + + SMOKE_ON_HYBRID_LVL + 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. + 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. + 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. 59. + 6.0 + + + + SOILW_ON_DEPTH_BEL_LAND_SFC + 2 + 0. 1. + 2 + 0. 1. + 3.0 + + + + + diff --git a/parm/fv3lam_rrfs.xml b/parm/rrfs_postcntrl.xml similarity index 97% rename from parm/fv3lam_rrfs.xml rename to parm/rrfs_postcntrl.xml index e4afeec3b..64b422840 100755 --- a/parm/fv3lam_rrfs.xml +++ b/parm/rrfs_postcntrl.xml @@ -1351,19 +1351,6 @@ 6.0 - - TCOLW_ON_ENTIRE_ATMOS - TCOLW - NCEP - 5.0 - - - - TCOLI_ON_ENTIRE_ATMOS - TCOLI - 5.0 - - EFSH_ON_EFBL -1.0 @@ -1434,45 +1421,6 @@ -1.0 - - TCOLR_ON_ENTIRE_ATMOS - TCOLR - 5.0 - - - - TCOLS_ON_ENTIRE_ATMOS - TCOLS - 5.0 - - - - TCOLC_ON_ENTIRE_ATMOS - TCOLC - NCEP - 5.0 - - - - TCOLG_ON_ENTIRE_ATMOS - TCOLG - 5.0 - - - - TCLSW_ON_ENTIRE_ATMOS - TCLSW - NCEP - 5.0 - - - - TCOLM_ON_ENTIRE_ATMOS - TCOLM - NCEP - 5.0 - - HGT_ON_LWST_BOT_LVL_OF_SUPERCOOLED_LIQ_WATER_LYR HGT @@ -1806,6 +1754,16 @@ 5.0 + + AVE_PM25_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + 6.0 + + + + AVE_PM10_ON_SPEC_HGT_LVL_ABOVE_GRND_8m + 6.0 + + DENDRITIC_LAYER_DEPTH LAYTH @@ -2377,7 +2335,7 @@ - GSD_NCCD_ON_HYBRID_LVL + NCCD_ON_HYBRID_LVL NCONCD 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. @@ -2395,7 +2353,7 @@ - GSD_NCIP_ON_HYBRID_LVL + NCIP_ON_HYBRID_LVL NCCICE 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. @@ -2440,7 +2398,7 @@ - GSD_NCRAIN_ON_HYBRID_LVL + NCRAIN_ON_HYBRID_LVL SPNCR 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. @@ -3133,44 +3091,6 @@ 6.0 - - TCOLW_ON_ENTIRE_ATMOS - TCOLW - NCEP - 5.0 - - - - TCOLI_ON_ENTIRE_ATMOS - TCOLI - 5.0 - - - - TCOLR_ON_ENTIRE_ATMOS - TCOLR - 5.0 - - - - TCOLS_ON_ENTIRE_ATMOS - TCOLS - 5.0 - - - - TCOLC_ON_ENTIRE_ATMOS - TCOLC - NCEP - 5.0 - - - - TCOLG_ON_ENTIRE_ATMOS - TCOLG - 5.0 - - VGTYP_ON_SURFACE VGTYP diff --git a/parm/rrfs_postcntrl_subh.xml b/parm/rrfs_postcntrl_subh.xml new file mode 100755 index 000000000..e8cb82e36 --- /dev/null +++ b/parm/rrfs_postcntrl_subh.xml @@ -0,0 +1,281 @@ + + + + + PRSLEV + 32769 + ncep_nco + v2003 + local_tab_yes1 + fcst + oper + fcst + fcst + minute + nws_ncep + rrfs + complex_packing_spatial_diff + 2nd_ord_sptdiff + fltng_pnt + lossless + + + + TMP_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + TMP + 4.0 + + + + SPFH_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + SPFH + 4.0 + + + + DPT_ON_SPEC_HGT_LVL_ABOVE_GRND_2m + DPT + 4.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + UGRD + 10. + 4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + VGRD + 10. + 4.0 + + + + GUST_ON_SURFACE + GUST + 3.0 + + + + PRES_ON_SURFACE + PRES + 6.0 + + + + HGT_ON_SURFACE + HGT + 6.0 + + + + GSD_ACM_SNOD_ON_SURFACE + 9.0 + + + + CACM_APCP_ON_SURFACE + -4.0 + + + + ACM_SNOWFALL_ON_SURFACE + 6.0 + + + + ACM_FRAIN_ON_SURFACE + 6.0 + + + + ACM_GRAUPEL_ON_SURFACE + 6.0 + + + + GSD_INST_CRAIN_ON_SURFACE + CRAIN + 1.0 + + + + GSD_CSNOW_ON_SURFACE + CSNOW + 1.0 + + + + GSD_CICEP_ON_SURFACE + CICEP + 1.0 + + + + GSD_CFRZR_ON_SURFACE + 1.0 + + + + INST_PRATE_ON_SURFACE + PRATE + 6.0 + + + + CPOFP_ON_SURFACE + CPOFP + 4.0 + + + + + GSD_VIS_ON_SURFACE + VIS + 6.0 + + + + INST_USWRF_ON_SURFACE + USWRF + NCEP + 4.0 + + + + INST_ULWRF_ON_SURFACE + ULWRF + 4.0 + + + + INST_ULWRF_ON_TOP_OF_ATMOS + ULWRF + 4.0 + + + + INST_USWRF_ON_TOP_OF_ATMOS + USWRF + 4.0 + + + + INST_DSWRF_ON_SURFACE + DSWRF + NCEP + 4.0 + + + + INST_DLWRF_ON_SURFACE + DLWRF + NCEP + 4.0 + + + + INST_SWDDNI_ON_SURFACE + VBDSF + NCEP + 4.0 + + + + INST_SWDDIF_ON_SURFACE + VDDSF + NCEP + 4.0 + + + + UGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + UGRD + 80. + 4.0 + + + + VGRD_ON_SPEC_HGT_LVL_ABOVE_GRND_FDHGT + VGRD + 80. + 4.0 + + + + + HGT_ON_CLOUD_BASE + HGT + 6.0 + + + + HGT_ON_CLOUD_TOP + HGT + 6.0 + + + + REFC_ON_ENTIRE_ATMOS + REFC + 4.0 + + + + + REFD_ON_SPEC_HGT_LVL_ABOVE_GRND + REFD + 4000. 1000. + 4.0 + + + + TCOLW_ON_ENTIRE_ATMOS + TCOLW + NCEP + 5.0 + + + + TCOLI_ON_ENTIRE_ATMOS + TCOLI + NCEP + 5.0 + + + + GSD_HGT_ON_CLOUD_CEILING + HGT + -3.0 + + + + RETOP_ON_ENTIRE_ATMOS_SINGLE_LYR + RETOP + 6.0 + + + + VIL_ON_ENTIRE_ATMOS + VIL + 7.0 + + + + GSD_VIL_ON_ENTIRE_ATMOS + VIL + 7.0 + + + + UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km + UPHL + NCEP + -3.0 + + + + + diff --git a/parm/postcntrl_sfs.xml b/parm/sfs/postcntrl_sfs.xml similarity index 97% rename from parm/postcntrl_sfs.xml rename to parm/sfs/postcntrl_sfs.xml index 790496a51..777167cea 100644 --- a/parm/postcntrl_sfs.xml +++ b/parm/sfs/postcntrl_sfs.xml @@ -657,6 +657,21 @@ 6.0 + + MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + + + MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m + -4.0 + + diff --git a/parm/postxconfig-NT-SFS.txt b/parm/sfs/postxconfig-NT-sfs.txt similarity index 88% rename from parm/postxconfig-NT-SFS.txt rename to parm/sfs/postxconfig-NT-sfs.txt index 7b886ec09..feb992daf 100644 --- a/parm/postxconfig-NT-SFS.txt +++ b/parm/sfs/postxconfig-NT-sfs.txt @@ -1,5 +1,5 @@ 1 -110 +113 GFSPRS 0 ncep_nco @@ -36,6 +36,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -45,6 +46,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -73,6 +78,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -82,6 +88,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -110,6 +120,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -119,6 +130,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -147,6 +162,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -156,6 +172,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -184,6 +204,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -193,6 +214,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -221,6 +246,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -230,6 +256,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -258,6 +288,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -267,6 +298,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -295,6 +330,7 @@ isobaric_sfc ? ? ? +? 0 0.0 0 @@ -304,6 +340,10 @@ isobaric_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -332,6 +372,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -341,6 +382,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -369,6 +414,7 @@ mean_sea_lvl ? ? ? +? 0 0.0 0 @@ -378,6 +424,10 @@ mean_sea_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -406,6 +456,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -415,6 +466,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -443,6 +498,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -452,6 +508,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -480,6 +540,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -489,6 +550,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -517,6 +582,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -526,6 +592,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -554,6 +624,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -563,6 +634,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -591,6 +666,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -600,6 +676,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -628,6 +708,7 @@ surface ? ? ? +? 0 0.0 0 @@ -637,6 +718,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -665,6 +750,7 @@ surface ? ? ? +? 0 0.0 0 @@ -674,6 +760,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -702,6 +792,7 @@ surface ? ? ? +? 0 0.0 0 @@ -711,6 +802,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -739,6 +834,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -748,6 +844,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -776,6 +876,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -785,6 +886,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -813,6 +918,7 @@ depth_bel_land_sfc 10. 40. 100. 200. ? ? +? 0 0.0 0 @@ -822,6 +928,10 @@ depth_bel_land_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -850,6 +960,7 @@ surface ? ? ? +? 0 0.0 0 @@ -859,6 +970,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -887,6 +1002,7 @@ surface ? ? ? +? 0 0.0 0 @@ -896,6 +1012,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -924,6 +1044,7 @@ surface ? ? ? +? 0 0.0 0 @@ -933,6 +1054,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -961,6 +1086,7 @@ surface ? ? ? +? 0 0.0 0 @@ -970,6 +1096,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -998,6 +1128,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1007,6 +1138,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1035,6 +1170,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1044,6 +1180,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1072,6 +1212,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1081,6 +1222,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1109,6 +1254,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1118,6 +1264,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1146,6 +1296,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1155,6 +1306,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1183,6 +1338,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1192,6 +1348,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1220,6 +1380,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1229,6 +1390,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1257,6 +1422,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1266,6 +1432,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1294,6 +1464,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1303,6 +1474,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1331,6 +1506,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1340,6 +1516,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1368,6 +1548,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1377,6 +1558,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1405,6 +1590,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1414,6 +1600,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1442,6 +1632,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1451,6 +1642,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1479,6 +1674,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -1488,6 +1684,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1516,6 +1716,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1525,6 +1726,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1553,6 +1758,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1562,6 +1768,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1590,6 +1800,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1599,6 +1810,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1627,6 +1842,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1636,6 +1852,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1664,6 +1884,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1673,6 +1894,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1701,6 +1926,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1710,6 +1936,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1738,6 +1968,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1747,6 +1978,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1775,6 +2010,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1784,6 +2020,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1812,6 +2052,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1821,6 +2062,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1849,6 +2094,7 @@ top_of_atmos ? ? ? +? 0 0.0 0 @@ -1858,6 +2104,10 @@ top_of_atmos 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -1886,6 +2136,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1895,6 +2146,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1923,6 +2178,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1932,6 +2188,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1960,6 +2220,7 @@ surface ? ? ? +? 0 0.0 0 @@ -1969,6 +2230,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -1997,6 +2262,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2006,6 +2272,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2034,6 +2304,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2043,6 +2314,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2071,6 +2346,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2080,6 +2356,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2108,6 +2388,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2117,6 +2398,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2145,6 +2430,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2154,6 +2440,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2182,6 +2472,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2191,6 +2482,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -2219,6 +2514,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2228,6 +2524,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2256,6 +2556,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2265,6 +2566,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2293,6 +2598,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2302,6 +2608,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2330,6 +2640,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2339,6 +2650,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2367,6 +2682,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2376,6 +2692,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2404,6 +2724,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2413,6 +2734,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2441,6 +2766,7 @@ tropopause ? ? ? +? 0 0.0 0 @@ -2450,6 +2776,10 @@ tropopause 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2478,6 +2808,7 @@ HGT ? ? ? +? 0 0.0 0 @@ -2487,6 +2818,10 @@ HGT 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2515,6 +2850,7 @@ RH ? ? ? +? 0 0.0 0 @@ -2524,6 +2860,10 @@ RH 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2552,6 +2892,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2561,6 +2902,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2589,6 +2934,7 @@ hghst_trop_frz_lvl ? ? ? +? 0 0.0 0 @@ -2598,6 +2944,10 @@ hghst_trop_frz_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2626,6 +2976,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -2635,6 +2986,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2663,6 +3018,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -2672,6 +3028,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2700,6 +3060,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -2709,6 +3070,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2737,6 +3102,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -2746,6 +3112,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2774,6 +3144,7 @@ max_wind ? ? ? +? 0 0.0 0 @@ -2783,6 +3154,10 @@ max_wind 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2811,6 +3186,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2820,6 +3196,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -2848,6 +3228,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2857,6 +3238,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2885,6 +3270,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2894,6 +3280,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 2.0 0 @@ -2922,6 +3312,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -2931,6 +3322,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -2959,6 +3354,7 @@ surface ? ? ? +? 0 0.0 0 @@ -2968,6 +3364,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -2996,6 +3396,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3005,6 +3406,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3033,6 +3438,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3042,6 +3448,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3070,6 +3480,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3079,6 +3490,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3107,6 +3522,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3116,6 +3532,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3144,6 +3564,7 @@ isentropic_lvl ? ? ? +? 0 0.0 0 @@ -3153,6 +3574,10 @@ isentropic_lvl 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3181,6 +3606,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3190,6 +3616,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3218,6 +3648,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3227,6 +3658,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3255,6 +3690,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3264,6 +3700,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3292,6 +3732,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3301,6 +3742,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3329,6 +3774,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3338,6 +3784,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3366,6 +3816,7 @@ pot_vort_sfc ? ? ? +? 0 0.0 0 @@ -3375,6 +3826,10 @@ pot_vort_sfc 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3403,6 +3858,7 @@ entire_atmos_single_lyr ? ? ? +? 0 0.0 0 @@ -3412,6 +3868,10 @@ entire_atmos_single_lyr 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3440,6 +3900,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3449,6 +3910,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3477,6 +3942,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3486,6 +3952,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3514,6 +3984,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3523,6 +3994,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -3551,6 +4026,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3560,6 +4036,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3588,6 +4068,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3597,6 +4078,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3625,6 +4110,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3634,6 +4120,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 5.0 0 @@ -3662,6 +4152,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3671,6 +4162,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 1.0 0 @@ -3699,6 +4194,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3708,6 +4204,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3736,6 +4236,7 @@ spec_hgt_lvl_above_grnd ? ? ? +? 0 0.0 0 @@ -3745,6 +4246,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3773,6 +4278,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3782,6 +4288,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3810,6 +4320,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3819,6 +4330,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 3.0 0 @@ -3847,6 +4362,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3856,6 +4372,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3884,6 +4404,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3893,6 +4414,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3921,6 +4446,7 @@ surface ? ? ? +? 0 0.0 0 @@ -3930,6 +4456,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3958,6 +4488,7 @@ spec_hgt_lvl_above_grnd 0. ? ? +? 0 0.0 0 @@ -3967,6 +4498,10 @@ spec_hgt_lvl_above_grnd 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -3995,6 +4530,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4004,6 +4540,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 4.0 0 @@ -4032,6 +4572,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4041,6 +4582,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4069,6 +4614,7 @@ surface ? ? ? +? 0 0.0 0 @@ -4078,6 +4624,10 @@ surface 0.0 0 0.0 +0 +0.0 +0 +0.0 1 6.0 0 @@ -4086,3 +4636,129 @@ surface ? ? ? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground +1 +tmpl4_8 +WIND +? +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +783 +MAX_UGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum u wind on 10 meter Above Ground +1 +tmpl4_8 +MAXUW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? +784 +MAX_VGD_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum v wind on 10 meter Above Ground +1 +tmpl4_8 +MAXVW +NCEP +MAX +spec_hgt_lvl_above_grnd +0 +? +1 +10. +? +0 +? +0 +? +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? +? +? diff --git a/sorc/ncep_post.fd/ALLOCATE_ALL.f b/sorc/ncep_post.fd/ALLOCATE_ALL.f index 96e0c183f..dc19d6de3 100644 --- a/sorc/ncep_post.fd/ALLOCATE_ALL.f +++ b/sorc/ncep_post.fd/ALLOCATE_ALL.f @@ -631,8 +631,10 @@ SUBROUTINE ALLOCATE_ALL() allocate(snfden(ista_2l:iend_2u,jsta_2l:jend_2u)) allocate(sndepac(ista_2l:iend_2u,jsta_2l:jend_2u)) allocate(mean_frp(ista_2l:iend_2u,jsta_2l:jend_2u)) - allocate(ebb(ista_2l:iend_2u,jsta_2l:jend_2u)) allocate(hwp(ista_2l:iend_2u,jsta_2l:jend_2u)) + allocate(smoke_ave(ista_2l:iend_2u,jsta_2l:jend_2u)) + allocate(dust_ave(ista_2l:iend_2u,jsta_2l:jend_2u)) + allocate(coarsepm_ave(ista_2l:iend_2u,jsta_2l:jend_2u)) !Initialization !$omp parallel do private(i,j) do j=jsta_2l,jend_2u @@ -658,13 +660,16 @@ SUBROUTINE ALLOCATE_ALL() snfden(i,j)=spval sndepac(i,j)=spval mean_frp(i,j)=spval - ebb(i,j)=spval hwp(i,j)=spval + smoke_ave(i,j)=spval + dust_ave(i,j)=spval + coarsepm_ave(i,j)=spval enddo enddo allocate(smoke(ista_2l:iend_2u,jsta_2l:jend_2u,lm,nbin_sm)) allocate(fv3dust(ista_2l:iend_2u,jsta_2l:jend_2u,lm,nbin_sm)) allocate(coarsepm(ista_2l:iend_2u,jsta_2l:jend_2u,lm,nbin_sm)) + allocate(ebb(ista_2l:iend_2u,jsta_2l:jend_2u,lm,nbin_sm)) !$omp parallel do private(i,j,l,k) do k=1,nbin_sm do l=1,lm @@ -673,6 +678,7 @@ SUBROUTINE ALLOCATE_ALL() smoke(i,j,l,k)=spval fv3dust(i,j,l,k)=spval coarsepm(i,j,l,k)=spval + ebb(i,j,l,k)=spval enddo enddo enddo diff --git a/sorc/ncep_post.fd/BNDLYR.f b/sorc/ncep_post.fd/BNDLYR.f index 72e4cb950..aa900d756 100644 --- a/sorc/ncep_post.fd/BNDLYR.f +++ b/sorc/ncep_post.fd/BNDLYR.f @@ -1,6 +1,6 @@ !> @file !> @brief Subroutine that computes boundary layer fields. -! +!> !> Computes constant mass mean fields !> !> This routine computes constant mass (boundary layer) @@ -11,11 +11,31 @@ !> relative humidity, U and V winds, vertical velocity, !> and precipitable water. Given these fundamental variables !> other fields may be computed. -!> +!> !> @note If you change parameter NBND in this routine !> don't forget to change it also in the calling !> subprogram, MISCLN. !> +!> ### Program history log: +!> Date | Programmer | Comments +!> -----|------------|--------- +!> 1993-01-29 | RUSS TREADON | Original file +!> 1993-05-07 | RUSS TREADON | ADDED DOC BLOCK AND MORE COMMENTS. +!> 1993-06-19 | RUSS TREADON | ADDED LVLBND TO PARAMETER LIST. +!> 1996-03-07 | MIKE BALDWIN | CHANGE PWTR CALC TO INCLUDE CLD WTR SPEED UP CODE +!> 1998-06-16 | T BLACK | CONVERSION FROM 1-D TO 2-D +!> 1998-08-18 | MIKE BALDWIN | CHANGE QSBND TO RHBND IN CALL, COMPUTE RH OVER ICE +!> 1998-12-22 | MIKE BALDWIN | BACK OUT RH OVER ICE +!> 2000-01-04 | JIM TUCCILLO | MPI VERSION +!> 2002-01-15 | MIKE BALDWIN | WRF VERSION +!> 2020-11-10 | JESSE MENG | USE UPP_PHYSICS MODULE +!> 2021-08-20 | Wen Meng | Retrict computation fro undefined points. +!> 2021-09-02 | Bo Cui | Decompose UPP in X direction. +!> +!> @author Russ Treadon W/NP2 @date 1993-01-29 +! ------------------------------------------------------------------------------------------ +!> @brief Computes boundary layer fields. +!> !> @param[out] PBND - Layer mean pressure in NBND boundary layers (NBL). !> @param[out] TBND - Layer mean temperature in NBL. !> @param[out] QBND - Layer mean specific humidity in NBL. @@ -28,23 +48,10 @@ !> @param[out] QCNVBND - Layer moisture convergence in NBL. !> @param[out] LVLBND - ETA layer at midpoint of NBL. !> -!> Program History -!> - 93-01-29 RUSS TREADON -!> - 93-05-07 RUSS TREADON - ADDED DOC BLOCK AND MORE COMMENTS. -!> - 93-06-19 RUSS TREADON - ADDED LVLBND TO PARAMETER LIST. -!> - 96-03-07 MIKE BALDWIN - CHANGE PWTR CALC TO INCLUDE CLD WTR -!> SPEED UP CODE -!> - 98-06-16 T BLACK - CONVERSION FROM 1-D TO 2-D -!> - 98-08-18 MIKE BALDWIN - CHANGE QSBND TO RHBND IN CALL, -!> COMPUTE RH OVER ICE -!> - 98-12-22 MIKE BALDWIN - BACK OUT RH OVER ICE -!> - 00-01-04 JIM TUCCILLO - MPI VERSION -!> - 02-01-15 MIKE BALDWIN - WRF VERSION -!> - 20-11-10 JESSE MENG - USE UPP_PHYSICS MODULE -!> - 21-08-20 Wen Meng - Retrict computation fro undefined points. -!> - 21-09-02 Bo Cui - Decompose UPP in X direction. -!> -!> @author Russ Treadon W/NP2 @date 1993-01-29 +!> @note If you change parameter NBND in this routine +!> don't forget to change it also in the calling +!> subprogram, MISCLN. + SUBROUTINE BNDLYR(PBND,TBND,QBND,RHBND,UBND,VBND, & WBND,OMGBND,PWTBND,QCNVBND,LVLBND) diff --git a/sorc/ncep_post.fd/BOUND.f b/sorc/ncep_post.fd/BOUND.f index 8c261a073..a0b09c088 100644 --- a/sorc/ncep_post.fd/BOUND.f +++ b/sorc/ncep_post.fd/BOUND.f @@ -2,19 +2,14 @@ !> @brief bound() clips data in passed array. !> !> @author Russ Treadon W/NP2 @date 1993-01-18 - -!> This routine bounds data in the passed array -!> FLD (im x jm elements long) and clips data values such -!> that on exiting the routine +!> +!> This routine bounds data in the passed array FLD (im x jm elements long) +!> and clips data values such that on exiting the routine !> @code !> FMIN <= FLD(I,J) <= FMAX !> @endcode !> for all points. !> -!> @param[in] FMIN Lower (inclusive) bound for data. -!> @param[in] FMAX Upper (inclusive) bound for data. -!> @param[out] FLD Array whose elements are bounded by [FMIN,FMAX]. -!> !> ### Program History Log !> Date | Programmer | Comments !> -----|------------|--------- @@ -26,6 +21,13 @@ !> 2021-09002 | Bo Cui | Decompose UPP in X direction !> !> @author Russ Treadon W/NP2 @date 1993-01-18 +!--------------------------------------------------------------------------------------- +!> @brief Clips data in passed array. +!> +!> @param[in] FMIN Lower (inclusive) bound for data. +!> @param[in] FMAX Upper (inclusive) bound for data. +!> @param[out] FLD Array whose elements are bounded by [FMIN,FMAX]. +!> SUBROUTINE BOUND(FLD,FMIN,FMAX) ! diff --git a/sorc/ncep_post.fd/CALDWP.f b/sorc/ncep_post.fd/CALDWP.f index 02f309a94..35c05bb80 100644 --- a/sorc/ncep_post.fd/CALDWP.f +++ b/sorc/ncep_post.fd/CALDWP.f @@ -1,5 +1,5 @@ !> @file -!> @brief Subroutine related to dewpoint temperature. +!> @brief Subroutine that calculates dewpoint temperature. ! !> Computes dewpoint from P, T, and Q. !> diff --git a/sorc/ncep_post.fd/CALGUST.f b/sorc/ncep_post.fd/CALGUST.f index 977518626..ab3e342d7 100644 --- a/sorc/ncep_post.fd/CALGUST.f +++ b/sorc/ncep_post.fd/CALGUST.f @@ -17,6 +17,7 @@ !> 2015-03-11 | S Moorthi | Set sfcwind to spval if u10 and v10 are spvals for A grid and set gust to just wind (in GSM with nemsio, it appears u10 & v10 have spval) !> 2021-09-02 | Bo Cui | Decompose UPP in X direction !> 2023-02-24 | Weizhong Zheng| Revised calculation of wind gust for UFS applications +!> 2024-07-02 | Wen Meng | Restrict undefined grids in calculations !> !> @author Geoff Manikin W/NP2 @date 1997-03-04 @@ -49,6 +50,7 @@ SUBROUTINE CALGUST(LPBL,ZPBL,GUST) ! ! !***************************************************************************** +!> CALMXW computes max wind level fields. ! START CALMXW HERE. ! ! LOOP OVER THE GRID. @@ -151,6 +153,7 @@ SUBROUTINE CALGUST(LPBL,ZPBL,GUST) GUST(I,J) = MAX(GUST(I,J),SFCWIND+DELWIND) else GUST(I,J) = spval + WIND = spval endif enddo else @@ -169,7 +172,7 @@ SUBROUTINE CALGUST(LPBL,ZPBL,GUST) END IF if(MODELNAME /= 'RAPR' .AND. MODELNAME /= 'GFS' .AND. MODELNAME /= 'FV3R')then - if (sfcwind < spval) then + if (sfcwind < spval .AND. ZPBL(I,J) < spval ) then DELWIND = WIND - SFCWIND ZSFC = FIS(I,J)*GI DELWIND = DELWIND*(1.0-MIN(0.5,ZPBL(I,J)/2000.)) diff --git a/sorc/ncep_post.fd/CALHEL.f b/sorc/ncep_post.fd/CALHEL.f index eedc4feeb..ef866bc0c 100644 --- a/sorc/ncep_post.fd/CALHEL.f +++ b/sorc/ncep_post.fd/CALHEL.f @@ -1,6 +1,6 @@ !> @file -!> @brief Subroutine that computes storm relative helicity. -! +!> @brief Subroutine that computes storm relative helicity and storm motion. +!> !> This routine computes estimated storm motion and storm-relative !> environmental helicity. (Davies-Jones et al 1990) the algorithm !> processd as follows. @@ -12,16 +12,7 @@ !> method (Bunkers et al. 1988) which has been found to do better in cases with !> 'non-classic' hodographs (such as Northwest-flow events) and do as well or !> better than the old method in more classic situations. -!> -!> @param[in] DEPTH Depth in meters over whcih helicity should be computed; allows one to distinguish 0-3 km and 0-1 km values. -!> @param[out] UST Estimated U Component (m/s) Of Storm motion. -!> @param[out] VST Estimated V Component (m/s) Of Storm motion. -!> @param[out] HELI Storm-relative heliciry (m**2/s**2). -!> @param[out] USHR1 U Component (m/s) Of 0-1 km shear. -!> @param[out] VSHR1 V Component (m/s) Of 0-1 km shear. -!> @param[out] USHR6 U Component (m/s) Of 0-0.5 to 5.5-6.0 km shear. -!> @param[out] VSHR6 V Component (m/s) Of 0-0.5 to 5.5-6.0 km shear. -!> +!> !> ### Program history log: !> Date | Programmer | Comments !> -----|------------|--------- @@ -40,6 +31,18 @@ !> 2022-10-07 | Tracy Hertneky | Add left mover for storm motion in SH !> !> @author Michael Baldwin W/NP2 @date 1994-08-22 +! ----------------------------------------------------------------------------------- +!> @brief Computes storm relative helicity and storm motion. +!> +!> @param[in] DEPTH Depth in meters over whcih helicity should be computed; allows one to distinguish 0-3 km and 0-1 km values. +!> @param[out] UST Estimated U Component (m/s) Of Storm motion. +!> @param[out] VST Estimated V Component (m/s) Of Storm motion. +!> @param[out] HELI Storm-relative heliciry (m**2/s**2). +!> @param[out] USHR1 U Component (m/s) Of 0-1 km shear. +!> @param[out] VSHR1 V Component (m/s) Of 0-1 km shear. +!> @param[out] USHR6 U Component (m/s) Of 0-0.5 to 5.5-6.0 km shear. +!> @param[out] VSHR6 V Component (m/s) Of 0-0.5 to 5.5-6.0 km shear. +!> SUBROUTINE CALHEL(DEPTH,UST,VST,HELI,USHR1,VSHR1,USHR6,VSHR6) ! diff --git a/sorc/ncep_post.fd/CALUPDHEL.f b/sorc/ncep_post.fd/CALUPDHEL.f index 3170e3fce..397218fae 100644 --- a/sorc/ncep_post.fd/CALUPDHEL.f +++ b/sorc/ncep_post.fd/CALUPDHEL.f @@ -13,6 +13,7 @@ !> 2020-11-06 | J Meng | Use UPP_MATH Module !> 2021-10-31 | J Meng | 2D DECOMPOSITION !> 2022-05-12 | E James | Adding a check for extremely large positive or negative UH values +!> 2024-06-27 | W Meng | Restrict undefined grids in calculation !> !> @author M Pyle W/NP2 @date 2007-10-22 !-------------------------------------------------------------------------------------- @@ -119,7 +120,9 @@ SUBROUTINE CALUPDHEL(UPDHEL) DVDX = DDVDX(I,J) DUDY = DDUDY(I,J) - UPDHEL(I,J)=UPDHEL(I,J)+(DVDX-DUDY)*WH(I,J,L)*DZ + IF (DVDX 9E10) THEN UPDHEL(I,J) = spval diff --git a/sorc/ncep_post.fd/CLDRAD.f b/sorc/ncep_post.fd/CLDRAD.f index 4974ffc30..90ff3fe43 100644 --- a/sorc/ncep_post.fd/CLDRAD.f +++ b/sorc/ncep_post.fd/CLDRAD.f @@ -75,6 +75,9 @@ !> 2023-04-04 | Li(Kate Zhang) | Add namelist optoin for CCPP-Chem (UFS-Chem) model. !> 2023-04-17 | Eric James | Getting rid of special treatment for RRFS AOD (use RAP/HRRR approach) !> 2023-09-26 | Jaymes Kenyon | For RRFS, use cloud fraction to diagnose cloud base/top (height and pressure) +!> 2024-04-23 | Eric James | Adding smoke emissions (ebb) from RRFS +!> 2024-05-01 | Jaymes Kenyon | Updates to the GSL exp-1 ceiling diagnostic +!> 2024-05-24 | Eric James | Correcting the vertical summing of biomass burning emissions (EBB) !> !> @author Russ Treadon W/NP2 @date 1993-08-30 !--------------------------------------------------------------------------------- @@ -84,7 +87,7 @@ SUBROUTINE CLDRAD ! - use vrbls4d, only: DUST,SUSO, SALT, SOOT, WASO,NO3,NH4 + use vrbls4d, only: DUST,SUSO, SALT, SOOT, WASO,NO3,NH4,EBB use vrbls3d, only: QQW, QQR, T, ZINT, CFR, QQI, QQS, Q, EXT, ZMID,PMID,& PINT, DUEM, DUSD, DUDP, DUWT, DUSV, SSEM, SSSD,SSDP,& SSWT, SSSV, BCEM, BCSD, BCDP, BCWT, BCSV, OCEM,OCSD,& @@ -102,7 +105,7 @@ SUBROUTINE CLDRAD AIRDIFFSWIN, DUSMASS, DUSMASS25, DUCMASS, DUCMASS25, & ALWINC, ALWTOAC, SWDDNI, SWDDIF, SWDNBC, SWDDNIC, & SWDDIFC, SWUPBC, LWDNBC, LWUPBC, SWUPT, & - TAOD5502D, AERSSA2D, AERASY2D, MEAN_FRP, EBB, HWP, & + TAOD5502D, AERSSA2D, AERASY2D, MEAN_FRP, HWP, & LWP, IWP, AVGCPRATE, & DUSTCB,SSCB,BCCB,OCCB,SULFCB,DUSTPM,SSPM,aod550, & du_aod550,ss_aod550,su_aod550,oc_aod550,bc_aod550, & @@ -116,7 +119,7 @@ SUBROUTINE CLDRAD TCLOD, ARDSW, TRDSW, ARDLW, NBIN_DU, TRDLW, IM, & NBIN_SS, NBIN_OC,NBIN_BC,NBIN_SU,NBIN_NO3,DTQ2, & JM, LM, gocart_on, gccpp_on, nasa_on, me, rdaod, & - ISTA, IEND,aqf_on + ISTA, IEND,aqf_on,TSRFC use rqstfld_mod, only: IGET, ID, LVLS, IAVBLFLD use gridspec_mod, only: dyval, gridtype use cmassi_mod, only: TRAD_ice @@ -156,7 +159,7 @@ SUBROUTINE CLDRAD REAL, dimension(ista:iend,jsta:jend) :: TCLD, CEILING real CU_ir(LM), q_conv !bsf !jw - integer I,J,L,K,IBOT,ITCLOD,LBOT,LTOP,ITRDSW,ITRDLW, & + integer I,J,L,K,IBOT,ITCLOD,LBOT,LTOP,ITRDSW,ITRDLW,ITSRFC, & LLMH,ITHEAT,IFINCR,ITYPE,ITOP,NUM_THICK real DPBND,RRNUM,QCLD,RSUM,TLMH,FACTRS,FACTRL,DP, & OPDEPTH, TMP,QSAT,RHUM,TCEXT,DELZ,DELY,DY_m @@ -527,6 +530,37 @@ SUBROUTINE CLDRAD enddo endif ENDIF +! +! TOTAL COLUMN EBB (BIOMASS BURNING EMISSIONS) +! + IF (IGET(745) > 0) THEN +!$omp parallel do private(i,j,ii,jj) + do j=1,jend-jsta+1 + jj = jsta+j-1 + do i=1,iend-ista+1 + ii=ista+i-1 + GRID1(ii,jj) = 0.0 + do k=1,lm + LL=LM-k+1 + if(EBB(ii,jj,k,1)/=spval)then + GRID1(ii,jj) = GRID1(ii,jj) + EBB(ii,jj,k,1)/(1E9) + endif + enddo + enddo + enddo + if(grib == "grib2" )then + cfld = cfld + 1 + fld_info(cfld)%ifld = IAVBLFLD(IGET(745)) +!$omp parallel do private(i,j,ii,jj) + do j=1,jend-jsta+1 + jj = jsta+j-1 + do i=1,iend-ista+1 + ii=ista+i-1 + datapd(i,j,cfld) = GRID1(ii,jj) + enddo + enddo + endif + ENDIF ! ! TOTAL COLUMN CLOUD WATER IF (IGET(200) > 0 .or. IGET(575) > 0) THEN @@ -2057,7 +2091,7 @@ SUBROUTINE CLDRAD ! BEGIN EXPERIMENTAL GSD CEILING DIAGNOSTICS... ! J. Kenyon, 4 Feb 2017: this approach uses model-state cloud fractions -! Parameter 487: experimental ceiling diagnostic #1 +! Parameter 487: experimental ceiling diagnostic #1 (updated 1 May 2024) IF (IGET(487)>0) THEN ! set some constants for ceiling adjustment in snow (retained from legacy algorithm, also in calvis.f) rhoice = 970. @@ -2065,7 +2099,7 @@ SUBROUTINE CLDRAD exponfp = 1. const1 = 3.912 ! set minimum cloud fraction to represent a ceiling - ceiling_thresh_cldfra = 0.5 + ceiling_thresh_cldfra = 0.41 DO J=JSTA,JEND DO I=ISTA,IEND @@ -2075,28 +2109,22 @@ SUBROUTINE CLDRAD do k=1,lm LL=LM-k+1 cldfra(k) = cfr(i,j,ll) - cldfra_max = max(cldfra_max,cldfra(k)) ! determine the column-maximum cloud fraction + cldfra_max = max(cldfra_max,cldfra(k)) ! determine the column-maximum cloud fraction end do - if (cldfra_max >= ceiling_thresh_cldfra) then ! threshold cloud fraction found in column, get ceiling - -! threshold cloud fraction (possible ceiling) found somewhere in column, so proceed... -! first, search for and eliminate fog layers near surface (retained from legacy diagnostic) - do k=2,3 ! Ming, k=3 will never be reached in this logic - if (cldfra(k) < ceiling_thresh_cldfra) then ! these two lines: - if (cldfra(1) > ceiling_thresh_cldfra) then ! ...look for surface-based fog beneath less-cloudy layers - do k1=1,k-1 ! now perform the clearing for k=1 up to k-1 - if (cldfra(k1) >= ceiling_thresh_cldfra) then - cldfra(k1)=0. - end if - end do + if (cldfra_max >= ceiling_thresh_cldfra) then ! threshold cloud fraction (possible ceiling) found + ! in column, so proceed... + +! first, search for and eliminate shallow-fog layers near surface (adapted from legacy diagnostic) + if (cldfra(1) > 0.) then ! cloud at the surface (fog); check if this fog is shallow + do k=2,4 + if (cldfra(k) < 0.8) then ! confirmed shallow fog + cldfra(1:k) = 0. ! remove shallow fog end if - ! level k=2,3 has no ceiling, and no fog at surface, so skip out of this loop - end if - exit - end do ! k + end do + end if -! now search aloft... +! now search the column for a ceiling... loop471:do k=2,lm k1 = k if (cldfra(k) >= ceiling_thresh_cldfra) then ! go to 472 ! found ceiling @@ -3943,24 +3971,6 @@ SUBROUTINE CLDRAD endif ENDIF -! Biomass burning emissions (EBB) - IF (IGET(745)>0) THEN - DO J=JSTA,JEND - DO I=ISTA,IEND - IF (EBB(I,J)0) THEN DO J=JSTA,JEND @@ -3972,11 +3982,35 @@ SUBROUTINE CLDRAD ENDIF ENDDO ENDDO - if(grib=='grib2') then - cfld=cfld+1 - fld_info(cfld)%ifld=IAVBLFLD(IGET(755)) - datapd(1:iend-ista+1,1:jend-jsta+1,cfld)=GRID1(ista:iend,jsta:jend) + ID(1:25) = 0 + ITSRFC = NINT(TSRFC) + IF(ITSRFC /= 0) then + IFINCR = MOD(IFHR,ITSRFC) + IF(IFMIN >= 1)IFINCR= MOD(IFHR*60+IFMIN,ITSRFC*60) + ELSE + IFINCR = 0 endif + ID(19) = IFHR + IF(IFMIN >= 1)ID(19)=IFHR*60+IFMIN + ID(20) = 3 + IF (IFINCR==0) THEN + ID(18) = IFHR-ITSRFC + ELSE + ID(18) = IFHR-IFINCR + IF(IFMIN >= 1)ID(18)=IFHR*60+IFMIN-IFINCR + ENDIF + IF (ID(18)<0) ID(18) = 0 + if(grib=='grib2') then + cfld=cfld+1 + fld_info(cfld)%ifld=IAVBLFLD(IGET(755)) + if(ITSRFC>0) then + fld_info(cfld)%ntrange=1 + else + fld_info(cfld)%ntrange=0 + endif + fld_info(cfld)%tinvstat=IFHR-ID(18) + datapd(1:iend-ista+1,1:jend-jsta+1,cfld)=GRID1(ista:iend,jsta:jend) + endif ENDIF ! CURRENT (instantaneous) INCOMING CLEARSKY SW RADIATION AT THE SURFACE. diff --git a/sorc/ncep_post.fd/CMASSI.f b/sorc/ncep_post.fd/CMASSI.f index d23e5685d..232d30e17 100644 --- a/sorc/ncep_post.fd/CMASSI.f +++ b/sorc/ncep_post.fd/CMASSI.f @@ -1,33 +1,55 @@ +!> @file +!> @brief CMASSI defines variables related to mass and precipitation +!> See CCPP Ferrier-Aligo microphysics modules for more information module CMASSI_mod !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - implicit none ! !----------------------------------------------------------------------- - REAL, PARAMETER :: DMImin=.05e-3, DMImax=1.e-3, & - & XMImin=1.e6*DMImin, XMImax=1.e6*DMImax - INTEGER, PARAMETER :: MDImin=XMImin, MDImax=XMImax + REAL, PARAMETER :: DMImin=.05e-3, & !< Minimum mean mass of precipitation ice particles. + DMImax=1.e-3, & !< Maximum mean mass of precipitation ice particles. + XMImin=1.e6*DMImin, & !< Minimum mean mass of precipitation ice particles (in microns). + XMImax=1.e6*DMImax !< Maximum mean mass of precipitation ice particles (in microns). + + INTEGER, PARAMETER :: MDImin=XMImin, & !< Minimum mean diameter of precipitation ice particles. + MDImax=XMImax !< Maximum mean diameter of precipitation ice particles. + !----------------------------------------------------------------------- -!--- Mean mass of precpitation ice particles as functions of their mean -! size (in microns) -! - REAL MASSI(MDImin:MDImax) -! + + REAL MASSI(MDImin:MDImax) !< Mean mass of precipitation ice particles as functions of their mean size (in microns). + !--- Mean rain drop diameters vary from 50 microns to 1000 microns -! DMRmax definition is moved to microinit and has different values depending on imp_physics - REAL, PARAMETER :: DMRmin=.05E-3, DelDMR=1.E-6 & - &, XMRmin=1.E6*DMRmin, N0r0=8.E6, N0rmin=1.e4 - REAL DMRmax,XMRmax - INTEGER, PARAMETER :: MDRmin=XMRmin - INTEGER MDRmax -! +!> DMRmax definition is moved to microinit and has different values depending on imp_physics + + REAL, PARAMETER :: DMRmin=.05E-3, & !< Minimum mean rain drop diameter (0.05 mm). + DelDMR=1.E-6, & !< One-micron interval (Lookup tables store solutions at 1 micron intervals [DelDMR] of mean rain drop diameter.). + XMRmin=1.E6*DMRmin, & !< Minimum mean rain drop diameter (in microns). + N0r0=8.E6, & !< Assumed intercept (m**-4) of rain drops if drop diameters are between 0.2 and 1.0 mm. + N0rmin=1.e4 !< Minimum intercept (m**-4) for rain drops. + + REAL DMRmax & !< Maximum mean rain drop diameter. + ,XMRmax !< Maximum mean rain drop diameter. + + INTEGER, PARAMETER :: MDRmin=XMRmin !< Minimum mean rain drop diameter (in microns). + INTEGER MDRmax !< Maximum mean rain drop diameter (in microns). + +! !--- Various rain lookup tables -! - REAL RQR_DRmin,RQR_DRmax, & - CN0r0,CN0r_DMRmin,CN0r_DMRmax -! +! + + REAL RQR_DRmin & !< Rain content (kg/m**3) for mean drop diameter of .05 mm. + ,RQR_DRmax & !< Rain content (kg/m**3) for mean drop diameter of 1.0 mm. + ,CN0r0 & !< Constant derived from N0r0. + ,CN0r_DMRmin & !< Minimum (starting) value for rain lookup tables for mean rain drop diameters. + ,CN0r_DMRmax !< Maximum (ending) value for rain lookup tables for mean rain drop diameters. + !--- Other important parameters -! (NLImax, FLARGE2 are used for the older version of the microphysics) -! - REAL T_ICE,NLImax,FLARGE2,TRAD_ice -! +! (NLImax, FLARGE2 are used for the older version of the microphysics) +! + REAL T_ICE & !< Temperature (C) threshold at which all remaining liquid water is glaciated to ice. + ,NLImax & !< Maximum number concentrations (m**-3) of large ice (snow/graupel/sleet). + ,FLARGE2 & !< Set in MICROINIT.F (no longer used). + ,TRAD_ice !< Defined as 0.5*T_ICE+TFRZ, or 253.15K, in other routines. Possibly refers to thermal radiation of ice or ice nucleation temperature ? + + end module CMASSI_mod diff --git a/sorc/ncep_post.fd/CMakeLists.txt b/sorc/ncep_post.fd/CMakeLists.txt index 934dc9fbb..73e06b780 100644 --- a/sorc/ncep_post.fd/CMakeLists.txt +++ b/sorc/ncep_post.fd/CMakeLists.txt @@ -150,6 +150,7 @@ list(APPEND LIB_SRC ${GTG_LIB_SRC}) list(APPEND EXE_SRC INITPOST.F + INITPOST_MPAS.F INITPOST_NETCDF.f WRFPOST.F getIVariableN.f diff --git a/sorc/ncep_post.fd/CTLBLK.f b/sorc/ncep_post.fd/CTLBLK.f index 663a6d6eb..edbb65e58 100644 --- a/sorc/ncep_post.fd/CTLBLK.f +++ b/sorc/ncep_post.fd/CTLBLK.f @@ -1,8 +1,7 @@ !> @file -!> @brief module: CTLBLK sets default parameters that are used throughout the UPP code -!> -!> ABSTRACT: -!> This module is replacing the CTLBLK.comm, all the comm block is removed. +!> @brief CTLBLK sets default parameters that are used throughout the UPP code +!> +!> This module replaces CTLBLK.comm; all the comm block is removed. !> !> ### Program history log: !> Date | Programmer | Comments @@ -20,22 +19,22 @@ !> 2023-08-16 | Yali Mao | Add gtg_on logical option !> 2023-11-24 | Eric James | Add method_blsn logical option !----------------------------------------------------------------------- -!> @defgroup CTLBLK_mod Sets default parameters that are used throughout the UPP code -!----------------------------------------------------------------------- +!> @defgroup CTLBLK CTLBLK +!> Sets default parameters that are used throughout the UPP code module CTLBLK_mod ! implicit none ! - type field_info + type field_info !< Field information integer ifld !< Field number in post control file - integer lvl !< _____. - integer lvl1 !< _____. - integer lvl2 !< _____. - integer ntrange !< _____. - integer tinvstat !< _____. + integer lvl !< _____? + integer lvl1 !< _____? + integer lvl2 !< _____? + integer ntrange !< _____? + integer tinvstat !< _____? end type ! - integer, parameter :: komax=70 !< _____. + integer, parameter :: komax=70 !< At-rest earth pressure coefficient maximum. integer, parameter :: LSMDEF=46 !< Default number of pressure levels. integer,PARAMETER :: NFD=20 !< Default number of flight level heights in geopotential meters. integer,PARAMETER :: NBND=6 !< Default number of ETA boundary layers. @@ -45,8 +44,8 @@ module CTLBLK_mod ! character(len=256) :: fileName !< Name of input dynamics file; name of full 3-D model output file. character(len=256) :: fileNameFlux !< Name of input physics file; name of 2-D model output file with physics and surface fields. - character(len=256) :: fileNameD3D !< _____. - character(len=256) :: fileNameAER !< _____. + character(len=256) :: fileNameD3D !< No longer used/supported. (Name of file containing dynamic 3D fields from GFS.) + character(len=256) :: fileNameAER !< Name of GFS aersol file character(len=256) :: fileNameFlat !< Input configuration text file defining the requested fields. character(len=19) :: DateStr !< Time stamp being processed (e.g., 2022-08-02_19:00:00). character(len=4) :: MODELNAME !< Model name used by UPP internally (e.g., FV3R for LAM, GFS for GFS, NCAR for WRF). @@ -56,19 +55,19 @@ module CTLBLK_mod character(len=4) :: VTIMEUNITS !< Valid time units. ! character(5) :: grib !< Grib type (Note that UPP only supports Grib2 currently). - type(field_info),allocatable :: fld_info(:) !< _____. - integer :: cfld !< _____. - integer :: ntlfld !< _____. - integer :: npset !< _____. - real*8 :: gdsdegr !< _____. - real,allocatable :: datapd(:,:,:) !< _____. + type(field_info),allocatable :: fld_info(:) !< _____? + integer :: cfld !< _____? + integer :: ntlfld !< _____? + integer :: npset !< _____? + real*8 :: gdsdegr !< Convert degrees to gradians ? + real,allocatable :: datapd(:,:,:) !< _____? ! !> Logicals to turn on/off different post-processing packages/output depending on model output. logical :: gocart_on !< Turn on option to process the aerosol/chemical tracers related output from GEFS-Aerosols model (GOCART). logical :: gccpp_on !< Turn on option to process the aerosol/chemical tracers related output from UFS-Chem (CCPP-Chem) model. logical :: nasa_on !< Turn on option to process the aerosol/chemical tracers related output from UFS-Aerosols model (NASA GOCART). - logical :: d3d_on !< _____. - logical :: hyb_sigp !< _____. + logical :: d3d_on !< Turn on option to use dynamic 3D fields from GFS. + logical :: hyb_sigp !< Turn on option to use hybrid sigma pressure levels. logical :: rdaod !< Turn on option to process the AOD from GFS scheme. logical :: d2d_chem !< Turn on option to process the 2D aerosol/chemical tracers. logical :: aqf_on !< Turn on Air Quality Forecasting (CMAQ-based). @@ -80,7 +79,7 @@ module CTLBLK_mod logical :: RUN !< No longer used/supported. logical :: FIRST !< No longer used/supported. logical :: RESTRT !< Indicates whether it is a restart run. - logical :: global !< _____. + logical :: global !< Flag indicating global model run (if false then regional) logical :: SMFLAG !< Smoothing flag for isobaric output. ! integer :: IDAT(5) !< Array storing input month, day, year, hour, min of file being processed (parsed from DateStr) @@ -91,34 +90,34 @@ module CTLBLK_mod integer :: imp_physics !< Microphysics option used in the model run. integer :: icu_physics !< Cumulus physics option in the model run. integer :: iSF_SURFACE_PHYSICS !< Surface physics scheme option in model run. - integer :: DataHandle !< _____. - integer :: NPREC !< _____. - integer :: NPHS !< _____. + integer :: DataHandle !< Handle (or reference) to the data being processed. + integer :: NPREC !< Number of precipitation buckets. + integer :: NPHS !< Physics time step integer :: ISEC !< Seconds of file being processed (not parsed from DateStr, hard-coded set to 0). - integer :: icount_calmict !< _____. + integer :: icount_calmict !< _____? integer :: ivegsrc !< Flag for vegetation classification source (0=USGS, 1=IGBP, 2=UMD) ! -!> @ingroup CTLBLK_mod +!> @ingroup CTLBLK !> @{ !> No longer used/supported. integer :: NFCST,NBC,LIST,IOUT,NTSTM, & NRADS,NRADL,NDDAMP,IDTAD,NBOCO,NSHDE,NCP,IMDLTY !> @} ! - real :: DT !< Model time step in seconds. - real :: SDAT(3) !< Array of month, day, year of restart run. - real :: AVRAIN !< Counter for summing latent heating from grid microphysics. - real :: AVCNVC !< Counter for summing latent heating from convection. - real :: DTQ2 !< Model physics time step in seconds. - real :: PT !< Model top requested by CMAQ. - real :: PDTOP !< Pressure thickness requested by CMAQ. - real :: SPL(komax) !< _____. - real :: ALSL(komax) !< _____. - real :: PREC_ACC_DT !< _____. - real :: PT_TBL !< _____. - real :: PREC_ACC_DT1 !< _____. - real :: spval !< _____. + real :: DT !< Model time step in seconds + real :: SDAT(3) !< Array of month, day, year of restart run + real :: AVRAIN !< Counter for summing latent heating from grid microphysics + real :: AVCNVC !< Counter for summing latent heating from convection + real :: DTQ2 !< Model physics time step in seconds + real :: PT !< Model top requested by CMAQ + real :: PDTOP !< Pressure thickness requested by CMAQ + real :: SPL(komax) !< Specified pressure levels + real :: ALSL(komax) !< Altitude above sea level _____? + real :: PREC_ACC_DT !< Time interval for accumulated precipitation + real :: PT_TBL !< _____? + real :: PREC_ACC_DT1 !< Alternate time interval for accumulated precipitation used primarily w/RAP/HRRR. + real :: spval !< Special value ! real :: SPVAL=9.9e10 ! Moorthi ! integer :: NUM_PROCS !< The number of MPI ranks available to the post processor. @@ -151,7 +150,7 @@ module CTLBLK_mod integer :: IVEND_2U !< Defines the right most boundary for the subdomain used on each MPI rank. Includes information from neighboring ranks (halos). integer :: NUM_SERVERS !< An optional variable to support asynchronous writes of post-processed fields; one if there is more than one total MPI task - otherwise zero; note that the asynchronous write code is not in active development or used. integer :: MPI_COMM_INTER !< An MPI communicator defining a subgroup of the MPI ranks used for asynchronous I/O; asynchronous writes are not in active development. - integer :: MPI_COMM_COMP !< an MPI communicator defining the subgroup of MPI ranks used to compute post-processed product fields; all current post implementations use all of the ranks so this again supports an unexploited development path in the code. + integer :: MPI_COMM_COMP !< An MPI communicator defining the subgroup of MPI ranks used to compute post-processed product fields; all current post implementations use all of the ranks so this again supports an unexploited development path in the code. integer :: IM !< Full longitude domain. integer :: JM !< Full latitude domain. integer :: LM !< Number of vertical levels. @@ -166,10 +165,10 @@ module CTLBLK_mod integer :: ibsize !< Defines the size of the buffer used in mpi_scatter and mpi_gather. It is necessary because the post-processed variables are not contiguous in the 2D ista_2l:iend_2u,jsta_2l:jsta_2u arrays, so they have to be stored in a contigous buffer and that buffer is what is scattered or gathered. integer :: ibsum !< No longer supported. !comm mpi - integer :: lsm !< _____. + integer :: lsm !< Land surface model ? integer :: lsmp1 !< LSM+1. ! -!> @ingroup CTLBLK_mod +!> @ingroup CTLBLK !> @{ !> Arrays that store the coordinates of their elements; used to validate communications; !> when scattered or otherwise dispersed, the receiving ranks check that the values of @@ -200,12 +199,12 @@ module CTLBLK_mod real :: TCLOD !< Number of hours in cloud fraction average. real :: THEAT !< Number of hours in latent heating bucket. real :: TPREC !< Number of hours in precipitation bucket. - real :: TMAXMIN !< _____. - real :: TD3D !< _____. + real :: TMAXMIN !< _____? + real :: TD3D !< _____? ! real PTHRESH !< Threshold for precipitation (used to check if there is precipitation, mainly in ptype routines). ! -!> @ingroup CTLBLK_mod +!> @ingroup CTLBLK !> @{ Time to execute named routine; note that ETAFLD2 and ETA2P refer to MDLFLD and MDL2P routines respectively. real(kind=8) :: ETAFLD2_tim=0.,ETA2P_tim=0.,SURFCE2_tim=0., & CLDRAD_tim=0.,MISCLN_tim=0.,FIXED_tim=0., & @@ -214,7 +213,7 @@ module CTLBLK_mod CALRAD_WCLOUD_tim=0.,RUN_IFI_TIM=0. !comm tim_info !> @} ! -!> @ingroup CTLBLK_mod +!> @ingroup CTLBLK !> @{ !> Initialized as 0, but never used. real(kind=8) :: time_output=0., time_e2out=0. !comm jjt @@ -239,8 +238,8 @@ module CTLBLK_mod integer, parameter :: nbin_oc = 2 !< organic carbon integer, parameter :: nbin_bc = 2 !< black carbon integer, parameter :: nbin_su = 1 !< sulfate - integer, parameter :: nbin_no3 = 3 !< nitrate - integer, parameter :: nbin_nh4 = 1 !< NH4 + integer, parameter :: nbin_no3 = 3 !< nitrate + integer, parameter :: nbin_nh4 = 1 !< NH4 integer, parameter :: nbin_sm = 1 !< smoke ! ! SET FD LEVEL HEIGHTS IN GEOPOTENTAL METERS. diff --git a/sorc/ncep_post.fd/DEALLOCATE.f b/sorc/ncep_post.fd/DEALLOCATE.f index d16c6f2d4..f63fa9fe1 100644 --- a/sorc/ncep_post.fd/DEALLOCATE.f +++ b/sorc/ncep_post.fd/DEALLOCATE.f @@ -215,6 +215,9 @@ SUBROUTINE DE_ALLOCATE deallocate(smoke) deallocate(fv3dust) deallocate(coarsepm) + deallocate(smoke_ave) + deallocate(dust_ave) + deallocate(coarsepm_ave) deallocate(taod5502d) deallocate(aerasy2d) deallocate(aerssa2d) diff --git a/sorc/ncep_post.fd/FILL_PSETFLD.f b/sorc/ncep_post.fd/FILL_PSETFLD.f index 4b4359324..5d74eed6b 100644 --- a/sorc/ncep_post.fd/FILL_PSETFLD.f +++ b/sorc/ncep_post.fd/FILL_PSETFLD.f @@ -102,6 +102,10 @@ subroutine fill_psetfld(param_ofld,param_afld) if(trim(param_ofld%aerosol_type)==''.and.trim(param_afld%aerosol_type)/='') then param_ofld%aerosol_type=param_afld%aerosol_type endif +! prob type + if(trim(param_ofld%prob_type)==''.and.trim(param_afld%prob_type)/='') then + param_ofld%prob_type=param_afld%prob_type + endif ! typ_intvl_size if(trim(param_ofld%typ_intvl_size)==''.and.trim(param_afld%typ_intvl_size)/='') then param_ofld%typ_intvl_size=param_afld%typ_intvl_size diff --git a/sorc/ncep_post.fd/FRZLVL2.f b/sorc/ncep_post.fd/FRZLVL2.f index cd5d4b574..e1537a57a 100644 --- a/sorc/ncep_post.fd/FRZLVL2.f +++ b/sorc/ncep_post.fd/FRZLVL2.f @@ -4,11 +4,11 @@ !> This routine computes the isothermal level height and relative !> humidity at this level for each mass point on the ETA grid. !> The computed isothermal level height is the mean sea level -!> height. At each mass point we move up from the surface to +!> height. At each mass point we move up from the surface to !> find the last ETA layer where the temperature is less than !> isotherm and the temp in the layer below is above isotherm. !> Vertical interpolation in temperature to the isotherm -!> temperature gives the isothermal level height. Pressure and +!> temperature gives the isothermal level height. Pressure and !> specific humidity are interpolated to this level and along with !> the temperature provide the isothermal level relative humidity. !> If the entire atmosphere is below isotherm, the routine @@ -18,11 +18,6 @@ !> (IE, GRID 26), we pack 273.15K as the freezing temperature. All !> other output grids use 273.16K. !> -!> @param[in] isotherm isothermal value of height to be output. -!> @param[out] ZFRZ Above ground level/ZFL at isotherm height. -!> @param[out] RHFRZ Relative humidity at isotherm level. -!> @param[out] PFRZL pressure at isotherm level. -!> !> ### Program History Log !> Date | Programmer | Comments !> -----|------------|--------- @@ -44,7 +39,7 @@ !> !> @author Russ Treadon W/NP2 @date 1992-12-22 !------------------------------------------------------------------------------- -!> Subroutine that computes FRZING LVL, Z and RH. +!> @brief FRZLVL2 computes FRZING LVL, Z and RH. !> !> @param[in] ISOTHERM real Isothermal value of height to be output. !> @param[out] ZFRZ real Above ground level/ZFL at isotherm height. diff --git a/sorc/ncep_post.fd/GFIP3.f b/sorc/ncep_post.fd/GFIP3.f index 4d30f5c57..8ac031b92 100644 --- a/sorc/ncep_post.fd/GFIP3.f +++ b/sorc/ncep_post.fd/GFIP3.f @@ -31,17 +31,17 @@ module DerivedFields !-----------------------------------------------------------------------+ !> -!> derive_fields() calculates several derived fields. +!> derive_fields() Calculates several derived fields. !> !> @param[in] imp_physics integer Microphysics option used in the model run. !> @param[in] t real Temperature (K). !> @param[in] rh real Relative humidity. !> @param[in] pres real Pressure (Pa). !> @param[in] hgt real Height. -!> @param[in] totalWater real +!> @param[in] totalWater real _____? !> @param[in] totalCond real Precipitation Condensate in g/kg. !> @param[in] nz integer Number of vertical levels. -!> @param[in] topoK integer +!> @param[in] topoK integer _____? !> @param[in] hprcp real Hourly accumulated precipitation. !> @param[in] hcprcp real Hourly accumulated convective precipitation. !> @param[in] cin real Convective inhibition (CIN). @@ -178,7 +178,7 @@ elemental real function get_tLCL(t, td) end function get_tLCL !-----------------------------------------------------------------------+ -!> @brief mixing_ratio() Calculate the mixing ratio in g/kg = water vapor/dry air. +!> @brief mixing_ratio() Calculates the mixing ratio in g/kg = water vapor/dry air. !> !> @param[in] td real dew point temperture (K). !> @param[in] pres real Pressure (Pa). @@ -260,7 +260,7 @@ end function getPrecipCond !-----------------------------------------------------------------------+ !> -!> calc_indice() calculates 2-D indices that are used for convective icing severity. +!> calc_indice() Calculates 2-D indices that are used for convective icing severity. !> subroutine calc_indice(t, td, pres, wvm, nz, topoK, & kIndex, liftedIndex, totalTotals) @@ -624,24 +624,17 @@ module CloudLayers public clouds_t integer, parameter :: MaxLayers = 30 - type :: clouds_t + type :: clouds_t !< _____? ! 2-D - !> nLayers integer Number of layers - integer :: nLayers - !> wmnIdx integer Warm nose index @memberof cloudlayers::clouds_t - integer :: wmnIdx ! warm nose index - !> avv real Average vertical velocity @memberof cloudlayers::clouds_t - real :: avv ! average vertical velocity + integer :: nLayers !< Number of layers + integer :: wmnIdx !< Warm nose index @memberof cloudlayers::clouds_t + real :: avv !< Average vertical velocity @memberof cloudlayers::clouds_t ! 3-D, on model levels of nz - !> layerQ real array 3-D, of cloud layers @memberof cloudlayers::clouds_t - real, allocatable :: layerQ(:) + real, allocatable :: layerQ(:) !< array 3-D, of cloud layers @memberof cloudlayers::clouds_t ! 3-D, of cloud layers - !> topIdx @memberof cloudlayers::clouds_t - integer :: topIdx(MaxLayers) - !> baseIdx @memberof cloudlayers::clouds_t - integer :: baseIdx(MaxLayers) - !> ctt @memberof cloudlayers::clouds_t - real :: ctt(MaxLayers) + integer :: topIdx(MaxLayers) !< Layer top @memberof cloudlayers::clouds_t + integer :: baseIdx(MaxLayers) !< Layer base @memberof cloudlayers::clouds_t + real :: ctt(MaxLayers) !< Cloud top temperature @memberof cloudlayers::clouds_t end type clouds_t contains @@ -1178,6 +1171,7 @@ module SeverityMaps ! scenario dependant !-----------------------------------------------------------------------+ !> twp_map() @memberof SeverityMaps +!> @return twp_map Total water path map real function twp_map(v, scenario) implicit none real, intent(in) :: v @@ -1209,6 +1203,7 @@ end function twp_map ! Only precip below warmnose has a different temperature map !> t_map() @memberof SeverityMaps + !> @return t_map Temperature map real function t_map(v, scenario) implicit none real, intent(in) :: v @@ -1255,6 +1250,7 @@ end function t_map ! Condensates near the surface take place of radar reflectivity in CIP !> prcpcondensate_map() @memberof SeverityMaps + !> @return prcpcondensate_map Mapping of condensates near the surface real function prcpCondensate_map(v, scenario) implicit none real, intent(in) :: v @@ -1296,6 +1292,7 @@ real function prcpCondensate_map(v, scenario) end function prcpCondensate_map !> deltaz_map() @memberof SeverityMaps + !> @return deltaz_map Mapping of change in Z (geopotential height?) ? real function deltaZ_map(v, scenario) implicit none real, intent(in) :: v @@ -1347,6 +1344,7 @@ end function deltaZ_map ! 223.15 0.8, 233.15 0.7446, 243.15 0.5784, 253.15 0.3014 ! 261.15 0.0, 280.15 0.0, 280.151 1.0 !> ctt_map() @memberof SeverityMaps +!> @return ctt_map Mapping of cloud top temperature (CTT)? real function ctt_map(v) implicit none real, intent(in) :: v @@ -1367,6 +1365,7 @@ end function ctt_map ! -0.5 1.0, 0.0 0.0 !> vv_map() @memberof SeverityMaps +!> @return mapping of vertical velocity real function vv_map(v) implicit none real, intent(in) :: v @@ -1383,6 +1382,7 @@ end function vv_map ! cloud top distance ! 609.6 1.0, 3048.0 0.0 !> cldTopDist_map() @memberof SeverityMaps +!> @return cldTopDist_map Cloud top distance map real function cldTopDist_map(v) implicit none real, intent(in) :: v @@ -1399,6 +1399,7 @@ end function cldTopDist_map ! cloud base distance ! 304.8 1.0, 1524.0 0.0 !> cldBaseDist_map() @memberof SeverityMaps +!> @return cldBaseDist_map Cloud base distance map real function cldBaseDist_map(v) implicit none real, intent(in) :: v @@ -1413,6 +1414,7 @@ end function cldBaseDist_map ! 0.0 0.0, 1.0 1.0 !> deltaQ_map() @memberof SeverityMaps +!> @return deltaQ_map Map of change in specific humidity real function deltaQ_map(v) implicit none real, intent(in) :: v @@ -1426,6 +1428,7 @@ real function deltaQ_map(v) end function deltaQ_map !> moisture_map_cond() @memberof SeverityMaps +!> @return moisture_map_cond Condensate moisture map real function moisture_map_cond(rh, liqCond, iceCond, pres, t) IMPLICIT NONE real, intent(in) :: rh, liqCond, iceCond, pres, t @@ -1442,6 +1445,7 @@ end function moisture_map_cond ! If not identify liquid/ice condensate !> moisture_map_cwat() @memberof SeverityMaps +!> @return moisture_map_cwat Cloud water moisture map real function moisture_map_cwat(rh, cwat, pres, t) IMPLICIT NONE real, intent(in) :: rh, cwat, pres, t @@ -1457,6 +1461,7 @@ end function moisture_map_cwat ! only called by moisture_map ! 70.0 0.0, 100.0 1.0 !> rh_map() @memberof SeverityMaps +!> @return rh_map Relative humidity moisture map real function rh_map(v) implicit none real, intent(in) :: v @@ -1472,6 +1477,7 @@ end function rh_map ! only called by moisture_map ! 0.00399 0.0, 0.004 0.0, 0.2 1.0 !> condensate_map() @memberof SeverityMaps +!> @return condensate_map() Condensate map real function condensate_map(v) implicit none real, intent(in) :: v @@ -1492,6 +1498,7 @@ end function condensate_map ! 243.150 0.0, 265.15 1.0, 269.15 1.0, 270.15 0.87 ! 271.15 0.71, 272.15 0.50, 273.15 0.0 !> convect_t_map() @memberof SeverityMaps + !> @return convect_t_map Convection and temperature mapping ? real function convect_t_map(v) implicit none real, intent(in) :: v @@ -1517,6 +1524,7 @@ end function convect_t_map ! 1.0 0.0, 3.0 1.0 !> convect_qpf_map() @memberof SeverityMaps + !> @return convect_qpf_map Convection and quantitative precipitation forecast (QPF) mapping ? real function convect_qpf_map(v) implicit none real, intent(in) :: v @@ -1531,6 +1539,7 @@ end function convect_qpf_map ! 1000.0 0.0, 2500.0 1.0 !> convect_cape_map() @memberof SeverityMaps + !> @return convect_cape_map Convection and Convective Available Potential Energy (CAPE) mapping? real function convect_cape_map(v) implicit none real, intent(in) :: v @@ -1547,6 +1556,7 @@ end function convect_cape_map ! -10.0 1.0, 0.0 0.0 !> convect_liftedIdx_map() @memberof SeverityMaps + !> @return convect_liftedIdx_map Convection and lifted index mapping ? real function convect_liftedIdx_map(v) implicit none real, intent(in) :: v @@ -1562,6 +1572,7 @@ end function convect_liftedIdx_map ! 20.0 0.0, 40.0 1.0 !> convectkIdx_map() @memberof SeverityMaps + !> @return convectkIdx_map Convection and k-index mapping ? real function convect_kIdx_map(v) implicit none real, intent(in) :: v @@ -1576,6 +1587,7 @@ end function convect_kIdx_map ! 20.0 0.0, 55.0 1.0 !> convect_totals_map() @memberof SeverityMaps + !> @return convect_totals_map _____? real function convect_totals_map(v) implicit none real, intent(in) :: v @@ -1622,7 +1634,7 @@ module IcingSeverity contains !-----------------------------------------------------------------------+ -!> @brief icing_sev() calculates icing severity. +!> @brief icing_sev() Calculates icing severity. !> !> @param[in] imp_physics integer Microphysics scheme. !> @param[in] hgt real Geopotential height (m). @@ -2427,12 +2439,12 @@ subroutine icing_algo(i,j,pres,temp,rh,hgt,omega,wh,& end subroutine icing_algo !-------------------------------------------------------------------------+ -!> getTopoK() Map the topography height to the model's vertical coordinate +!> getTopoK() Maps the topography height to the model's vertical coordinate !> !> @param[in] hgt real Geopotential height (m). !> @param[in] alt real Topography height (m). !> @param[in] nz integer Number of vertical levels. -!> @return getTopoK integer +!> @return getTopoK Mapping of the topography height to the model's vertical coordinates !> integer function getTopoK(hgt, alt, nz) IMPLICIT NONE diff --git a/sorc/ncep_post.fd/GFSPOSTSIG.F b/sorc/ncep_post.fd/GFSPOSTSIG.F index 033c04007..c703eef0a 100644 --- a/sorc/ncep_post.fd/GFSPOSTSIG.F +++ b/sorc/ncep_post.fd/GFSPOSTSIG.F @@ -1,40 +1,6 @@ !> @file !> -!> @brief rtsig() reads and transforms sigma file. -!> -!> This subprogram reads a sigma file and transforms -!> the fields to a designated global grid. -!> Add Iredells subroutine to read sigma files. -!> -!> @param[out] lusig integer(sigio_intkind) sigma file unit number. -!> @param[out] head type(sigio_head) sigma file header. -!> @param[out] k1 integer first model level to return. -!> @param[out] k2 integer last model level to return. -!> @param[out] kgds integer (200) GDS to which to transform. -!> @param[out] ijo integer dimension of output fields. -!> @param[out] levs integer number of total vertical levels. -!> @param[out] ntrac integer number of output tracers. -!> @param[out] jcap integer number of waves. -!> @param[out] lnt2 integer (jcap+1)*(jcap+2). -!> @param[out] h real (ijo) surface orography (m). -!> @param[out] p real (ijo) surface pressure (Pa). -!> @param[out] px real (ijo) log surface pressure x-gradient (1/m). -!> @param[out] py real (ijo) log surface pressure y-gradient (1/m). -!> @param[out] t real (ijo,k1:k2) temperature (K). -!> @param[out] tx real (ijo,k1:k2) virtual temperature x-gradient (K/m). -!> @param[out] ty real (ijo,k1:k2) virtual temperature y-gradient (K/m). -!> @param[out] u real (ijo,k1:k2) x-component wind (m/s). -!> @param[out] v real (ijo,k1:k2) y-component wind (m/s). -!> @param[out] d real (ijo,k1:k2) wind divergence (1/s). -!> @param[out] trc real (ijo,k1:k2,ntrac) tracers. -!>
-!>                                   1 = specific humidity (kg/kg)
-!>                                   2 = Ozone mixing ratio (kg/kg)
-!>                                   3 = cloud condensate mixing ratio (kg/kg)
-!>                                       atomic oxyge, oxygen etc
-!>
-!>
-!> @param[out] iret Integer return code. +!> @brief RTSIG reads a sigma file and transforms the fields to a designated global grid. !> !> ### Program History Log !> Date | Programmer | Comments @@ -47,10 +13,8 @@ !> 2014-02-20 | Shrinivas Moorthi | Modified conversion from spectral to grid taking advantage of threding in SP library. This really speeds up the code. Also threaded loop for Temperature from Tv !> !> @author Mark Iredell np23 @date 1999-10-18 - -! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -!> rtsig() reads and transforms sigma file. -!> +!------------------------------------------------------------------------------------------ +!> @brief Reads and transforms a sigma file. !> @param[out] lusig integer(sigio_intkind) sigma file unit number. !> @param[out] head type(sigio_head) sigma file header. !> @param[out] k1 integer first model level to return. @@ -58,10 +22,10 @@ !> @param[out] kgds integer (200) GDS to which to transform. !> @param[out] ijo integer dimension of output fields. !> @param[out] levs integer number of total vertical levels. +!> @param[in] me integer MPI rank. !> @param[out] ntrac integer number of output tracers. !> @param[out] jcap integer number of waves. !> @param[out] lnt2 integer (jcap+1)*(jcap+2). -!> @param[in] me integer !> @param[out] h real (ijo) surface orography (m). !> @param[out] p real (ijo) surface pressure (Pa). !> @param[out] px real (ijo) log surface pressure x-gradient (1/m). @@ -71,26 +35,13 @@ !> @param[out] v real (ijo,k1:k2) y-component wind (m/s). !> @param[out] d real (ijo,k1:k2) wind divergence (1/s). !> @param[out] trc real (ijo,k1:k2,ntrac) tracers. -!>
+!> 
 !>                                   1 = specific humidity (kg/kg)
 !>                                   2 = Ozone mixing ratio (kg/kg)
 !>                                   3 = cloud condensate mixing ratio (kg/kg)
 !>                                       atomic oxyge, oxygen etc
-!>
-!>
+!>
!> @param[out] iret Integer return code. -!> -!> ### Program History Log -!> Date | Programmer | Comments -!> -----|------------|--------- -!> 1999-10-18 | Mark Iredell | Initial -!> 2013-04-19 | Jun Wang | Add option to get tmp and ps(in pascal) from enthalpy and ps(cb) option -!> 2013-05-06 | Shrinivas Moorthi | Initialize midea to 0 -!> 2013-05-07 | Shrinivas Moorthi | Remove mo3, mct, midea and define io3, ict etc correctly and get correct cloud condensate. -!> 2013-08-02 | Shrinivas Moorthi | Rewrote the whole routine to read the sigma file differently and to read all tracers. Added sptezj for two 2d fields -!> 2014-02-20 | Shrinivas Moorthi | Modified conversion from spectral to grid taking advantage of threding in SP library. This really speeds up the code. Also threaded loop for Temperature from Tv -!> -!> @author Mark Iredell np23 @date 1999-10-18 subroutine rtsig(lusig,head,k1,k2,kgds,ijo,levs,ntrac,jcap,lnt2,me, & h,p,px,py,t,u,v,d,trc,iret) @@ -267,7 +218,7 @@ subroutine rtsig(lusig,head,k1,k2,kgds,ijo,levs,ntrac,jcap,lnt2,me, & end subroutine ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -!> modstuff() computes model coordinate dependent functions. +!> @brief Computes model coordinate dependent functions. !> !> This subprogram computes fields which depend on the model coordinate !> such as pressure thickness and vertical velocity. @@ -342,7 +293,7 @@ subroutine modstuff(km,idvc,idsl,nvcoord,vcoord,ps,psx,psy,d,u,v,& end subroutine !------------------------------------------------------------------------------- -!> modstuff2() computes model coordinate dependent functions. +!> @brief Computes model coordinate dependent functions. !> !> This subprogram computes fields which depend on the model coordinate !> such as pressure thickness and vertical velocity. @@ -447,7 +398,7 @@ subroutine modstuff2(im,ix,km,idvc,idsl,nvcoord,vcoord,ps,psx,psy,d,u,v,& end subroutine !----------------------------------------------------------------------- -!> trssc() transforms sigma spectral fields to grid. +!> @brief Transforms sigma spectral fields to grid. !> !> Transforms sigma spectral fields to grid and converts !> log surface pressure to surface pressure and virtual temperature @@ -659,7 +610,7 @@ subroutine trssc(jcap,nc,km,ntrac,idvc,idvm,idsl,nvcoord,vcoord, & return end !----------------------------------------------------------------------- -!> getomega() computes omega. +!> @brief Computes omega. !> !> @param[in] jcap integer spectral truncation. !> @param[in] nc integer first dimension (nc>=(jcap+1)*(jcap+2)). diff --git a/sorc/ncep_post.fd/IFI.F b/sorc/ncep_post.fd/IFI.F index 3c726597e..aa94a8c03 100644 --- a/sorc/ncep_post.fd/IFI.F +++ b/sorc/ncep_post.fd/IFI.F @@ -1,3 +1,5 @@ +!> @file +!> @brief upp_ifi_mod declares variables used in the in-flight icing (IFI) routines. module upp_ifi_mod #ifdef USE_IFI @@ -14,13 +16,13 @@ module upp_ifi_mod public run_ifi, set_ifi_dims, ifi_real_t, write_ifi_debug_files, & first_supported_ifi_hour, last_supported_ifi_hour - logical :: write_ifi_debug_files = .false. - real, parameter :: first_supported_ifi_hour = 1 - real, parameter :: last_supported_ifi_hour = 21 + logical :: write_ifi_debug_files = .false. !< Whether to output IFI debug files (true) or not (false) + real, parameter :: first_supported_ifi_hour = 1 !< First supported in-flight icing hour + real, parameter :: last_supported_ifi_hour = 21 !< Last supported in-flight icing hour #ifndef USE_IFI ! Stubs need their own version of the ifi_real_t since it is defined in ifi_type_mod - integer, parameter :: ifi_real_t = c_float + integer, parameter :: ifi_real_t = c_float !< Value used to make public UPP code run #else ! Actual IFI code needs a few more module-scope variables. @@ -121,7 +123,7 @@ end subroutine send_missing_data #ifndef USE_IFI ! IFI stubs - +!> @brief Contains stub values for flight levels, which are used in public UPP subroutine set_ifi_dims() use CTLBLK_mod, only: ifi_nflight, ifi_flight_levels implicit none @@ -139,9 +141,8 @@ subroutine set_ifi_dims() end subroutine set_ifi_dims ! -------------------------------------------------------------------- - +!> @brief Fills in any requested IFI fields with stub values for missing data. subroutine run_ifi() - ! Fill any requested IFI fields with missing data. call send_missing_data(1007) ! ICE_PROB = missing call send_missing_data(1008) ! SLD = missing call send_missing_data(1009) ! ICE_SEV_CAT = missing @@ -695,7 +696,7 @@ subroutine scatter_ifi(local_buf_c,global_buf_c,sending_rank_c)bind(C) end subroutine scatter_ifi ! -------------------------------------------------------------------- - +!> @brief run_ifi() runs the IFI code. subroutine run_ifi() use ctlblk_mod, only: spval, lm, lp1, im, jsta_2l,jend_2u, ITPREC, IFHR, IFMIN, grib, & jm, jsta,jend, me, num_procs, mpi_comm_comp, ista, iend, ista_2l, iend_2u, dtq2 diff --git a/sorc/ncep_post.fd/INITPOST_MPAS.F b/sorc/ncep_post.fd/INITPOST_MPAS.F new file mode 100644 index 000000000..c70354260 --- /dev/null +++ b/sorc/ncep_post.fd/INITPOST_MPAS.F @@ -0,0 +1,3205 @@ +!> @file +!> @brief initpost_mpas() initializes UPP for MPAS / MPASSIT output +!> +!> @author Jaymes Kenyon (GSL) @date 2024-08-30 +! +!> This routine initializes constants and variables +!> when using UPP on MPAS model output. Specifcally, +!> it processes output from netCDF files that have been +!> generated by MPASSIT. MPASSIT reads MPAS output +!> from an unstructured mesh and interpolates the output onto +!> a structured grid. Since many MPASSIT array names +!> follow WRF-ARW conventions, this routine (INITPOST_MPAS) +!> was adapted from INITPOST, which was used to process +!> WRF-ARW output. +!> +!> ### Program History Log +!> Date | Programmer | Comments +!> -----|------------|--------- +!> 2024-08-14 | Jaymes Kenyon| Copied INITPOST as INITPOST_MPAS (reference INITPOST history prior to this date) +!> 2024-08-30 | Jaymes Kenyon| Add processing for lat-lon projection +!> 2024-08-30 | Jaymes Kenyon| Add temporary hard coding of SLLEVEL (for RUC LSM) and PREC_ACC_DT +!> +!> @author Jaymes Kenyon (GSL) @date 2024-08-14 + + SUBROUTINE INITPOST_MPAS + + use vrbls4d, only: dust, smoke + use vrbls3d, only: t, u, uh, v, vh, wh, q, pmid, t, omga, pint, alpint, & + qqr, qqs, qqi, qqg, qqnw, qqni,qqnr, cwm, qqw, qqi, qqr, qqs, extcof55,& + f_ice, f_rain, f_rimef, q2, zint, zmid, ttnd, cfr, cfr_raw, qc_bl, REF_10CM, & + qqnwfa,qqnifa,taod5503d,aextc55 + use vrbls2d, only: tmax, qrmax, htop, hbot, cuppt, fis, cfrach, cfracl, & + sr, cfrach, cfracm, wspd10max, w_up_max, w_dn_max, w_mean, refd_max, & + up_heli_max, up_heli_max16, grpl_max, up_heli, up_heli16, & + up_heli_min,up_heli_min16,up_heli_max02,up_heli_min02, & + up_heli_max03,up_heli_min03,rel_vort_max,rel_vort_max01, & + wspd10umax,wspd10vmax,refdm10c_max, & + hail_max2d,hail_maxk1,hail_maxhailcast,ltg1_max, & + ltg2_max, ltg3_max, nci_ltg, nca_ltg, nci_wq, nca_wq, nci_refd, & + u10, v10, th10, q10, tshltr, mrshltr, & + nca_refd, qv2m, qshltr, smstav, smstot, ssroff, bgroff, sfcevp, & + sfcexc, vegfrc, acsnow, cmc, sst, thz0, qz0, uz0, vz0, qs, qvg, & + z0, ustar, akhs, akms, radot, ths, acsnom, cuprec, ancprc, acprec, & + rainc_bucket, pcp_bucket, cprate, prec, snownc, snow_bucket, & + graup_bucket, swddni, swddif, mean_frp, acgraup, acfrain, & + graupelnc, albedo, rswin, rswout, swdnbc, swddnic, & + swddifc, swupbc, swupt, czen, czmean, rlwin, lwdnbc, lwupbc, & + rainnc_bucket, taod5502d, aerasy2d, aerssa2d, lwp, iwp, & + sigt4, rlwtoa, rswinc, aswin, aswout, alwin, alwout, alwtoa, aswtoa, & + tg, soiltb, twbs, qwbs,grnflx, sfcshx, sfclhx, subshx, snopcx, & + sfcuvx, potevp, ncfrcv, ncfrst, sno, si, pctsno, snonc, tsnow, & + ivgtyp, isltyp, islope, pblh, pblhgust, f, & + QVl1,REFC_10CM,REF1KM_10CM,REF4KM_10CM, & + SWRADmean,U10mean,V10mean,SPDUV10mean,SWNORMmean,SNFDEN,SNDEPAC, & + hbotd,hbots,rainc_bucket1,rainnc_bucket1,pcp_bucket1,snow_bucket1, & + graup_bucket1, shdmin, shdmax, lai, htopd,htops + use soil, only: smc, sh2o, stc, sldpth, sllevel + use masks, only: lmv, lmh, vtm, sice, gdlat, gdlon, sm, dx, dy, htm + use ctlblk_mod, only: jsta_2l, jend_2u, filename, datahandle, datestr, & + ihrst, imin, idat, sdat, ifhr, ifmin, imp_physics, jsta, jend, & + spval,gdsdegr, modelname, pt, icu_physics, jsta_m, jend_m, nsoil, & + isf_surface_physics, nsoil, ardlw, ardsw, asrfc, me, mpi_comm_comp, & + nphs, smflag, spl, lsm, dt, prec_acc_dt, dtq2, tsrfc, trdlw, & + trdsw, theat, tclod, tprec, nprec, alsl, im, jm, lm, grib, & + prec_acc_dt1, submodelname + use params_mod, only: capa, g, rd, d608, tfrz, ad05, cft0, stbol, & + p1000, pi, rtd, lheat, dtr, erad + use lookup_mod, only: thl, plq, ptbl, ttbl, rdq, rdth, rdp, rdthe, pl, & + qs0, sqs, sthe, the0, ttblq, rdpq, rdtheq, stheq, the0q + use gridspec_mod, only: gridtype, dxval, latstart, latlast, lonstart, & + lonlast, dyval, cenlat, cenlon, maptype, truelat1, truelat2, & + standlon, psmapf + use wrf_io_flags_mod, only: +!- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + implicit none +! +! INCLUDE/SET PARAMETERS. +! + INCLUDE "mpif.h" +! +! This version of INITPOST shows how to initialize, open, read from, and +! close a NetCDF dataset. In order to change it to read an internal (binary) +! dataset, do a global replacement of _ncd_ with _int_. + + character(len=31) :: VarName + integer :: Status + character startdate*19,SysDepInfo*80 +! +! NOTE: SOME INTEGER VARIABLES ARE READ INTO DUMMY ( A REAL ). THIS IS OK +! AS LONG AS REALS AND INTEGERS ARE THE SAME SIZE. +! +! ALSO, EXTRACT IS CALLED WITH DUMMY ( A REAL ) EVEN WHEN THE NUMBERS ARE +! INTEGERS - THIS IS OK AS LONG AS INTEGERS AND REALS ARE THE SAME SIZE. + + INTEGER IDATE(8),JDATE(8) +! +! DECLARE VARIABLES. +! + REAL RINC(5) + REAL DUMMY ( IM, JM ) + REAL DUMMY2 ( IM, JM ) + real, allocatable:: msft(:,:) + INTEGER IDUMMY ( IM, JM ) + REAL,allocatable :: DUM3D ( :, :, : ) +! REAL DUM3D2 ( IM+1, JM+1, LM+1 ) + real, allocatable:: pvapor(:,:) + real, allocatable:: pvapor_orig(:,:) + REAL, ALLOCATABLE :: THV(:,:,:) + + integer js,je,jev,iyear,imn,iday,itmp,ioutcount,istatus, & + ii,jj,ll,i,j,l,nrdlw,nrdsw,n,igdout,irtn,idyvald, & + idxvald,NSRFC , lflip, k, k1 + real DZ,TSPH,TMP,QMEAN,PVAPORNEW,DUMCST,TLMH,RHO,ZSF,ZPBLTOP + real t2,th2,x2m,p2m,tsk, fact, temp + real LAT + + integer jdn, numr, ic, jc, ierr + integer, external :: iw3jdn + real sun_zenith,sun_azimuth, ptop_low, ptop_mid, ptop_high + real delta_theta4gust +! +! +!*********************************************************************** +! START INIT HERE. +! + ALLOCATE ( THV(IM,JSTA_2L:JEND_2U,LM) ) + ALLOCATE ( DUM3D ( IM+1, JM+1, LM+1 ) ) + if (me==0) WRITE(6,*)'INITPOST_MPAS: ENTER INITPOST_MPAS' +! + gridtype='A' + hbotd=0 + hbots=0 + htopd=0 + htops=0 + ttnd=0 + qs=0 +! STEP 1. READ MODEL OUTPUT FILE +! +! +!*** +! +! LMH always = LM for sigma-type vert coord +! LMV always = LM for sigma-type vert coord + + do j = jsta_2l, jend_2u + do i = 1, im + LMV ( i, j ) = lm + LMH ( i, j ) = lm + end do + end do + + +! HTM VTM all 1 for sigma-type vert coord + + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + HTM ( i, j, l ) = 1.0 + VTM ( i, j, l ) = 1.0 + end do + end do + end do +! +! how do I get the filename? +! fileName = '/ptmp/wx20mb/wrfout_01_030500' +! DateStr = '2002-03-05_18:00:00' +! how do I get the filename? + call ext_ncd_ioinit(SysDepInfo,Status) +! print*,'called ioinit', Status + call ext_ncd_open_for_read( trim(fileName), 0, 0, " ", & + DataHandle, Status) +! print*,'called open for read', Status + if ( Status /= 0 .and. me == 0 ) then + print*,'error opening ',fileName, ' Status = ', Status ; stop + endif +! get date/time info +! this routine will get the next time from the file, not using it +! print *,'DateStr before calling ext_ncd_get_next_time=',DateStr +! call ext_ncd_get_next_time(DataHandle, DateStr, Status) +! print *,'DateStri,Status,DataHandle = ',DateStr,Status,DataHandle + +! The end j row is going to be jend_2u for all variables except for V. + JS=JSTA_2L + JE=JEND_2U + IF (JEND_2U==JM) THEN + JEV=JEND_2U+1 + ELSE + JEV=JEND_2U + ENDIF +! +! Getting start time +#ifdef COMMCODE + call ext_ncd_get_dom_ti_char(DataHandle,'SIMULATION_START_DATE', & + startdate, status ) +#else + call ext_ncd_get_dom_ti_char(DataHandle,'START_DATE',startdate, & + status ) +#endif + if (me==0) print*,'startdate= ',startdate + jdate=0 + idate=0 + read(startdate,15)iyear,imn,iday,ihrst,imin + 15 format(i4,1x,i2,1x,i2,1x,i2,1x,i2) + if (me==0) then + print*,'start yr mo day hr min=',iyear,imn,iday,ihrst,imin + print*,'processing yr mo day hr min=' & + ,idat(3),idat(1),idat(2),idat(4),idat(5) + endif + idate(1)=iyear + idate(2)=imn + idate(3)=iday + idate(5)=ihrst + idate(6)=imin + SDAT(1)=imn + SDAT(2)=iday + SDAT(3)=iyear + jdate(1)=idat(3) + jdate(2)=idat(1) + jdate(3)=idat(2) + jdate(5)=idat(4) + jdate(6)=idat(5) +! CALL W3DIFDAT(JDATE,IDATE,2,RINC) +! ifhr=nint(rinc(2)) + CALL W3DIFDAT(JDATE,IDATE,0,RINC) + ifhr=nint(rinc(2)+rinc(1)*24.) + ifmin=nint(rinc(3)) + if (me==0) print*,' in INITPOST_MPAS ifhr ifmin fileName=',ifhr,ifmin,fileName +! OK, since all of the variables are dimensioned/allocated to be +! the same size, this means we have to be careful int getVariable +! to not try to get too much data. For example, +! DUM3D is dimensioned IM+1,JM+1,LM+1 but there might actually +! only be im,jm,lm points of data available for a particular variable. + + call ext_ncd_get_dom_ti_integer(DataHandle,'MP_PHYSICS' & + ,itmp,1,ioutcount,istatus) + imp_physics=itmp + if (me==0) print*,'MP_PHYSICS= ',itmp + +! Initializes constants for Ferrier microphysics + if(imp_physics==5 .or. imp_physics==85 .or. imp_physics==95)then + CALL MICROINIT(imp_physics) + end if + + call ext_ncd_get_dom_ti_integer(DataHandle,'CU_PHYSICS' & + ,itmp,1,ioutcount,istatus) + icu_physics=itmp + if (me==0) print*,'CU_PHYSICS= ',icu_physics + +! get 3-D variables + if (me==0) print*,'im,jm,lm= ',im,jm,lm + ii=im/2 + jj=(jsta+jend)/2 + ll=lm + + VarName='T' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + t ( i, j, l ) = dum3d ( i, j, l ) + 300. +! JSK (2 Aug 2024): The VarName 'T' is the perturbation potential +! temperature; the addition of 300 K yields the full potential +! temperature. Further below, after the read-in of hydrostatic +! pressure, the potential temperature array is converted to ordinary +! temperature, but remains designated as "T". + end do + end do + end do + + do l=1,lm + end do + VarName='U' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM+1,JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im+1 + u ( i, j, l ) = dum3d ( i, j, l ) + end do + end do +! fill up UH which is U at P-points including 2 row halo + do j = jsta_2l, jend_2u + do i = 1, im + UH (I,J,L) = (dum3d(I,J,L)+dum3d(I+1,J,L))*0.5 + end do + end do + end do +! if(jj>= jsta .and. jj<=jend)print*,'sample U= ',U(ii,jj,ll) + VarName='V' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JEV,LM) + do l = 1, lm + do j = jsta_2l, jev + do i = 1, im + v ( i, j, l ) = dum3d ( i, j, l ) + end do + end do +! fill up VH which is V at P-points including 2 row halo + do j = jsta_2l, jend_2u + do i = 1, im + VH(I,J,L) = (dum3d(I,J,L)+dum3d(I,J+1,L))*0.5 + end do + end do + end do +! if(jj>= jsta .and. jj<=jend)print*,'sample V= ',V(ii,jj,ll) + + VarName='W' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM+1) +! do l = 1, lm+1 +! do j = jsta_2l, jend_2u +! do i = 1, im +! w ( i, j, l ) = dum3d ( i, j, l ) +! end do +! end do +! end do +! fill up WH which is W at P-points including 2 row halo + DO L=1,LM + DO I=1,IM + DO J=JSTA_2L,JEND_2U + WH(I,J,L) = (DUM3D(I,J,L)+DUM3D(I,J,L+1))*0.5 + ENDDO + ENDDO + ENDDO + !print*,'finish reading W' + + VarName='QVAPOR' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im +!HC q ( i, j, l ) = dum3d ( i, j, l ) +!HC CONVERT MIXING RATIO TO SPECIFIC HUMIDITY +!mhu check !!!! if (dum3d(i,j,l) < 10E-12) dum3d(i,j,l) = 10E-12 + q ( i, j, l ) = dum3d ( i, j, l )/(1.0+dum3d ( i, j, l )) + end do + end do + end do + !print*,'finish reading mixing ratio' +! if(jj>= jsta .and. jj<=jend)print*,'sample Q= ',Q(ii,jj,ll) + +! DCD 4/3/13 +! previously initialized PMID from sum of base-state (PB) and +! perturbation (P) pressure now initializing PMID from +! hydrostatic pressure (P_HYD), motivated particularly by 0h HRRR +! VarName='PB' + VarName='P_HYD' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) +! VarName='P' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D2, & +! IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im +! PMID(I,J,L)=DUM3D(I,J,L)+DUM3D2(I,J,L) + PMID(I,J,L)=DUM3D(I,J,L) + thv ( i, j, l ) = T(I,J,L)*(Q(I,J,L)*0.608+1.) +! now that I have P, convert theta to t + t ( i, j, l ) = T(I,J,L)*(PMID(I,J,L)*1.E-5)**CAPA +! now that I have T,q,P compute omega from wh + if(abs(t( i, j, l ))>1.0e-3) & + omga(I,J,L) = -WH(I,J,L)*pmid(i,j,l)*G/ & + (RD*t(i,j,l)*(1.+D608*q(i,j,l))) +! seperate rain from snow and cloud water from cloud ice for WSM3 scheme +! if(imp_physics == 3)then +! if(t(i,j,l) < TFRZ)then +! qqs(i,j,l)=qqr(i,j,l) +! qqi(i,j,l)=qqw(i,j,l) +! end if +! end if + end do + end do + end do +!tgs - 6 June 2012 - added check on monotonic PMID + do l = 2, lm-1 + ll=lm-l+1 + do j = jsta_2l, jend_2u + do i = 1, im + if((PMID(I,J,ll-1) - PMID(I,J,ll))>=0.) then +! write(*,*) 'non-monotonic PMID, i,j,ll ', i,j,ll +! write(*,*) 'PMID: ll-1,ll,ll+1', PMID(I,J,LL-1) & +! ,PMID(I,J,LL), PMID(I,J,LL+1) + + PMID(I,J,LL)=0.5*(PMID(I,J,LL+1)+PMID(I,J,LL-1)) + +! write(*,*) 'after adjustment-i,j,ll ', i,j,ll +! write(*,*) 'PMID: ll-1,ll,ll+1', PMID(I,J,LL-1) & +! ,PMID(I,J,LL), PMID(I,J,LL+1) + endif + end do + end do + end do +! +! check the lowest level too: set l=1, then extroplate the lowest level +! based on znu +! znu(lm)=0.9990000, znu(lm-1)=0.9960001, znu(lm-2)=0.9905000 +! P(lm)=p(lm-2) + (p(lm-1)-p(lm-2))*(znu(lm)-znu(lm-2))/ & +! (znu(lm-1)-znu(lm-2)) +! where: (znu(lm)-znu(lm-2))/(znu(lm-1)-znu(lm-2))=17/11 +! Thus: P(lm)=p(lm-2) + (p(lm-1)-p(lm-2))*17/11 +! =p(lm-1) + (p(lm-1)-p(lm-2))*6/11 + fact=6.0/11.0 + ll=lm + do j = jsta_2l, jend_2u + do i = 1, im + if((PMID(I,J,ll-1) - PMID(I,J,ll))>=0.) then + ! write(*,*) 'non-monotonic PMID, i,j,ll ', i,j,ll + ! write(*,*) 'PMID: ll-2,ll-1,ll', PMID(I,J,LL-2) & + ! ,PMID(I,J,LL-1), PMID(I,J,LL) + + PMID(I,J,LL)=PMID(I,J,ll-1) + & + fact*(PMID(I,J,LL-1)-PMID(I,J,LL-2)) + + ! write(*,*) 'after adjustment-i,j,ll ', i,j,ll + ! write(*,*) 'PMID: ll-2,ll-1,ll', PMID(I,J,LL-2) & + ! ,PMID(I,J,LL-1), PMID(I,J,LL) + endif + end do + end do + +! end check + + DO L=2,LM + DO I=1,IM + DO J=JSTA_2L,JEND_2U + PINT(I,J,L)=(PMID(I,J,L-1)+PMID(I,J,L))*0.5 + ALPINT(I,J,L)=ALOG(PINT(I,J,L)) + ENDDO + ENDDO + ENDDO +!--- Compute max temperature in the column up to level 20 +!--- to be used later in precip type computation + do j = jsta_2l, jend_2u + do i = 1, im + tmax(i,j)=0. + end do + end do + + do l = 2,20 + lflip = lm - l + 1 + do j = jsta_2l, jend_2u + do i = 1, im + tmax(i,j)=max(tmax(i,j),t(i,j,lflip)) + end do + end do + end do + + +! Brad comment out the output of individual species for Ferriers scheme within +! ARW in Registry file + + qqw=0. + qqr=0. + qqs=0. + qqi=0. + qqg=0. + qqni=0. + qqnr=0. + cwm=0. + +! extinction coef for aerosol + extcof55=0. + aextc55=0. + + if(imp_physics/=5 .and. imp_physics/=0)then + VarName='QCLOUD' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im +! partition cloud water and ice for WSM3 + if(imp_physics==3)then + if(t(i,j,l) >= TFRZ)then + qqw ( i, j, l ) = dum3d ( i, j, l ) + else + qqi ( i, j, l ) = dum3d ( i, j, l ) + end if + else ! bug fix provided by J CASE + qqw ( i, j, l ) = dum3d ( i, j, l ) + end if + end do + end do + end do +! if(jj>= jsta .and. jj<=jend) +! + print*,'sample QCLOUD= ',QQW(ii,jj,ll) +! print*,'finish reading cloud mixing ratio' + end if + + + + if(imp_physics/=1 .and. imp_physics/=3 & + .and. imp_physics/=5 .and. imp_physics/=0)then + VarName='QICE' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + qqi ( i, j, l ) = dum3d ( i, j, l ) + end do + end do + end do +! if(jj>= jsta .and. jj<=jend) +! + print*,'sample QICE= ',qqi(ii,jj,ll) + end if + + + if(imp_physics/=5 .and. imp_physics/=0)then + VarName='QRAIN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im +! partition rain and snow for WSM3 + if(imp_physics == 3)then + if(t(i,j,l) >= TFRZ)then + qqr ( i, j, l ) = dum3d ( i, j, l ) + else + qqs ( i, j, l ) = dum3d ( i, j, l ) + end if + else ! bug fix provided by J CASE + qqr ( i, j, l ) = dum3d ( i, j, l ) + end if + dummy(i,j)=dum3d(i,j,l) + end do + end do +! print*,'max rain water= ',l,maxval(dummy) + end do +! if(jj>= jsta .and. jj<=jend) +! + print*,'sample QRAIN= ',qqr(ii,jj,ll) +!tgs +! Compute max QRAIN in the column to be used later in precip type computation + do j = jsta_2l, jend_2u + do i = 1, im + qrmax(i,j)=0. + end do + end do + + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + qrmax(i,j)=max(qrmax(i,j),qqr(i,j,l)) + end do + end do + end do + + end if + + + if(imp_physics/=1 .and. imp_physics/=3 .and. & + imp_physics/=5 .and. imp_physics/=0)then + VarName='QSNOW' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + qqs ( i, j, l ) = dum3d ( i, j, l ) + dummy(i,j)=dum3d(i,j,l) + end do + end do +! print*,'max snow= ',l,maxval(dummy) + end do + end if + + + if(imp_physics==2 .or. imp_physics==6 .or. & + imp_physics==8 .or. imp_physics==9 .or. imp_physics==28)then + VarName='QGRAUP' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + qqg ( i, j, l ) = dum3d ( i, j, l ) + end do + end do + end do +! if(jj>= jsta .and. jj<=jend) +! + print*,'sample QGRAUP= ',qqg(ii,jj,ll) + end if + + if(imp_physics==8 .or. imp_physics==9 .or.imp_physics==28)then + VarName='QNICE' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + qqni ( i, j, l ) = dum3d ( i, j, l ) + !if(i==im/2.and.j==(jsta+jend)/2)print*,'sample QQNI= ', & + ! i,j,l,QQNI ( i, j, l ) + end do + end do + end do + VarName='QNRAIN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + qqnr ( i, j, l ) = dum3d ( i, j, l ) + !if(i==im/2.and.j==(jsta+jend)/2)print*,'sample QQNR= ', & + ! i,j,l,QQNR ( i, j, l ) + end do + end do + end do + end if + +! For aerosol aware microphyscis + if(imp_physics==28) then + VarName='QNCLOUD' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + qqnw ( i, j, l ) = dum3d ( i, j, l ) + !if(i==im/2.and.j==(jsta+jend)/2)print*,'sample QQNW= ', & + ! i,j,l,QQNW ( i, j, l ) + end do + end do + end do + VarName='QNWFA' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + qqnwfa ( i, j, l ) = dum3d ( i, j, l ) + !if(i==im/2.and.j==(jsta+jend)/2)print*,'sample QQNWFA= ', & + ! i,j,l,QQNWFA ( i, j, l ) + end do + end do + end do + VarName='QNIFA' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + qqnifa ( i, j, l ) = dum3d ( i, j, l ) + !if(i==im/2.and.j==(jsta+jend)/2)print*,'sample QQNIFA= ', & + ! i,j,l,QQNIFA ( i, j, l ) + end do + end do + end do + end if + +! Read in extinction coefficient for aerosol at 550 nm +! VarName='EXTCOF55' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & +! IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! do l = 1, lm +! do j = jsta_2l, jend_2u +! do i = 1, im +! extcof55 ( i, j, l ) = dum3d ( i, j, l ) +! end do +! end do +! end do +! print*,'finish reading EXTCOF55' + + if(imp_physics/=5)then +!HC SUM UP ALL CONDENSATE FOR CWM + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + IF(QQR(I,J,L)=0.) then + ! write(*,*) 'non-monotonic PINT, i,j,lm ', i,j,lm + ! write(*,*) 'PINT: lm,lm+1, PMID: lm', PINT(I,J,LM),DUMMY(I,J), PMID(I,J,LM) + DUMMY(I,J)=PMID(I,J,LM)*1.001 + ! write(*,*) 'after adjustment-i,j,lm+1 ', i,j,lm+1,DUMMY(I,J) + endif + PINT(I,J,LM+1)=DUMMY(I,J) + ALPINT(I,J,LM+1)=ALOG(PINT(I,J,LM+1)) + ENDDO + ENDDO + + ELSE +!!!!!!!!!!!!! +! Pyle's and Chuang's fixes for ARW SLP + + allocate(pvapor(IM,jsta_2l:jend_2u)) + allocate(pvapor_orig(IM,jsta_2l:jend_2u)) + DO J=jsta,jend + DO I=1,IM + + + pvapor(I,J)=0. + do L=1,LM + dz=ZINT(I,J,L)-ZINT(I,J,L+1) + rho=PMID(I,J,L)/(RD*T(I,J,L)) + + + if (L <= LM-1) then + QMEAN=0.5*(Q(I,J,L)+Q(I,J,L+1)) + else + QMEAN=Q(I,J,L) + endif + + + pvapor(I,J)=pvapor(I,J)+G*rho*dz*QMEAN + enddo + +! test elim +! pvapor(I,J)=0. + + + pvapor_orig(I,J)=pvapor(I,J) + + + ENDDO + ENDDO + + do L=1,405 + call exch(pvapor(1,jsta_2l)) + do J=JSTA_M,JEND_M + do I=2,IM-1 + + pvapornew=AD05*(4.*(pvapor(I-1,J)+pvapor(I+1,J) & + +pvapor(I,J-1)+pvapor(I,J+1)) & + +pvapor(I-1,J-1)+pvapor(I+1,J-1) & + +pvapor(I-1,J+1)+pvapor(I+1,J+1)) & + -CFT0*pvapor(I,J) + + pvapor(I,J)=pvapornew + + enddo + enddo + enddo ! iteration loop + +! southern boundary + if (JS == 1) then + J=1 + do I=2,IM-1 + pvapor(I,J)=pvapor_orig(I,J)+(pvapor(I,J+1)-pvapor_orig(I,J+1)) + enddo + endif + +! northern boundary + + if (JE == JM) then + J=JM + do I=2,IM-1 + pvapor(I,J)=pvapor_orig(I,J)+(pvapor(I,J-1)-pvapor_orig(I,J-1)) + enddo + endif + +! western boundary + I=1 + do J=JS,JE + pvapor(I,J)=pvapor_orig(I,J)+(pvapor(I+1,J)-pvapor_orig(I+1,J)) + enddo + +! eastern boundary + I=IM + do J=JS,JE + pvapor(I,J)=pvapor_orig(I,J)+(pvapor(I-1,J)-pvapor_orig(I-1,J)) + enddo + + DO J=Jsta,jend + DO I=1,IM + PINT(I,J,LM+1)=PINT(I,J,LM+1)+PVAPOR(I,J) +! KRF - check surface pressure for monotonic correctness + + if((PINT(I,J,lm) - PINT(I,J,LM+1))>=0. ) then + ! write(*,*) 'non-monotonic PINT, i,j,lm ', i,j,lm + ! write(*,*) 'PINT: lm,lm+1, PMID: lm', PINT(I,J,LM), PINT(I,J,LM+1), PMID(I,J,LM) + PINT(I,J,LM+1) = PINT(I,J,LM)*1.001 + ! write(*,*) 'after adjustment-i,j,lm+1 PINT ', i,j,lm+1, PINT(I,J,LM+1) + endif + ALPINT(I,J,LM+1)=ALOG(PINT(I,J,LM+1)) + ENDDO + ENDDO + + deallocate(pvapor) + deallocate(pvapor_orig) + + ENDIF ! IF(MODELNAME == 'RAPR')THEN + +!!!!!!!!!!!!! + IF(MODELNAME == 'RAPR')THEN +!integrate heights hydrostatically + do j = js, je + do i = 1, im + ZINT(I,J,LM+1)=FIS(I,J)/G + DUMMY(I,J)=FIS(I,J) + !if(i==im/2.and.j==(jsta+jend)/2) & + ! print*,'i,j,L,ZINT from unipost= ',i,j,LM+1,ZINT(I,J,LM+1)& + ! ,ALPINT(I,J,LM+1),ALPINT(I,J,LM) + end do + end do + DO L=LM,1,-1 + do j = js, je + do i = 1, im + DUMMY2(I,J)=HTM(I,J,L)*T(I,J,L)*(Q(I,J,L)*D608+1.0)*RD* & + (ALPINT(I,J,L+1)-ALPINT(I,J,L))+DUMMY(I,J) +! compute difference between model and unipost heights: + DUM3D(I,J,L)=ZINT(I,J,L)-DUMMY2(I,J)/g +! now replace model heights with unipost heights + ZINT(I,J,L)=DUMMY2(I,J)/G + !if(i==im/2.and.j==(jsta+jend)/2) & + ! print*,'i,j,L,ZINT from unipost= ',i,j,l,ZINT(I,J,L) + DUMMY(I,J)=DUMMY2(I,J) + ENDDO + ENDDO + END DO + !DO L=LM,1,-1 + ! do j = js, je + ! do i = 1, im + ! if(i==im/2.and.j==(jsta+jend)/2) then + ! print*,'DIFF heights model-unipost= ', & + ! i,j,l,DUM3D(I,J,L) + ! endif + ! ENDDO + ! ENDDO + !END DO + + if (me==0) print*,'Finished deriving geopotential in RAPR application' + + ENDIF ! IF(MODELNAME == 'RAPR')THEN + + + IF(MODELNAME == 'RAPR')THEN + + DO L=1,LM-1 + DO I=1,IM + DO J=JS,JE + FACT=(ALOG(PMID(I,J,L))-ALPINT(I,J,L))/ & + max(1.e-6,(ALPINT(I,J,L+1)-ALPINT(I,J,L))) + ZMID(I,J,L)=ZINT(I,J,L)+(ZINT(I,J,L+1)-ZINT(I,J,L))*FACT + dummy(i,j)=ZMID(I,J,L) + !if((ALPINT(I,J,L+1)-ALPINT(I,J,L)) < 1.e-6) print*, & + ! 'P(K+1) and P(K) are too close, i,j,L,', & + ! 'ALPINT(I,J,L+1),ALPINT(I,J,L),ZMID = ', & + ! i,j,l,ALPINT(I,J,L+1),ALPINT(I,J,L),ZMID(I,J,L) + ENDDO + ENDDO + !print*,'max/min ZMID= ',l,maxval(dummy),minval(dummy) + ENDDO + + DO I=1,IM + DO J=JS,JE + DO L=1,LM + ZINT(I,J,L+1) =AMIN1(ZINT(I,J,L)-2.,ZINT(I,J,L+1)) + ZMID(I,J,L)=(ZINT(I,J,L+1)+ZINT(I,J,L))*0.5 ! ave of z + ENDDO + dummy(i,j)=ZMID(I,J,LM) + ENDDO + ENDDO + !print*,'max/min ZMID= ',lm,maxval(ZMID(1:im,js:je,lm)), & + ! minval(ZMID(1:im,js:je,lm)) + ELSE + + DO L=1,LM + DO I=1,IM + DO J=JS,JE + ZMID(I,J,L)=(ZINT(I,J,L+1)+ZINT(I,J,L))*0.5 ! ave of z +! if(i==297.and.j==273) & +! print*,'i,j,L,ZMID = ', & +! i,j,l,ZMID(I,J,L) + ENDDO + ENDDO + ENDDO + ENDIF ! IF(MODELNAME == 'RAPR')THEN + +! +! E. James - 8 Dec 2017: this is for HRRR-smoke; it needs to be after ZINT +! is defined. +! + if(imp_physics==28) then + VarName='AOD3D_SMOKE' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM, JS,JE,LM) + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + taod5503d ( i, j, l ) = dum3d ( i, j, l ) + dz = ZINT( i, j, l ) - ZINT( i, j, l+1 ) + aextc55 ( i, j, l ) = taod5503d ( i, j, l ) / dz + + if( me==0 .and. i==im/2 .and. j==(jsta+jend)/2 ) then + print*,'sample TAOD5503D= ',i,j,l,TAOD5503D( i, j, l ) + print*,'sample dz= ',dz + print*,'sample AEXTC55= ',i,j,l,AEXTC55( i, j, l ) + endif + end do + end do + end do + end if + +! get 3-d soil variables + VarName='SMOIS' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,NSOIL) + do l = 1, nsoil + do j = jsta_2l, jend_2u + do i = 1, im +! smc ( i, j, l ) = dum3d ( i, j, l ) +! flip soil layer again because wrf soil variable vertical indexing +! is the same with eta and vertical indexing was flipped for both +! atmospheric and soil layers within getVariable + smc ( i, j, l ) = dum3d ( i, j, nsoil-l+1) + end do + end do + end do + + VarName='SH2O' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,NSOIL) + do l = 1, nsoil + do j = jsta_2l, jend_2u + do i = 1, im + sh2o ( i, j, l ) = dum3d ( i, j, nsoil-l+1) + end do + end do + end do + + VarName='SEAICE' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + + do j = jsta_2l, jend_2u + do i = 1, im + SICE( i, j ) = dummy ( i, j ) + end do + end do + + VarName='TSLB' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,NSOIL) + do l = 1, nsoil + do j = jsta_2l, jend_2u + do i = 1, im +! stc ( i, j, l ) = dum3d ( i, j, l ) + stc ( i, j, l ) = dum3d ( i, j, nsoil-l+1) + end do + end do + end do + +! bitmask out high, middle, and low cloud cover + do j = jsta_2l, jend_2u + do i = 1, im + CFRACH ( i, j ) = SPVAL/100. + CFRACL ( i, j ) = SPVAL/100. + CFRACM ( i, j ) = SPVAL/100. + end do + end do + + do l = 1, lm + do j = jsta_2l, jend_2u + do i = 1, im + CFR( i, j, l ) = SPVAL + end do + end do + end do + + VarName='SR' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SR( i, j ) = dummy ( i, j ) + end do + end do + +! WRF EM outputs 3D cloud cover now + IF(MODELNAME == 'RAPR')THEN + VarName='CLDFRA_BL' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im + CFR ( i, j, l ) = dum3d ( i, j, l ) + end do + end do + end do + ELSE + VarName='CLDFRA' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im + CFR ( i, j, l ) = dum3d ( i, j, l ) + end do + end do + end do + END IF + + VarName='QC_BL' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, +! & IM,1,JM,1,IM,JS,JE,1) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im + QC_BL ( i, j, l ) = dum3d ( i, j, l ) + end do + end do + end do + +#ifdef COMMCODE + IF(MODELNAME == 'NCAR' .OR. MODELNAME == 'RAPR')THEN + if(imp_physics/=5 .and. imp_physics/=0)then +#else + IF(MODELNAME == 'RAPR')THEN +! J. Kenyon - 4 Apr 2019: revised cloud-cover diagnostics for RAP/HRRR +#endif + PTOP_LOW = 64200. + PTOP_MID = 35000. + PTOP_HIGH = 15000. + + do j = jsta_2l, jend_2u + do i = 1, im + CFRACL(I,J)=0. + CFRACM(I,J)=0. + CFRACH(I,J)=0. + + do k = 1,lm + if (PMID(I,J,K) >= PTOP_LOW) then + CFRACL(I,J)=max(CFRACL(I,J),cfr(i,j,k)) + elseif (PMID(I,J,K) < PTOP_LOW .and. PMID(I,J,K) >= PTOP_MID) then + CFRACM(I,J)=max(CFRACM(I,J),cfr(i,j,k)) + elseif (PMID(I,J,K) < PTOP_MID .and. PMID(I,J,K) >= PTOP_HIGH) then + CFRACH(I,J)=max(CFRACH(I,J),cfr(i,j,k)) + endif + enddo + + enddo + enddo +#ifdef COMMCODE + ENDIF ! Not Ferrier or null mp_physics +#endif + ENDIF ! NCAR or RAPR + +! GRAUP +! E. James - 8 Dec 2017: SMOKE from WRF-CHEM +! + VarName='smoke' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) + do l = 1,lm + do j = jsta_2l, jend_2u + do i = 1, im + SMOKE ( i, j, l, 1) = dum3d ( i, j, l ) + end do + end do + end do +!! +!! E. James - 8 Dec 2017: tracer_2a is anthropogenic aerosol, not used +!! +! VarName='tracer_2a' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & +! IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! do l=1,lm +! do j = jsta_2l, jend_2u +! do i = 1, im +! SMOKE ( i, j, l, 2) = dum3d ( i, j, l ) +! end do +! end do +! end do + +! CRA DUST FROM WRF-CHEM +if(1==2) then + VarName='DUST_1' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, +! & IM,1,JM,1,IM,JS,JE,1) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im +! CLDFRA( i, j ) = dummy ( i, j ) + DUST ( i, j, l, 1) = dum3d ( i, j, l ) + end do + end do + end do + + VarName='DUST_2' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, +! & IM,1,JM,1,IM,JS,JE,1) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im +! CLDFRA( i, j ) = dummy ( i, j ) + DUST ( i, j, l, 2) = dum3d ( i, j, l ) + end do + end do + end do + + VarName='DUST_3' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, +! & IM,1,JM,1,IM,JS,JE,1) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im +! CLDFRA( i, j ) = dummy ( i, j ) + DUST ( i, j, l, 3) = dum3d ( i, j, l ) + end do + end do + end do + + VarName='DUST_4' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, +! & IM,1,JM,1,IM,JS,JE,1) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im +! CLDFRA( i, j ) = dummy ( i, j ) + DUST ( i, j, l, 4) = dum3d ( i, j, l ) + end do + end do + end do + + VarName='DUST_5' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, & + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, +! & IM,1,JM,1,IM,JS,JE,1) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im +! CLDFRA( i, j ) = dummy ( i, j ) + DUST ( i, j, l, 5) = dum3d ( i, j, l ) + end do + end do + end do +! CRA +! For HRRR-CHEM + VarName='PM2_5_DRY' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D,& + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, +! & IM,1,JM,1,IM,JS,JE,1) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im + DUST ( i, j, l, 6) = dum3d ( i, j, l ) + end do + end do + end do + VarName='PM10' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D,& + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, +! & IM,1,JM,1,IM,JS,JE,1) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im + DUST ( i, j, l, 7) = dum3d ( i, j, l ) + end do + end do + end do + + VarName='so2' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D,& + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) +! call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D, +! & IM,1,JM,1,IM,JS,JE,1) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im + DUST ( i, j, l, 8) = dum3d ( i, j, l ) + end do + end do + end do +endif ! 1==2 +! END HRRR-CHEM + +! CRA + +! Soil layer/depth - extract thickness of soil layers from wrf output + SLDPTH=0.0 !Assign bogus value + + ! RUC LSM - use depths of center of soil layer + IF(iSF_SURFACE_PHYSICS==3)then ! RUC LSM + ! call getVariable(fileName,DateStr,DataHandle,'ZS',SLLEVEL, & + ! NSOIL,1,1,1,NSOIL,1,1,1) + ! print*,'SLLEVEL= ',(SLLEVEL(N),N=1,NSOIL) + + ! J. Kenyon / 23 Aug 2024: Assign depths of soil levels for + ! RUC LSM until the 'ZS' array (from MPASSIT) can be correctly read. + ! A similar hard-coding approach is also used in INITPOST_NETCDF. + SLLEVEL = (/ 0.0, 0.01, 0.04, 0.1, 0.3, 0.6, 1.0, 1.6, 3.0 /) + ELSE + call getVariable(fileName,DateStr,DataHandle,'DZS',SLDPTH, & + NSOIL,1,1,1,NSOIL,1,1,1) + if (me==0) print*,'SLDPTH= ',(SLDPTH(N),N=1,NSOIL) + END IF + +! SRD +! get 2-d variables + + VarName='WSPD10MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + WSPD10MAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'WSPD10MAX at ',ii,jj,' = ',WSPD10MAX(ii,jj) + + VarName='WSPD10UMAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + WSPD10UMAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'WSPD10UMAX at ',ii,jj,' = ',WSPD10UMAX(ii,jj) + + VarName='WSPD10VMAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + WSPD10VMAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'WSPD10VMAX at ',ii,jj,' = ',WSPD10VMAX(ii,jj) + + VarName='W_UP_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + W_UP_MAX ( i, j ) = dummy ( i, j ) +! print *,' w_up_max, i,j, = ', w_up_max(i,j) + end do + end do +! print*,'W_UP_MAX at ',ii,jj,' = ',W_UP_MAX(ii,jj) + + VarName='W_DN_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + W_DN_MAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'W_DN_MAX at ',ii,jj,' = ',W_DN_MAX(ii,jj) + + VarName='W_MEAN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + W_MEAN ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'W_MEAN at ',ii,jj,' = ',W_MEAN(ii,jj) + + VarName='REFD_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + REFD_MAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'REFD_MAX at ',ii,jj,' = ',REFD_MAX(ii,jj) + + VarName='REFDM10C_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + REFDM10C_MAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'REFDM10C_MAX at ',ii,jj,' = ',REFDM10C_MAX(ii,jj) + + + VarName='UP_HELI_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + UP_HELI_MAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'UP_HELI_MAX at ',ii,jj,' = ',UP_HELI_MAX(ii,jj) + + VarName='UP_HELI_MAX16' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + UP_HELI_MAX16 ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'UP_HELI_MAX16 at ',ii,jj,' = ',UP_HELI_MAX16(ii,jj) + + VarName='UP_HELI_MIN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + UP_HELI_MIN ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'UP_HELI_MIN at ',ii,jj,' = ',UP_HELI_MIN(ii,jj) + + VarName='UP_HELI_MIN16' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + UP_HELI_MIN16 ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'UP_HELI_MIN16 at ',ii,jj,' = ',UP_HELI_MIN16(ii,jj) + + VarName='UP_HELI_MAX02' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + UP_HELI_MAX02 ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'UP_HELI_MAX02 at ',ii,jj,' = ',UP_HELI_MAX02(ii,jj) + + VarName='UP_HELI_MIN02' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + UP_HELI_MIN02 ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'UP_HELI_MIN02 at ',ii,jj,' = ',UP_HELI_MIN02(ii,jj) + + VarName='UP_HELI_MAX03' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + UP_HELI_MAX03 ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'UP_HELI_MAX03 at ',ii,jj,' = ',UP_HELI_MAX03(ii,jj) + + VarName='UP_HELI_MIN03' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + UP_HELI_MIN03 ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'UP_HELI_MIN03 at ',ii,jj,' = ',UP_HELI_MIN03(ii,jj) + + VarName='REL_VORT_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + REL_VORT_MAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'REL_VORT_MAX at ',ii,jj,' = ',REL_VORT_MAX(ii,jj) + + VarName='REL_VORT_MAX01' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + REL_VORT_MAX01 ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'REL_VORT_MAX01 at ',ii,jj,' = ',REL_VORT_MAX01(ii,jj) + + VarName='GRPL_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + GRPL_MAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'GRPL_MAX at ',ii,jj,' = ',GRPL_MAX(ii,jj) + + + VarName='HAIL_MAXK1' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + HAIL_MAXK1 ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'HAIL_MAXK1 at ',ii,jj,' = ',HAIL_MAXK1(ii,jj) + + VarName='HAIL_MAX2D' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + HAIL_MAX2D ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'HAIL_MAX2D at ',ii,jj,' = ',HAIL_MAX2D(ii,jj) + + VarName='HAILCAST_DIAM_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + HAIL_MAXHAILCAST ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'HAIL_MAXHAILCAST at ',ii,jj,' = ',HAIL_MAXHAILCAST(ii,jj) + + VarName='UH' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + UP_HELI ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'UP_HELI at ',ii,jj,' = ',UP_HELI(ii,jj) + + VarName='UH16' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + UP_HELI16 ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'UP_HELI16 at ',ii,jj,' = ',UP_HELI16(ii,jj) + + VarName='LTG1_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + LTG1_MAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'LTG1_MAX at ',ii,jj,' = ',LTG1_MAX(ii,jj) + + VarName='LTG2_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + LTG2_MAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'LTG2_MAX at ',ii,jj,' = ',LTG2_MAX(ii,jj) + + VarName='LTG3_MAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + LTG3_MAX ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'LTG3_MAX at ',ii,jj,' = ',LTG3_MAX(ii,jj) + + VarName='NCI_LTG' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + NCI_LTG ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'NCI_LTG at ',ii,jj,' = ',NCI_LTG(ii,jj) + + VarName='NCA_LTG' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + NCA_LTG ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'NCA_LTG at ',ii,jj,' = ',NCA_LTG(ii,jj) + + VarName='NCI_WQ' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + NCI_WQ ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'NCI_WQ at ',ii,jj,' = ',NCI_WQ(ii,jj) + + VarName='NCA_WQ' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + NCA_WQ ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'NCA_WQ at ',ii,jj,' = ',NCA_WQ(ii,jj) + + VarName='NCI_REFD' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + NCI_REFD ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'NCI_REFD at ',ii,jj,' = ',NCI_REFD(ii,jj) + + VarName='NCA_REFD' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + NCA_REFD ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'NCA_REFD at ',ii,jj,' = ',NCA_REFD(ii,jj) +! +! SRD +! +! CRA REFLECTIVITY VARIABLES + VarName='REFL_10CM' + call getVariable(fileName,DateStr,DataHandle,VarName,DUM3D,& + IM+1,1,JM+1,LM+1,IM,JS,JE,LM) + do l=1,lm + do j = jsta_2l, jend_2u + do i = 1, im + REF_10CM ( i, j, l) = dum3d ( i, j, l ) + end do + end do + end do + deallocate(DUM3D) + + VarName='COMPOSITE_REFL_10CM' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + REFC_10CM ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='REFL_10CM_1KM' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + REF1KM_10CM ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='REFL_10CM_4KM' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + REF4KM_10CM ( i, j ) = dummy ( i, j ) + end do + end do +! CRA +! get 2-d variables + + VarName='U10' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + IF(SUBMODELNAME == 'RTMA' .and. MODELNAME == 'RAPR')THEN !use 1st level of unstaggered U for U10 + U10 ( i, j ) = uh ( i, j, lm ) + ELSE + U10 ( i, j ) = dummy( i, j ) + ENDIF + end do + end do + VarName='V10' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + IF( SUBMODELNAME == 'RTMA' .and. MODELNAME == 'RAPR')THEN!use 1st level of unstaggered V for V10 + V10 ( i, j ) = vh ( i, j, lm ) + ELSE + V10 ( i, j ) = dummy( i, j ) + ENDIF + end do + end do +! print*,'V10 at ',ii,jj,' = ',V10(ii,jj) + +! RAP/HRRR time-averaged wind + VarName='U10MEAN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + U10mean ( i, j ) = dummy( i, j ) + end do + end do +! print*,'U10mean at ',ii,jj,' = ',U10mean(ii,jj) +! + VarName='V10MEAN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + V10mean ( i, j ) = dummy( i, j ) + end do + end do +! print*,'V10mean at ',ii,jj,' = ',V10mean(ii,jj) +! + VarName='SPDUV10MEAN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SPDUV10mean ( i, j ) = dummy( i, j ) + end do + end do +! print*,'SPDUV10mean at ',ii,jj,' = ',SPDUV10mean(ii,jj) +! + + do j = jsta_2l, jend_2u + do i = 1, im + TH10 ( i, j ) = SPVAL + Q10 ( i, j ) = SPVAL + end do + end do + +! get 2-m theta + VarName='TH2' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + TSHLTR ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'TSHLTR at ',ii,jj,' = ',TSHLTR(ii,jj) +! get 2-m mixing ratio + VarName='Q2' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + MRSHLTR ( i, j ) = dummy (i, j ) ! Shelter Mixing ratio + IF(MODELNAME == 'RAPR')THEN +! QV2M = first level QV +! QV2M ( i, j ) = q ( i, j, lm )/(1.-q ( i, j, lm )) ! 1st level mix. ratio +! QSHLTR ( i, j ) = q ( i, j, lm ) ! 1st level spec. humidity +! QV2M = diagnosed in WRF 2-m QV + QV2M ( i, j ) = dummy ( i, j ) ! 2-m mix. ratio + QSHLTR ( i, j ) = dummy ( i, j )/(1.0+dummy ( i, j )) ! 2-m spec. hum. + QVl1 ( i, j ) = q ( i, j, lm ) ! spec. humidity at lev. 1 + ELSE +!HC QSHLTR ( i, j ) = dummy ( i, j ) +!HC CONVERT FROM MIXING RATIO TO SPECIFIC HUMIDITY + QV2M ( i, j ) = dummy ( i, j ) + QSHLTR ( i, j ) = dummy ( i, j )/(1.0+dummy ( i, j )) + ENDIF + end do + end do +! print*,'QSHLTR at ',ii,jj,' = ',QSHLTR(ii,jj) + + IF(MODELNAME == 'RAPR')THEN + VarName='MAVAIL' + ELSE + VarName='SMSTAV' + END IF + + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SMSTAV ( i, j ) = dummy ( i, j ) + end do + end do + +! VarName='SMSTOT' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! SMSTOT ( i, j ) = dummy ( i, j ) +! end do +! end do + +!mhu VarName='SSROFF' + VarName='SFROFF' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SSROFF ( i, j ) = dummy ( i, j ) + end do + end do + VarName='UDROFF' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + BGROFF ( i, j ) = dummy ( i, j ) + end do + end do + +! VarName='SFCEVP' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! SFCEVP( i, j ) = dummy ( i, j ) +! end do +! end do +! print*,'SFCEVP at ',ii,jj,' = ',SFCEVP(ii,jj) + +! VarName='SFCEXC' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! SFCEXC ( i, j ) = dummy ( i, j ) +! end do +! end do + + VarName='VEGFRA' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + VEGFRC ( i, j ) = dummy ( i, j )/100. + end do + end do + if (me==0) print*,'VEGFRC at ',ii,jj,' = ',VEGFRC(ii,jj) + + VarName='SHDMIN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + shdmin ( i, j ) = dummy ( i, j )/100. + end do + end do + if (me==0) print*,'SHDMIN at ',ii,jj,' = ',SHDMIN(ii,jj) + + VarName='SHDMAX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + shdmax ( i, j ) = dummy ( i, j )/100. + end do + end do + if (me==0) print*,'SHDMAX at ',ii,jj,' = ',SHDMAX(ii,jj) + + VarName='LAI' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + lai ( i, j ) = dummy ( i, j ) + end do + end do + if (me==0) print*,'LAI at ',ii,jj,' = ',LAI(ii,jj) + + VarName='ACSNOW' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + ACSNOW ( i, j ) = dummy ( i, j ) + end do + end do + if (me==0) print*,'maxval ACSNOW: ', maxval(ACSNOW) + VarName='ACSNOM' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + ACSNOM ( i, j ) = dummy ( i, j ) + end do + end do + VarName='CANWAT' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + CMC ( i, j ) = dummy ( i, j ) + end do + end do + VarName='SST' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SST ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'SST at ',ii,jj,' = ',sst(ii,jj) + VarName='THZ0' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + THZ0 ( i, j ) = dummy ( i, j ) + end do + end do +! print*,'THZ0 at ',ii,jj,' = ',THZ0(ii,jj) +! VarName='QZ0' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! QZ0 ( i, j ) = dummy ( i, j ) +! end do +! end do +! print*,'QZ0 at ',ii,jj,' = ',QZ0(ii,jj) +! VarName='UZ0' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! UZ0 ( i, j ) = dummy ( i, j ) +! end do +! end do +! print*,'UZ0 at ',ii,jj,' = ',UZ0(ii,jj) +! VarName='VZ0' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! VZ0 ( i, j ) = dummy ( i, j ) +! end do +! end do +! print*,'VZ0 at ',ii,jj,' = ',VZ0(ii,jj) +! VarName='QSFC' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! QS ( i, j ) = dummy ( i, j ) +! QVG ( i, j ) = dummy ( i, j )/(1.-dummy ( i, j )) +! end do +! end do +! print*,'QS at ',ii,jj,' = ',QS(ii,jj) + + IF(MODELNAME == 'RAPR')THEN + VarName='ZNT' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + Z0( i, j ) = dummy ( i, j ) + end do + end do + ELSE + VarName='Z0' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + Z0( i, j ) = dummy ( i, j ) + end do + end do + END IF + +! VarName='USTAR' + VarName='UST' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + USTAR( i, j ) = dummy ( i, j ) + end do + end do +! print*,'USTAR at ',ii,jj,' = ',USTAR(ii,jj) + +! IF(MODELNAME == 'RAPR')THEN +! VarName='FLHC' +! ELSE +! VarName='AKHS' +! ENDIF +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! AKHS ( i, j ) = dummy ( i, j ) +! end do +! end do +! VarName='AKMS' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! AKMS ( i, j ) = dummy ( i, j ) +! end do +! end do + +! +! In my version, variable is TSK (skin temp, not skin pot temp) +! +!mp call getVariable(fileName,DateStr,DataHandle,'THSK',DUMMY, + VarName='TSK' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im +!HC THS ( i, j ) = dummy ( i, j ) ! this is WRONG (should be theta) +!HC CONVERT SKIN TEMPERATURE TO SKIN POTENTIAL TEMPERATURE +! CHC: deriving outgoing longwave fluxes by assuming emmissitivity=1 + RADOT ( i, j ) = DUMMY(i,j)**4.0/STBOL + THS ( i, j ) = dummy ( i, j ) & + *(P1000/PINT(I,J,NINT(LMH(I,J))+1))**CAPA + end do + end do +! print*,'THS at ',ii,jj,' = ',THS(ii,jj) + + VarName='EMISS' + IF(MODELNAME == 'RAPR')THEN +! Update "RADOT" variable (calculated above) using model emissivity + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + RADOT ( i, j ) = RADOT (i, j) * dummy ( i, j ) + end do + end do + END IF + +!C +!CMP +!C +!C RAINC is "ACCUMULATED TOTAL CUMULUS PRECIPITATION" +!C RAINNC is "ACCUMULATED TOTAL GRID SCALE PRECIPITATION" + + if (me==0) write(6,*) 'getting RAINC' + VarName='RAINC' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + CUPREC ( i, j ) = dummy ( i, j ) * 0.001 + end do + end do +! print*,'CUPREC at ',ii,jj,' = ',CUPREC(ii,jj) + if (me==0) write(6,*) 'getting RAINNC' + VarName='RAINNC' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + ANCPRC ( i, j ) = dummy ( i, j )* 0.001 + end do + end do +! print*,'ANCPRC at ',ii,jj,' = ',ANCPRC(ii,jj) + if (me==0) write(6,*) 'past getting RAINNC' + + do j = jsta_2l, jend_2u + do i = 1, im + ACPREC(I,J)=ANCPRC(I,J)+CUPREC(I,J) + end do + end do + +!-- RAINC_bucket is "ACCUMULATED CUMULUS PRECIPITATION OVER BUCKET_DT PERIODS OF TIME" + + if (me==0) write(6,*) 'getting PREC_ACC_C, [mm] ' +! VarName='RAINC_BUCKET' + VarName='PREC_ACC_C' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + rainc_bucket ( i, j ) = dummy ( i, j ) + end do + end do + +!-- RAINC_bucket1 is "ACCUMULATED CUMULUS PRECIPITATION OVER BUCKET_DT1 PERIODS OF TIME" + + if (me==0) write(6,*) 'getting PREC_ACC_C1, [mm] ' + VarName='PREC_ACC_C1' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + rainc_bucket1 ( i, j ) = dummy ( i, j ) + end do + end do + +!-- RAINNC_bucket is "ACCUMULATED GRID SCALE PRECIPITATION OVER BUCKET_DT PERIODS OF TIME" + + if (me==0) write(6,*) 'getting PREC_ACC_NC, [mm]' +! VarName='RAINNC_BUCKET' + VarName='PREC_ACC_NC' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + rainnc_bucket ( i, j ) = dummy ( i, j ) + end do + end do + +!-- RAINNC_bucket1 is "ACCUMULATED GRID SCALE PRECIPITATION OVER BUCKET_DT1 PERIODS OF TIME" + + if (me==0) write(6,*) 'getting PREC_ACC_NC1, [mm]' + VarName='PREC_ACC_NC1' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + rainnc_bucket1 ( i, j ) = dummy ( i, j ) + end do + end do + + do j = jsta_2l, jend_2u + do i = 1, im + PCP_BUCKET(I,J)=rainc_bucket(I,J)+rainnc_bucket(I,J) + PCP_BUCKET1(I,J)=rainc_bucket1(I,J)+rainnc_bucket1(I,J) + end do + end do + + VarName='RAINCV' + DUMMY=0.0 + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im +!-- CPRATE is in [m] per time step + CPRATE ( i, j ) = dummy ( i, j )* 0.001 + end do + end do + + + VarName='RAINNCV' + DUMMY2=0.0 + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY2, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im +!-- PREC is in [m] per time step + prec ( i, j ) = (dummy ( i, j )+dummy2(i,j))* 0.001 + end do + end do + + VarName='SNOWNCV' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im +!-- SNOW is in [m] per time sep + snownc ( i, j ) = dummy ( i, j ) * 0.001 + end do + end do + +!-- SNOW_bucket is "ACCUMULATED GRID SCALE SNOW OVER BUCKET_DT PERIODS OF TIME" + + if (me==0) write(6,*) 'getting SNOW_ACC_NC, [mm] ' +! VarName='SNOW_BUCKET' + VarName='SNOW_ACC_NC' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + snow_bucket ( i, j ) = dummy ( i, j ) + end do + end do + +!-- SNOW_bucket1 is "ACCUMULATED GRID SCALE SNOW OVER BUCKET_DT1 PERIODS OF TIME" + + if (me==0) write(6,*) 'getting SNOW_ACC_NC1, [mm] ' + VarName='SNOW_ACC_NC1' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + snow_bucket1 ( i, j ) = dummy ( i, j ) + end do + end do + +!-- GRAUP_bucket is "ACCUMULATED GRID SCALE GRAUPEL OVER BUCKET_DT PERIODS OF TIME" + + if (me==0) write(6,*) 'getting GRAUP_ACC_NC, [mm] ' + VarName='GRAUP_ACC_NC' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + graup_bucket ( i, j ) = dummy ( i, j ) + end do + end do + +!-- GRAUP_bucket1 is "ACCUMULATED GRID SCALE GRAUPEL OVER BUCKET_DT1 PERIODS OF TIME" + + if (me==0) write(6,*) 'getting GRAUP_ACC_NC1, [mm] ' + VarName='GRAUP_ACC_NC1' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + graup_bucket1 ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='ACGRAUP' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + acgraup ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='ACFRAIN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + acfrain ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='GRAUPELNCV' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im +!-- GRAUPEL in in [m] per time step + graupelnc ( i, j ) = dummy ( i, j ) * 0.001 + end do + end do + + + VarName='ALBSOL' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + ALBEDO ( i, j ) = dummy ( i, j ) + end do + end do +! +! GSD trunk as 2014.4.14 +! VarName='GSW' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY,& +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! RSWIN ( i, j ) = dummy ( i, j ) +! HCHUANG: GSW is actually net downward shortwave in ncar wrf +! RSWIN ( i, j ) = dummy ( i, j )/(1.0-albedo(i,j)) +! RSWOUT ( i, j ) = RSWIN ( i, j ) - dummy ( i, j ) +! end do +! end do + + VarName='SWDOWN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im +! HCHUANG: SWDOWN is actually net downward shortwave in ncar wrf + RSWIN ( i, j ) = dummy ( i, j ) + RSWOUT ( i, j ) = RSWIN ( i, j ) * ALBEDO ( i, j ) + end do + end do + + VarName='SWDDNI' +! Shortwave surface downward direct normal irradiance + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SWDDNI ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='SWDDIF' +! Shortwave surface downward diffuse horizontal irradiance + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SWDDIF ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='SWDNBC' +! Shortwave surface downward clear-sky shortwave irradiance + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SWDNBC ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='SWDDNIC' +! Clear-sky shortwave surface downward direct normal irradiance + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SWDDNIC ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='SWDDIFC' +! Clear-sky shortwave surface downward diffuse horizontal irradiance + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SWDDIFC ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='SWUPBC' +! Clear-sky surface upwelling shortwave flux + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SWUPBC ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='SWUPT' +! Upward shortwave flux at top of atmosphere + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SWUPT ( i, j ) = dummy ( i, j ) + end do + end do + +! +! E. James - 8 Dec 2017: Fire Radiative Power from HRRR-smoke +! + VarName='MEAN_FRP' +! Mean fire radiative power + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + MEAN_FRP ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='TAOD5502D' +! Total aerosol optical depth + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + TAOD5502D ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='AERASY2D' +! Aerosol asymmetry parameter + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + AERASY2D ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='AERSSA2D' +! Aerosol single-scattering albedo + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + AERSSA2D ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='LWP' +! Liquid water path + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + LWP ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='IWP' +! Ice water path + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + IWP ( i, j ) = dummy ( i, j ) + end do + end do + +! time_averaged SWDOWN + VarName='SWRADMEAN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im +! averaged incoming solar radiation + SWRADmean ( i, j ) = dummy ( i, j ) + end do + end do + if (me==0) print*,'SWRADmean at ',ii,jj,' = ',SWRADmean(ii,jj) + +! time_averaged SWNORM + VarName='SWNORMMEAN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im +! averaged incoming solar radiation + SWNORMmean ( i, j ) = dummy ( i, j ) + end do + end do + if (me==0) print*,'SWNORMmean at ',ii,jj,' = ',SWNORMmean(ii,jj) + + VarName='GLW' +! Downwelling longwave flux at surface + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + RLWIN ( i, j ) = dummy ( i, j ) + end do + end do +! ncar wrf does not output sigt4 so make sig4=sigma*tlmh**4 + do j = jsta_2l, jend_2u + do i = 1, im + TLMH=T(I,J,NINT(LMH(I,J))) + SIGT4 ( i, j ) = 5.67E-8*TLMH*TLMH*TLMH*TLMH + end do + end do + + VarName='LWDNBC' +! Clear-sky downwelling longwave flux at surface + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + LWDNBC ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='LWUPBC' +! Clear-sky upwelling longwave flux at surface + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + LWUPBC ( i, j ) = dummy ( i, j ) + end do + end do + +! Top of the atmosphere outgoing LW radiation + VarName='OLR' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + RLWTOA ( i, j ) = dummy ( i, j ) + end do + end do + + +! NCAR WRF does not output accumulated fluxes so set the bitmap of these fluxes to 0 + do j = jsta_2l, jend_2u + do i = 1, im +! RLWTOA(I,J)=SPVAL + RSWINC(I,J)=SPVAL + ASWIN(I,J)=SPVAL + ASWOUT(I,J)=SPVAL + ALWIN(I,J)=SPVAL + ALWOUT(I,J)=SPVAL + ALWTOA(I,J)=SPVAL + ASWTOA(I,J)=SPVAL + ARDLW=1.0 + ARDSW=1.0 + NRDLW=1 + NRDSW=1 + end do + end do + + VarName='TMN' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + TG ( i, j ) = dummy ( i, j ) + SOILTB ( i, j ) = dummy ( i, j ) + end do + end do + + VarName='HFX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + TWBS(I,J)= dummy ( i, j ) +! SFCSHX ( i, j ) = dummy ( i, j ) +! ASRFC=1.0 + end do + end do + +! latent heat flux + IF(iSF_SURFACE_PHYSICS/=3) then + VarName='LH' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + QWBS(I,J) = dummy ( i, j ) +! SFCLHX ( i, j ) = dummy ( i, j ) + end do + end do + else + VarName='QFX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + QWBS(I,J) = dummy ( i, j ) * LHEAT + end do + end do + ENDIF + +! ground heat fluxes + VarName='GRDFLX' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + GRNFLX(I,J) = dummy ( i, j ) + end do + end do + +! NCAR WRF does not output accumulated fluxes so bitmask out these fields + do j = jsta_2l, jend_2u + do i = 1, im + SFCSHX(I,J)=SPVAL + SFCLHX(I,J)=SPVAL + SUBSHX(I,J)=SPVAL + SNOPCX(I,J)=SPVAL + SFCUVX(I,J)=SPVAL + POTEVP(I,J)=SPVAL + NCFRCV(I,J)=SPVAL + NCFRST(I,J)=SPVAL + ASRFC=1.0 + NSRFC=1 + end do + end do + +! VarName='WEASD' +! Snow water equivalent + VarName='SNOW' ! WRF V2 replace WEASD with SNOW + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + if( dummy ( i, j ) <= 5000.0 .and. dummy ( i, j ) >=0.0) then + SNO ( i, j ) = dummy ( i, j ) + elseif( dummy ( i, j ) > 5000.0) then + SNO ( i, j ) = 5000.0 + !write(*,*) 'too large SNOW=',i,j,dummy ( i, j ) + elseif( dummy ( i, j ) < 0.0 ) then + SNO ( i, j ) = 0.0 + write(*,*) 'negative SNOW=',i,j,dummy ( i, j ) + else + SNO ( i, j ) = 0.0 + write(*,*) 'strange SNOW=',i,j,dummy ( i, j ) + endif + end do + end do +! Snow depth + VarName='SNOWH' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + if( dummy ( i, j ) <= 50.0 .and. dummy ( i, j ) >=0.0) then + SI ( i, j ) = dummy ( i, j ) * 1000. + elseif( dummy ( i, j ) > 50.0) then + SI ( i, j ) = 50.0 * 1000. + !write(*,*) 'too large SNOWH=',i,j,dummy ( i, j ) + elseif( dummy ( i, j ) < 0.0 ) then + SI ( i, j ) = 0.0 + write(*,*) 'negative SNOWH=',i,j,dummy ( i, j ) + else + SI ( i, j ) = 0.0 + write(*,*) 'strange SNOWH=',i,j,dummy ( i, j ) + endif + end do + end do + +! snow cover + VarName='SNOWC' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + PCTSNO ( i, j ) = dummy ( i, j ) + end do + end do + +! Accumulated grid-scale snow and ice precipitation + VarName='SNOWNC' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SNONC ( i, j ) = dummy ( i, j ) + end do + end do + +! snowfall density + VarName='RHOSNF' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SNFDEN ( i, j ) = max(0.,dummy ( i, j )) + end do + end do + if (me==0) print *,' MIN/MAX SNFDEN ',minval(SNFDEN),maxval(SNFDEN) + +! snowfall accumulation + VarName='SNOWFALLAC' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SNDEPAC ( i, j ) = dummy ( i, j ) + end do + end do + if (me==0) print *,' MIN/MAX SNDEPAC ',minval(SNDEPAC),maxval(SNDEPAC) + +! snow temperature at the interface of 2 snow layers + VarName='SOILT1' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + TSNOW ( i, j ) = dummy ( i, j ) + end do + end do + +! GET VEGETATION TYPE + + call getIVariableN(fileName,DateStr,DataHandle,'IVGTYP',IDUMMY, & + IM,1,JM,1,IM,JS,JE,1) +! print*,'sample VEG TYPE',IDUMMY(20,20) + do j = jsta_2l, jend_2u + do i = 1, im + IVGTYP ( i, j ) = idummy ( i, j ) + end do + end do + + VarName='ISLTYP' + call getIVariableN(fileName,DateStr,DataHandle,VarName,IDUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + ISLTYP ( i, j ) = idummy ( i, j ) + end do + end do + if (me==0) print*,'MAX ISLTYP=', maxval(idummy) + +! VarName='ISLOPE' +! call getIVariableN(fileName,DateStr,DataHandle,VarName,IDUMMY, & +! IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! ISLOPE( i, j ) = idummy ( i, j ) +! end do +! end do + + +! XLAND 1 land 2 sea + VarName='XLAND' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + SM ( i, j ) = dummy ( i, j ) - 1.0 + end do + end do + +! PBL depth + VarName='PBLH' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + PBLH ( i, j ) = dummy ( i, j ) + end do + end do + IF(MODELNAME == 'RAPR')THEN +! PBL depth from GSD + delta_theta4gust=0.5 + do j = jsta_2l, jend_2u + do i = 1, im +!! Is there any mixed layer at all? + if (thv(i,j,lm-1) < (thv(i,j,lm) + delta_theta4gust)) then + ZSF=ZINT(I,J,NINT(LMH(I,J))+1) +!! Calculate k1 level as first above PBL top + do 34 k=3,LM + k1 = k +!! - give theta-v at the sfc a 0.5K boost in +!! the PBL height definition + if (thv(i,j,lm-k+1)>(thv(i,j,lm) + delta_theta4gust)) & +! go to 341 + exit + 34 continue + continue + !341 continue + zpbltop = zmid(i,j,lm-k1+1) + & + ((thv(i,j,lm)+delta_theta4gust)-thv(i,j,lm-k1+1)) & + * (zmid(i,j,lm-k1+2)-zmid(i,j,lm-k1+1)) & + / (thv(i,j,lm-k1+2) - thv(i,j,lm-k1+1)) + PBLHGUST ( i, j ) = zpbltop - zsf + else + PBLHGUST ( i, j ) = 0. + endif + end do + end do + ENDIF + + VarName='XLAT' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + GDLAT ( i, j ) = dummy ( i, j ) +! compute F = 2*omg*sin(xlat) + f(i,j) = 1.454441e-4*sin(gdlat(i,j)*DTR) + end do + end do +! pos north +! print*,'GDLAT at ',ii,jj,' = ',GDLAT(ii,jj) +! print*,'read past GDLAT' + VarName='XLONG' + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + GDLON ( i, j ) = dummy ( i, j ) +! if(abs(GDLAT(i,j)-20.0)<0.5 .and. abs(GDLON(I,J) +! 1 +157.0)<5.)print* +! 2 ,'Debug:I,J,GDLON,GDLAT,SM,HGT,psfc= ',i,j,GDLON(i,j) +! 3 ,GDLAT(i,j),SM(i,j),FIS(i,j)/G,PINT(I,j,lm+1) + end do + end do +! print*,'GDLON at ',ii,jj,' = ',GDLON(ii,jj) +! print*,'read past GDLON' +! pos east + call collect_loc(gdlat,dummy) + if(me==0)then + latstart=nint(dummy(1,1)*gdsdegr) + latlast=nint(dummy(im,jm)*gdsdegr) +! print*,'LL corner from model output= ',dummy(1,1) +! print*,'LR corner from model output= ',dummy(im,1) +! print*,'UL corner from model output= ',dummy(1,jm) +! print*,'UR corner from model output= ',dummy(im,jm) + end if + write(6,*) 'laststart,latlast B calling bcast= ',latstart,latlast + call mpi_bcast(latstart,1,MPI_INTEGER,0,mpi_comm_comp,irtn) + call mpi_bcast(latlast,1,MPI_INTEGER,0,mpi_comm_comp,irtn) + write(6,*) 'laststart,latlast A calling bcast= ',latstart,latlast + call collect_loc(gdlon,dummy) + if(me==0)then + if(dummy(1,1)<0.0) dummy(1,1)=360.0+dummy(1,1) + if(dummy(im,jm)<0.0) dummy(im,jm)=360.0+dummy(im,jm) + lonstart=nint(dummy(1,1)*gdsdegr) + lonlast=nint(dummy(im,jm)*gdsdegr) +! print*,'LL corner from model output= ',dummy(1,1) +! print*,'LR corner from model output= ',dummy(im,1) +! print*,'UL corner from model output= ',dummy(1,jm) +! print*,'UR corner from model output= ',dummy(im,jm) + end if + write(6,*)'lonstart,lonlast B calling bcast=',lonstart,lonlast + call mpi_bcast(lonstart,1,MPI_INTEGER,0,mpi_comm_comp,irtn) + call mpi_bcast(lonlast,1,MPI_INTEGER,0,mpi_comm_comp,irtn) + write(6,*)'lonstart,lonlast A calling bcast= ',lonstart,lonlast +! +! obtain map scale factor +! VarName='msft' + VarName='MAPFAC_M' + + allocate(msft(IM,jsta_2l:jend_2u)) + + call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, & + IM,1,JM,1,IM,JS,JE,1) + do j = jsta_2l, jend_2u + do i = 1, im + MSFT ( i, j ) = dummy ( i, j ) + end do + end do + +! physics calling frequency + VarName='STEPBL' + call getIVariableN(fileName,DateStr,DataHandle,VarName,NPHS, & + 1,1,1,1,1,1,1,1) + + +! ncar wrf does not output zenith angle so make czen=czmean so that +! RSWIN can be output normally in SURFCE + IF(MODELNAME /= 'RAPR')THEN + do j = jsta_2l, jend_2u + do i = 1, im + CZEN ( i, j ) = 1.0 + CZMEAN ( i, j ) = CZEN ( i, j ) + end do + end do + ELSE + + jdn=iw3jdn(idat(3),idat(1),idat(2)) + do j=jsta,jend + do i=1,im + call zensun(jdn,float(idat(4)),gdlat(i,j),gdlon(i,j) & + ,pi,sun_zenith,sun_azimuth) + temp=sun_zenith/rtd + czen(i,j)=cos(temp) + CZMEAN ( i, j ) = CZEN ( i, j ) + end do + end do + if (me==0) print*,'sample RAPR zenith angle=',acos(czen(ii,jj))*rtd + ENDIF + + + write(6,*) 'filename in INITPOST_MPAS=', filename,' is' + +! status=nf_open(filename,NF_NOWRITE,ncid) +! write(6,*) 'returned ncid= ', ncid +! status=nf_get_att_real(ncid,varid,'DX',tmp) +! dxval=int(tmp) +! status=nf_get_att_real(ncid,varid,'DY',tmp) +! dyval=int(tmp) +! status=nf_get_att_real(ncid,varid,'CEN_LAT',tmp) +! cenlat=int(1000.*tmp) +! status=nf_get_att_real(ncid,varid,'CEN_LON',tmp) +! cenlon=int(1000.*tmp) +! status=nf_get_att_real(ncid,varid,'TRUELAT1',tmp) +! truelat1=int(1000.*tmp) +! status=nf_get_att_real(ncid,varid,'TRUELAT2',tmp) +! truelat2=int(1000.*tmp) +! status=nf_get_att_real(ncid,varid,'MAP_PROJ',tmp) +! maptype=int(tmp) +! status=nf_close(ncid) + + + call ext_ncd_get_dom_ti_integer(DataHandle,'MAP_PROJ',itmp, & + 1,ioutcount,istatus) + maptype=itmp + write(6,*) 'maptype is ', maptype + + call ext_ncd_get_dom_ti_real(DataHandle,'DX',tmp, & + 1,ioutcount,istatus) + if(maptype==0)then + dxval=tmp*gdsdegr ! grid length in degrees for lat-lon proj + write(6,*) 'dxval= ',tmp + else + dxval=nint(tmp) + write(6,*) 'dxval= ',dxval + endif + + call ext_ncd_get_dom_ti_real(DataHandle,'DY',tmp, & + 1,ioutcount,istatus) + if(maptype==0)then + dyval=tmp*gdsdegr ! grid length in degrees for lat-lon proj + write(6,*) 'dyval= ',tmp + else + dyval=nint(tmp) + write(6,*) 'dyval= ',dyval + endif + + call ext_ncd_get_dom_ti_real(DataHandle,'CEN_LAT',tmp, & + 1,ioutcount,istatus) + cenlat=nint(gdsdegr*tmp) + write(6,*) 'cenlat= ', cenlat + + call ext_ncd_get_dom_ti_real(DataHandle,'CEN_LON',tmp, & + 1,ioutcount,istatus) + if(tmp < 0) tmp=360.0 + tmp + cenlon=nint(gdsdegr*tmp) + write(6,*) 'cenlon= ', cenlon + + call ext_ncd_get_dom_ti_integer(DataHandle,'MAP_PROJ',itmp, & + 1,ioutcount,istatus) + maptype=itmp + write(6,*) 'maptype is ', maptype + + if(maptype/=6)then + call ext_ncd_get_dom_ti_real(DataHandle,'TRUELAT1',tmp, & + 1,ioutcount,istatus) + truelat1=nint(gdsdegr*tmp) + write(6,*) 'truelat1= ', truelat1 + + if(maptype/=2)then !PS projection excluded + call ext_ncd_get_dom_ti_real(DataHandle,'TRUELAT2',tmp, & + 1,ioutcount,istatus) + truelat2=nint(gdsdegr*tmp) + write(6,*) 'truelat2= ', truelat2 + endif + endif + + call ext_ncd_get_dom_ti_real(DataHandle,'STAND_LON',tmp, & + 1,ioutcount,istatus) + if(tmp < 0) tmp=360.0 + tmp + STANDLON=nint(gdsdegr*tmp) + write(6,*) 'STANDLON= ', STANDLON + +! Calculate DX and DY arrays + do j = jsta_2l, jend_2u + do i = 1, im + if(maptype==0)then + ! obatin DX and DY lengths from lat and lon + DX(i,j) = ERAD*COS(GDLAT(i,j)*DTR)*(GDLON(i+1,j)-GDLON(i,j))*DTR + DY(i,j) = ERAD*(GDLAT(i,j+1)-GDLAT(i,j))*DTR + else + ! obatin DX and DY lengths from scale factor + DX(i,j) = dxval/MSFT(i,j) + DY(i,j) = dyval/MSFT(i,j) + end if + end do + end do + ii=im/2 + jj=(jend+jsta)/2 + if (me==0) print*,'Sample dx,dy(meters),msft=',dx(ii,jj),dy(ii,jj),msft(ii,jj) + +! Convert DXVAL and DYVAL for ARW rotated latlon from meters to radian + if(maptype==6)then + dxval=(DXVAL * 360.)/(ERAD*2.*pi)*gdsdegr + dyval=(DYVAL * 360.)/(ERAD*2.*pi)*gdsdegr + + if (me==0) print*,'dx and dy for rotated latlon= ', & + dxval,dyval + end if + +!tgs Define smoothing flag for isobaric output + IF(MODELNAME == 'RAPR')THEN + SMFLAG=.FALSE. + ! J. Kenyon (28 Aug 2024): smoothing is disabled for RAPR. + ! Note that this smoothing flag is present in several + ! subroutines (e.g., MDL2P, MDLFLD, and MAPSSLP). The + ! smoothing operation is formulated using "dxval", which + ! is a domain constant (e.g., 3000 m) that depends on + ! the grid length. The "dxval" value should not be + ! confused with the spatially varying "DX(i,j)" array. + ! + ! If smoothing is reactivated, "dxval" will likely + ! already be correctly specified for some projections + ! (e.g., Lambert conformal). However, "dxval" for + ! other projections (e.g., lat-lon) is expressed as an + ! angular width (in degrees). Accordingly, a suitable + ! "dxval" (distance) will need to be specified for + ! these smoothing instances, or these instances + ! will need to be reformulated without a dependence + ! on "dxval". + ! + ! For the lat-lon projection (maptype=0), the following + ! relationships should convert dxval and dyval from + ! angular (deg) to linear (m) widths and may be useful: + ! + ! if(maptype==0)then + ! dyval=ERAD*dyval/gdsdegr*dtr + ! dxval=ERAD*dxval/gdsdegr*dtr*COS(abs(cenlat/gdsdegr*dtr)) + ! print*,'For lat-lon: using dxval,dyval (meters)=',dxval,dyval + ! endif + ELSE + SMFLAG=.FALSE. + ENDIF + +! generate look up table for lifted parcel calculations + + THL=210. + PLQ=70000. + + CALL TABLE(PTBL,TTBL,PT, & + RDQ,RDTH,RDP,RDTHE,PL,THL,QS0,SQS,STHE,THE0) + + CALL TABLEQ(TTBLQ,RDPQ,RDTHEQ,PLQ,THL,STHEQ,THE0Q) + +! +! + IF(ME==0)THEN + WRITE(6,*)' SPL (POSTED PRESSURE LEVELS) BELOW: ' + WRITE(6,51) (SPL(L),L=1,LSM) + 50 FORMAT(14(F4.1,1X)) + 51 FORMAT(8(F8.1,1X)) + ENDIF +! +! COMPUTE DERIVED TIME STEPPING CONSTANTS. +! +!need to get DT + call ext_ncd_get_dom_ti_real(DataHandle,'DT',tmp,1,ioutcount,istatus) + DT=abs(tmp) + if (me==0) print*,'DT= ',DT + +!need to get period of time for precipitation buckets + !call ext_ncd_get_dom_ti_real(DataHandle,'PREC_ACC_DT',tmp,1,ioutcount,istatus) + !prec_acc_dt=abs(tmp) + prec_acc_dt=360.0 ! temporary hard-coding for MPAS + if (me==0) print*,'PREC_ACC_DT= ',prec_acc_dt + +!need to get period of time for precipitation bucket 1 (15-min precip) +!talk to Tanya about getting this output in wrfout file + prec_acc_dt1=15.0 + if (me==0) print*,'PREC_ACC_DT1= ',prec_acc_dt1 + +! DT = 120. !MEB need to get DT + NPHS = 1 !CHUANG SET IT TO 1 BECAUSE ALL THE INST PRECIP ARE ACCUMULATED 1 TIME STEP + DTQ2 = DT * NPHS !MEB need to get physics DT + TSPH = 3600./DT !MEB need to get DT +! Randomly specify accumulation period because WRF EM does not +! output accumulation fluxes yet and accumulated fluxes are bit +! masked out + + TSRFC=1.0 + TRDLW=1.0 + TRDSW=1.0 + THEAT=1.0 + TCLOD=1.0 + + TPREC=float(NPREC)/TSPH + IF(NPREC==0)TPREC=float(ifhr) !in case buket does not get emptied + if (me==0) print*,'NPREC,TPREC = ',NPREC,TPREC + +!tgs TPREC=float(ifhr) ! WRF EM does not empty precip buket at all + +! TSRFC=float(NSRFC)/TSPH +! TRDLW=float(NRDLW)/TSPH +! TRDSW=float(NRDSW)/TSPH +! THEAT=float(NHEAT)/TSPH +! TCLOD=float(NCLOD)/TSPH +! TPREC=float(NPREC)/TSPH + if (me==0) print*,'TSRFC TRDLW TRDSW= ',TSRFC, TRDLW, TRDSW +!MEB need to get DT + +!how am i going to get this information? +! NPREC = INT(TPREC *TSPH+D50) +! NHEAT = INT(THEAT *TSPH+D50) +! NCLOD = INT(TCLOD *TSPH+D50) +! NRDSW = INT(TRDSW *TSPH+D50) +! NRDLW = INT(TRDLW *TSPH+D50) +! NSRFC = INT(TSRFC *TSPH+D50) +!how am i going to get this information? +! +! IF(ME==0)THEN +! WRITE(6,*)' ' +! WRITE(6,*)'DERIVED TIME STEPPING CONSTANTS' +! WRITE(6,*)' NPREC,NHEAT,NSRFC : ',NPREC,NHEAT,NSRFC +! WRITE(6,*)' NCLOD,NRDSW,NRDLW : ',NCLOD,NRDSW,NRDLW +! ENDIF +! + +! VarName='RAINCV' +! call getVariable(fileName,DateStr,DataHandle,VarName,DUMMY, +! & IM,1,JM,1,IM,JS,JE,1) +! do j = jsta_2l, jend_2u +! do i = 1, im +! CUPPT ( i, j ) = dummy ( i, j )* 0.001*(TRDLW*3600.) +! end do +! end do + + +! COMPUTE DERIVED MAP OUTPUT CONSTANTS. + DO L = 1,LSM + ALSL(L) = ALOG(SPL(L)) + END DO + +! following for hurricane wrf post + +! open(10,file='copygb_hwrf.txt',form='formatted',status='unknown') +! idxvald = abs(LONLAST-LONSTART)/(im-2) +! idyvald = abs(LATLAST-LATSTART)/(jm-2) +! print*,'dxval,dyval in degree',dxval/107000.,dyval/107000. +! print*,'idxvald,idyvald,LATSTART,LONSTART,LATLAST,LONLAST= ', & +! idxvald,idyvald,LATSTART,LONSTART,LATLAST,LONLAST +! write(10,1010) IM-1,JM-1,LATSTART,LONSTART,LATLAST,LONLAST, & +! idxvald,idyvald +! +!1010 format('255 0 ',2(I4,x),I8,x,I9,x,'136 ',I8,x,I9,x, & +! 2(I8,x),'0') +! close (10) +! + DEALLOCATE (THV) + deallocate (msft) + +! +! convert dxval, dyval from meters to millimeters +! (except for lat-lon grids; refer to explantion near the SMFLAG +! specification) + if ((grib=="grib2") .and. (maptype/=0)) then + dxval=dxval*1000. + dyval=dyval*1000. + endif +! + + RETURN + END diff --git a/sorc/ncep_post.fd/INITPOST_NETCDF.f b/sorc/ncep_post.fd/INITPOST_NETCDF.f index 8537de90e..23b1a2e95 100644 --- a/sorc/ncep_post.fd/INITPOST_NETCDF.f +++ b/sorc/ncep_post.fd/INITPOST_NETCDF.f @@ -50,6 +50,13 @@ !> 2024-02-20 | Jaymes Kenyon | Add calculation of PBLHGUST (from INITPOST.F) to support RRFS 10-m wind gust diagnostic !> 2024-03-15 | Wen Meng | Add option to read 3D soil-related variables !> 2024-03-25 | Eric James | Enabling reading of snow melt and surface albedo from RRFS +!> 2024-04-03 | Eric James | Add reading of hourly averaged smoke and dust +!> 2024-04-23 | Eric James | Updating smoke emissions to be 3D variable (ebu_smoke) +!> 2024-05-01 | Eric James | set "prec_acc_dt1" as 15 min for RRFS +!> 2024-05-09 | Eric James | Enable reading of clear-sky downwelling shortwave irradiance +!> 2024-05-10 | Karina Asmar | Read omega from model output and calculate HGT for hydrostatic runs +!> 2024-06-25 | Wen Meng | Add capability to read fhzero as either an integer or float +!> 2024-08-26 | Karina Asmar | Add temporal u/v, speed max wind components at 10m agl !> !> @author Hui-Ya Chuang @date 2016-03-04 !---------------------------------------------------------------------- @@ -63,7 +70,7 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) use netcdf - use vrbls4d, only: dust, SALT, SUSO, SOOT, WASO, smoke, fv3dust, coarsepm, & + use vrbls4d, only: dust, SALT, SUSO, SOOT, WASO, smoke, fv3dust, coarsepm, ebb, & no3,nh4, PP25, PP10 use vrbls3d, only: t, q, uh, vh, pmid, pint, alpint, dpres, zint, zmid, o3, & qqr, qqnr, qqs, qqi, qqni, qqw, qqnw, qqg, qqh, cwm, & @@ -98,7 +105,8 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) alwoutc,alwtoac,aswoutc,aswtoac,alwinc,aswinc,avgpotevp,snoavg, & ti,aod550,du_aod550,ss_aod550,su_aod550,oc_aod550,bc_aod550,prate_max,maod,dustpm10, & dustcb,bccb,occb,sulfcb,sscb,dustallcb,ssallcb,dustpm,sspm,pp25cb,pp10cb,no3cb,nh4cb,& - pwat, ebb, hwp, aqm_aod550, ltg1_max,ltg2_max,ltg3_max, hail_maxhailcast, pblhgust + pwat, hwp, aqm_aod550, ltg1_max,ltg2_max,ltg3_max, hail_maxhailcast, pblhgust, & + smoke_ave, dust_ave, coarsepm_ave, wspd10umax, wspd10vmax use soil, only: sldpth, sllevel, sh2o, smc, stc use masks, only: lmv, lmh, htm, vtm, gdlat, gdlon, dx, dy, hbm2, sm, sice use physcons_post, only: grav => con_g, fv => con_fvirt, rgas => con_rd, & @@ -112,7 +120,7 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) ardsw, asrfc, avrain, avcnvc, theat, gdsdegr, spl, lsm, alsl, im, jm, im_jm, lm, & jsta_2l, jend_2u, nsoil, lp1, icu_physics, ivegsrc, novegtype, nbin_ss, nbin_bc, & nbin_oc, nbin_su, nbin_no3, nbin_nh4, gocart_on,gccpp_on, nasa_on,pt_tbl,hyb_sigp,& - filenameFlux, fileNameAER, & + filenameFlux, fileNameAER, prec_acc_dt1, & iSF_SURFACE_PHYSICS,rdaod, d2d_chem, modelname, aqf_on, & ista, iend, ista_2l, iend_2u,iend_m use gridspec_mod, only: maptype, gridtype, latstart, latlast, lonstart, lonlast, cenlon, & @@ -176,7 +184,8 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) ! ! REAL fhour integer nfhour ! forecast hour from nems io file - integer fhzero !bucket + integer fhzero !bucket in integer + real fhzeror !bucket in real real dtp !physics time step real dz REAL RINC(5) @@ -534,14 +543,14 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) end if if(me==0)print*,'nhcas= ',nhcas if (nhcas == 0 ) then !non-hydrostatic case - nrec=22 + nrec=23 allocate (recname(nrec)) recname=[character(len=20) :: 'ugrd','vgrd','spfh','tmp','o3mr', & 'presnh','dzdt', 'clwmr','dpres', & 'delz','icmr','rwmr', & 'snmr','grle','hail','smoke', & 'dust','coarsepm','ext550', & - 'nicp','water_nc','rain_nc'] + 'ebu_smoke','nicp','water_nc','rain_nc'] else nrec=8 allocate (recname(nrec)) @@ -874,20 +883,21 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) spval,recname(9),dpres(ista_2l,jsta_2l,1),lm) call read_netcdf_3d_para(ncid3d,im,jm,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & spval,recname(10),buf3d(ista_2l,jsta_2l,1),lm) - do l=1,lm - do j=jsta,jend - do i=ista,iend - cwm(i,j,l)=spval +! Asmar - read Omega from model output, otherwise calculate + call read_netcdf_3d_para(ncid3d,im,jm,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & + spval,'omga',omga(ista_2l,jsta_2l,1),lm) + do l=lm,1,-1 + do j=jsta,jend + do i=ista,iend + cwm(i,j,l)=spval ! dong add missing value - if (wh(i,j,l) < spval) then - omga(i,j,l)=(-1.)*wh(i,j,l)*dpres(i,j,l)/abs(buf3d(i,j,l)) - else - omga(i,j,l) = spval - end if -! if(t(i,j,l)>1000.)print*,'bad T ',t(i,j,l) + if(wh(i,j,l) /= spval) then + if (omga(i,j,l) == spval .and. dpres(i,j,l) /= spval .and. buf3d(i,j,l) /=spval) & + omga(i,j,l) = (-1.) * wh(i,j,l) * dpres(i,j,l)/abs(buf3d(i,j,l)) + endif + enddo enddo enddo - enddo call read_netcdf_3d_para(ncid3d,im,jm,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & spval,recname(11),qqi(ista_2l,jsta_2l,1),lm) call read_netcdf_3d_para(ncid3d,im,jm,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & @@ -908,12 +918,14 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) spval,recname(18),coarsepm(ista_2l,jsta_2l,1,1),lm) call read_netcdf_3d_para(ncid2d,im,jm,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & spval,recname(19),ext550(ista_2l,jsta_2l,1),lm) + call read_netcdf_3d_para(ncid2d,im,jm,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & + spval,recname(20),ebb(ista_2l,jsta_2l,1,1),lm) call read_netcdf_3d_para(ncid3d,im,jm,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & - spval,recname(20),qqni(ista_2l,jsta_2l,1),lm) + spval,recname(21),qqni(ista_2l,jsta_2l,1),lm) call read_netcdf_3d_para(ncid3d,im,jm,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & - spval,recname(21),qqnw(ista_2l,jsta_2l,1),lm) + spval,recname(22),qqnw(ista_2l,jsta_2l,1),lm) call read_netcdf_3d_para(ncid3d,im,jm,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & - spval,recname(22),qqnr(ista_2l,jsta_2l,1),lm) + spval,recname(23),qqnr(ista_2l,jsta_2l,1),lm) endif ! Compute max QRAIN in the column to be used later in precip type computation @@ -1069,16 +1081,26 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) call read_netcdf_2d_para(ncid3d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & spval,VarName,hail_maxhailcast(ista_2l,jsta_2l)) if(debugprint)print*,'sample ',VarName,' =',hail_maxhailcast(isa,jsa) -! biomass burning emissions - VarName='ebb_smoke_hr' - call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & - spval,VarName,ebb(ista_2l,jsta_2l)) - if(debugprint)print*,'sample ',VarName,' =',ebb(isa,jsa) ! hourly wildfire potential - VarName='hwp' + VarName='hwp_ave' call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & spval,VarName,hwp(ista_2l,jsta_2l)) if(debugprint)print*,'sample ',VarName,' =',hwp(isa,jsa) +! hourly averaged smoke + VarName='smoke_ave' + call read_netcdf_2d_para(ncid3d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & + spval,VarName,smoke_ave(ista_2l,jsta_2l)) + if(debugprint)print*,'sample ',VarName,' =',smoke_ave(isa,jsa) +! hourly averaged dust + VarName='dust_ave' + call read_netcdf_2d_para(ncid3d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & + spval,VarName,dust_ave(ista_2l,jsta_2l)) + if(debugprint)print*,'sample ',VarName,' =',dust_ave(isa,jsa) +! hourly averaged coarsepm + VarName='coarsepm_ave' + call read_netcdf_2d_para(ncid3d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & + spval,VarName,coarsepm_ave(ista_2l,jsta_2l)) + if(debugprint)print*,'sample ',VarName,' =',coarsepm_ave(isa,jsa) endif ! lightning threat index 1 @@ -1163,28 +1185,32 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) enddo enddo - do l=lm,1,-1 + do l=lp1,1,-1 do j=jsta,jend do i=ista,iend - if(zint(i,j,l+1)/=spval .and. buf3d(i,j,l)/=spval)then -!make sure delz is positive - zint(i,j,l)=zint(i,j,l+1)+abs(buf3d(i,j,l)) -! if(zint(i,j,l)>1.0E6)print*,'bad H ',i,j,l,zint(i,j,l) - else - zint(i,j,l)=spval - end if + alpint(i,j,l)=log(pint(i,j,l)) end do end do - if(debugprint)print*,'sample zint= ',isa,jsa,l,zint(isa,jsa,l) end do - do l=lp1,1,-1 +! Asmar - fix HGT for hydrostatic runs + do l=lm,1,-1 do j=jsta,jend do i=ista,iend - alpint(i,j,l)=log(pint(i,j,l)) - end do - end do - end do + if(wh(i,j,l) /= spval) then +! make sure delz is positive + zint(i,j,l) = abs(buf3d(i,j,l)) + zint(i,j,l+1) + else + if(zint(i,j,l+1) /=spval .and. t(i,j,l) /= spval .and. alpint(i,j,l+1) /= spval & + .and. alpint(i,j,l) /=spval .and. q(i,j,l) /= spval) then + zint(i,j,l) = zint(i,j,l+1)+(rgas/grav)*t(i,j,l)*(1.+fv*q(i,j,l))*(alpint(i,j,l+1)-alpint(i,j,l)) + else + zint(i,j,l) = spval + endif + endif + enddo + enddo + enddo do l=lm,1,-1 do j=jsta,jend @@ -1624,12 +1650,19 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) end if if (me == 0) print*,'novegtype= ',novegtype + !Read fhzero as integer Status=nf90_get_att(ncid2d,nf90_global,'fhzero',fhzero) if (Status /= 0) then - print*,'fhzero not found-Assigned 3 hours as default' - fhzero=3 + !Read fhzero as real + Status=nf90_get_att(ncid2d,nf90_global,'fhzero',fhzeror) + if (Status /= 0) then + print*,'fhzero not found-Assigned 3 hours as default' + fhzeror=3. + endif + else + fhzeror=float(fhzero) end if - if (me == 0) print*,'fhzero= ',fhzero +! if(me==0)print*,'fhzeror= ',fhzeror ! Status=nf90_get_att(ncid2d,nf90_global,'dtp',dtp) if (Status /= 0) then @@ -1642,7 +1675,7 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) CALL MICROINIT(imp_physics) end if - tprec = float(fhzero) + tprec = fhzeror ! if(ifhr>240)tprec=12. tclod = tprec trdlw = tprec @@ -1652,6 +1685,7 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) td3d = tprec !print*,'tprec = ',tprec + prec_acc_dt1=15.0 VarName='refl_10cm' call read_netcdf_3d_para(ncid2d,im,jm,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & @@ -1965,12 +1999,27 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & spval,VarName,v10max) if(debugprint)print*,'sample ',VarName,' = ',v10max(isa,jsa) -! max hourly 10m agl wind speed - VarName='spd10max' +! max 10m agl wind speed + if (modelname=='FV3R') then + VarName='spd10max' ! hourly max wind speed at 10m + else if (modelname=='GFS') then + VarName='wind10m_max' ! temporal max wind speed at 10m + endif call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & spval,VarName,wspd10max) if(debugprint)print*,'sample ',VarName,' = ',wspd10max(isa,jsa) +! max temporal u comp of 10m agl wind + VarName='u10m_max' + call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & + spval,VarName,wspd10umax) + if(debugprint)print*,'sample ',VarName,' = ',u10max(isa,jsa) +! max temporal v comp of 10m agl wind + VarName='v10m_max' + call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & + spval,VarName,wspd10vmax) + if(debugprint)print*,'sample ',VarName,' = ',v10max(isa,jsa) + ! inst snow water eqivalent using nemsio VarName='weasd' call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & @@ -2758,6 +2807,11 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & spval,VarName,rswin) +! inst incoming clear sky sfc shortwave + VarName='dswrf_clr' + call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & + spval,VarName,rswinc) + ! inst incoming direct beam sfc shortwave VarName='visbmdi' call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & @@ -2773,15 +2827,6 @@ SUBROUTINE INITPOST_NETCDF(ncid2d,ncid3d) call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & spval,VarName,xlaixy) -! inst incoming clear sky sfc shortwave -! FV3 do not output instant incoming clear sky sfc shortwave - !$omp parallel do private(i,j) - do j=jsta_2l,jend_2u - do i=ista_2l,iend_2u - rswinc(i,j) = spval - enddo - enddo - ! time averaged incoming sfc uv-b using getgb VarName='duvb_ave' call read_netcdf_2d_para(ncid2d,ista,ista_2l,iend,iend_2u,jsta,jsta_2l,jend,jend_2u, & diff --git a/sorc/ncep_post.fd/LOOKUP.f b/sorc/ncep_post.fd/LOOKUP.f index 927b4d12f..c55eda980 100644 --- a/sorc/ncep_post.fd/LOOKUP.f +++ b/sorc/ncep_post.fd/LOOKUP.f @@ -1,15 +1,33 @@ +!> @file +!> @brief lookup_mod defines variables used to create lookup tables for pressure, temperature, and specific humidity. module lookup_mod ! implicit none ! - integer,parameter :: ITB=076,JTB=134,ITBQ=152,JTBQ=440 - real :: PL,THL,RDQ,RDTH,RDP,RDTHE,PLQ,RDPQ,RDTHEQ + integer,parameter :: ITB=076, & !< Table horizontal size (i index) + JTB=134, & !< Table vertical size (j index) + ITBQ=152, & !< _____? + JTBQ=440 !< _____? + + + real :: PL & !< Lower bound of pressure range + ,THL & !< Lower bound of potential temperature range + ,RDQ & !< Scaling factor for specific humidity + ,RDTH & !< Scaling factor for potential temperature + ,RDP & !< Scaling factor for pressure + ,RDTHE & !< Scaling factor for equivalent potential temperature + ,PLQ & !< Lower bound of pressure range for specific humidity _____? + ,RDPQ & !< Scaling factor for pressure and specific humidity _____? + ,RDTHEQ !< Scaling factor for equivalent potential temperature and specific humidity _____? - real,dimension(JTB) :: QS0,SQS - real,dimension(ITB) :: THE0,STHE - real,dimension(ITBQ) :: THE0Q,STHEQ - real,dimension(ITB,JTB) :: PTBL - real,dimension(JTB,ITB) :: TTBL - real,dimension(JTBQ,ITBQ) :: TTBLQ + real,dimension(JTB) :: QS0, & !< Base for specific humidity + SQS !< Scaling factor for specific humidity + real,dimension(ITB) :: THE0, & !< Base for equivalent potential temperature + STHE !< Range for equivalent potential temperature + real,dimension(ITBQ) :: THE0Q, & !< _____? + STHEQ !< _____? + real,dimension(ITB,JTB) :: PTBL !< Saturation pressure table + real,dimension(JTB,ITB) :: TTBL !< Temperature table + real,dimension(JTBQ,ITBQ) :: TTBLQ !< _____? ! end module lookup_mod diff --git a/sorc/ncep_post.fd/MASKS_mod.f b/sorc/ncep_post.fd/MASKS_mod.f index 24f97b4c1..2ce8b9ad2 100644 --- a/sorc/ncep_post.fd/MASKS_mod.f +++ b/sorc/ncep_post.fd/MASKS_mod.f @@ -1,9 +1,19 @@ +!> @file +!> @brief MASKS declares values used in masks module masks ! implicit none ! - REAL, ALLOCATABLE :: HBM2(:,:),SM(:,:),SICE(:,:) & - &,GDLAT(:,:),GDLON(:,:),LMH(:,:),LMV(:,:) & - &,HTM (:,:,:),VTM (:,:,:),DX(:,:),DY(:,:) + REAL, ALLOCATABLE :: HBM2(:,:) & !< _____? + ,SM(:,:) & !< Land-sea mask ? + ,SICE(:,:) & !< Sea ice mask + ,GDLAT(:,:) & !< Grid latitude + ,GDLON(:,:) & !< Grid longitude + ,LMH(:,:) & !< Mass point at ETA surface mask ? + ,LMV(:,:) & !< Velocity point at ETA surface mask ? + ,HTM (:,:,:) & !< Height topography mask array + ,VTM (:,:,:) & !< _____? + ,DX(:,:) & !< Grid spacing in the x-direction ? + ,DY(:,:) !< Grid spacing in the y-direction ? ! end module masks diff --git a/sorc/ncep_post.fd/MDL2P.f b/sorc/ncep_post.fd/MDL2P.f index f61546b9e..7f4f62f7b 100644 --- a/sorc/ncep_post.fd/MDL2P.f +++ b/sorc/ncep_post.fd/MDL2P.f @@ -38,6 +38,7 @@ !> 2023-02-23 | E James | Adding coarse PM from RRFS !> 2023-08-24 | Y Mao | Add gtg_on option for GTG interpolation !> 2023-09-12 | J Kenyon | Prevent spurious supercooled rain and cloud water +!> 2024-04-23 | E James | Adding smoke emissions (ebb) from RRFS !> !> @author T Black W/NP2 @date 1999-09-23 !-------------------------------------------------------------------------------------- @@ -49,11 +50,11 @@ SUBROUTINE MDL2P(iostatusD3D) ! ! - use vrbls4d, only: DUST, SMOKE, FV3DUST, COARSEPM + use vrbls4d, only: DUST, SMOKE, FV3DUST, COARSEPM, EBB use vrbls3d, only: PINT, O3, PMID, T, Q, UH, VH, WH, OMGA, Q2, CWM, & QQW, QQI, QQR, QQS, QQG, DBZ, F_RIMEF, TTND, CFR, & - RLWTT, RSWTT, VDIFFTT, TCUCN, TCUCNS, & - TRAIN, VDIFFMOIS, DCONVMOIS, SCONVMOIS,NRADTT, & + QQNW, QQNI, QQNR, RLWTT, RSWTT, VDIFFTT, TCUCN, & + TCUCNS, TRAIN, VDIFFMOIS, DCONVMOIS, SCONVMOIS,NRADTT,& O3VDIFF, O3PROD, O3TNDY, MWPV, UNKNOWN, VDIFFZACCE, & ZGDRAG, CNVCTVMMIXING, VDIFFMACCE, MGDRAG, & CNVCTUMMIXING, NCNVCTCFRAC, CNVCTUMFLX, CNVCTDETMFLX, & @@ -99,7 +100,7 @@ SUBROUTINE MDL2P(iostatusD3D) &, OSL_OLD, OSL995 & &, ICINGFSL, ICINGVSL REAL, allocatable :: D3DSL(:,:,:), SMOKESL(:,:,:), FV3DUSTSL(:,:,:) & - &, COARSEPMSL(:,:,:) + &, COARSEPMSL(:,:,:), EBBSL(:,:,:) REAL, allocatable :: GTGSL(:,:),CATSL(:,:),MWTSL(:,:) ! integer,intent(in) :: iostatusD3D @@ -118,9 +119,12 @@ SUBROUTINE MDL2P(iostatusD3D) ! QS1 - snow mixing ratio ! QG1 - graupel mixing ratio ! DBZ1 - radar reflectivity +! QQNW1 - number concentration of cloud drops +! QQNI1 - number concentration of ice particles +! QQNR1 - number concentration of rain particles ! REAL, dimension(ista_2l:iend_2u,jsta_2l:jend_2u) :: C1D, QW1, QI1, QR1, QS1, QG1, DBZ1 & - , FRIME, RAD, HAINES + , FRIME, RAD, HAINES, QQNW1, QQNI1, QQNR1 REAL SDUMMY(IM,2) @@ -180,6 +184,15 @@ SUBROUTINE MDL2P(iostatusD3D) enddo enddo enddo + if (.not. allocated(ebbsl)) allocate(ebbsl(im,jm,nbin_sm)) +!$omp parallel do private(i,j,l) + do l=1,nbin_sm + do j=1,jm + do i=1,im + EBBSL(i,j,l) = SPVAL + enddo + enddo + enddo ! For GTG, should run MDL2P interpolation? gtg_interpolation = .false. @@ -230,6 +243,8 @@ SUBROUTINE MDL2P(iostatusD3D) (IGET(391) > 0) .OR. (IGET(392) > 0) .OR. & (IGET(393) > 0) .OR. (IGET(394) > 0) .OR. & (IGET(395) > 0) .OR. (IGET(379) > 0) .OR. & + IGET(1018) > 0 .OR. IGET(1019) > 0 .OR. & + IGET(1020) > 0 .OR. & ! ADD DUST FIELDS (IGET(455) > 0) .OR. & ! Add WAFS hazard fields: Icing and GTG turbulence @@ -285,6 +300,9 @@ SUBROUTINE MDL2P(iostatusD3D) CFRSL(I,J) = SPVAL ICINGFSL(I,J) = SPVAL ICINGVSL(I,J) = SPVAL + QQNW1(I,J) = SPVAL + QQNI1(I,J) = SPVAL + QQNR1(I,J) = SPVAL if (gtg_interpolation) then GTGSL(I,J) = SPVAL @@ -369,7 +387,7 @@ SUBROUTINE MDL2P(iostatusD3D) IF(QQI(I,J,1) < SPVAL) QI1(I,J) = QQI(I,J,1) QI1(I,J) = MAX(QI1(I,J),zero) ! Cloud ice IF(QQR(I,J,1) < SPVAL) QR1(I,J) = QQR(I,J,1) - QR1(I,J) = MAX(QR1(I,J),zero) ! Rain + QR1(I,J) = MAX(QR1(I,J),zero) ! Rain IF(QQS(I,J,1) < SPVAL) QS1(I,J) = QQS(I,J,1) QS1(I,J) = MAX(QS1(I,J),zero) ! Snow (precip ice) IF(QQG(I,J,1) < SPVAL) QG1(I,J) = QQG(I,J,1) @@ -378,6 +396,12 @@ SUBROUTINE MDL2P(iostatusD3D) DBZ1(I,J) = MAX(DBZ1(I,J),DBZmin) IF(F_RimeF(I,J,1) < SPVAL) FRIME(I,J) = F_RimeF(I,J,1) FRIME(I,J) = MAX(FRIME(I,J),H1) + IF(QQNW(I,J,1) < SPVAL) QQNW1(I,J) = QQNW(I,J,1) + QQNW1(I,J) = MAX(QQNW1(I,J),zero) ! Cloud droplet number concentration + IF(QQNI(I,J,1) < SPVAL) QQNI1(I,J) = QQNI(I,J,1) + QQNI1(I,J) = MAX(QQNI1(I,J),zero) ! Ice number concentration + IF(QQNR(I,J,1) < SPVAL) QQNR1(I,J) = QQNR(I,J,1) + QQNR1(I,J) = MAX(QQNR1(I,J),zero) ! Rain number concentration IF(TTND(I,J,1) < SPVAL) RAD(I,J) = TTND(I,J,1) IF(O3(I,J,1) < SPVAL) O3SL(I,J) = O3(I,J,1) IF(CFR(I,J,1) < SPVAL) CFRSL(I,J) = CFR(I,J,1) @@ -395,6 +419,7 @@ SUBROUTINE MDL2P(iostatusD3D) IF(SMOKE(I,J,1,K) < SPVAL) SMOKESL(I,J,K)=SMOKE(I,J,1,K) IF(FV3DUST(I,J,1,K) < SPVAL) FV3DUSTSL(I,J,K)=FV3DUST(I,J,1,K) IF(COARSEPM(I,J,1,K) < SPVAL) COARSEPMSL(I,J,K)=COARSEPM(I,J,1,K) + IF(EBB(I,J,1,K) < SPVAL) EBBSL(I,J,K)=EBB(I,J,1,K) ENDDO ! only interpolate GFS d3d fields when reqested @@ -603,6 +628,18 @@ SUBROUTINE MDL2P(iostatusD3D) FRIME(I,J) = F_RimeF(I,J,LL) + (F_RimeF(I,J,LL) - F_RimeF(I,J,LL-1))*FACT FRIME(I,J)=MAX(FRIME(I,J),H1) + IF(QQNI(I,J,LL) < SPVAL .AND. QQNI(I,J,LL-1) < SPVAL) & + QQNI1(I,J) = QQNI(I,J,LL) + (QQNI(I,J,LL)-QQNI(I,J,LL-1))*FACT + QQNI1(I,J) = MAX(QQNI1(I,J),zero) ! Ice number concentration + + IF(QQNW(I,J,LL) < SPVAL .AND. QQNW(I,J,LL-1) < SPVAL) & + QQNW1(I,J) = QQNW(I,J,LL) + (QQNW(I,J,LL)-QQNW(I,J,LL-1))*FACT + QQNW1(I,J) = MAX(QQNW1(I,J),zero) ! Cloud drop number concentration + + IF(QQNR(I,J,LL) < SPVAL .AND. QQNR(I,J,LL-1) < SPVAL) & + QQNR1(I,J) = QQNR(I,J,LL) + (QQNR(I,J,LL)-QQNR(I,J,LL-1))*FACT + QQNR1(I,J) = MAX(QQNR1(I,J),zero) ! Rain number concentration + IF(TTND(I,J,LL) < SPVAL .AND. TTND(I,J,LL-1) < SPVAL) & RAD(I,J) = TTND(I,J,LL) + (TTND(I,J,LL)-TTND(I,J,LL-1))*FACT @@ -662,6 +699,8 @@ SUBROUTINE MDL2P(iostatusD3D) FV3DUSTSL(I,J,K)=FV3DUST(I,J,LL,K)+(FV3DUST(I,J,LL,K)-FV3DUST(I,J,LL-1,K))*FACT IF(COARSEPM(I,J,LL,K) < SPVAL .AND. COARSEPM(I,J,LL-1,K) < SPVAL) & COARSEPMSL(I,J,K)=COARSEPM(I,J,LL,K)+(COARSEPM(I,J,LL,K)-COARSEPM(I,J,LL-1,K))*FACT + IF(EBB(I,J,LL,K) < SPVAL .AND. EBB(I,J,LL-1,K) < SPVAL) & + EBBSL(I,J,K)=EBB(I,J,LL,K)+(EBB(I,J,LL,K)-EBB(I,J,LL-1,K))*FACT ENDDO ! only interpolate GFS d3d fields when == ested @@ -869,6 +908,9 @@ SUBROUTINE MDL2P(iostatusD3D) QG1(I,J) = 0. DBZ1(I,J) = DBZmin FRIME(I,J) = 1. + QQNW1(I,J) = 0. + QQNI1(I,J) = 0. + QQNR1(I,J) = 0. RAD(I,J) = 0. O3SL(I,J) = O3(I,J,LLMH) IF(CFR(I,J,1) 0) THEN + IF (LVLS(LP,IGET(1018)) > 0) THEN + if(grib == 'grib2')then + cfld = cfld + 1 + fld_info(cfld)%ifld=IAVBLFLD(IGET(1018)) + fld_info(cfld)%lvl=LVLSXML(LP,IGET(1018)) +!$omp parallel do private(i,j,ii,jj) + do j=1,jend-jsta+1 + jj = jsta+j-1 + do i=1,iend-ista+1 + ii=ista+i-1 + datapd(i,j,cfld) = QQNW1(ii,jj) + enddo + enddo + endif + ENDIF + ENDIF +! +!--- Number concentration for ice particles on isobaric surfaces + IF (IGET(1019) > 0) THEN + IF (LVLS(LP,IGET(1019)) > 0) THEN + if(grib == 'grib2')then + cfld = cfld + 1 + fld_info(cfld)%ifld=IAVBLFLD(IGET(1019)) + fld_info(cfld)%lvl=LVLSXML(LP,IGET(1019)) +!$omp parallel do private(i,j,ii,jj) + do j=1,jend-jsta+1 + jj = jsta+j-1 + do i=1,iend-ista+1 + ii=ista+i-1 + datapd(i,j,cfld) = QQNI1(ii,jj) + enddo + enddo + endif + ENDIF + ENDIF +! +!--- Number concentration for rain on isobaric surfaces + IF (IGET(1020) > 0) THEN + IF (LVLS(LP,IGET(1020)) > 0) THEN + if(grib == 'grib2')then + cfld = cfld + 1 + fld_info(cfld)%ifld=IAVBLFLD(IGET(1020)) + fld_info(cfld)%lvl=LVLSXML(LP,IGET(1020)) +!$omp parallel do private(i,j,ii,jj) + do j=1,jend-jsta+1 + jj = jsta+j-1 + do i=1,iend-ista+1 + ii=ista+i-1 + datapd(i,j,cfld) = QQNR1(ii,jj) + enddo + enddo + endif + ENDIF + ENDIF +! !--- Temperature tendency by all radiation: == ested by AFWA IF (IGET(294) > 0) THEN IF (LVLS(LP,IGET(294)) > 0) THEN @@ -2391,6 +2490,30 @@ SUBROUTINE MDL2P(iostatusD3D) cfld = cfld + 1 fld_info(cfld)%ifld=IAVBLFLD(IGET(1013)) fld_info(cfld)%lvl=LVLSXML(LP,IGET(1013)) +!$omp parallel do private(i,j,ii,jj) + do j=1,jend-jsta+1 + jj = jsta+j-1 + do i=1,iend-ista+1 + ii=ista+i-1 + datapd(i,j,cfld) = GRID1(ii,jj) + enddo + enddo + endif + ENDIF + ENDIF +! E. James - 23 Apr 2024: EBB from RRFS + IF (IGET(1016) > 0) THEN + IF (LVLS(LP,IGET(1016)) > 0) THEN +!$omp parallel do private(i,j) + DO J=JSTA,JEND + DO I=ISTA,IEND + GRID1(I,J) = EBBSL(I,J,1)/(1E9) + ENDDO + ENDDO + if(grib == 'grib2')then + cfld = cfld + 1 + fld_info(cfld)%ifld=IAVBLFLD(IGET(1016)) + fld_info(cfld)%lvl=LVLSXML(LP,IGET(1016)) !$omp parallel do private(i,j,ii,jj) do j=1,jend-jsta+1 jj = jsta+j-1 @@ -4200,6 +4323,7 @@ SUBROUTINE MDL2P(iostatusD3D) if(allocated(smokesl)) deallocate(smokesl) if(allocated(fv3dustsl)) deallocate(fv3dustsl) if(allocated(coarsepmsl)) deallocate(coarsepmsl) +if(allocated(ebbsl)) deallocate(ebbsl) ! GTG if(allocated(GTGSL)) deallocate(GTGSL) if(allocated(CATSL)) deallocate(CATSL) diff --git a/sorc/ncep_post.fd/MDLFLD.f b/sorc/ncep_post.fd/MDLFLD.f index 46139ff09..26c756420 100644 --- a/sorc/ncep_post.fd/MDLFLD.f +++ b/sorc/ncep_post.fd/MDLFLD.f @@ -61,6 +61,7 @@ !! 24-01-07 | Y Mao | Add EDPARM IDs to the condition to call gtg_algo() !! 24-01-24 | H Lin | switching GTG max (gtg) to gtgx3 from gtgx2 per gtg_algo() call !! 24-02-20 | J Kenyon | Apply the PBLHGUST-related calculations to RRFS +!! 24-04-23 | E James| Adding smoke emissions (ebb) from RRFS !! !! USAGE: CALL MDLFLD !! INPUT ARGUMENT LIST: @@ -99,7 +100,7 @@ SUBROUTINE MDLFLD ! use vrbls4d, only: dust, salt, suso, waso, soot, no3, nh4, smoke, fv3dust,& - coarsepm + coarsepm, ebb use vrbls3d, only: zmid, t, pmid, q, cwm, f_ice, f_rain, f_rimef, qqw, qqi,& qqr, qqs, cfr, cfr_raw, dbz, dbzr, dbzi, dbzc, qqw, nlice, nrain, qqg, qqh, zint,& qqni, qqnr, qqnw, qqnwfa, qqnifa, uh, vh, mcvg, omga, wh, q2, ttnd, rswtt, & @@ -2446,6 +2447,33 @@ SUBROUTINE MDLFLD endif END IF ENDIF +! +! E. James - 23 Apr 2024: EBB from RRFS +! + IF (IGET(1015)>0) THEN + IF (LVLS(L,IGET(1015))>0) THEN + LL=LM-L+1 +!$omp parallel do private(i,j) + DO J=JSTA,JEND + DO I=ista,iend + GRID1(I,J) = EBB(I,J,LL,1)/(1E9) + ENDDO + ENDDO + if(grib=="grib2") then + cfld=cfld+1 + fld_info(cfld)%ifld=IAVBLFLD(IGET(1015)) + fld_info(cfld)%lvl=LVLSXML(L,IGET(1015)) +!$omp parallel do private(i,j,ii,jj) + do j=1,jend-jsta+1 + jj = jsta+j-1 + do i=1,iend-ista+1 + ii = ista+i-1 + datapd(i,j,cfld) = GRID1(ii,jj) + enddo + enddo + endif + END IF + ENDIF ! if ( gocart_on .or. gccpp_on .or. nasa_on ) then ! DUST 1 @@ -4091,6 +4119,10 @@ SUBROUTINE MDLFLD IF (MODELNAME=='RAPR' .OR. MODELNAME=='FV3R') THEN HGT=ZMID(I,J,L) PBLHOLD=PBLHGUST(I,J) + IF(PBLHOLD == spval) THEN + LPBL(I,J) = LM + EXIT loopL + ENDIF ELSE HGT=ZINT(I,J,L) PBLHOLD=PBLRI(I,J) diff --git a/sorc/ncep_post.fd/MISCLN.f b/sorc/ncep_post.fd/MISCLN.f index c2bce66fb..4ff9bdc89 100644 --- a/sorc/ncep_post.fd/MISCLN.f +++ b/sorc/ncep_post.fd/MISCLN.f @@ -1,96 +1,59 @@ !> @file -! -!> SUBPROGRAM: MISCLN POSTS MISCELLANEOUS FIELDS -!! PRGRMMR: TREADON ORG: W/NP2 DATE: 92-12-20 -!! -!! ABSTRACT: -!! THIS ROUTINE HAS BECOME THE CATCH-ALL FOR MISCELLANEOUS -!! OUTPUT FIELDS POSTED BY THE ETA POST PROCESSOR. -!! CURRENTLY THIS ROUTINE POSTS THE FOLLOWING FIELDS: -!! (1) TROPOPAUSE LEVEL Z,P, T, U, V, AND VERTICAL WIND SHEAR, -!! (2) MAX WIND LEVEL Z, P, U, AND V, -!! (3) FD LEVEL T, Q, U, AND V, -!! (4) FREEZING LEVEL Z AND RH, -!! (5) CONSTANT MASS (BOUNDARY) FIELDS, -!! (6) LFM LOOK-ALIKE FIELDS, AND -!! (7) NGM LOOK-ALIKE FIELDS. -!! -!! -!! PROGRAM HISTORY LOG: -!! 92-12-20 RUSS TREADON -!! 93-06-19 RUSS TREADON - ADDED TYPE 2 CAPE POSTING. -!! 94-11-07 MIKE BALDWIN - ADDED HELICITY POSTING. -!! 96-03-26 MIKE BALDWIN - CHANGE ETA BOUNDARY LAYER LABELS FOR GRIB -!! 96-11-19 MIKE BALDWIN - BACK OUT PREVIOUS CHANGE -!! 97-04-25 MIKE BALDWIN - CHANGE ETA BOUNDARY LAYER LABELS FOR GRIB -!! 97-04-29 GEOFF MANIKIN - ADDED TROPOPAUSE HEIGHT AND -!! MAX WIND LEVEL FIELDS -!! 98-06-15 T BLACK - CONVERSION FROM 1-D TO 2-D -!! 98-07-17 MIKE BALDWIN - REMOVED LABL84 -!! 00-01-04 JIM TUCCILLO - MPI VERSION -!! 02-04-23 MIKE BALDWIN - WRF VERSION -!! 11-02-06 JUN WANG - ADD GRIB2 OPTION -!! 11-10-16 SARAH LU - ADD FD LEVEL DUST/ASH -!! 12-04-03 Jun Wang - FIXED LVLSXML for fields at FD height (spec_hgt_lvl_above_grnd) -!! 13-05-3 Shrinivas Moorthi - Fix some bugs and make more efficient code -!! 14-02-21 Shrinivas Moorthi - Add more threading -!! 14-02-26 S Moorthi - threading datapd assignment and some cleanup & -!! bug fix -!! 15-11-18 S Moorthi - fixed some logical errors in the helicity and -!! i storm motion part of the code -!! 17-06-01 Y Mao - ADD FD levels for GTG(EDPARM CATEDR MWTURB) and allow -!! levels input from control file -!! 19-09-03 J Meng - ADD CAPE related variables for HRRR -!! 20-03-24 J Meng - remove grib1 -!! 20-11-10 J Meng - USE UPP_PHYSICS MODULE -!! 21-03-25 E Colon - 3D-RTMA-specific SPC fields added as output -!! 21-04-01 J Meng - computation on defined points only -!! 21-09-01 E Colon - Correction to the effective layer top and -!! bottoma calculation which is only employed -!! for RTMA usage. -!! 21-10-14 J MENG - 2D DECOMPOSITION -!! 22-09-22 L Zhang - Li(Kate) Zhang - Remove Dust=> AERFD -!! 22-10-06 W Meng - Generate SPC fields with RRFS input -!! 23-01-24 Sam Trahan - when IFI is enabled, calculate and store CAPE & CIN. Add allocate_cape_arrays -!! 23-04-03 E Colon - Added additional array assignments to resolve SPC fields crashes for RRFS input -!! 23-08-16 Y Mao - Updated interpolation to flight levels for regional GTG fields -!! 23-08-24 Y Mao - Add gtg_on option for GTG interpolation -!! 24-01-07 H LIN - Add CIT output in NCAR GTG turbulence calculation -!! 24-01-09 Y Mao - Correct the height level of EDPARM (ID=467) on 0m to index 52 from the control file, instead of 0. -!! 24-04-09 Y Mao - Change the mnemonics of EDPARM (ID=467) on 0m to MXEDPRM (ID=476) on the entire atmoshpere -!! USAGE: CALL MISCLN -!! INPUT ARGUMENT LIST: -!! -!! OUTPUT ARGUMENT LIST: -!! NONE -!! -!! SUBPROGRAMS CALLED: -!! UTILITIES: -!! TRPAUS - COMPUTE TROPOPAUSE LEVEL FIELDS. -!! CALMXW - COMPUTE MAX WIND LEVEL FIELDS. -!! SCLFLD - SCALE ARRAY ELEMENTS BY CONSTANT. -!! GRIBIT - OUTPUT FIELD TO GRIB FILE. -!! CALPOT - CALCULATE POTENTIAL TEMPERATURE. -!! FDLVL - COMPUTE FD LEVEL DATA (AGL OR MSL). -!! FRZLVL - COMPUTE FREEZING LEVEL DATA. -!! BOUND - BOUND ARRAY ELEMENTS BETWEEN MINIMUM AND MAXIMUM VALUES. -!! BNDLYR - COMPUTE BOUNDARY LAYER FIELDS. -!! CALDWP - CALCULATE DEWPOINT TEMPERATURE. -!! OTLFT - COMPUTE LIFTED INDEX AT 500MB. -!! CALLCL - COMPUTE LCL DATA. -!! LFMFLD - COMPUTE LFM LOOK-ALIKE FIELDS. -!! NGMFLD - COMPUTE NGM LOOK-ALIKE FIELDS. -!! CALTHTE - COMPUTE THETA-E. -!! CALHEL - COMPUTE HELICITY AND STORM MOTION. -!! -!! LIBRARY: -!! COMMON - RQSTFLD -!! CTLBLK -!! -!! ATTRIBUTES: -!! LANGUAGE: FORTRAN -!! MACHINE : CRAY C-90 -!! +!> @brief MISCLN posts miscellaneous fields +!> +!> This routine has become the catch-all for miscellaneous output fields posted by the ETA post-processor. +!> Currently this routine posts the following fields: +!> -# TROPOPAUSE LEVEL Z,P, T, U, V, AND VERTICAL WIND SHEAR, +!> -# MAX WIND LEVEL Z, P, U, AND V, +!> -# FD LEVEL T, Q, U, AND V, +!> -# FREEZING LEVEL Z AND RH, +!> -# CONSTANT MASS (BOUNDARY) FIELDS, +!> -# LFM LOOK-ALIKE FIELDS, AND +!> -# NGM LOOK-ALIKE FIELDS. +!> +!> ### Program history log: +!> Date | Programmer | Comments +!> -----|------------|--------- +!! 1992-12-20 | RUSS TREADON | Original file +!! 1993-06-19 | RUSS TREADON | ADDED TYPE 2 CAPE POSTING. +!! 1994-11-07 | MIKE BALDWIN | ADDED HELICITY POSTING. +!! 1996-03-26 | MIKE BALDWIN | CHANGE ETA BOUNDARY LAYER LABELS FOR GRIB +!! 1996-11-19 | MIKE BALDWIN | BACK OUT PREVIOUS CHANGE +!! 1997-04-25 | MIKE BALDWIN | CHANGE ETA BOUNDARY LAYER LABELS FOR GRIB +!! 1997-04-29 | GEOFF MANIKIN | ADDED TROPOPAUSE HEIGHT AND MAX WIND LEVEL FIELDS +!! 1998-06-15 | T BLACK | CONVERSION FROM 1-D TO 2-D +!! 1998-07-17 | MIKE BALDWIN | REMOVED LABL84 +!! 2000-01-04 | JIM TUCCILLO | MPI VERSION +!! 2002-04-23 | MIKE BALDWIN | WRF VERSION +!! 2011-02-06 | JUN WANG | ADD GRIB2 OPTION +!! 2011-10-16 | SARAH LU | ADD FD LEVEL DUST/ASH +!! 2012-04-03 | Jun Wang | FIXED LVLSXML for fields at FD height (spec_hgt_lvl_above_grnd) +!! 2013-05-3 | Shrinivas Moorthi | Fix some bugs and make more efficient code +!! 2014-02-21 | Shrinivas Moorthi | Add more threading +!! 2014-02-26 | S Moorthi | threading datapd assignment and some cleanup & bug fix +!! 2015-11-18 | S Moorthi | fixed some logical errors in the helicity and storm motion part of the code +!! 2017-06-01 | Y Mao | ADD FD levels for GTG(EDPARM CATEDR MWTURB) and allow levels input from control file +!! 2019-09-03 | J Meng | ADD CAPE related variables for HRRR +!! 2020-03-24 | J Meng | remove grib1 +!! 2020-11-10 | J Meng | USE UPP_PHYSICS MODULE +!! 2021-03-25 | E Colon | 3D-RTMA-specific SPC fields added as output +!! 2021-04-01 | J Meng | computation on defined points only +!! 2021-09-01 | E Colon | Correction to the effective layer top and bottoma calculation which is only employed for RTMA usage. +!! 2021-10-14 | J MENG | 2D DECOMPOSITION +!! 2022-09-22 | L Zhang | Li(Kate) Zhang - Remove Dust=> AERFD +!! 2022-10-06 | W Meng | Generate SPC fields with RRFS input +!! 2023-01-24 | Sam Trahan | when IFI is enabled, calculate and store CAPE & CIN. Add allocate_cape_arrays +!! 2023-04-03 | E Colon | Added additional array assignments to resolve SPC fields crashes for RRFS input +!! 2023-08-16 | Y Mao | Updated interpolation to flight levels for regional GTG fields +!! 2023-08-24 | Y Mao | Add gtg_on option for GTG interpolation +!! 2024-01-07 | H LIN | Add CIT output in NCAR GTG turbulence calculation +!! 2024-01-09 | Y Mao | Correct the height level of EDPARM (ID=467) on 0m to index 52 from the control file, instead of 0. +!! 2024-04-09 | Y Mao | Change the mnemonics of EDPARM (ID=467) on 0m to MXEDPRM (ID=476) on the entire atmoshpere +!> +!> @author RUSS TREADON +!> @date 1992-12-20 +!----------------------------------------------------------------------------------------------------- +!> @brief MISCLN posts miscellaneous fields SUBROUTINE MISCLN ! @@ -4600,7 +4563,7 @@ SUBROUTINE MISCLN ! RETURN CONTAINS - +!> @brief allocate_cape_arrays - store CAPE in arrays subroutine allocate_cape_arrays if(.not.allocated(OMGBND)) allocate(OMGBND(ista:iend,jsta:jend,NBND)) if(.not.allocated(PWTBND)) allocate(PWTBND(ista:iend,jsta:jend,NBND)) diff --git a/sorc/ncep_post.fd/OTLFT.f b/sorc/ncep_post.fd/OTLFT.f index ee691f9cd..9e1146e65 100644 --- a/sorc/ncep_post.fd/OTLFT.f +++ b/sorc/ncep_post.fd/OTLFT.f @@ -8,11 +8,6 @@ !> parcel's temperature at 500mb and the ambient 500mb !> temperature. !> -!> @param[in] PBND Parcel pressure. -!> @param[in] TBND Parcel temperature. -!> @param[in] QBND Parcel specific humidity. -!> @param[out] SLINDX Lifted index. -!> !> ### Program History Log !> Date | Programmer | Comments !> -----|------------|--------- @@ -25,16 +20,8 @@ !> 2021-09-30 | JESSE MENG | 2D DECOMPOSITION !> !> @author Russ Treadon W/NP2 @date 1993-03-10 - ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -!> otlft() computes lifted index. -!> -!> This routine lifts a parcel specified by the -!> passed pressure, temperature, and specific humidity to -!> 500mb and then computes a lifted index. This -!> lifted index is the difference between the lifted -!> parcel's temperature at 500mb and the ambient 500mb -!> temperature. +!> @brief Computes lifted index at 500mb. !> !> @param[in] PBND Parcel pressure. !> @param[in] TBND Parcel temperature. diff --git a/sorc/ncep_post.fd/PARA_RANGE.f b/sorc/ncep_post.fd/PARA_RANGE.f index e748f7475..b6bab4820 100644 --- a/sorc/ncep_post.fd/PARA_RANGE.f +++ b/sorc/ncep_post.fd/PARA_RANGE.f @@ -1,14 +1,5 @@ !> @file -!> @brief para_range() sets up decomposition values. -!> -!> This subroutine sets up decomposition values. -!> -!> @param[in] N1 First interate value. -!> @param[in] N2 Last interate value. -!> @param[in] NPROCS Number of MPI tasks. -!> @param[in] IRANK My taks ID. -!> @param[out] ISTA First loop value. -!> @param[out] IEND Last loop value. +!> @brief Subroutines in this file set up decomposition values for 1D and 2D decomposition. !> !> ### Program History Log !> Date | Programmer | Comments @@ -17,7 +8,7 @@ !> !> @author Jim Tuccillo IBM @date 2000-01-06 !----------------------------------------------------------------- -!> para_range() sets up decomposition values. +!> @brief Sets up decomposition values. !> !> @param[in] N1 First interate value. !> @param[in] N2 Last interate value. @@ -40,34 +31,18 @@ SUBROUTINE PARA_RANGE (N1,N2,NPROCS,IRANK,ISTA,IEND) if ( iwork2 > irank ) iend = iend + 1 return end -!! -!! USAGE: CALL PARA_RANGE2(N1,N2,NX,NY,NRANK,ISTA,IEND,JSTA,JEND)(A) -!! INPUT ARGUMENT LIST: -!! N1 - LAAT INTERATE VALUE I dimension -!! N2 - LAST INTERATE VALUE J dimension -!! NX NUMBER OF subdomains in Z dimension -!! NY NUMBER OF subdomains in Y dimension -!! NX * NY should be the total number of MPI procs -!! NRANK - MY TAKS ID -!! -!! OUTPUT ARGUMENT LIST: -!! ISTA - FIRST LOOP VALUE I -!! IEND - LAST LOOP VALUE I -!! JSTA - FIRST LOOP VALUE J -!! JEND - LAST LOOP VALUE J -!! -!! OUTPUT FILES: -!! STDOUT - RUN TIME STANDARD OUT. -!! -!! SUBPROGRAMS CALLED: -!! UTILITIES: -!! NONE -!! LIBRARY: -!! -!! ATTRIBUTES: -!! LANGUAGE: FORTRAN -!! MACHINE : IBM RS/6000 SP -!! + +! ---------------------------------------------------------------------------------------------------- +!> @brief para_range2() sets up 2D decomposition values +!> @param[in] N1 - LAAT INTERATE VALUE I dimension +!> @param[in] N2 - LAST INTERATE VALUE J dimension +!> @param[in] NX NUMBER OF subdomains in Z dimension (NX * NY should be the total number of MPI procs) +!> @param[in] NY NUMBER OF subdomains in Y dimension (NX * NY should be the total number of MPI procs) +!> @param[in] NRANK - MY TASK ID +!> @param[out] ISTA - FIRST LOOP VALUE I +!> @param[out] IEND - LAST LOOP VALUE I +!> @param[out] JSTA - FIRST LOOP VALUE J +!> @param[out] JEND - LAST LOOP VALUE J subroutine para_range2(im,jm,nx,ny,nrank,ista,iend,jsta,jend) implicit none diff --git a/sorc/ncep_post.fd/READ_xml.f b/sorc/ncep_post.fd/READ_xml.f index 013cec5ca..836a7dd49 100644 --- a/sorc/ncep_post.fd/READ_xml.f +++ b/sorc/ncep_post.fd/READ_xml.f @@ -1,48 +1,17 @@ !> @file -! . . . -!> SUBPROGRAM: READCNTRLgrb2_xml READS POST xml CONTROL FILE -!! PRGRMMR: J. WANG ORG: NCEP/EMC DATE: 12-01-27 -!! -!! ABSTRACT: -!! THIS ROUTINE READS THE POST AVAILABLE FIELD XML FILE and -!! POST CONTROL XML FILE. EACH SET OF OUTPUT FIELDS GOING TO ONE -!! OUTPUT FILE WILL WILL BE SAVED AND PROCESSED LATER. IN OTHER -!! WORDS, POST CONTROL FILE WILL BE READ IN WHOLE ONCE. -!! -!! PROGRAM HISTORY LOG: -!! 01_27_2012 Jun Wang - INITIAL CODE -!! 03_10_2015 Lin Gan - Replace XML file with flat file implementation -!! with parameter marshalling -!! 07_08_2016 J. Carley - Clean up prints -!! -!! USAGE: CALL READ_XML() -!! INPUT ARGUMENT LIST: -!! NONE -!! -!! OUTPUT ARGUMENT LIST: -!! NONE - -!! -!! OUTPUT FILES: -!! NONE -!! -!! SUBPROGRAMS CALLED: -!! UTILITIES: -!! -!! LIBRARY: -!! COMMON - RQSTFLDGRB2 -!! CTLBLK -!! -!! ATTRIBUTES: -!! LANGUAGE: FORTRAN -!! MACHINE : IBM -!! +!> @brief read_postxconfig() reads the post available field XML file and post control XML file. +!> Each set of output fields going to one output file will be saved and processed later. +!> In other words, post control file will be read in whole once. +!> +!> ### Program history log: +!> Date | Programmer | Comments +!> -----|------------|--------- +!> 2012-01-27 | Jun Wang | INITIAL CODE +!> 2015-03-10 | Lin Gan | Replace XML file with flat file implementation with parameter marshalling +!> 2016-07-08 | J. Carley | Clean up prints + SUBROUTINE READ_xml() -! -! -! -! INCLUDE ETA GRID DIMENSIONS. SET/DERIVE PARAMETERS. -! use xml_perl_data,only: post_avblflds,paramset,read_postxconfig use grib2_module, only: num_pset use rqstfld_mod,only: num_post_afld,MXLVL,lvlsxml @@ -55,7 +24,8 @@ SUBROUTINE READ_xml() !****************************************************************************** ! START READCNTRL_XML HERE. ! -! READ post available field table +!> @brief Read post available field table + call read_postxconfig() num_post_afld=size(paramset(1)%param) num_pset=size(paramset) diff --git a/sorc/ncep_post.fd/RHGRD.f b/sorc/ncep_post.fd/RHGRD.f index d1d35d9f8..90bb531a6 100644 --- a/sorc/ncep_post.fd/RHGRD.f +++ b/sorc/ncep_post.fd/RHGRD.f @@ -1,7 +1,9 @@ +!> @file +!> @brief RHGRD_mod defines the relative humidity threshold for onset of condensation module RHGRD_mod !----------------------------------------------------------------------- implicit none ! - real :: RHgrd + real :: RHgrd !< Grid-scale relative humidity threshold for onset of condensation !----------------------------------------------------------------------- end module RHGRD_mod diff --git a/sorc/ncep_post.fd/RQSTFLD.f b/sorc/ncep_post.fd/RQSTFLD.f index ecdcb0388..9aeb37cde 100644 --- a/sorc/ncep_post.fd/RQSTFLD.f +++ b/sorc/ncep_post.fd/RQSTFLD.f @@ -1,44 +1,46 @@ - module RQSTFLD_mod -!-------------------------------------------------------------------- -! revision history -! 2011-02-06 Jun Wang add grib2 option -! 2011-10-18 Sarah Lu add GOCART aerosol fields -! 2011-12-18 Sarah Lu add GOCART aerosol optical properties, mass -! fields, and production/removal fluxes -! 2011-12-29 Sarah Lu add GOCART AOD at multiple channels -! 2012-01-06 Sarah Lu add GOCART SS, OC, BC, SU aerosols -! 2012-01-07 Sarah Lu add air density and dpres -! 2012-01-27 Sarah Lu use index 601-700 for GOCART -! 2012-01-30 Jun Wang add post available fields from xml file for grib2 -! 2012-05-07 Tricia Slovacek use index 800-899 for satellite -! use index 900-949 for HWRF -! 2014-12-09 William Lewis added MSG/SEVIRI imager, -! GOES-13 and GOES-15 imagers, -! and completed SSMI and SSMIS (F13-F20) -! 2019-04-01 Sharon Nebuda added GOES-16 GOES-17 ABI IR Channels 7-16 -! 2019-04-22 Wen Meng increased model MXLVL to 500 -! 2019-05-08 Wen Meng added continuous accumulated precipitations(417, 418, -! 419). -! 2019-09-03 Jesse Meng added cape related variables for hrrr (950-957) -! 2021-08-31 Lin Zhu added ssmis-f17 channels 15-18 grib2 output -! 2021-11-03 Tracy Hertneky removed all grib1 settings +!> @file +!> @brief RQSTFLD_mod declares variables related to the number of available fields +!> +!> ### Program history log: +!> Date | Programmer | Comments +!> -----|------------|--------- +!> 2011-02-06 | Jun Wang | Add grib2 option +!> 2011-10-18 | Sarah Lu | Add GOCART aerosol fields +!> 2011-12-18 | Sarah Lu | Add GOCART aerosol optical properties, mass fields, and production/removal fluxes +!> 2011-12-29 | Sarah Lu | Add GOCART AOD at multiple channels +!> 2012-01-06 | Sarah Lu | Add GOCART SS, OC, BC, SU aerosols +!> 2012-01-07 | Sarah Lu | Add air density and dpres +!> 2012-01-27 | Sarah Lu | Use index 601-700 for GOCART +!> 2012-01-30 | Jun Wang | Add post available fields from xml file for grib2 +!> 2012-05-07 | Tricia Slovacek | Use index 800-899 for satellite use index 900-949 for HWRF +!> 2014-12-09 | William Lewis | Added MSG/SEVIRI imager, GOES-13 and GOES-15 imagers, and completed SSMI and SSMIS (F13-F20) +!> 2019-04-01 | Sharon Nebuda | Added GOES-16 GOES-17 ABI IR Channels 7-16 +!> 2019-04-22 | Wen Meng | Ancreased model MXLVL to 500 +!> 2019-05-08 | Wen Meng | Added continuous accumulated precipitations(417, 418, 419). +!> 2019-09-03 | Jesse Meng | Added cape related variables for hrrr (950-957) +!> 2021-08-31 | Lin Zhu | Added ssmis-f17 channels 15-18 grib2 output +!> 2021-11-03 | Tracy Hertneky | Removed all grib1 settings +!> 2024-07-15 | Wen Meng | Increase DATSET length !-------------------------------------------------------------------- + module RQSTFLD_mod implicit none ! ! increase MXFLD each time you add a new field - INTEGER, PARAMETER :: MXFLD=1200 - INTEGER, PARAMETER :: MXLVL=500 + INTEGER, PARAMETER :: MXFLD=1200 !< Available model field IDs + INTEGER, PARAMETER :: MXLVL=500 !< Available model levels - CHARACTER*6 DATSET + CHARACTER*20 DATSET !< String set in the postcntrl.xml file DATSET parameter ! - LOGICAL RITEHD + LOGICAL RITEHD !< Flag to open new output file ! - integer :: NFLD,IGET(MXFLD), & - LVLS(MXLVL,MXFLD), & - IDENT(MXFLD),IAVBLFLD(MXFLD), & - ID(25) - integer :: num_post_afld - integer,allocatable :: LVLSXML(:,:) + integer :: NFLD & !< Number of requested output fields + ,IGET(MXFLD) & !< The "get field" flag array indicating which fields to get + ,LVLS(MXLVL,MXFLD) & !< 2D array of model and field levels + ,IDENT(MXFLD) & !< Array of UPP ID numbers corresponding to the GRIB2 fields produced by UPP + ,IAVBLFLD(MXFLD) & !< _____? + ,ID(25) !< IDs for various GRIB Product Definition Section (PDS) parameters: https://www.nco.ncep.noaa.gov/pmb/docs/on388/section1.html + integer :: num_post_afld !< Number of fields available in post_avblflds.xml _____? + integer,allocatable :: LVLSXML(:,:) !< _____? end module RQSTFLD_mod diff --git a/sorc/ncep_post.fd/SET_LVLSXML.f b/sorc/ncep_post.fd/SET_LVLSXML.f index 6cd00d45a..e5fc21281 100644 --- a/sorc/ncep_post.fd/SET_LVLSXML.f +++ b/sorc/ncep_post.fd/SET_LVLSXML.f @@ -1,51 +1,29 @@ +!> @file +!> @brief SET_LVLSXML() sets field levels (LVLS and LVLSXML) from POST xml CONTROL FILE requested fields +!> +!> ### Program history log: +!> Date | Programmer | Comments +!> -----|------------|--------- +!> 2012-01-27 | Jun Wang | INITIAL CODE +!> 2012-04-03 | Jun Wang | add SPEC_PRES_ABOVE_GRND for different CAPE/CIN +!> 2013-08-06 | S Moorthi | fix index out of bound after iloop5 +!> 2013-10-03 | Jun Wang | add isentropic levels +!> 2015-03-10 | Lin Gan | Replace XML file with flat file implementation +!> 2016-07-08 | J. Carley | Comment out debug prints +!> 2017-06-01 | Y Mao | For MISCLN.f and FDLVL.f, allow FD levels input from control file +!> 2023-01-24 | Sam Trahan | IFI flight levels and related unit conversions +!--------------------------------------------------------------------------------- +!> @brief Sets field levels (LVLS and LVLSXML) from POST xml CONTROL FILE requested fields +!> @param[inout] param input field +!> @param[in] ifld field number in post control file +!> @param[inout] irec data fields number in output file +!> @param[in] kpv total number of potential vorticity levels +!> @param[in] pv potential vorticity levels +!> @param[in] kth total number of isentropic levels +!> @param[th] th isentropic levels subroutine SET_LVLSXML(param,ifld,irec,kpv,pv,kth,th) -! -!$$$ SUBPROGRAM DOCUMENTATION BLOCK -! . . . -! SUBPROGRAM: SET_LVLCXML SET field levels from POST xml CONTROL FILE -! PRGRMMR: J. WANG ORG: NCEP/EMC DATE: 12-01-27 -! -! ABSTRACT: -! THIS ROUTINE SET THE LVLS and LVLSXML for contain request field. -! -! PROGRAM HISTORY LOG: -! 01_27_2012 Jun Wang - INITIAL CODE -! 04_03_2012 Jun Wang - add SPEC_PRES_ABOVE_GRND for different CAPE/CIN -! 08_06_2013 S Moorthi - fix index out of bound after iloop5 -! 10_03_2013 Jun Wang - add isentropic levels -! 03_10_2015 Lin Gan - Replace XML file with flat file implementation -! 07_08_2016 J. Carley - Comment out debug prints -! 06_01_2017 Y Mao - For MISCLN.f and FDLVL.f, allow FD levels input from control file -! 01-24-2023 Sam Trahan - IFI flight levels and related unit conversions -! -! USAGE: CALL SET_LVLSXML(param,ifld,irec,kpv,pv,kth,th) -! INPUT ARGUMENT LIST: -! param: input field -! ifld : field number in post control file -! irec : data fields number in output file -! kpv : total number of potential vorticity levels -! pv : potential vorticity levels -! kth : total number of isentropic levels -! th : isentropic levels -! -! OUTPUT ARGUMENT LIST: -! -! OUTPUT FILES: -! NONE -! -! SUBPROGRAMS CALLED: -! UTILITIES: -! -! LIBRARY: -! MODULE: - RQSTFLD_MOD -! CTLBLK_MOD -! xml_data_post_t -! SOIL -! -! ATTRIBUTES: -! LANGUAGE: FORTRAN -! MACHINE : IBM -! + + use xml_perl_data, only: param_t use ctlblk_mod, only: lsm, spl, nsoil, isf_surface_physics, nfd, htfd, & petabnd, nbnd, ifi_nflight, ifi_flight_levels diff --git a/sorc/ncep_post.fd/SET_OUTFLDS.f b/sorc/ncep_post.fd/SET_OUTFLDS.f index c7482e1fd..3030f88ec 100644 --- a/sorc/ncep_post.fd/SET_OUTFLDS.f +++ b/sorc/ncep_post.fd/SET_OUTFLDS.f @@ -1,25 +1,25 @@ !> @file -!> @ brief set_outflds() reads post xml control file. +!> @brief set_outflds() reads the post XML control file. !> !> @author J. Wang NCEP/EMC @date 2012-01-27 - +!> !> This routine reads the control file in xml format specifying !> field(s) to post, and save all the field information in !> a datatype array PSET. -!> -!> @param[in] KTH -!> @param[in] TH -!> @param[in] KPV -!> @param[in] PV -!> +!> !> ### Program History Log !> Date | Programmer | Comments !> -----|------------|--------- !> 2012-01-27 | Jun Wang | Initial !> 2015-03-10 | Lin Gan | Replace XML file with flat file implementation !> 2019-10-30 | Bo Cui | Removw "GOTO" Statement +!--------------------------------------------------------------------------- +!> @brief Reads post XML control file. !> -!> @author J. Wang NCEP/EMC @date 2012-01-27 +!> @param[in] KTH total number of isentropic levels +!> @param[in] TH isentropic levels +!> @param[in] KPV total number of potential vorticity levels +!> @param[in] PV potential vorticity levels SUBROUTINE SET_OUTFLDS(kth,th,kpv,pv) ! @@ -52,7 +52,7 @@ SUBROUTINE SET_OUTFLDS(kth,th,kpv,pv) ! WRITE(6,*)'READCNTRL_XML: POSTING FCST HR ',IFHR,' FROM ', & ! IHRST,'UTC ',SDAT(1),'-',SDAT(2),'-',SDAT(3),' RUN' ! ENDIF -! +! ! INITIALIZE VARIABLES. ! ARRAY IGET IS THE "GET FIELD" FLAG ARRAY. ! @@ -124,12 +124,12 @@ SUBROUTINE SET_OUTFLDS(kth,th,kpv,pv) ENDDO ! -! ALL DONE FOUNDING REQUESTED FIELDS FOR current OUTPUT GRID. +! ALL DONE FINDING REQUESTED FIELDS FOR current OUTPUT GRID. ! SET NFLD TO TOTAL NUMBER OF REQUESTED OUTPUT FIELDS THAT -! ARE AVAILABLE., SET NRECOUT to total number of OUTPUT records -! NOTE: here NFLD i s total number of fields found in post_avblfld_table, -! while nrecoutis the total number of grib messages that go -! into the output file. One fieldmay contain many different levels, +! ARE AVAILABLE. SET NRECOUT to total number of OUTPUT records +! NOTE: here NFLD is total number of fields found in post_avblfld_table, +! while nrecout is the total number of grib messages that go +! into the output file. One field may contain many different levels, ! which each different level will be counted as one record ! NFLD = IFLD diff --git a/sorc/ncep_post.fd/SOIL_mod.f b/sorc/ncep_post.fd/SOIL_mod.f index 736abe6ef..37f40dae8 100644 --- a/sorc/ncep_post.fd/SOIL_mod.f +++ b/sorc/ncep_post.fd/SOIL_mod.f @@ -1,7 +1,13 @@ +!> @file +!> @brief SOIL declares soil-related variables module soil !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - implicit none ! - real, allocatable :: STC(:,:,:),SMC(:,:,:),SH2O(:,:,:) & - ,SLDPTH(:),RTDPTH(:),SLLEVEL(:) + real, allocatable :: STC(:,:,:) & !< Soil temperature + ,SMC(:,:,:) & !< Volumetric soil moisture + ,SH2O(:,:,:) & !< Liquid volumetric soil moisture + ,SLDPTH(:) & !< Thickness of each soil layer + ,RTDPTH(:) & !< Depth of the bottom of the root zone + ,SLLEVEL(:) !< Soil level end module soil diff --git a/sorc/ncep_post.fd/SURFCE.f b/sorc/ncep_post.fd/SURFCE.f index 85a099a3c..7ec1b6b1c 100644 --- a/sorc/ncep_post.fd/SURFCE.f +++ b/sorc/ncep_post.fd/SURFCE.f @@ -49,6 +49,12 @@ !> 2024-01-30 | A Jensen | Comment out graupel precipitation warning. !> 2024-02-07 | E James | Enabling output of LAI and wilting point for RRFS. !> 2024-03-25 | E James | Enabling output of column integrated soil moisture. +!> 2024-04-03 | E James | Enabling output of hourly average smoke PM2.5 and dust PM10 +!> 2024-04-23 | E James | Adding smoke emissions (ebb) from RRFS +!> 2024-05-01 | E James | Adapt the BUCKET1 type fields (15-min acc) for use in RRFS +!> 2024-05-24 | E James | Modify the run total acc precip fields for 15-min output +!> 2024-06-11 | E James | Modifying RRFS hourly average smoke/dust fields to be PM2.5 and PM20 +!> 2024-08-26 | K Asmar | Modify max winds at 10m agl for UFS time buckets !> !> @note !> USAGE: CALL SURFCE @@ -75,7 +81,7 @@ SUBROUTINE SURFCE ! ! INCLUDE GRID DIMENSIONS. SET/DERIVE OTHER PARAMETERS. ! - use vrbls4d, only: smoke, fv3dust, coarsepm + use vrbls4d, only: smoke, fv3dust, coarsepm, ebb use vrbls3d, only: zint, pint, t, pmid, q, f_rimef use vrbls2d, only: ths, qs, qvg, qv2m, tsnow, tg, smstav, smstot, & cmc, sno, snoavg, psfcavg, t10avg, snonc, ivgtyp, & @@ -101,7 +107,8 @@ SUBROUTINE SURFCE snow_bucket1, rainc_bucket1, graup_bucket1, & frzrn_bucket, snow_acm, snow_bkt, & shdmin, shdmax, lai, ch10,cd10,landfrac,paha,pahi, & - tecan,tetran,tedir,twa,IFI_APCP,xlaixy + tecan,tetran,tedir,twa,IFI_APCP,xlaixy, & + smoke_ave,dust_ave,coarsepm_ave use soil, only: stc, sllevel, sldpth, smc, sh2o use masks, only: lmh, sm, sice, htm, gdlat, gdlon use physcons_post,only: CON_EPS, CON_EPSM1 @@ -174,7 +181,6 @@ SUBROUTINE SURFCE logical, parameter :: debugprint = .false. - !**************************************************************************** ! ! START SURFCE. @@ -479,7 +485,11 @@ SUBROUTINE SURFCE cfld=cfld+1 fld_info(cfld)%ifld=IAVBLFLD(IGET(725)) fld_info(cfld)%ntrange=1 - fld_info(cfld)%tinvstat=IFHR + if(ifmin>1)then + fld_info(cfld)%tinvstat=IFHR*60+IFMIN + else + fld_info(cfld)%tinvstat=IFHR + endif !$omp parallel do private(i,j,ii,jj) do j=1,jend-jsta+1 jj = jsta+j-1 @@ -1557,8 +1567,8 @@ SUBROUTINE SURFCE (IGET(113)>0).OR.(IGET(114)>0).OR. & (IGET(138)>0).OR.(IGET(414)>0).OR. & (IGET(546)>0).OR.(IGET(547)>0).OR. & - (IGET(548)>0).OR.(IGET(739)>0).OR. & - (IGET(744)>0).OR.(IGET(771)>0)) THEN + (IGET(548)>0).OR.(IGET(558)>0).OR. & + (IGET(739)>0).OR.(IGET(744)>0)) THEN if (.not. allocated(psfc)) allocate(psfc(ista:iend,jsta:jend)) ! @@ -1701,7 +1711,7 @@ SUBROUTINE SURFCE !------------------------------------------------------------------------- ! DEWPOINT at level 1 ------ p1d and t1d are undefined !! -- Moorthi - IF (IGET(771)>0) THEN + IF (IGET(558)>0) THEN DO J=JSTA,JEND DO I=ISTA,IEND EVP(I,J)=P1D(I,J)*QVl1(I,J)/(EPS+ONEPS*QVl1(I,J)) @@ -1719,7 +1729,7 @@ SUBROUTINE SURFCE ENDDO if(grib=='grib2') then cfld=cfld+1 - fld_info(cfld)%ifld=IAVBLFLD(IGET(771)) + fld_info(cfld)%ifld=IAVBLFLD(IGET(558)) datapd(1:iend-ista+1,1:jend-jsta+1,cfld)=GRID1(ista:iend,jsta:jend) endif ENDIF @@ -2208,6 +2218,88 @@ SUBROUTINE SURFCE endif ENDIF ! +! Hourly averaged surface PM2.5 +! + IF (IGET(759)>0) THEN + GRID1=SPVAL + DO J=JSTA,JEND + DO I=ISTA,IEND + if(T(I,J,LM)/=spval.and.PMID(I,J,LM)/=spval.and.SMOKE_AVE(I,J)/=spval)& + GRID1(I,J) = (1./RD)*(PMID(I,J,LM)/T(I,J,LM))*(SMOKE_AVE(I,J)+DUST_AVE(I,J))/(1E9) + ENDDO + ENDDO + ID(1:25) = 0 + ITSRFC = NINT(TSRFC) + IF(ITSRFC /= 0) then + IFINCR = MOD(IFHR,ITSRFC) + IF(IFMIN >= 1)IFINCR= MOD(IFHR*60+IFMIN,ITSRFC*60) + ELSE + IFINCR = 0 + ENDIF + ID(19) = IFHR + IF(IFMIN >= 1)ID(19)=IFHR*60+IFMIN + ID(20) = 3 + IF (IFINCR==0) THEN + ID(18) = IFHR-ITSRFC + ELSE + ID(18) = IFHR-IFINCR + IF(IFMIN >= 1)ID(18)=IFHR*60+IFMIN-IFINCR + ENDIF + IF (ID(18)<0) ID(18) = 0 + if(grib=='grib2') then + cfld=cfld+1 + fld_info(cfld)%ifld=IAVBLFLD(IGET(759)) + if(ITSRFC>0) then + fld_info(cfld)%ntrange=1 + else + fld_info(cfld)%ntrange=0 + endif + fld_info(cfld)%tinvstat=IFHR-ID(18) + datapd(1:iend-ista+1,1:jend-jsta+1,cfld)=GRID1(ista:iend,jsta:jend) + endif + ENDIF +! +! Hourly averaged dust PM10 +! + IF (IGET(771)>0) THEN + GRID1=SPVAL + DO J=JSTA,JEND + DO I=ISTA,IEND + if(T(I,J,LM)/=spval.and.PMID(I,J,LM)/=spval.and.DUST_AVE(I,J)/=spval)& + GRID1(I,J) = (1./RD)*(PMID(I,J,LM)/T(I,J,LM))*(SMOKE_AVE(I,J)+DUST_AVE(I,J)+COARSEPM_AVE(I,J))/(1E9) + ENDDO + ENDDO + ID(1:25) = 0 + ITSRFC = NINT(TSRFC) + IF(ITSRFC /= 0) then + IFINCR = MOD(IFHR,ITSRFC) + IF(IFMIN >= 1)IFINCR= MOD(IFHR*60+IFMIN,ITSRFC*60) + ELSE + IFINCR = 0 + ENDIF + ID(19) = IFHR + IF(IFMIN >= 1)ID(19)=IFHR*60+IFMIN + ID(20) = 3 + IF (IFINCR==0) THEN + ID(18) = IFHR-ITSRFC + ELSE + ID(18) = IFHR-IFINCR + IF(IFMIN >= 1)ID(18)=IFHR*60+IFMIN-IFINCR + ENDIF + IF (ID(18)<0) ID(18) = 0 + if(grib=='grib2') then + cfld=cfld+1 + fld_info(cfld)%ifld=IAVBLFLD(IGET(771)) + if(ITSRFC>0) then + fld_info(cfld)%ntrange=1 + else + fld_info(cfld)%ntrange=0 + endif + fld_info(cfld)%tinvstat=IFHR-ID(18) + datapd(1:iend-ista+1,1:jend-jsta+1,cfld)=GRID1(ista:iend,jsta:jend) + endif + ENDIF +! ! E. James - 23 Feb 2023: COARSEPM from RRFS on lowest model level ! IF (IGET(1014)>0) THEN @@ -2225,6 +2317,22 @@ SUBROUTINE SURFCE endif ENDIF ! +! E. James - 23 Apr 2024: EBB from RRFS on lowest model level +! + IF (IGET(1017)>0) THEN + GRID1=SPVAL + DO J=JSTA,JEND + DO I=ISTA,IEND + GRID1(I,J) = EBB(I,J,LM,1)/(1E9) + ENDDO + ENDDO + if(grib=='grib2') then + cfld=cfld+1 + fld_info(cfld)%ifld=IAVBLFLD(IGET(1017)) + datapd(1:iend-ista+1,1:jend-jsta+1,cfld) = GRID1(ista:iend,jsta:jend) + endif + ENDIF +! ! ! BLOCK 3. ANEMOMETER LEVEL (10M) WINDS, THETA, AND Q. ! @@ -2505,6 +2613,27 @@ SUBROUTINE SURFCE ! ANEMOMETER LEVEL (10 M) MAX WIND SPEED. ! IF (IGET(422)>0) THEN + IF (MODELNAME == 'GFS') THEN + ID(1:25) = 0 + ITSRFC = NINT(TSRFC) + if (ITSRFC /= 0) then + IFINCR = MOD(IFHR,ITSRFC) + IF(IFMIN >= 1)IFINCR= MOD(IFHR*60+IFMIN,ITSRFC*60) + else + IFINCR = 0 + endif + ID(18) = 0 + ID(19) = IFHR + IF(IFMIN >= 1)ID(19)=IFHR*60+IFMIN + ID(20) = 4 + IF (IFINCR==0) THEN + ID(18) = IFHR-ITSRFC + ELSE + ID(18) = IFHR-IFINCR + IF(IFMIN >= 1)ID(18)=IFHR*60+IFMIN-IFINCR + ENDIF + IF (ID(18)<0) ID(18) = 0 + ENDIF !$omp parallel do private(i,j) DO J=JSTA,JEND DO I=ISTA,IEND @@ -2514,12 +2643,16 @@ SUBROUTINE SURFCE if(grib=='grib2') then cfld=cfld+1 fld_info(cfld)%ifld=IAVBLFLD(IGET(422)) - if (ifhr==0) then + fld_info(cfld)%ntrange=1 + IF (MODELNAME == 'FV3R' .OR. MODELNAME == 'RAPR') THEN + if (ifhr==0) then fld_info(cfld)%tinvstat=0 - else + else fld_info(cfld)%tinvstat=1 - endif - fld_info(cfld)%ntrange=1 + endif + ELSE IF (MODELNAME == 'GFS') THEN + fld_info(cfld)%tinvstat=IFHR-ID(18) + ENDIF !$omp parallel do private(i,j,ii,jj) do j=1,jend-jsta+1 jj = jsta+j-1 @@ -2530,10 +2663,31 @@ SUBROUTINE SURFCE enddo endif ENDIF - +! ! ANEMOMETER LEVEL (10 M) MAX WIND SPEED U COMPONENT. ! IF (IGET(783)>0) THEN + IF (MODELNAME == 'GFS') THEN + ID(1:25) = 0 + ITSRFC = NINT(TSRFC) + if (ITSRFC /= 0) then + IFINCR = MOD(IFHR,ITSRFC) + IF(IFMIN >= 1)IFINCR= MOD(IFHR*60+IFMIN,ITSRFC*60) + else + IFINCR = 0 + endif + ID(18) = 0 + ID(19) = IFHR + IF(IFMIN >= 1)ID(19)=IFHR*60+IFMIN + ID(20) = 4 + IF (IFINCR==0) THEN + ID(18) = IFHR-ITSRFC + ELSE + ID(18) = IFHR-IFINCR + IF(IFMIN >= 1)ID(18)=IFHR*60+IFMIN-IFINCR + ENDIF + IF (ID(18)<0) ID(18) = 0 + ENDIF !$omp parallel do private(i,j) DO J=JSTA,JEND DO I=ISTA,IEND @@ -2543,12 +2697,16 @@ SUBROUTINE SURFCE if(grib=='grib2') then cfld=cfld+1 fld_info(cfld)%ifld=IAVBLFLD(IGET(783)) - if (ifhr==0) then + fld_info(cfld)%ntrange=1 + IF (MODELNAME == 'RAPR') THEN + if (ifhr==0) then fld_info(cfld)%tinvstat=0 - else + else fld_info(cfld)%tinvstat=1 - endif - fld_info(cfld)%ntrange=1 + endif + ELSE IF (MODELNAME == 'GFS') THEN + fld_info(cfld)%tinvstat=IFHR-ID(18) + ENDIF !$omp parallel do private(i,j,ii,jj) do j=1,jend-jsta+1 jj = jsta+j-1 @@ -2559,10 +2717,31 @@ SUBROUTINE SURFCE enddo endif ENDIF - +! ! ANEMOMETER LEVEL (10 M) MAX WIND SPEED V COMPONENT. ! IF (IGET(784)>0) THEN + IF (MODELNAME == 'GFS') THEN + ID(1:25) = 0 + ITSRFC = NINT(TSRFC) + if (ITSRFC /= 0) then + IFINCR = MOD(IFHR,ITSRFC) + IF(IFMIN >= 1)IFINCR= MOD(IFHR*60+IFMIN,ITSRFC*60) + else + IFINCR = 0 + endif + ID(18) = 0 + ID(19) = IFHR + IF(IFMIN >= 1)ID(19)=IFHR*60+IFMIN + ID(20) = 4 + IF (IFINCR==0) THEN + ID(18) = IFHR-ITSRFC + ELSE + ID(18) = IFHR-IFINCR + IF(IFMIN >= 1)ID(18)=IFHR*60+IFMIN-IFINCR + ENDIF + IF (ID(18)<0) ID(18) = 0 + ENDIF !$omp parallel do private(i,j) DO J=JSTA,JEND DO I=ISTA,IEND @@ -2572,12 +2751,16 @@ SUBROUTINE SURFCE if(grib=='grib2') then cfld=cfld+1 fld_info(cfld)%ifld=IAVBLFLD(IGET(784)) - if (ifhr==0) then + fld_info(cfld)%ntrange=1 + IF (MODELNAME == 'RAPR') THEN + if (ifhr==0) then fld_info(cfld)%tinvstat=0 - else + else fld_info(cfld)%tinvstat=1 - endif - fld_info(cfld)%ntrange=1 + endif + ELSE IF (MODELNAME == 'GFS') THEN + fld_info(cfld)%tinvstat=IFHR-ID(18) + ENDIF !$omp parallel do private(i,j,ii,jj) do j=1,jend-jsta+1 jj = jsta+j-1 @@ -2588,7 +2771,6 @@ SUBROUTINE SURFCE enddo endif ENDIF - ! ! SRD ! @@ -3027,7 +3209,7 @@ SUBROUTINE SURFCE DO J=JSTA,JEND DO I=ISTA,IEND IF(AVGPREC_CONT(I,J) < SPVAL)THEN - GRID2(I,J) = AVGPREC_CONT(I,J)*FLOAT(IFHR)*3600.*1000./DTQ2 + GRID2(I,J) = AVGPREC_CONT(I,J)*((3600.*FLOAT(IFHR))+(60.*FLOAT(IFMIN)))*1000./DTQ2 ELSE GRID2(I,J) = SPVAL END IF @@ -3041,7 +3223,11 @@ SUBROUTINE SURFCE cfld=cfld+1 fld_info(cfld)%ifld=IAVBLFLD(IGET(417)) fld_info(cfld)%ntrange=1 - fld_info(cfld)%tinvstat=IFHR + if(ifmin>1)then + fld_info(cfld)%tinvstat=IFHR*60+IFMIN + else + fld_info(cfld)%tinvstat=IFHR + endif ! print*,'tinvstat in cont bucket= ',fld_info(cfld)%tinvstat !$omp parallel do private(i,j,ii,jj) do j=1,jend-jsta+1 @@ -3471,8 +3657,15 @@ SUBROUTINE SURFCE cfld=cfld+1 fld_info(cfld)%ifld=IAVBLFLD(IGET(746)) fld_info(cfld)%ntrange=1 - fld_info(cfld)%tinvstat=IFHR-ID(18) - if(MODELNAME=='FV3R' .OR. MODELNAME=='GFS')fld_info(cfld)%tinvstat=IFHR + if(MODELNAME=='FV3R' .OR. MODELNAME=='GFS')then + if(ifmin>1)then + fld_info(cfld)%tinvstat=IFHR*60+IFMIN + else + fld_info(cfld)%tinvstat=IFHR + endif + else + fld_info(cfld)%tinvstat=IFHR-ID(18) + endif !$omp parallel do private(i,j,ii,jj) do j=1,jend-jsta+1 jj = jsta+j-1 @@ -3517,8 +3710,15 @@ SUBROUTINE SURFCE cfld=cfld+1 fld_info(cfld)%ifld=IAVBLFLD(IGET(782)) fld_info(cfld)%ntrange=1 - fld_info(cfld)%tinvstat=IFHR-ID(18) - if(MODELNAME=='FV3R' .OR. MODELNAME=='GFS')fld_info(cfld)%tinvstat=IFHR + if(MODELNAME=='FV3R' .OR. MODELNAME=='GFS')then + if(ifmin>1)then + fld_info(cfld)%tinvstat=IFHR*60+IFMIN + else + fld_info(cfld)%tinvstat=IFHR + endif + else + fld_info(cfld)%tinvstat=IFHR-ID(18) + endif !$omp parallel do private(i,j,ii,jj) do j=1,jend-jsta+1 jj = jsta+j-1 @@ -3563,8 +3763,15 @@ SUBROUTINE SURFCE cfld=cfld+1 fld_info(cfld)%ifld=IAVBLFLD(IGET(1004)) fld_info(cfld)%ntrange=1 - fld_info(cfld)%tinvstat=IFHR-ID(18) - if(MODELNAME=='FV3R' .or. MODELNAME=='GFS')fld_info(cfld)%tinvstat=IFHR + if(MODELNAME=='FV3R' .OR. MODELNAME=='GFS')then + if(ifmin>1)then + fld_info(cfld)%tinvstat=IFHR*60+IFMIN + else + fld_info(cfld)%tinvstat=IFHR + endif + else + fld_info(cfld)%tinvstat=IFHR-ID(18) + endif ! print*,'id(18),tinvstat in acgraup= ',ID(18),fld_info(cfld)%tinvstat !$omp parallel do private(i,j,ii,jj) do j=1,jend-jsta+1 @@ -4389,8 +4596,50 @@ SUBROUTINE SURFCE ! ERIC JAMES: 10 APR 2019 -- adding 15min precip output for RAP/HRRR ! PRECIPITATION BUCKETS - accumulated between output times +! 'BUCKET1 VAR DENS SNOW ' + IF (IGET(525)>0.) THEN +!$omp parallel do private(i,j) + DO J=JSTA,JEND + DO I=ISTA,IEND + IF(SNDEPAC(I,J) < SPVAL)THEN + GRID1(I,J) = SNDEPAC(I,J)/(1E3) + ENDIF + ENDDO + ENDDO + IFINCR = NINT(PREC_ACC_DT1) + if(grib=='grib2') then + cfld=cfld+1 + fld_info(cfld)%ifld=IAVBLFLD(IGET(525)) + if(fld_info(cfld)%ntrange==0) then + if (ifhr==0 .and. ifmin==0) then + fld_info(cfld)%tinvstat=0 + else + fld_info(cfld)%tinvstat=IFINCR + endif + fld_info(cfld)%ntrange=1 + end if +!$omp parallel do private(i,j,ii,jj) + do j=1,jend-jsta+1 + jj = jsta+j-1 + do i=1,iend-ista+1 + ii = ista+i-1 + datapd(i,j,cfld) = GRID1(ii,jj) + enddo + enddo + endif + ENDIF ! 'BUCKET1 TOTAL PRECIP ' IF (IGET(526)>0.) THEN + IF (MODELNAME .EQ. 'FV3R') THEN +!$omp parallel do private(i,j) + DO J=JSTA,JEND + DO I=ISTA,IEND + IF(AVGPREC_CONT(I,J) < SPVAL)THEN + GRID1(I,J) = AVGPREC_CONT(I,J)*900.*1000./DTQ2 + ENDIF + ENDDO + ENDDO + ELSE !$omp parallel do private(i,j) DO J=JSTA,JEND DO I=ISTA,IEND @@ -4401,6 +4650,7 @@ SUBROUTINE SURFCE ENDIF ENDDO ENDDO + ENDIF IFINCR = NINT(PREC_ACC_DT1) if(grib=='grib2') then cfld=cfld+1 @@ -4423,15 +4673,13 @@ SUBROUTINE SURFCE enddo endif ENDIF -! 'BUCKET1 CONV PRECIP ' +! 'BUCKET1 FRZR PRECIP ' IF (IGET(527)>0.) THEN !$omp parallel do private(i,j) DO J=JSTA,JEND DO I=ISTA,IEND - IF (IFHR == 0 .AND. IFMIN == 0) THEN - GRID1(I,J) = 0.0 - ELSE - GRID1(I,J) = RAINC_BUCKET1(I,J) + IF(ACFRAIN(I,J) < SPVAL)THEN + GRID1(I,J) = ACFRAIN(I,J) ENDIF ENDDO ENDDO @@ -4457,15 +4705,13 @@ SUBROUTINE SURFCE enddo endif ENDIF -! 'BUCKET1 GRDSCALE PRCP' +! 'BUCKET1 SNOW PRECIP (WEASD for RAPR) ' IF (IGET(528)>0.) THEN !$omp parallel do private(i,j) DO J=JSTA,JEND DO I=ISTA,IEND - IF (IFHR == 0 .AND. IFMIN == 0) THEN - GRID1(I,J) = 0.0 - ELSE - GRID1(I,J) = RAINNC_BUCKET1(I,J) + IF(SNOW_ACM(I,J) < SPVAL)THEN + GRID1(I,J) = SNOW_ACM(I,J) ENDIF ENDDO ENDDO @@ -4491,7 +4737,7 @@ SUBROUTINE SURFCE enddo endif ENDIF -! 'BUCKET1 SNOW PRECIP ' +! 'BUCKET1 SNOW PRECIP (TSNOWP for FV3R) ' IF (IGET(529)>0.) THEN !$omp parallel do private(i,j) DO J=JSTA,JEND @@ -4528,6 +4774,16 @@ SUBROUTINE SURFCE ENDIF ! 'BUCKET1 GRAUPEL PRECIP ' IF (IGET(530)>0.) THEN + IF (MODELNAME .EQ. 'FV3R') THEN +!$omp parallel do private(i,j) + DO J=JSTA,JEND + DO I=ISTA,IEND + IF(ACGRAUP(I,J) < SPVAL)THEN + GRID1(I,J) = ACGRAUP(I,J) + ENDIF + ENDDO + ENDDO + ELSE !$omp parallel do private(i,j) DO J=JSTA,JEND DO I=ISTA,IEND @@ -4538,6 +4794,7 @@ SUBROUTINE SURFCE ENDIF ENDDO ENDDO + ENDIF IFINCR = NINT(PREC_ACC_DT1) ! print*,'maxval BUCKET1 GRAUPEL: ', maxval(GRID1) if(grib=='grib2') then diff --git a/sorc/ncep_post.fd/TRPAUS.f b/sorc/ncep_post.fd/TRPAUS.f index 24a27d71d..5dfe7bb92 100644 --- a/sorc/ncep_post.fd/TRPAUS.f +++ b/sorc/ncep_post.fd/TRPAUS.f @@ -1,25 +1,16 @@ !> @file -!> @brief trpaus() computes tropopause data. -!> -!> @author Russ Treadon W/NP2 @date 1992-12-22 - -!> This routine computes tropopause data. At each mass +!> @brief trpaus() computes tropopause level fields. +!> +!> This routine computes tropopause data. At each mass !> point a surface up search is made for the first !> occurrence of a three layer mean lapse rate less than -!> or equal to a critical lapse rate. This critcal lapse -!> rate is 2deg/km. This is in accord with the WMO -!> definition of a tropopause. A maximum tropopause -!> pressure of 500mb is enforced. Onc the tropopause +!> or equal to a critical lapse rate. This critcal lapse +!> rate is 2 deg/km. This is in accord with the WMO +!> definition of a tropopause. A maximum tropopause +!> pressure of 500mb is enforced. Once the tropopause !> is located in a column, pressure, temperature, u !> and v winds, and vertical wind shear are computed. !> -!> @param[out] PTROP Tropopause pressure. -!> @param[out] TTROP Tropopause temperature. -!> @param[out] ZTROP Tropopause height. -!> @param[out] UTROP Tropopause u wind component. -!> @param[out] VTROP Tropopause v wind component. -!> @param[out] SHTROP Vertical wind shear at tropopause. -!> !> ### Program history log: !> Date | Programmer | Comments !> -----|------------|--------- @@ -32,6 +23,16 @@ !> 2021-09-13 | JESSE MENG | 2D DECOMPOSITION !> !> @author Russ Treadon W/NP2 @date 1992-12-22 +!------------------------------------------------------------------------------ +!> @brief Computes tropopause data. +!> +!> @param[out] PTROP Tropopause pressure. +!> @param[out] TTROP Tropopause temperature. +!> @param[out] ZTROP Tropopause height. +!> @param[out] UTROP Tropopause u wind component. +!> @param[out] VTROP Tropopause v wind component. +!> @param[out] SHTROP Vertical wind shear at tropopause. +!> SUBROUTINE TRPAUS(PTROP,TTROP,ZTROP,UTROP,VTROP,SHTROP) ! diff --git a/sorc/ncep_post.fd/UPP_PHYSICS.f b/sorc/ncep_post.fd/UPP_PHYSICS.f index a2841e1e9..c194f0760 100644 --- a/sorc/ncep_post.fd/UPP_PHYSICS.f +++ b/sorc/ncep_post.fd/UPP_PHYSICS.f @@ -1,7 +1,5 @@ !> @file -!> -!> @brief upp_physics is a collection of UPP subroutines for physics variables calculation. -!> @author Jesse Meng @date 2020-05-20 +!> @brief UPP_PHYSICS is a collection of UPP subroutines for physics variables calculation. !> !> calcape() computes CAPE/CINS and other storm related variables. !> @@ -59,7 +57,7 @@ module upp_physics contains ! !------------------------------------------------------------------------------------- -!> CALRH() computes relative humidity +!> Computes relative humidity !> !> @param[in] P1 real Pressure (Pa) !> @param[in] T1 real Temperature (K) @@ -88,7 +86,7 @@ END SUBROUTINE CALRH ! !------------------------------------------------------------------------------------- ! -!> calrh_nam() computes relative humidity. +!> Computes relative humidity. !> !> This routine computes relative humidity given pressure, !> temperature, specific humidity. an upper and lower bound @@ -166,7 +164,7 @@ END SUBROUTINE CALRH_NAM ! !------------------------------------------------------------------------------------- ! -!> calrh_gfs() computes relative humidity. +!> Computes relative humidity. !> !> This routine computes relative humidity given pressure, !> temperature, specific humidity. an upper and lower bound @@ -256,7 +254,7 @@ SUBROUTINE CALRH_GFS(P1,T1,Q1,RH) END SUBROUTINE CALRH_GFS ! !------------------------------------------------------------------------------------- -!> CALRH_GSD() Compute RH with the NOAA GSL (formerly NOAA GSD) algorithm used for RUC and Rapid Refresh +!> Compute RH with the NOAA GSL (formerly NOAA GSD) algorithm used for RUC and Rapid Refresh !> !> @param P1 real Pressure (Pa) !> @param T1 real Temperature (K) @@ -304,7 +302,7 @@ END SUBROUTINE CALRH_GSD ! !------------------------------------------------------------------------------------- ! -!> CALRH_PW() algorithm used at GSL for RUC and Rapid Refresh. +!> Algorithm used at GSL for RUC and Rapid Refresh. !> !> @param RHPW real Relative humidity with respect to precipitable water (entire atmosphere) !> @@ -375,8 +373,7 @@ END SUBROUTINE CALRH_PW ! !------------------------------------------------------------------------------------- ! - elemental function fpvsnew(t) -!> fpvsnew() computes saturation vapor pressure. +!> @brief Computes saturation vapor pressure. !> !> Compute saturation vapor pressure from the temperature. !> A linear interpolation is done between values in a lookup table @@ -398,16 +395,18 @@ elemental function fpvsnew(t) !> 2001-02-26 | Iredell | Ice phase !> !> @author N Phillips w/NMC2X2 @date 1982-12-30 + elemental function fpvsnew(t) + implicit none integer,parameter:: nxpvs=7501 - real,parameter:: con_ttp =2.7316e+2 ! temp at H2O 3pt - real,parameter:: con_psat =6.1078e+2 ! pres at H2O 3pt - real,parameter:: con_cvap =1.8460e+3 ! spec heat H2O gas (J/kg/K) - real,parameter:: con_cliq =4.1855e+3 ! spec heat H2O liq - real,parameter:: con_hvap =2.5000e+6 ! lat heat H2O cond - real,parameter:: con_rv =4.6150e+2 ! gas constant H2O - real,parameter:: con_csol =2.1060e+3 ! spec heat H2O ice - real,parameter:: con_hfus =3.3358e+5 ! lat heat H2O fusion + real,parameter:: con_ttp =2.7316e+2 !< temp at H2O 3pt + real,parameter:: con_psat =6.1078e+2 !< pres at H2O 3pt + real,parameter:: con_cvap =1.8460e+3 !< spec heat H2O gas (J/kg/K) + real,parameter:: con_cliq =4.1855e+3 !< spec heat H2O liq + real,parameter:: con_hvap =2.5000e+6 !< lat heat H2O cond + real,parameter:: con_rv =4.6150e+2 !< gas constant H2O + real,parameter:: con_csol =2.1060e+3 !< spec heat H2O ice + real,parameter:: con_hfus =3.3358e+5 !< lat heat H2O fusion real,parameter:: tliq=con_ttp real,parameter:: tice=con_ttp-20.0 real,parameter:: dldtl=con_cvap-con_cliq @@ -467,7 +466,7 @@ elemental function fpvsnew(t) end function fpvsnew ! !------------------------------------------------------------------------------------- -!> calcape() computes CAPE and CINS. +!> Computes CAPE and CINS. !> !> This routine computes CAPE and CINS given temperature, !> pressure, and specific humidty. In "storm and cloud @@ -940,7 +939,7 @@ SUBROUTINE CALCAPE(ITYPE,DPBND,P1D,T1D,Q1D,L1D,CAPE, & END SUBROUTINE CALCAPE ! !------------------------------------------------------------------------------------- -!> calcape2() computes CAPE and CINS. +!> Computes CAPE and CINS. !> !> This routine computes CAPE and CINS given temperature, !> pressure, and specific humidty. In "storm and cloud @@ -1701,11 +1700,11 @@ END SUBROUTINE CALCAPE2 ! elemental function TVIRTUAL(T,Q) ! -!> TVIRTUAL() Computes virtual temperature +!> @brief Computes virtual temperature !> !> @param[in] T real Temperature !> @param[in] Q real Specific humidity -!> +!> @return virtual temperature ! IMPLICIT NONE REAL TVIRTUAL @@ -1717,7 +1716,7 @@ end function TVIRTUAL ! !------------------------------------------------------------------------------------- ! -!> CALVOR() computes absolute vorticity. +!> Computes absolute vorticity. !> !> @param[in] UWND U wind (m/s) mass-points. !> @param[in] VWND V wind (m/s) mass-points. @@ -2144,8 +2143,8 @@ SUBROUTINE CALVOR(UWND,VWND,ABSV) ! RETURN END - -!> CALDIV computes divergence. +!----------------------------------------------------------------------------- +!> Computes divergence. !> !> For GFS, this routine copmutes the horizontal divergence !> using 2nd-order centered scheme on a lat-lon grid @@ -2161,9 +2160,6 @@ SUBROUTINE CALVOR(UWND,VWND,ABSV) !> 2016-07-22 | S Moorthi | Modified polar divergence calculation !> !> @author Sajal Kar W/NP2 @date 2016-05-05 - -!----------------------------------------------------------------------------- -!> caldiv() computes divergence. ! SUBROUTINE CALDIV(UWND,VWND,DIV) use masks, only: gdlat, gdlon @@ -2427,7 +2423,7 @@ SUBROUTINE CALDIV(UWND,VWND,DIV) END SUBROUTINE CALDIV !------------------------------------------------------------------------ -!> CALGRADPS computes gardients of a scalar field PS or LNPS. +!> Computes gradients of a scalar field PS or LNPS. !> !> For GFS, this routine computes horizontal gradients of PS or LNPS. !> Using 2nd-order centered scheme on a lat-lon grid. @@ -2658,7 +2654,8 @@ SUBROUTINE CALGRADPS(PS,PSX,PSY) END SUBROUTINE CALGRADPS -!> calslr_roebber() computes snow solid-liquid-ratio slr using the Roebber algorithm. +!----------------------------------------------------------------------------------------- +!> Computes snow solid-liquid-ratio (SLR) using the Roebber algorithm. !> !> Obtained the code and data from WPC. WPC's SLR products include SLR computed from !> GFS and NAM, SLR climotology, and averaged SLR. UPP computes SLR for GFS and RRFS. @@ -3065,7 +3062,7 @@ SUBROUTINE CALSLR_ROEBBER(tprs,rhprs,slr) END SUBROUTINE CALSLR_ROEBBER ! !------------------------------------------------------------------------------------- -! +!> @brief Called by calslr_roebber(), the breadboard subroutines are an AI Machine Learning algorithm that uses a neural network method to predict the snow solid-to-liquid ratio (SLR) SUBROUTINE breadboard1_main(nswFileName,mf,f1,f2,f3,f4,f5,f6,p1,p2,p3) implicit none @@ -4313,7 +4310,7 @@ END SUBROUTINE Breadboard10 ! !------------------------------------------------------------------------------------- ! -!> calslr_uutah() computes snow solid-liquid-ratio slr using the Steenburgh algorithm. +!> Computes snow solid-liquid-ratio slr using the Steenburgh algorithm. !> !> Obtained the code and data from U of Utah Jim Steenburgh and Peter Veals. !> SLR = m1X1 + m2X2 + m3X3 + m4X4 + m5X5 + m6X6 + b. diff --git a/sorc/ncep_post.fd/VRBLS2D_mod.f b/sorc/ncep_post.fd/VRBLS2D_mod.f index c7f10ce25..e3a143581 100644 --- a/sorc/ncep_post.fd/VRBLS2D_mod.f +++ b/sorc/ncep_post.fd/VRBLS2D_mod.f @@ -1,106 +1,356 @@ +!> @file +!> @brief VRBLS2D declares 2D variables that are used throughout the UPP code module vrbls2d !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - implicit none ! - real, allocatable :: & - U10 (:,:),AKMS (:,:),AKHS (:,:),THS (:,:),QS(:,:) & - ,UZ0(:,:),VZ0(:,:),THZ0(:,:),QZ0(:,:) & - ,SNO (:,:),TSHLTR (:,:),QSHLTR(:,:), MRSHLTR(:,:) & - ,V10(:,:),ACPREC(:,:),CUPREC(:,:),ANCPRC(:,:),CUPPT(:,:) & - ,SMSTAV(:,:),SSROFF(:,:),BGROFF(:,:),VEGFRC(:,:) & - ,SHDMIN(:,:),SHDMAX(:,:),LAI(:,:) & - ,ACSNOW(:,:),ACSNOM(:,:),CMC(:,:),SST(:,:) & - ,RSWIN(:,:),RLWIN(:,:),RLWTOA(:,:) & - ,LWDNBC(:,:),LWUPBC(:,:) & - ,TG(:,:),SFCSHX(:,:),PSLP(:,:),T700(:,:),Z500(:,:),Z700(:,:) & - ,SFCLHX(:,:),FIS(:,:),T500(:,:),Z1000(:,:),SLP(:,:) & - ,CFRACL(:,:),CFRACM(:,:),CFRACH(:,:),ACFRST(:,:) & - ,ACFRCV(:,:),NCFRST(:,:),NCFRCV(:,:),HBOT(:,:) & - ,HTOP(:,:),ASWIN(:,:),ALWIN(:,:),ASWOUT(:,:) & - ,ALWOUT(:,:),ASWTOA(:,:),ALWTOA(:,:),CZEN(:,:) & - ,CZMEAN(:,:),SIGT4(:,:),RSWOUT(:,:),RADOT(:,:) & - ,SMSTOT(:,:),PCTSNO(:,:),PSHLTR(:,:),TH10(:,:) & - ,Q10(:,:),SR(:,:),PREC(:,:),SUBSHX(:,:) & - ,SNOPCX(:,:),SFCUVX(:,:),SFCEVP(:,:),POTEVP(:,:) & - ,Z0(:,:),USTAR(:,:),TWBS(:,:),QWBS(:,:) & - ,SFCEXC(:,:),GRNFLX(:,:),SOILTB(:,:),F(:,:) & - ,ALBEDO(:,:),CLDFRA(:,:),CPRATE(:,:),CNVCFR(:,:) & - ,PBLH(:,:),PBLHGUST(:,:),HBOTD(:,:),HTOPD(:,:),HBOTS(:,:),HTOPS(:,:) & - ,CLDEFI(:,:),ALBASE(:,:),SI(:,:),LSPA(:,:) & - ,RSWINC(:,:),VIS(:,:),PD(:,:),MXSNAL(:,:),MIXHT(:,:) & - ,SNONC(:,:),EPSR(:,:),RSWTOA(:,:),TEQL(:,:) & + real, allocatable :: & + U10 (:,:) & !< 10m u-wind component + ,AKMS (:,:) & !< Surface exchange coefficient of momentum + ,AKHS (:,:) & !< Surface exchange coefficient of heat/moisture + ,THS (:,:) & !< Surface potential temperature + ,QS(:,:) & !< Specific humidity + ,UZ0(:,:) & !< U-wind component at roughness length (m/s) + ,VZ0(:,:) & !< V-wind component at roughness length (m/s) + ,THZ0(:,:) & !< Potential temperature at roughness length (K) + ,QZ0(:,:) & !< Specific humidity at roughness length (kg/kg) + ,SNO (:,:) & !< Instantaneous snow water equivalent + ,TSHLTR (:,:) & !< 2m temperature + ,QSHLTR(:,:) & !< 2m specific humidity + ,MRSHLTR(:,:) & !< Shelter mixing ratio + ,V10(:,:) & !< 10 m v-wind component + ,ACPREC(:,:) & !< Accumulated total precipitation + ,CUPREC(:,:) & !< Accumulated total convective precipitation + ,ANCPRC(:,:) & !< Accumulated total grid-scale precipitation + ,CUPPT(:,:) & !< Accumulated convective rain since last call to radiation + ,SMSTAV(:,:) & !< Soil moisture availability [%] + ,SSROFF(:,:) & !< Storm surface runoff + ,BGROFF(:,:) & !< Underground/subsurface runoff + ,VEGFRC(:,:) & !< Vegetation fraction + ,SHDMIN(:,:) & !< Annual MIN vegetation fraction + ,SHDMAX(:,:) & !< Annual MAX vegetation fraction + ,LAI(:,:) & !< Leaf area index + ,ACSNOW(:,:) & !< Accumulated snowfall + ,ACSNOM(:,:) & !< Accumulated snowmelt + ,CMC(:,:) & !< Canopy moisture content (m) + ,SST(:,:) & !< Sea surface temperature + ,RSWIN(:,:) & !< Incoming shortwave radiation at the surface + ,RLWIN(:,:) & !< Incoming longwave radiation at the surface + ,RLWTOA(:,:) & !< Outgoing longwave radiation at the top of the atmopshere + ,LWDNBC(:,:) & !< Downward longwave radiation at the surface + ,LWUPBC(:,:) & !< Upward longwave radiation at the surface + ,TG(:,:) & !< Ground temperature + ,SFCSHX(:,:) & !< Surface sensible heat flux + ,PSLP(:,:) & !< Reduced sea-level pressure array + ,T700(:,:) & !< Temperature at 700 hPa + ,Z500(:,:) & !< Geopotential height at 500 hPa + ,Z700(:,:) & !< Geopotential height at 700 hPa + ,SFCLHX(:,:) & !< Time averaged surface latent heat flux + ,FIS(:,:) & !< Geopotential height of the surface + ,T500(:,:) & !< Temperature at 500 hPa + ,Z1000(:,:) & !< Geopotential height at 1000 hPa + ,SLP(:,:) & !< Sea level pressure + ,CFRACL(:,:) & !< Radiation state variable - low cloud fraction + ,CFRACM(:,:) & !< Radiation state variable - middle cloud fraction + ,CFRACH(:,:) & !< Radiation state variable - high cloud fraction + ,ACFRST(:,:) & !< Radiation state variable - accumulated stratiform cloud fraction + ,ACFRCV(:,:) & !< Radiation state variable - accumulated convective cloud fraction + ,NCFRST(:,:) & !< Radiation state variable - times stratiform cloud >0 between rad calls + ,NCFRCV(:,:) & !< Radiation state variable - times convec cloud >0 between rad calls + ,HBOT(:,:) & !< Bottom of convection level + ,HTOP(:,:) & !< Top of convection level + ,ASWIN(:,:) & !< Time-averaged incoming shortwave radiation at the surface + ,ALWIN(:,:) & !< Time-averaged incoming longwave radiation at the surface + ,ASWOUT(:,:) & !< Time-averaged outgoing shortwave radiation at the surface + ,ALWOUT(:,:) & !< Time-averaged outgoing longwave radiation at the surface + ,ASWTOA(:,:) & !< Time-averaged outgoing shortwave radiation at the model top + ,ALWTOA(:,:) & !< Time-average outgoing longwave radiation at the model top + ,CZEN(:,:) & !< Cosine of solar zenith angle + ,CZMEAN(:,:) & !< Mean cosine of solar zenith angle + ,SIGT4(:,:) & !< Sigma of temperature (Stefan-Boltzmann * T**4) + ,RSWOUT(:,:) & !< Instantaneous outgoing shortwave radiation from the surface + ,RADOT(:,:) & !< Instantaneous outgoing longwave radiation from the surface + ,SMSTOT(:,:) & !< Total soil moisture + ,PCTSNO(:,:) & !< Snow cover percentage + ,PSHLTR(:,:) & !< Shelter-level pressure + ,TH10(:,:) & !< Potential temperature at 10 meters above the surface (anemometer level) + ,Q10(:,:) & !< Specific humidity at 10 meters above the surface (anemometer level) + ,SR(:,:) & !< Snow ratio + ,PREC(:,:) & !< Precipitation + ,SUBSHX(:,:) & !< Accumulated deep soil heat flux + ,SNOPCX(:,:) & !< Snow phase change heat flux + ,SFCUVX(:,:) & !< _____ Surface ultraviolet radiation? Derived from total momentum flux ? + ,SFCEVP(:,:) & !< Accumulated surface evaporation + ,POTEVP(:,:) & !< Potential evaporation + ,Z0(:,:) & !< Roughness length + ,USTAR(:,:) & !< Frictional velocity + ,TWBS(:,:) & !< Instantaneous surface sensible heat flux + ,QWBS(:,:) & !< Instantaneous surface latent heat flux + ,SFCEXC(:,:) & !< Surface exchange coefficient + ,GRNFLX(:,:) & !< Instantaneous ground heat flux + ,SOILTB(:,:) & !< Deep ground soil temperature + ,F(:,:) & !< ??? Coriolis-related - possibly (Coriolis * DT/2) or Coriolis sine latitude term + ,ALBEDO(:,:) & !< Surface albedo + ,CLDFRA(:,:) & !< Instantaneous 3D cloud fraction + ,CPRATE(:,:) & !< Convective precipitation rate + ,CNVCFR(:,:) & !< Convective cloud fraction + ,PBLH(:,:) & !< Planetary boundary layer (PBL) height + ,PBLHGUST(:,:) & !< Effective PBL height diagnosed from the theta-v profile, rather than the Ri profile + ,HBOTD(:,:) & !< Bottom of the deep convection layer + ,HTOPD(:,:) & !< Top of the deep convection layer + ,HBOTS(:,:) & !< Bottom of the shallow convection layer + ,HTOPS(:,:) & !< Top of the shallow convection layer + ,CLDEFI(:,:) & !< Convective cloud efficiency + ,ALBASE(:,:) & !< Base (snow-free) albedo + ,SI(:,:) & !< Snow depth in mm + ,LSPA(:,:) & !< Land surface precipitation accumulation + ,RSWINC(:,:) & !< Incoming clear-sky shortwave radiation at the surface (clear-sky equivalent of RSWIN) + ,VIS(:,:) & !< Visibility + ,PD(:,:) & !< Surface pressure minus PTOP + ,MXSNAL(:,:) & !< Maximum snow albedo + ,MIXHT(:,:) & !< Mixing height on surface + ,SNONC(:,:) & !< Accumulated total grid-scale snow/ice ? + ,EPSR(:,:) & !< Radiative emissivity + ,RSWTOA(:,:) & !< Outgoing shortwave radiation flux at top of atmosphere + ,TEQL(:,:) & !< Equivalent temperature ? ! Variables saved for input to IFI - ,IFI_APCP(:,:),CAPE(:,:),CIN(:,:) & + ,IFI_APCP(:,:) & !< In-flight icing (IFI) total accumulated precipitation at surface + ,CAPE(:,:) & !< Convective available potential energy + ,CIN(:,:) & !< Convective inhibition ! HWRF additions - ,MDLTAUX(:,:),MDLTAUY(:,:),CD10(:,:),CH10(:,:) & - ,ACSWUPT(:,:),SWDNT(:,:),ACSWDNT(:,:) & + ,MDLTAUX(:,:) & !< Zonal (u-) component of the wind stress + ,MDLTAUY(:,:) & !< Meridional (v-) component of the wind stress + ,CD10(:,:) & !< Drag coefficient at 10 meters above the ground + ,CH10(:,:) & !< Heat transfer coefficient at 10 meters above the ground + ,ACSWUPT(:,:) & !< Accumulated shortwave upwelling radiation flux at top + ,SWDNT(:,:) & !< Instantaneous shortwave downward radiation flux at top + ,ACSWDNT(:,:) & !< Accumulated shortwave downward radiation flux at top ! NAMB additions - ,SNOAVG(:,:),PSFCAVG(:,:),T10AVG(:,:),AKHSAVG(:,:),AKMSAVG(:,:) & - ,T10M(:,:),U10MAX(:,:),V10MAX(:,:),u10h(:,:),v10h(:,:) & - ,PRATE_MAX(:,:),FPRATE_MAX(:,:) & + ,SNOAVG(:,:) & !< Average snow cover + ,PSFCAVG(:,:) & !< Average surface pressure ? + ,T10AVG(:,:) & !< Time-averaged temperature at 10 meters above ground + ,AKHSAVG(:,:) & !< Time-averaged mass exchange coefficient or surface exchange coefficient for heat? + ,AKMSAVG(:,:) & !< Time-averaged wind exchange coefficient or surface exchange coefficient for momentum? + ,T10M(:,:) & !< Temperature at 10 meters above ground + ,U10MAX(:,:) & !< Maximum hourly zonal (u-) wind speed at 10 meters above ground level + ,V10MAX(:,:) & !< Maximum hourly meridional (v-) wind speed at 10 meters above ground level + ,u10h(:,:) & !< Hourly zonal (u-) wind speed at 10 meters above ground level + ,v10h(:,:) & !< Hourly meridional (v-) wind speed at 10 meters above ground level + ,PRATE_MAX(:,:) & !< Maximum precipitation rate in mm/h + ,FPRATE_MAX(:,:) & !< Maximum frozen precipitation rate in mm/h ! GSD addition - ,WSPD10MAX(:,:),W_UP_MAX(:,:),W_DN_MAX(:,:),REFD_MAX(:,:) & - ,UP_HELI_MAX(:,:),UP_HELI_MAX16(:,:),GRPL_MAX(:,:),QRMAX(:,:) & - ,UP_HELI(:,:),UP_HELI16(:,:),LTG1_MAX(:,:),LTG2_MAX(:,:),LTG3_MAX(:,:) & - ,UP_HELI_MIN(:,:),UP_HELI_MIN16(:,:) & - ,UP_HELI_MAX02(:,:),UP_HELI_MIN02(:,:) & - ,UP_HELI_MAX03(:,:),UP_HELI_MIN03(:,:) & - ,REL_VORT_MAX(:,:),REL_VORT_MAX01(:,:),REL_VORT_MAXHY1(:,:) & - ,WSPD10UMAX(:,:),WSPD10VMAX(:,:) & - ,REFDM10C_MAX(:,:),HAIL_MAX2D(:,:),HAIL_MAXK1(:,:) & - ,HAIL_MAXHAILCAST(:,:) & - ,NCI_LTG(:,:),NCA_LTG(:,:),NCI_WQ(:,:),NCA_WQ(:,:) & - ,NCI_REFD(:,:),NCA_REFD(:,:),RAINC_BUCKET1(:,:),RAINNC_BUCKET1(:,:) & - ,RAINC_BUCKET(:,:),RAINNC_BUCKET(:,:),SNOW_BUCKET(:,:) & - ,GRAUP_BUCKET(:,:),PCP_BUCKET(:,:),ACGRAUP(:,:),ACFRAIN(:,:) & - ,FRZRN_BUCKET(:,:),SNOW_ACM(:,:),SNOW_BKT(:,:) & - ,SNOW_BUCKET1(:,:),GRAUP_BUCKET1(:,:),PCP_BUCKET1(:,:) & - ,SNOWNC(:,:),GRAUPELNC(:,:),TMAX(:,:),W_MEAN(:,:) & - ,TSNOW(:,:),QVG(:,:),QV2m(:,:),QVl1(:,:) & - ,REFC_10CM(:,:), REF1KM_10CM(:,:), REF4KM_10CM(:,:) & - ,SWRADmean(:,:),U10mean(:,:),V10mean(:,:),SPDUV10mean(:,:) & - ,SWNORMmean(:,:),SNFDEN(:,:),SNDEPAC(:,:),SWDDNI(:,:),SWDDIF(:,:) & - ,SWDNBC(:,:),SWDDNIC(:,:),SWDDIFC(:,:), SWUPBC(:,:), SWUPT(:,:) & - ,TAOD5502D(:,:),AERASY2D(:,:),AERSSA2D(:,:),MEAN_FRP(:,:),EBB(:,:) & - ,HWP(:,:),LWP(:,:),IWP(:,:),XLAIXY(:,:) & + ,WSPD10MAX(:,:) & !< Maximum hourly wind speed at 10 meters above ground level + ,W_UP_MAX(:,:) & !< Maximum hourly updraft velocity + ,W_DN_MAX(:,:) & !< Maximum hourly downdraft velocity + ,REFD_MAX(:,:) & !< Maximum hourly 1 km above ground level reflectivity + ,UP_HELI_MAX(:,:) & !< Maximum hourly updraft helicity + ,UP_HELI_MAX16(:,:) & !< Maximum 1-6km hourly updraft helicity + ,GRPL_MAX(:,:) & !< Maximum column-integrated graupel + ,QRMAX(:,:) & !< Maximum rain water mixing ratio + ,UP_HELI(:,:) & !< Updraft helicity + ,UP_HELI16(:,:) & !< Updraft helicity in 1-6km layer + ,LTG1_MAX(:,:) & !< Maximum lightning threat index 1 + ,LTG2_MAX(:,:) & !< Maximum lightning threat index 2 + ,LTG3_MAX(:,:) & !< Maximum lightning threat index 3 + ,UP_HELI_MIN(:,:) & !< Minimum updraft helicity + ,UP_HELI_MIN16(:,:) & !< Minimum updraft helicity over 1-6 km layer + ,UP_HELI_MAX02(:,:) & !< Maximum updraft helicity over 0-2 km layer + ,UP_HELI_MIN02(:,:) & !< Minimum updraft helicity over 0-2 km layer + ,UP_HELI_MAX03(:,:) & !< Maximum updraft helicity over 0-3 km layer + ,UP_HELI_MIN03(:,:) & !< Minimum updraft helicity over 0-3 km layer + ,REL_VORT_MAX(:,:) & !< Maximum relative vertical vorticity + ,REL_VORT_MAX01(:,:) & !< Maximum relative vertical vorticity at 0-1 km + ,REL_VORT_MAXHY1(:,:) & !< Maximum relative vertical vorticity at hybrid level 1 + ,WSPD10UMAX(:,:) & !< Maximum u-component of wind at 10 meters above ground level + ,WSPD10VMAX(:,:) & !< Maximum hourly v-component of wind at 10 meters above ground level + ,REFDM10C_MAX(:,:) & !< Maximum hourly -10C reflectivity + ,HAIL_MAX2D(:,:) & !< Maximum hail diameter in column + ,HAIL_MAXK1(:,:) & !< Maximum hail diameter at k=1 + ,HAIL_MAXHAILCAST(:,:) & !< Maximum hail diameter at surface from HAILCAST algorithm (HRRR and RRFS applications) + ,NCI_LTG(:,:) & !< Convective initiation lightning + ,NCA_LTG(:,:) & !< Convective activity lightning + ,NCI_WQ(:,:) & !< Convective Initiation Vertical Hydrometeor Flux + ,NCA_WQ(:,:) & !< Convective Activity Vertical Hydrometeor Flux + ,NCI_REFD(:,:) & !< Convective Initiation Reflectivity + ,NCA_REFD(:,:) & !< Convective Activity Reflectivity + ,RAINC_BUCKET1(:,:) & !< Accumulated cumulus precipitation over BUCKET_DT1 periods of time + ,RAINNC_BUCKET1(:,:) & !< Accumulated grid-scale precipitation over BUCKET_DT1 periods of time + ,RAINC_BUCKET(:,:) & !< Accumulated cumulus precipitation over BUCKET_DT periods of time + ,RAINNC_BUCKET(:,:) & !< Accumulated grid-scale precipitation over BUCKET_DT periods of time + ,SNOW_BUCKET(:,:) & !< Accumulated grid-scale snow over BUCKET_DT periods of time + ,GRAUP_BUCKET(:,:) & !< Accumulated grid-scale graupel over BUCKET_DT periods of time + ,PCP_BUCKET(:,:) & !< Bucket total precipitation over BUCKET_DT periods of time + ,ACGRAUP(:,:) & !< Accumulated graupel/sleet + ,ACFRAIN(:,:) & !< Accumulated freezing rain + ,FRZRN_BUCKET(:,:) & !< Freezing rain bucket + ,SNOW_ACM(:,:) & !< Accumulated snowfall + ,SNOW_BKT(:,:) & !< Snowfall bucket + ,SNOW_BUCKET1(:,:) & !< Accumulated grid-scale snow over BUCKET_DT1 periods of time + ,GRAUP_BUCKET1(:,:) & !< Accumulated grid-scale graupel over BUCKET_DT1 periods of time + ,PCP_BUCKET1(:,:) & !< Bucket total precipitation over BUCKET_DT1 periods of time + ,SNOWNC(:,:) & !< Accumulated total grid-scale snow/ice precipitation (per time step?) + ,GRAUPELNC(:,:) & !< Time step non-convective graupel in [m] + ,TMAX(:,:) & !< Maximum 2m temperature + ,W_MEAN(:,:) & !< Mean vertical velocity + ,TSNOW(:,:) & !< Snow temperature + ,QVG(:,:) & !< Water vapor mixing ratio at the surface + ,QV2m(:,:) & !< Water vapor mixing ratio at 2 meters above ground level + ,QVl1(:,:) & !< Water vapor mixing ratio at level 1 + ,REFC_10CM(:,:) & !< Composite (10cm) radar reflectivity + ,REF1KM_10CM(:,:) & !< (10cm) radar reflectivity at 1 km + ,REF4KM_10CM(:,:) & !< (10cm) radar reflectivity at 4 km + ,SWRADmean(:,:) & !< Time-averaged incoming shortwave radiation + ,U10mean(:,:) & !< Time-averaged u-component wind speed at 10 meters above ground level + ,V10mean(:,:) & !< Time-averaged v-component wind speed at 10 meters above ground level + ,SPDUV10mean(:,:) & !< Time-averaged wind speed at 10 meters above ground level + ,SWNORMmean(:,:) & !< Time-averaged SWNORM (terrain-normal downwelling shortwave radiation) + ,SNFDEN(:,:) & !< Snowfall density + ,SNDEPAC(:,:) & !< Accumulated depth of snowfall + ,SWDDNI(:,:) & !< Instantaneous shortwave surface downward direct normal irradiance + ,SWDDIF(:,:) & !< Instantaneous shortwave surface downward diffuse irradiance + ,SWDNBC(:,:) & !< Shortwave surface downward clear-sky shortwave irradiance + ,SWDDNIC(:,:) & !< Clear-sky shortwave surface downward direct normal irradiance + ,SWDDIFC(:,:) & !< Clear-sky shortwave surface downward diffuse horizontal irradiance + ,SWUPBC(:,:) & !< Clear-sky surface upwelling shortwave flux + ,SWUPT(:,:) & !< Upward shortwave flux at top of atmosphere + ,TAOD5502D(:,:) & !< Total aerosol optical depth at 550 nm + ,AERASY2D(:,:) & !< Aerosol asymmetry parameter + ,AERSSA2D(:,:) & !< Aerosol single-scattering albedo + ,MEAN_FRP(:,:) & !< Instantaneous mean fire radiative power + ,HWP(:,:) & !< Hourly wildfire potential + ,LWP(:,:) & !< Liquid water path + ,IWP(:,:) & !< Ice water path + ,XLAIXY(:,:) & !< Leaf area index ? + ,SMOKE_AVE(:,:) & !< Hourly averaged smoke + ,DUST_AVE(:,:) & !< Hourly averaged fine dust (PM 2.5) + ,COARSEPM_AVE(:,:) & !< Hourly averaged coarse dust (PM 10) ! add new fields for GFS - ,SFCUX(:,:),SFCVX(:,:),SFCUXI(:,:), SFCVXI(:,:),AVGALBEDO(:,:),AVGCPRATE(:,:) & - ,AVGPREC(:,:),PTOP(:,:),PBOT(:,:),AVGCFRACH(:,:) & - ,AVGCFRACM(:,:),AVGCFRACL(:,:),AVGTCDC(:,:) & - ,AUVBIN(:,:),AUVBINC(:,:) & - ,ptopl(:,:),pbotl(:,:),Ttopl(:,:) & - ,ptopm(:,:),pbotm(:,:),Ttopm(:,:) & - ,ptoph(:,:),pboth(:,:),Ttoph(:,:) & - ,sfcugs(:,:),sfcvgs(:,:),PBLCFR(:,:) & - ,cldwork(:,:),gtaux(:,:),gtauy(:,:),runoff(:,:) & - ,maxtshltr(:,:),mintshltr(:,:),maxrhshltr(:,:) & - ,minrhshltr(:,:),dzice(:,:),maxqshltr(:,:),minqshltr(:,:) & - ,alwinc(:,:),alwoutc(:,:),alwtoac(:,:) & - ,aswinc(:,:),aswoutc(:,:),aswtoac(:,:),aswintoa(:,:) & - ,smcwlt(:,:),suntime(:,:),fieldcapa(:,:) & - ,avisbeamswin(:,:),avisdiffswin(:,:),airbeamswin(:,:) & - ,airdiffswin(:,:),snowfall(:,:),acond(:,:),edir(:,:),ecan(:,:) & - ,etrans(:,:),esnow(:,:),avgedir(:,:),avgecan(:,:),avgetrans(:,:)& - ,avgesnow(:,:),avgpotevp(:,:),avgprec_cont(:,:),avgcprate_cont(:,:)& - ,ti(:,:),aod550(:,:),du_aod550(:,:),ss_aod550(:,:),su_aod550(:,:) & - ,bc_aod550(:,:),oc_aod550(:,:),landfrac(:,:),paha(:,:),pahi(:,:) & - ,tecan(:,:),tetran(:,:),tedir(:,:),twa(:,:),fdnsst(:,:),pwat(:,:) - integer, allocatable :: IVGTYP(:,:),ISLTYP(:,:),ISLOPE(:,:) & - ,IEQL(:,:) + ,SFCUX(:,:) & !< Time-averaged zonal momentum flux + ,SFCVX(:,:) & !< Time-averaged meridional momentum flux + ,SFCUXI(:,:) & !< Instantaneous zonal momentum flux + ,SFCVXI(:,:) & !< Instantaneous meridional momentum flux + ,AVGALBEDO(:,:) & !< Mid-day average albedo + ,AVGCPRATE(:,:) & !< Convective precipitation in m per physics time step + ,AVGPREC(:,:) & !< Average precipitation rate in m per physics time step + ,PTOP(:,:) & !< Instantaneous convective cloud top pressure + ,PBOT(:,:) & !< Instantaneous convective cloud bottom pressure + ,AVGCFRACH(:,:) & !< Average high cloud fraction + ,AVGCFRACM(:,:) & !< Average mid cloud fraction + ,AVGCFRACL(:,:) & !< Average low cloud fraction + ,AVGTCDC(:,:) & !< Time-averaged column cloud fraction + ,AUVBIN(:,:) & !< Time-averaged incoming surface UV-B + ,AUVBINC(:,:) & !< Time-averaged incoming surface clear-sky UV-B + ,ptopl(:,:) & !< Time-averaged low cloud top pressure + ,pbotl(:,:) & !< Time-averaged low cloud bottom pressure + ,Ttopl(:,:) & !< Time-averaged low cloud top temperature + ,ptopm(:,:) & !< Time-averaged middle cloud top pressure + ,pbotm(:,:) & !< Time-averaged middle cloud bottom pressure + ,Ttopm(:,:) & !< Time-averaged middle cloud top temperature + ,ptoph(:,:) & !< Time-averaged high cloud top pressure + ,pboth(:,:) & !< Time-averaged high cloud bottom pressure + ,Ttoph(:,:) & !< Time-averaged high cloud top temperature + ,sfcugs(:,:) & !< No longer used + ,sfcvgs(:,:) & !< No longer used + ,PBLCFR(:,:) & !< Boundary layer cloud cover + ,cldwork(:,:) & !< Cloud work function + ,gtaux(:,:) & !< Time-averaged zonal gravity wave stress + ,gtauy(:,:) & !< Time-averaged meridional gravity wave stress + ,runoff(:,:) & !< Accumulated total (base+surface) runoff + ,maxtshltr(:,:) & !< Shelter max temperature + ,mintshltr(:,:) & !< Shelter min temperature + ,maxrhshltr(:,:) & !< Shelter max relative humidity + ,minrhshltr(:,:) & !< Shelter min relative humidity + ,dzice(:,:) & !< Ice thickness + ,maxqshltr(:,:) & !< Shelter max specific humidity + ,minqshltr(:,:) & !< Shelter min specific humidity + ,alwinc(:,:) & !< Time-averaged surface clear-sky incoming longwave + ,alwoutc(:,:) & !< Time-averaged surface clear-sky outgoing longwave + ,alwtoac(:,:) & !< Time-averaged clear-sky outgoing longwave at top of atmosphere + ,aswinc(:,:) & !< Time-averaged surface clear-sky incoming shortwave + ,aswoutc(:,:) & !< Time-averaged surface clear-sky outgoing shortwave + ,aswtoac(:,:) & !< Time-averaged clear-sky outgoing shortwave at top of atmosphere + ,aswintoa(:,:) & !< Time-averaged model top incoming shortwave + ,smcwlt(:,:) & !< Wilting point + ,suntime(:,:) & !< Sunshine duration + ,fieldcapa(:,:) & !< Field capacity + ,avisbeamswin(:,:) & !< Time-averaged surface visible beam downward solar flux + ,avisdiffswin(:,:) & !< Time-averaged surface visible diffuse downward solar flux + ,airbeamswin(:,:) & !< Time-averaged surface near ir beam downward solar flux + ,airdiffswin(:,:) & !< Time-averaged surface near ir diffuse downward solar flux + ,snowfall(:,:) & !< Total accumulated snowfall ? + ,acond(:,:) & !< Aerodynamic conductance on surface + ,edir(:,:) & !< Direct soil evaporation (W/m2) + ,ecan(:,:) & !< Canopy water evaporation (W/m2) + ,etrans(:,:) & !< Plant transpiration (W/m2) + ,esnow(:,:) & !< Snow sublimation (W/m2) + ,avgedir(:,:) & !< Direct soil evaporation (6-hr average?) + ,avgecan(:,:) & !< Accumulated evaporation of intercepted water (6-hr average?) + ,avgetrans(:,:)& !< Plant transpiration (6-hr average?) + ,avgesnow(:,:) & !< Snow sublimation (6-hr average?) + ,avgpotevp(:,:) & !< Time-averaged accumulated potential evaporation + ,avgprec_cont(:,:) & !< Average precipitation rate - continuous bucket + ,avgcprate_cont(:,:) & !< Convective precipitation - coninuous bucket + ,ti(:,:) & !< Sea ice skin temperature + ,aod550(:,:) & !< Instantaneous aerosol optical depth at 550 nm + ,du_aod550(:,:) & !< Instantaneous aerosol optical depth at 550 nm (dust) + ,ss_aod550(:,:) & !< Instantaneous aerosol optical depth at 550 nm (seasalt) + ,su_aod550(:,:) & !< Instantaneous aerosol optical depth at 550 nm (sulfates) + ,bc_aod550(:,:) & !< Instantaneous aerosol optical depth at 550 nm (organic carbon) + ,oc_aod550(:,:) & !< Instantaneous aerosol optical depth at 550 nm (black carbon) + ,landfrac(:,:) & !< Land fraction + ,paha(:,:) & !< Averaged precipitation advected heat flux + ,pahi(:,:) & !< Instantaneous precipitation advected heat flux + ,tecan(:,:) & !< Accumulated evaporation of intercepted water + ,tetran(:,:) & !< Accumulated plant transpiration + ,tedir(:,:) & !< Accumulated soil surface evaporation + ,twa(:,:) & !< Total water storage in aquifer + ,fdnsst(:,:) & !< Foundation temperature + ,pwat(:,:) !< Precipitable water + integer, allocatable :: IVGTYP(:,:) & !< Vegetation type + ,ISLTYP(:,:) & !< Soil type + ,ISLOPE(:,:) & !< Slope type + ,IEQL(:,:) !< EQ level (highest positively buoyant level ?) -! Add 2d aerosol diagnosis fields for GOCART (NGAC) +! Add 2d aerosol diagnosis fields for GOCART (NEMS-GFS Aerosol Component [NGAC]) real, allocatable :: & - DUSMASS(:,:),DUCMASS(:,:),DUSMASS25(:,:),DUCMASS25(:,:) & - ,SUSMASS(:,:),SUCMASS(:,:),SUSMASS25(:,:),SUCMASS25(:,:) & - ,OCSMASS(:,:),OCCMASS(:,:),OCSMASS25(:,:),OCCMASS25(:,:) & - ,BCSMASS(:,:),BCCMASS(:,:),BCSMASS25(:,:),BCCMASS25(:,:) & - ,SSSMASS(:,:),SSCMASS(:,:),SSSMASS25(:,:),SSCMASS25(:,:) & - ,DUSTCB(:,:),SSCB(:,:),OCCB(:,:),BCCB(:,:),SULFCB(:,:) & - ,DUSTALLCB(:,:),SSALLCB(:,:),DUSTPM(:,:),SSPM(:,:),PP25CB(:,:) & - ,DUSTPM10(:,:),PP10CB(:,:),NO3CB(:,:),NH4CB(:,:),maod(:,:)!lzhang, add for FV3-Chem + DUSMASS(:,:) & !< Dust (PM10) surface mass concentration + ,DUCMASS(:,:) & !< Dust (PM10) column mass density + ,DUSMASS25(:,:) & !< Dust (PM25) surface mass concentration + ,DUCMASS25(:,:) & !< Dust (PM25) column mass density + ,SUSMASS(:,:) & !< Sulfate surface mass concentration - no longer used + ,SUCMASS(:,:) & !< Sulfate column mass density - no longer used + ,SUSMASS25(:,:) & !< Sulfate (PM25) surface mass concentration - no longer used + ,SUCMASS25(:,:) & !< Sulfate (PM25) column mass density - no longer used + ,OCSMASS(:,:) & !< Organic Carbon Surface Mass Concentration - no longer used + ,OCCMASS(:,:) & !< Organic Carbon Column Mass Density - no longer used + ,OCSMASS25(:,:) & !< Organic Carbon (PM25) Surface Mass Concentration - no longer used + ,OCCMASS25(:,:) & !< Organic Carbon (PM25) Column Mass Density - no longer used + ,BCSMASS(:,:) & !< Black Carbon Surface Mass Concentration - no longer used + ,BCCMASS(:,:) & !< Black Carbon Column Mass Density - no longer used + ,BCSMASS25(:,:) & !< Black Carbon (PM25) Surface Mass Concentration - no longer used + ,BCCMASS25(:,:) & !< Black Carbon (PM25) Column Mass Density - no longer used + ,SSSMASS(:,:) & !< Sea Salt Surface Mass Concentration - no longer used + ,SSCMASS(:,:) & !< Sea Salt Column Mass Density - no longer used + ,SSSMASS25(:,:) & !< Sea Salt (PM25) Surface Mass Concentration - no longer used + ,SSCMASS25(:,:) & !< Sea Salt (PM25) Column Mass Density - no longer used + ,DUSTCB(:,:) & !< GFS output dust in nemsio (GOCART) + ,SSCB(:,:) & !< GFS output sea salt in nemsio (GOCART) + ,OCCB(:,:) & !< GFS output organic carbon in nemsio (GOCART) + ,BCCB(:,:) & !< GFS output black carbon in nemsio (GOCART) + ,SULFCB(:,:) & !< GFS output sulfate in netcdf (GOCART) + ,DUSTALLCB(:,:) & !< GFS output dust in nemsio (GOCART) + ,SSALLCB(:,:) & !< GFS output sea salt in nemsio (GOCART) + ,DUSTPM(:,:) & !< PM25 dust + ,SSPM(:,:) & !< PM25 sea salt + ,PP25CB(:,:) & !< GFS output pp25 in nemsio (GOCART) + ,DUSTPM10(:,:) & !< Dust 10 micrometers mass density concentration on model surface + ,PP10CB(:,:) & !< GFS output pp10 in nemsio (GOCART) + ,NO3CB(:,:) & !< GFS output nitrate in netcdf (GOCART) + ,NH4CB(:,:) & !< GFS output NH4 in netcdf (GOCART) + ,maod(:,:) !< MIE AOD at 550nm (for FV3-Chem) ! Add new field for AQM - real, allocatable :: aqm_aod550(:,:) + real, allocatable :: aqm_aod550(:,:) !< Air quality model (AQM) aerosol optical depth at 550nm ! end module vrbls2d diff --git a/sorc/ncep_post.fd/VRBLS3D_mod.f b/sorc/ncep_post.fd/VRBLS3D_mod.f index 017445db8..ba2261b99 100644 --- a/sorc/ncep_post.fd/VRBLS3D_mod.f +++ b/sorc/ncep_post.fd/VRBLS3D_mod.f @@ -1,88 +1,157 @@ -! 01-10-22 H CHUANG - MODIFIED TO PROCESS HYBRID MODEL OUTPUT -! 02-04-17 BALDWIN - MODIFIED TO INCLUDE ALL 3D ARRAYS -! 11-10-18 SARAH LU - MODIFIED TO INCLUDE AEROSOL OPTICAL PROPERTIES -! 11-12-15 SARAH LU - MODIFIED TO INCLUDE AEROSOL DIAG FIELDS -! 12-01-06 SARAH LU - MODIFIED TO INCLUDE AIR DENSITY AND LAYER THICKNESS -! 15-07-02 SARAH LU - MODIFIED TO INCLUDE SCATTERING AEROSOL OPTICAL THICKNESS -! 23-03-22 WM LEWIS - ADDED EFFECTIVE RADIUS ARRAYS -! 23-08-16 Yali Mao - Add CIT (Convectively-Induced Turbulence) for GTG4 +!> @file +!> @brief VRBLS3D declares 3D variables that are used throughout the UPP code +!> +!> ### Program history log: +!> Date | Programmer | Comments +!> -----|------------|--------- +!> 2001-10-22 | H CHUANG | MODIFIED TO PROCESS HYBRID MODEL OUTPUT +!> 2002-04-17 | BALDWIN | MODIFIED TO INCLUDE ALL 3D ARRAYS +!> 2011-10-18 | SARAH LU | MODIFIED TO INCLUDE AEROSOL OPTICAL PROPERTIES +!> 2011-12-15 | SARAH LU | MODIFIED TO INCLUDE AEROSOL DIAG FIELDS +!> 2012-01-06 | SARAH LU | MODIFIED TO INCLUDE AIR DENSITY AND LAYER THICKNESS +!> 2015-07-02 | SARAH LU | MODIFIED TO INCLUDE SCATTERING AEROSOL OPTICAL THICKNESS +!> 2023-03-22 | WM LEWIS | ADDED EFFECTIVE RADIUS ARRAYS +!> 2023-08-16 | Yali Mao | Add CIT (Convectively-Induced Turbulence) for GTG4 module vrbls3d !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - implicit none ! - real, allocatable :: UH(:,:,:),VH(:,:,:),WH(:,:,:) & - ,U(:,:,:),V(:,:,:),T(:,:,:),Q(:,:,:) & - ,CWM(:,:,:),Q2(:,:,:),PMID(:,:,:),PMIDV(:,:,:) & - ,PINT(:,:,:),ALPINT(:,:,:),ZMID(:,:,:) & - ,ZINT(:,:,:),OMGA(:,:,:) & - ,T_ADJ(:,:,:) & - ,F_ice(:,:,:),F_rain(:,:,:),F_RimeF(:,:,:) & - ,QQW(:,:,:), QQI(:,:,:), QQR(:,:,:), QQS(:,:,:), QQG(:,:,:), QQH(:,:,:) & - ,QQNW(:,:,:), QQNI(:,:,:),QQNR(:,:,:),QC_BL(:,:,:), QRIMEF(:,:,:) & - ,CFR(:,:,:), DBZ(:,:,:), DBZR(:,:,:), DBZI(:,:,:), DBZC(:,:,:) & - ,TTND(:,:,:),RSWTT(:,:,:),RLWTT(:,:,:), REF_10CM(:,:,:) & - ,EXCH_H(:,:,:),TRAIN(:,:,:),TCUCN(:,:,:),EL_PBL(:,:,:) & - ,MCVG(:,:,:),EXTCOF55(:,:,:),NLICE(:,:,:),CFR_RAW(:,:,:) & + + real, allocatable :: UH(:,:,:) & !< U-component wind (U at P-points including 2 row halo) + ,VH(:,:,:) & !< V-component wind (V at P-points including 2 row halo) + ,WH(:,:,:) & !< Geometric vertical velocity + ,U(:,:,:) & !< U-component wind + ,V(:,:,:) & !< V-component wind + ,T(:,:,:) & !< Temperature + ,Q(:,:,:) & !< Specific humidity + ,CWM(:,:,:) & !< Total condensate mixing ratio + ,Q2(:,:,:) & !< Turbulence kinetic energy + ,PMID(:,:,:) & !< Mid-layer pressure + ,PMIDV(:,:,:) & !< Model midlayer for v-point just below the pressure level to which we are interpolating ? + ,PINT(:,:,:) & !< Model layer interface pressure + ,ALPINT(:,:,:) & !< _____? + ,ZMID(:,:,:) & !< Mid-layer height + ,ZINT(:,:,:) & !< Model layer interface height + ,OMGA(:,:,:) & !< Omega - vertical velocity + ,T_ADJ(:,:,:) & !< No longer used/supported; temperature adjustment factor? + ,F_ice(:,:,:) & !< Fraction of condensate in form of ice + ,F_rain(:,:,:) & !< Fraction of condensate in form of rain + ,F_RimeF(:,:,:) & !< Rime Factor - ratio of total ice growth to deposition growth + ,QQW(:,:,:) & !< cloud water mixing ratio + ,QQI(:,:,:) & !< ice mixing ratio + ,QQR(:,:,:) & !< rain mixing ratio + ,QQS(:,:,:) & !< snow mixing ratio + ,QQG(:,:,:) & !< graupel mixing ratio + ,QQH(:,:,:) & !< hail mixing ratio + ,QQNW(:,:,:) & !< cloud water number concentration + ,QQNI(:,:,:) & !< ice number concentration + ,QQNR(:,:,:) & !< rain number concentration + ,QC_BL(:,:,:) & !< cloud water mixing ratio in PBL schemes + ,QRIMEF(:,:,:) & !< rime factor * ice mixing ratio ? + ,CFR(:,:,:) & !< Instantaneous 3d cloud fraction + ,DBZ(:,:,:) & !< Radar reflectivity factor ? + ,DBZR(:,:,:) & !< Radar reflectivity factor from rain + ,DBZI(:,:,:) & !< Radar reflectivity factor from ice (all forms) + ,DBZC(:,:,:) & !< Radar reflectivity factor from parameterized convection + ,TTND(:,:,:) & !< Temperature tendency due to radiative flux convergence + ,RSWTT(:,:,:) & !< Temperature tendency due to shortwave radiation + ,RLWTT(:,:,:) & !< Temperature tendency due to longwave radiation + ,REF_10CM(:,:,:) & !< Reflectivity + ,EXCH_H(:,:,:) & !< Exchange coefficient + ,TRAIN(:,:,:) & !< Temperature tendency due to latent heating from grid scale + ,TCUCN(:,:,:) & !< Temperature tendency due to latent heating from convection + ,EL_PBL(:,:,:) & !< Mixing length ? + ,MCVG(:,:,:) & !< Moisture convergence + ,EXTCOF55(:,:,:) & !< Unified extinction ext550/Aerosol optical depth + ,NLICE(:,:,:) & !< Time-averaged number concentration of large ice + ,CFR_RAW(:,:,:) & !< Cloud fraction (unprocessed) !! Wm Lewis: added - ,NRAIN(:,:,:),EFFRI(:,:,:), EFFRL(:,:,:), EFFRS(:,:,:) & - ,radius_cloud(:,:,:),radius_ice(:,:,:),radius_snow(:,:,:) & + ,NRAIN(:,:,:) & !< Number concentration of rain drops + ,EFFRI(:,:,:) & !< Thompson scheme cloud ice effective radius (for RRFS) + ,EFFRL(:,:,:) & !< Thompson scheme cloud water effective radius (for RRFS) + ,EFFRS(:,:,:) & !< Thompson scheme snow effective radius (for RRFS) + ,radius_cloud(:,:,:) & !< Effective radius, cloud drops + ,radius_ice(:,:,:) & !< Effective radius, cloud ice + ,radius_snow(:,:,:) & !< Effective radius, snow ! KRS Add HWRF fields - ,REFL_10CM(:,:,:) & + ,REFL_10CM(:,:,:) & !< Reflectivity (for HWRF) ! Add GFS fields - ,O3(:,:,:),O(:,:,:),O2(:,:,:) & + ,O3(:,:,:) & !< Ozone mixing ratio + ,O(:,:,:) & !< Atomic oxygen mixing ratio ? + ,O2(:,:,:) & !< Molecular oxygen mixing ratio ? ! Add GFS D3D fields - ,vdifftt(:,:,:) & - ,tcucns(:,:,:) & - ,vdiffmois(:,:,:) & - ,dconvmois(:,:,:) & - ,sconvmois(:,:,:) & - ,nradtt(:,:,:) & - ,o3vdiff(:,:,:) & - ,o3prod(:,:,:) & - ,o3tndy(:,:,:) & - ,mwpv(:,:,:) & - ,unknown(:,:,:) & - ,vdiffzacce(:,:,:) & - ,zgdrag(:,:,:) & - ,cnvctummixing(:,:,:) & - ,vdiffmacce(:,:,:) & - ,mgdrag(:,:,:) & - ,cnvctvmmixing(:,:,:) & - ,ncnvctcfrac(:,:,:) & - ,cnvctumflx(:,:,:) & - ,cnvctdmflx(:,:,:) & - ,cnvctdetmflx(:,:,:) & - ,cnvctzgdrag(:,:,:) & - ,cnvctmgdrag(:,:,:) & - ,QQNWFA(:,:,:) & - ,QQNIFA(:,:,:) & - ,TAOD5503D(:,:,:) & - ,AEXTC55(:,:,:) & + ,vdifftt(:,:,:) & !< Vertical diffusion temperature tendency ? + ,tcucns(:,:,:) & !< Temperature tendency due to latent heating from (shallow?) convection ? + ,vdiffmois(:,:,:) & !< Vertical diffusion moistening rate ? + ,dconvmois(:,:,:) & !< Deep convective moistening rate ? + ,sconvmois(:,:,:) & !< Shallow convective moistening rate ? + ,nradtt(:,:,:) & !< Net radiation temperature tendency ? + ,o3vdiff(:,:,:) & !< Ozone vertical diffusion ? + ,o3prod(:,:,:) & !< Ozone production ? + ,o3tndy(:,:,:) & !< Ozone tendency ? + ,mwpv(:,:,:) & !< Mass-weighted potential vorticity ? + ,unknown(:,:,:) & !< _____? + ,vdiffzacce(:,:,:) & !< Vertical diffusion zonal acceleration ? + ,zgdrag(:,:,:) & !< Gravity wave drag zonal acceleration ? + ,cnvctummixing(:,:,:) & !< Convective zonal momentum mixing acceleration ? + ,vdiffmacce(:,:,:) & !< Vertical diffusion meridional acceleration ? + ,mgdrag(:,:,:) & !< Gravity wave drag meridional acceleration ? + ,cnvctvmmixing(:,:,:) & !< Convective meridional momentum mixing acceleration ? + ,ncnvctcfrac(:,:,:) & !< Non-convective cloud fraction (%) ? + ,cnvctumflx(:,:,:) & !< Convective updraft mass flux ? + ,cnvctdmflx(:,:,:) & !< Convective downdraft mass flux ? + ,cnvctdetmflx(:,:,:) & !< Convective detrainment mass flux ? + ,cnvctzgdrag(:,:,:) & !< Convective gravity wave drag zonal acceleration ? + ,cnvctmgdrag(:,:,:) & !< Convective gravity wave drag meridional acceleration ? + ,QQNWFA(:,:,:) & !< Water-friendly aerosol number concentration + ,QQNIFA(:,:,:) & !< Ice-friendly aerosol number concentration + ,TAOD5503D(:,:,:) & !< 3D aerosol optical depth at 550 nm + ,AEXTC55(:,:,:) & !< Aerosol extinction coefficient ! ! Add aerosol optical properties for GOCART (NGAC) - ,ext(:,:,:), asy(:,:,:) & - ,ssa(:,:,:), sca(:,:,:) & + ,ext(:,:,:) & !< aerosol extinction coefficient + ,asy(:,:,:) & !< asymmetry parameter + ,ssa(:,:,:) & !< single-scattering albedo + ,sca(:,:,:) & !< aerosol scattering coefficient ? ! Add aerosol diagnosis fields for GOCART (NGAC) - ,duem(:,:,:), dusd(:,:,:) & - ,dudp(:,:,:), duwt(:,:,:) & - ,dusv(:,:,:), sssv(:,:,:) & - ,suem(:,:,:), susd(:,:,:) & - ,sudp(:,:,:), suwt(:,:,:) & - ,ssem(:,:,:), sssd(:,:,:) & - ,ssdp(:,:,:), sswt(:,:,:) & - ,ocem(:,:,:), ocsd(:,:,:) & - ,ocdp(:,:,:), ocwt(:,:,:) & - ,ocsv(:,:,:), bcsv(:,:,:) & - ,bcem(:,:,:), bcsd(:,:,:) & - ,bcdp(:,:,:), bcwt(:,:,:) & + ,duem(:,:,:) & !< Dust emission fluxes + ,dusd(:,:,:) & !< Dust sedimentation fluxes + ,dudp(:,:,:) & !< Dust dry deposition fluxes + ,duwt(:,:,:) & !< Dust wet deposition fluxes + ,dusv(:,:,:) & !< Dust scavenging fluxes + ,sssv(:,:,:) & !< Seasalt scavenging fluxes + ,suem(:,:,:) & !< Sulfate emission mass flux + ,susd(:,:,:) & !< Sulfate sedimentation mass flux + ,sudp(:,:,:) & !< Sulfate dry deposition mass flux + ,suwt(:,:,:) & !< Sulfate wet deposition mass flux + ,ssem(:,:,:) & !< Seasalt emission fluxes + ,sssd(:,:,:) & !< Seasalt emission/sedimentation + ,ssdp(:,:,:) & !< Seasalt dry deposition fluxes + ,sswt(:,:,:) & !< Seasalt wet deposition fluxes + ,ocem(:,:,:) & !< Organic carbon emission fluxes + ,ocsd(:,:,:) & !< Organic carbon sedimentation fluxes + ,ocdp(:,:,:) & !< Organic carbon dry deposition fluxes + ,ocwt(:,:,:) & !< Organic carbon large wet deposition fluxes + ,ocsv(:,:,:) & !< Organic carbon convective wet deposition fluxes + ,bcsv(:,:,:) & !< Black carbon convective wet deposition fluxes + ,bcem(:,:,:) & !< Black carbon emission fluxes + ,bcsd(:,:,:) & !< Black carbon sedimentation fluxes + ,bcdp(:,:,:) & !< Black carbon dry deposition fluxes + ,bcwt(:,:,:) & !< Black carbon large wet deposition fluxes ! Add air density and thickness for GOCART (NGAC) - ,dpres(:,:,:),rhomid(:,:,:) & + ,dpres(:,:,:) & !< Layer thickness in pressure on hybrid levels + ,rhomid(:,:,:) & !< Air density rhomid ! Add NCAR GFIP ICING - ,icing_gfip(:,:,:),icing_gfis(:,:,:) & + ,icing_gfip(:,:,:) & !< Global Forecast Icing Potential + ,icing_gfis(:,:,:) & !< Global Forecast Icing Severity ! Add NCAR GTG turbulence - ,catedr(:,:,:),mwt(:,:,:),gtg(:,:,:),cit(:,:,:) & + ,catedr(:,:,:) & !< Clean air turbulence (CAT) eddy dissipation parameter (EDR) + ,mwt(:,:,:) & !< Mountain wave turbulence + ,gtg(:,:,:) & !< Graphical turbulence guidance + ,cit(:,:,:) & !< Convectively-induced turbulence ! AQF - ,avgozcon(:,:,:),avgpmtf(:,:,:) + ,avgozcon(:,:,:) & !< Average ozone concentration + ,avgpmtf(:,:,:) !< Average particulate matter (fine) end module vrbls3d diff --git a/sorc/ncep_post.fd/VRBLS4D_mod.f b/sorc/ncep_post.fd/VRBLS4D_mod.f index a31dd77ab..5e42bd9aa 100644 --- a/sorc/ncep_post.fd/VRBLS4D_mod.f +++ b/sorc/ncep_post.fd/VRBLS4D_mod.f @@ -1,22 +1,29 @@ -! 01-10-22 H CHUANG - MODIFIED TO PROCESS HYBRID MODEL OUTPUT -! 02-04-17 BALDWIN - MODIFIED TO INCLUDE ALL 3D ARRAYS -! 11-10-18 SARAH LU - MODIFIED TO INCLUDE GOCART AEROSOLS -! 22-09-18 Li(Kate) Zhang - MODIFIED TO INCLUDE new NASA GOCART AEROSOLS of NO3 and NH4 +!> @file +!> @brief VRBLS4D declares 4D variables that are used throughout the UPP code +!> +!> ### Program history log: +!> Date | Programmer | Comments +!> -----|------------|--------- +!> 2001-10-22 | H CHUANG | MODIFIED TO PROCESS HYBRID MODEL OUTPUT +!> 2002-04-17 | BALDWIN | MODIFIED TO INCLUDE ALL 3D ARRAYS +!> 2011-10-18 | SARAH LU | MODIFIED TO INCLUDE GOCART AEROSOLS +!> 2022-09-18 | Li(Kate) Zhang | MODIFIED TO INCLUDE new NASA GOCART AEROSOLS of NO3 and NH4 module vrbls4d !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - implicit none ! - real, allocatable :: DUST(:,:,:,:) ! dust - real, allocatable :: SALT(:,:,:,:) ! sea salt - real, allocatable :: SOOT(:,:,:,:) ! black carbon - real, allocatable :: WASO(:,:,:,:) ! organic carbon - real, allocatable :: SUSO(:,:,:,:) ! sulfate - real, allocatable :: NO3(:,:,:,:) ! no3 - real, allocatable :: NH4(:,:,:,:) ! nh4 - real, allocatable :: SMOKE(:,:,:,:) - real, allocatable :: FV3DUST(:,:,:,:) - real, allocatable :: COARSEPM(:,:,:,:) - real, allocatable :: PP25(:,:,:,:) ! PP25 - real, allocatable :: PP10(:,:,:,:) ! PP10 + real, allocatable :: DUST(:,:,:,:) !< dust + real, allocatable :: SALT(:,:,:,:) !< sea salt + real, allocatable :: SOOT(:,:,:,:) !< black carbon + real, allocatable :: WASO(:,:,:,:) !< organic carbon + real, allocatable :: SUSO(:,:,:,:) !< sulfate + real, allocatable :: NO3(:,:,:,:) !< no3 + real, allocatable :: NH4(:,:,:,:) !< nh4 + real, allocatable :: SMOKE(:,:,:,:) !< smoke + real, allocatable :: FV3DUST(:,:,:,:) !< FV3 dust + real, allocatable :: COARSEPM(:,:,:,:) !< coarse dust particulate matter (PM) from RRFS + real, allocatable :: EBB(:,:,:,:) !< Biomass burning emissions + real, allocatable :: PP25(:,:,:,:) !< PP25 - fine particulate matter + real, allocatable :: PP10(:,:,:,:) !< PP10 - particulate matter < 10 microns in diameter ! end module vrbls4d diff --git a/sorc/ncep_post.fd/WRFPOST.F b/sorc/ncep_post.fd/WRFPOST.F index 1c778d6ab..c8e9f09b5 100644 --- a/sorc/ncep_post.fd/WRFPOST.F +++ b/sorc/ncep_post.fd/WRFPOST.F @@ -33,11 +33,12 @@ !> 2022-11-08 | K Wang | Replace aqfamaq_on with aqf_on !> 2023-01-24 | Sam Trahan | write_ifi_debug_files flag for IFI debug capability !> 2023-03-21 | Jesse Meng | Add slrutah_on option to use U Utah SLR -!> 2023-04-04 | Li(Kate Zhang) |Add namelist optoin for CCPP-Chem (UFS-Chem) -! and 2D diag. output (d2d_chem) for GEFS-Aerosols and CCPP-Chem model. +!> 2023-04-04 | Li(Kate Zhang) |Add namelist optoin for CCPP-Chem (UFS-Chem) and 2D diag. output (d2d_chem) for GEFS-Aerosols and CCPP-Chem model. !> 2023-05-20 | Rahul Mahajan | Bug fix for fileNameFlat as namelist configurable !> 2023-08-16 | Yali Mao | Add gtg_on logical option !> 2023-11-29 | Eric James | Add method_blsn logical option +!> 2024-08-19 | Jaymes Kenyon | Adding a call to INITPOST_MPAS +!> 2024-08-30 | Jaymes Kenyon | Hard coding iSF_SURFACE_PHYSICS=3 when modelname=RAPR and submodelname=MPAS !> @author Mike Bladwin NSSL/SPC @date 2002-06-18 !--------------------------------------------------------------------- !> @return wrfpost @@ -384,6 +385,12 @@ PROGRAM WRFPOST ! Read and set global value for surface physics scheme call ext_ncd_get_dom_ti_integer(DataHandle & ,'SF_SURFACE_PHYSICS',itmp,1,ioutcount, status ) + + ! J. Kenyon / 23 Aug 2024: GSL MPAS output erroneously + ! indicates SF_SURFACE_PHYSICS = 0 (should be 3), so overwrite + ! here: + if (modelname == 'RAPR' .and. submodelname == 'MPAS') itmp = 3 + iSF_SURFACE_PHYSICS = itmp ! set NSOIL to 4 as default for NOAH but change if using other ! SFC scheme @@ -571,7 +578,11 @@ PROGRAM WRFPOST IF(TRIM(IOFORM) == 'netcdf' .OR. TRIM(IOFORM) == 'netcdfpara') THEN IF(MODELNAME == 'NCAR' .OR. MODELNAME == 'RAPR') THEN - CALL INITPOST + IF (SUBMODELNAME == 'MPAS') THEN + CALL INITPOST_MPAS + ELSE + CALL INITPOST + ENDIF ELSE IF (MODELNAME == 'FV3R' .OR. MODELNAME == 'GFS') THEN ! use parallel netcdf library to read output directly CALL INITPOST_NETCDF(ncid2d,ncid3d) diff --git a/sorc/ncep_post.fd/ZENSUN.f b/sorc/ncep_post.fd/ZENSUN.f index 1d9461f20..c46a94b44 100644 --- a/sorc/ncep_post.fd/ZENSUN.f +++ b/sorc/ncep_post.fd/ZENSUN.f @@ -1,8 +1,7 @@ !> @file -!> zensun() makes sun zenith and sun azimuth angle. +!> @brief zensun() makes sun zenith and sun azimuth angle. !> !> @author Paul Ricchiazzi Earth Space Research Group,UCSB @date 1992-10-23 - !> This subroutine computes solar position information as a function of !> geographic coordinates, date and time. !> @@ -44,7 +43,14 @@ !> !> This data is characterized by 74 points. !> +!> ### Program history log: +!> Date | Programmer | Comments +!> -----|------------|--------- +!> 2005-10-21 | kazumori | Reformatted for GSI !> +!> @author Paul Ricchiazzi Earth Space Research Group,UCSB @date 1992-10-23 +!------------------------------------------------------------------------------------- +!> @brief Makes sun zenith and sun azimuth angle. !> @param[in] day integer Julian day (positive scalar or vector), (spring equinox = 80), (summer solstice= 171), (fall equinox = 266), (winter solstice= 356). !> @param[in] time real Universal Time in hours (scalar or vector). !> @param[in] lat real Geographic latitude of point on earth's surface (degrees). @@ -52,13 +58,6 @@ !> @param[in] pi real The mathematical constant pi. !> @param[out] sun_zenith real Solar zenith angle. !> @param[out] sun_azimuth real Solar azimuth angle. -!> -!> ### Program history log: -!> Date | Programmer | Comments -!> -----|------------|--------- -!> 2005-10-21 | kazumori | Reformatted for GSI -!> -!> @author Paul Ricchiazzi Earth Space Research Group,UCSB @date 1992-10-23 subroutine zensun(day,time,lat,lon,pi,sun_zenith,sun_azimuth) ! diff --git a/sorc/ncep_post.fd/cuparm.f b/sorc/ncep_post.fd/cuparm.f index 2de97b119..5c3e56c34 100644 --- a/sorc/ncep_post.fd/cuparm.f +++ b/sorc/ncep_post.fd/cuparm.f @@ -1,26 +1,55 @@ +!> @file +!> @brief cuparm_mod defines variables used for cumulus parameterization module cuparm_mod -! + implicit none -! - real,parameter :: H1=1.E0,H1D5=1.5E0,H2D5=2.5E0,H3000=3000.E0, & - H10E5=100000.E0,D00=0.E0,D125=.125E0,D50=.5E0,D608=.608E0, & - G=9.8E0,CP=1004.6E0,CAPA=0.28589641E0,ROG=287.04/9.8, & - ELWV=2.50E6,ELIVW=2.72E6,ROW=1.E3,EPSQ=2.E-12, & - A2=17.2693882E0,A3=273.16E0,A4=35.86E0, & - T0=273.16E0,T1=274.16E0,PQ0=379.90516E0,STRESH=1.10E0, & - STABS=1.0E0,STABD=.90E0,STABFC=1.00E0,DTTOP=0.0E0, & + + real, parameter :: H1=1.E0, & !< 1.0 + H1D5=1.5E0, & !< 1.5 + H2D5=2.5E0, & !< 2.5 + H3000=3000.E0, & !< 3000 + H10E5=100000.E0, & !< 100,000 + D00=0.E0, & !< Decimal number 0 + D125=.125E0, & !< Decimal number 0.125 + D50=.5E0, & !< Decimal number 0.5 + D608=.608E0, & !< Decimal number 0.608 + G=9.8E0, & !< Acceleration due to gravity + CP=1004.6E0, & !< Specific heat capacity of dry air at constant pressure (kJ/kg-K) + CAPA=0.28589641E0, & !< R/Cp (universal gas constant over specific heat capacity of dry air at constant pressure) + ROG=287.04/9.8, & !< RD over G - Gas constant for dry air divided by acceleration due to gravity + ELWV=2.50E6, & !< Latent heat of vaporization of water + ELIVW=2.72E6, & !< Latent heat of vaporization of water in J/kg, used in calculations involving energy transfer during evaporation + ROW=1.E3, & !< Density (rho) of water + EPSQ=2.E-12, & !< Minimum q (specific humidity) for computing precipitation type ? + A2=17.2693882E0, & !< Constant used to parameterize specific humidity at 2m in WRFPOST: qs=pq0/p*exp(a2*(t-a3)/(t-a4)) + A3=273.16E0, & !< Constant used to parameterize specific humidity at 2m in WRFPOST: qs=pq0/p*exp(a2*(t-a3)/(t-a4)) + A4=35.86E0, & !< Constant used to parameterize specific humidity at 2m in WRFPOST: qs=pq0/p*exp(a2*(t-a3)/(t-a4)) + T0=273.16E0, & !< Triple point of water (K) + T1=274.16E0, & !< 1 degree above triple point of water (K) + PQ0=379.90516E0, & !< Constant used to parameterize specific humidity at 2m in WRFPOST: qs=pq0/p*exp(a2*(t-a3)/(t-a4)) + STRESH=1.10E0, & !< No longer used/supported + STABS=1.0E0, & !< No longer used/supported + STABD=.90E0, & !< No longer used/supported + STABFC=1.00E0, & !< No longer used/supported + DTTOP=0.0E0, & !< No longer used/supported !---VVVVV - RHF=0.10,EPSUP=1.00,EPSDN=1.05,EPSTH=0.0, & - PBM=13000.,PQM=20000.,PNO=1000.,PONE=2500.,ZSH=2000., & - PFRZ=15000.,PSHU=45000., & + RHF=0.10, & !< No longer used/supported (Relative humidity factor) + EPSUP=1.00, & !< No longer used/supported + EPSDN=1.05, & !< No longer used/supported + EPSTH=0.0, & !< No longer used/supported + PBM=13000., & !< _____? + PQM=20000., & !< No longer used/supported + PNO=1000., & !< No longer used/supported + PONE=2500., & !< _____? + ZSH=2000., & !< No longer used/supported + PFRZ=15000., & !< _____? + PSHU=45000., & !< No longer used/supported -! &, RHF=0.20,EPSUP=0.93,EPSDN=1.00,EPSTH=0.3 -! &, RHF=0.20,EPSUP=1.00,EPSDN=1.00,EPSTH=0.3 !AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA ! ! AUGUST '91: SCHEME HAVING THE OPTION OF USING DIFFERENT FAST AND ! SLOW PROFILES FOR SEA AND FOR LAND POINTS; AND ALSO THE "SEA" AND -! THE "LAND" SCHEME EVERYWHERE. OVER LAND PROFILES DEPART FROM THE +! THE "LAND" SCHEME EVERYWHERE. OVER LAND PROFILES DEPART FROM THE ! FAST (DRY) PROFILES ONLY FOR PRECIPITATION/TIME STEP > ! A PRESCRIBED VALUE (CURRENTLY, IN THE VERSION #3 DONE WEDNESDAY ! 18 SEPTEMBER, 1/4 INCH/24 H). USE OF VARIOUS SWITCHES AS FOLLOWS. @@ -45,7 +74,11 @@ module cuparm_mod ! * SETTING OCT90=.TRUE. ! (WITH THESE SETTINGS FAST LAND PROFILES ONLY ARE USED). ! FM - FSS=.85E0,EFIMN=.20E0,EFMNT=.70E0,FCC=.50,FCP=H1-FCC, & + FSS=.85E0, & !< Factor to obtain “slow” profiles over the sea ? + EFIMN=.20E0, & !< Minimum convective cloud efficiency + EFMNT=.70E0, & !< _____? + FCC=.50, & !< _____? + FCP=H1-FCC, & !< _____? ! ! IN THIS VERSION 3.5, OVER LAND AND FOR THE FAST PROFILES, DSPB ! IS PRESCRIBED TO BE 25 PERCENT DRIER THAN THE FAST SEA VALUE @@ -55,13 +88,30 @@ module cuparm_mod ! AVERAGE OF THE FAST AND THE SLOW LAND PROFILES SOMEWHAT DRIER ! THAN THE OCT90 FIXED LAND PROFILES. FM ! - DSPBFL=-4843.75E0,DSP0FL=-7050.00E0,DSPTFL=-2250.0E0,FSL=.850E0, & +!> Deficit Saturation Pressure (DSP) +!> DSPB = cloud base +!> DSP0 = freezing level +!> DSPT = cloud top +! + DSPBFL=-4843.75E0, & !< Deficit Saturation Pressure (DSP) at cloud base - fast land ? + DSP0FL=-7050.00E0, & !< Deficit Saturation Pressure (DSP) at freezing level - fast land ? + DSPTFL=-2250.0E0, & !< Deficit Saturation Pressure (DSP) at cloud top - fast land ? + FSL=.850E0, & !< Factor to obtain "slow" profiles over land ? !*** ACTIVATE THE FOLLOWING LINE IF OCT90=.TRUE. (AND COMMENT OUT THE !*** PRECEDING LINE): -! DSPBFL=-3875.E0,DSP0FL=-5875.E0,DSPTFL=-1875.E0,FSL=1.0E0, & - DSPBFS=-3875.E0,DSP0FS=-5875.E0,DSPTFS=-1875.E0, & - DSPBSL=DSPBFL*FSL,DSP0SL=DSP0FL*FSL,DSPTSL=DSPTFL*FSL, & - DSPBSS=DSPBFS*FSS,DSP0SS=DSP0FS*FSS,DSPTSS=DSPTFS*FSS, & +! DSPBFL=-3875.E0, & !< Deficit Saturation Pressure (DSP) at cloud base - fast land ? +! DSP0FL=-5875.E0, & !< Deficit Saturation Pressure (DSP) at freezing level - fast land ? +! DSPTFL=-1875.E0, & !< Deficit Saturation Pressure (DSP) at cloud top - fast land ? +! FSL=1.0E0, & !< Factor to obtain "slow" profiles over land ? + DSPBFS=-3875.E0, & !< Deficit Saturation Pressure (DSP) at cloud base - fast sea ? + DSP0FS=-5875.E0, & !< Deficit Saturation Pressure (DSP) at freezing level - fast sea ? + DSPTFS=-1875.E0, & !< Deficit Saturation Pressure (DSP) at cloud top - fast sea ? + DSPBSL=DSPBFL*FSL, & !< Deficit Saturation Pressure (DSP) at cloud base - slow land ? + DSP0SL=DSP0FL*FSL, & !< Deficit Saturation Pressure (DSP) at freezing level - slow land ? + DSPTSL=DSPTFL*FSL, & !< Deficit Saturation Pressure (DSP) at cloud top - slow land ? + DSPBSS=DSPBFS*FSS, & !< Deficit Saturation Pressure (DSP) at cloud base - slow sea ? + DSP0SS=DSP0FS*FSS, & !< Deficit Saturation Pressure (DSP) at freezing level - slow sea ? + DSPTSS=DSPTFS*FSS, & !< Deficit Saturation Pressure (DSP) at cloud top - slow sea ? !*** NEW CONVECTION SCHEME WITH CROSSING DSP PROFILES ****************** !+- &, UNIS=.FALSE.,EFIMN=.71E0,EFMNT=.71,FCC=0.5,FCP=H1-FCC !+- &, DSPBL=-3875.E0,DSP0L=-5875.E0,DSPTL=-1875.E0 @@ -73,22 +123,31 @@ module cuparm_mod ! &, DSPBF=-3875.E0,DSP0F=-5875.E0,DSPTF=-1875.E0 ! &, DSPBS=-3875.E0,DSP0S=-5875.E0,DSPTS=-1875.E0 !*********************************************************************** - TREL=3000.,EPSNTP=.0010E0,EFIFC=5.0E0, & - AVGEFI=(EFIMN+1.E0)*.5E0,DSPC=-3000.E0,EPSP=1.E-7, & - STEFI=1.E0, & + TREL=3000., & !< Relaxation time + EPSNTP=.0010E0, & !< No longer used/supported + EFIFC=5.0E0, & !< No longer used/supported + AVGEFI=(EFIMN+1.E0)*.5E0, & !< Average cloud efficiency + DSPC=-3000.E0, & !< No longer used/supported + EPSP=1.E-7, & !< No longer used/supported + STEFI=1.E0, & !< Starting efficiency (EFI) !*** ACTIVATE THE FOLLOWING LINE AND COMMENT OUT THE PRECEDING LINE IF !*** OCT90=.TRUE. -! &, STEFI=AVGEFI - SLOPBL=(DSPBFL-DSPBSL)/(H1-EFIMN), & - SLOP0L=(DSP0FL-DSP0SL)/(H1-EFIMN), & - SLOPTL=(DSPTFL-DSPTSL)/(H1-EFIMN), & - SLOPBS=(DSPBFS-DSPBSS)/(H1-EFIMN), & - SLOP0S=(DSP0FS-DSP0SS)/(H1-EFIMN), & - SLOPTS=(DSPTFS-DSPTSS)/(H1-EFIMN), & - SLOPE=(H1 -EFMNT)/(H1-EFIMN) - real, parameter :: & - A23M4L=A2*(A3-A4)*ELWV, & - ELOCP=ELIVW/CP,CPRLG=CP/(ROW*G*ELWV),RCP=H1/CP - logical,parameter :: & - UNIS=.FALSE.,UNIL=.FALSE.,OCT90=.FALSE. +! STEFI=AVGEFI, & + SLOPBL=(DSPBFL-DSPBSL)/(H1-EFIMN), & !< Slope - cloud base over land ? + SLOP0L=(DSP0FL-DSP0SL)/(H1-EFIMN), & !< Slope - freezing level over land ? + SLOPTL=(DSPTFL-DSPTSL)/(H1-EFIMN), & !< Slope - cloud top over land ? + SLOPBS=(DSPBFS-DSPBSS)/(H1-EFIMN), & !< Slope - cloud base over sea ? + SLOP0S=(DSP0FS-DSP0SS)/(H1-EFIMN), & !< Slope - freezing level over sea ? + SLOPTS=(DSPTFS-DSPTSS)/(H1-EFIMN), & !< Slope - cloud top over sea ? + SLOPE=(H1 -EFMNT)/(H1-EFIMN) !< Slope ? + real, parameter :: & + A23M4L=A2*(A3-A4)*ELWV, & !< Coefficient derived from A2, A3, A4, and ELWV + ELOCP=ELIVW/CP, & !< ELIVW over CP + CPRLG=CP/(ROW*G*ELWV), & !< Ratio of CP to product of water density, acceleration due to gravity, and latent heat of vaporization of water + RCP=H1/CP !< Reciprocal of CP (1/CP) + logical,parameter :: & + UNIS=.FALSE., & !< _____? + UNIL=.FALSE., & !< _____? + OCT90=.FALSE. !< Flag to activate old Zavisa Oct 1990 land scheme with fixed land profiles end module cuparm_mod + diff --git a/sorc/ncep_post.fd/getIVariableN.f b/sorc/ncep_post.fd/getIVariableN.f index 8f1f62cd9..5366b3073 100644 --- a/sorc/ncep_post.fd/getIVariableN.f +++ b/sorc/ncep_post.fd/getIVariableN.f @@ -13,6 +13,11 @@ subroutine getIVariableN(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U, ! ! PROGRAM HISTORY LOG: ! +! Date | Programmer | Comments +! -----------|---------------|--------- +! 2024-08-06 | Jaymes Kenyon | Read-in netCDF fill values for MPAS applications +! 2024-09-05 | Jaymes Kenyon | Limiting write statements to process 0 only +! ! USAGE: CALL getVariable(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U,LM,IM1,JS,JE,LM1) ! ! INPUT ARGUMENT LIST: @@ -51,6 +56,7 @@ subroutine getIVariableN(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U, ! the portion of VarBuff that is needed for this task. use wrf_io_flags_mod + use ctlblk_mod, only: me, spval, submodelname !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - implicit none ! @@ -71,6 +77,8 @@ subroutine getIVariableN(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U, ! real, allocatable, dimension(:,:,:,:) :: data integer :: ierr character(len=132) :: Stagger + real :: FillValue + integer :: OutCount ! call set_wrf_debug_level ( 1 ) @@ -78,12 +86,12 @@ subroutine getIVariableN(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U, end_index = 1 call ext_ncd_get_var_info(dh,TRIM(VarName),ndim,ordering,Stagger,start_index,end_index,WrfType,ierr) IF ( ierr /= 0 ) THEN - write(*,*)'Error: ',ierr,TRIM(VarName),' not found in ',fileName + if (me==0) write(*,*)'Error: ',ierr,TRIM(VarName),' not found in ',fileName VarBuff=0. return ENDIF allocate(data (end_index(1), end_index(2), end_index(3), 1)) - write(*,*)'WrfType in getIVariable= ',WrfType + if (me==0) write(*,*)'WrfType in getIVariable= ',WrfType ! if( WrfType /= WRF_REAL .AND. WrfType /= WRF_REAL8 ) then !Ignore if not a real variable ! write(*,*) 'Error: Not a real variable',WrfType ! return @@ -101,32 +109,57 @@ subroutine getIVariableN(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U, start_index,end_index, & !pat ierr) IF ( ierr /= 0 ) THEN - write(*,*)'Error reading ',Varname,' from ',fileName - write(*,*)' ndim = ', ndim - write(*,*)' end_index(1) ',end_index(1) - write(*,*)' end_index(2) ',end_index(2) - write(*,*)' end_index(3) ',end_index(3) + if (me==0) then + write(*,*)'Error reading ',Varname,' from ',fileName + write(*,*)' ndim = ', ndim + write(*,*)' end_index(1) ',end_index(1) + write(*,*)' end_index(2) ',end_index(2) + write(*,*)' end_index(3) ',end_index(3) + write(*,*)'Error reading ',Varname,' from ',fileName + endif VarBuff = 0.0 return ENDIF - if (im1>end_index(1)) write(*,*) 'Err:',Varname,' IM1=',im1,& - ' but data dim=',end_index(1) - if (je>end_index(2)) write(*,*) 'Err:',Varname,' JE=',je,& - ' but data dim=',end_index(2) - if (lm1>end_index(3)) write(*,*) 'Err:',Varname,' LM1=',lm1,& - ' but data dim=',end_index(3) - if (ndim>3) then - write(*,*) 'Error: ndim = ',ndim - endif - do l=1,lm1 - ll=lm1-l+1 ! flip the z axis not sure about soil - do i=1,im1 - do j=js,je - VarBuff(i,j,l)=data(i,j,ll,1) - enddo + + if (me==0) then + if (im1>end_index(1)) write(*,*) 'Err:',Varname,' IM1=',im1,& + ' but data dim=',end_index(1) + if (je>end_index(2)) write(*,*) 'Err:',Varname,' JE=',je,& + ' but data dim=',end_index(2) + if (lm1>end_index(3)) write(*,*) 'Err:',Varname,' LM1=',lm1,& + ' but data dim=',end_index(3) + if (ndim>3) then + write(*,*) 'Error: ndim = ',ndim + endif + endif + + if (SUBMODELNAME=='MPAS') then + ! For MPAS: determine the fill value associated with the variable + call ext_ncd_get_var_ti_real(dh,"_FillValue",TRIM(VarName),FillValue,1,OutCount,ierr) + do l=1,lm1 + ll=lm1-l+1 ! flip the z axis not sure about soil + do i=1,im1 + do j=js,je + if (data(i,j,ll,1) /= FillValue) then + VarBuff(i,j,l)=data(i,j,ll,1) + else ! For MPAS: assign SPVAL where FillValue is present + VarBuff(i,j,l)=spval + endif + enddo + enddo enddo -! write(*,*) Varname,' L ',l,': = ',data(1,1,ll,1) - enddo + else + do l=1,lm1 + ll=lm1-l+1 ! flip the z axis not sure about soil + do i=1,im1 + do j=js,je + VarBuff(i,j,l)=data(i,j,ll,1) + enddo + enddo +! write(*,*) Varname,' L ',l,': = ',data(1,1,ll,1) + enddo + endif + deallocate(data) return diff --git a/sorc/ncep_post.fd/getVariable.f b/sorc/ncep_post.fd/getVariable.f index 24804549b..15d3a9920 100644 --- a/sorc/ncep_post.fd/getVariable.f +++ b/sorc/ncep_post.fd/getVariable.f @@ -13,6 +13,11 @@ subroutine getVariable(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U,LM ! ! PROGRAM HISTORY LOG: ! +! Date | Programmer | Comments +! -----------|---------------|--------- +! 2024-08-06 | Jaymes Kenyon | Read-in netCDF fill values for MPAS applications +! 2024-09-05 | Jaymes Kenyon | Limiting write statements to process 0 only +! ! USAGE: CALL getVariable(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U,LM,IM1,JS,JE,LM1) ! ! INPUT ARGUMENT LIST: @@ -51,6 +56,7 @@ subroutine getVariable(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U,LM ! the portion of VarBuff that is needed for this task. ! use mpi use wrf_io_flags_mod, only: wrf_real, wrf_real8 + use ctlblk_mod, only: me, spval, submodelname !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - implicit none @@ -73,7 +79,8 @@ subroutine getVariable(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U,LM real, allocatable, dimension(:,:,:,:) :: data integer :: ierr,size,mype,idsize,ier character(len=132) :: Stagger - real SPVAL + real :: FillValue + integer :: OutCount ! call set_wrf_debug_level ( 1 ) call mpi_comm_rank(MPI_COMM_WORLD,mype,ier) @@ -82,13 +89,13 @@ subroutine getVariable(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U,LM ! print*,'SPVAL in getVariable = ',SPVAL call ext_ncd_get_var_info(dh,TRIM(VarName),ndim,ordering,Stagger,start_index,end_index,WrfType,ierr) IF ( ierr /= 0 ) THEN - write(*,*)'Error: ',ierr,TRIM(VarName),' not found in ',fileName + if (me==0) write(*,*)'Error: ',ierr,TRIM(VarName),' not found in ',fileName VarBuff=0. return ENDIF allocate(data (end_index(1), end_index(2), end_index(3), 1)) if( WrfType /= WRF_REAL .AND. WrfType /= WRF_REAL8 ) then !Ignore if not a real variable - write(*,*) 'Error: Not a real variable',WrfType + if (me==0) write(*,*) 'Error: Not a real variable',WrfType return endif ! write(*,'(A9,1x,I1,3(1x,I3),1x,A,1x,A)')& @@ -97,7 +104,7 @@ subroutine getVariable(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U,LM ! allocate(data (end_index(1), end_index(2), end_index(3), 1)) ! call ext_ncd_read_field(dh,DateStr,TRIM(VarName),data,WrfType,0,0,0,ordering,& ! CHANGE WrfType to WRF_REAL BECAUSE THIS TELLS WRF IO API TO CONVERT TO REAL - print *,' GWVX XT_NCD GET FIELD',size(data), size(varbuff),mype +! print *,' GWVX XT_NCD GET FIELD',size(data), size(varbuff),mype idsize=size(data) if(mype == 0) then call ext_ncd_read_field(dh,DateStr,TRIM(VarName),data,WrfType,0,0,0,ordering,& @@ -109,32 +116,56 @@ subroutine getVariable(fileName,DateStr,dh,VarName,VarBuff,IM,JSTA_2L,JEND_2U,LM endif call MPI_BCAST(data,idsize,MPI_real,0,MPI_COMM_WORLD,ierr) IF ( ierr /= 0 ) THEN - write(*,*)'Error reading ',Varname,' from ',fileName - write(*,*)' ndim = ', ndim - write(*,*)' end_index(1) ',end_index(1) - write(*,*)' end_index(2) ',end_index(2) - write(*,*)' end_index(3) ',end_index(3) + if (me==0) then + write(*,*)'Error reading ',Varname,' from ',fileName + write(*,*)' ndim = ', ndim + write(*,*)' end_index(1) ',end_index(1) + write(*,*)' end_index(2) ',end_index(2) + write(*,*)' end_index(3) ',end_index(3) + endif VarBuff = 0.0 return ENDIF - if (im1>end_index(1)) write(*,*) 'Err:',Varname,' IM1=',im1,& - ' but data dim=',end_index(1) - if (je>end_index(2)) write(*,*) 'Err:',Varname,' JE=',je,& - ' but data dim=',end_index(2) - if (lm1>end_index(3)) write(*,*) 'Err:',Varname,' LM1=',lm1,& - ' but data dim=',end_index(3) - if (ndim>3) then - write(*,*) 'Error: ndim = ',ndim + + if (me==0) then + if (im1>end_index(1)) write(*,*) 'Err:',Varname,' IM1=',im1,& + ' but data dim=',end_index(1) + if (je>end_index(2)) write(*,*) 'Err:',Varname,' JE=',je,& + ' but data dim=',end_index(2) + if (lm1>end_index(3)) write(*,*) 'Err:',Varname,' LM1=',lm1,& + ' but data dim=',end_index(3) + if (ndim>3) then + write(*,*) 'Error: ndim = ',ndim + endif endif - do l=1,lm1 - ll=lm1-l+1 ! flip the z axis not sure about soil - do i=1,im1 - do j=js,je - VarBuff(i,j,l)=data(i,j,ll,1) - enddo + + if (SUBMODELNAME=='MPAS') then + ! For MPAS: determine the fill value associated with the variable + call ext_ncd_get_var_ti_real(dh,"_FillValue",TRIM(VarName),FillValue,1,OutCount,ierr) + do l=1,lm1 + ll=lm1-l+1 ! flip the z axis not sure about soil + do i=1,im1 + do j=js,je + if (data(i,j,ll,1) /= FillValue) then + VarBuff(i,j,l)=data(i,j,ll,1) + else ! For MPAS: assign SPVAL where FillValue is present + VarBuff(i,j,l)=spval + endif + enddo + enddo enddo -! write(*,*) Varname,' L ',l,': = ',data(1,1,ll,1) - enddo + else + do l=1,lm1 + ll=lm1-l+1 ! flip the z axis not sure about soil + do i=1,im1 + do j=js,je + VarBuff(i,j,l)=data(i,j,ll,1) + enddo + enddo +! write(*,*) Varname,' L ',l,': = ',data(1,1,ll,1) + enddo + endif + deallocate(data) return diff --git a/sorc/ncep_post.fd/grib2_module.f b/sorc/ncep_post.fd/grib2_module.f index 23ab33de4..416987c6f 100644 --- a/sorc/ncep_post.fd/grib2_module.f +++ b/sorc/ncep_post.fd/grib2_module.f @@ -1,19 +1,19 @@ +!> @file +!> @brief This module generates grib2 messages and writes out the messages in parallel. +!> +!> ### Program history log: +!> Date | Programmer | Comments +!> -----|------------|--------- +!> March 2010 | Jun Wang | Initial code +!> January 2012 | Jun Wang | post available fields with grib2 description are defined in xml file +!> March 2015 | Lin Gan | Replace XML file with flat file implementation with parameter marshalling +!> July 2021 | Jesse Meng | 2D decomsition +!> June 2022 | Lin Zhu | Change the dx/dy to reading in from calculating for latlon grid +!> January 2023 | Sam Trahan | Foot & meter unit conversions for IFI +!> August 2024 | Li Pan | Enable template 4-49 to obtain aerosol ensemble information +!------------------------------------------------------------------------- module grib2_module -!------------------------------------------------------------------------ -! -! This module generates grib2 messages and writes out the messages in -! parallel. -! -! program log: -! March, 2010 Jun Wang Initial code -! Jan, 2012 Jun Wang post available fields with grib2 description -! are defined in xml file -! March, 2015 Lin Gan Replace XML file with flat file implementation -! with parameter marshalling -! July, 2021 Jesse Meng 2D decomsition -! June, 2022 Lin Zhu change the dx/dy to reading in from calculating for latlon grid -! January, 2023 Sam Trahan foot&meter Unit conversions for IFI -!------------------------------------------------------------------------ +! use xml_perl_data, only: param_t,paramset_t ! implicit none @@ -78,14 +78,14 @@ module grib2_module ! character(len=50) :: type_derived_fcst='' ! type(param_t), dimension(:), pointer :: param => null() ! end type paramset_t - type(paramset_t),save :: pset + type(paramset_t),save :: pset !< parameter set ! !--- grib2 info related to a specific data file - integer nrecout - integer num_pset + integer nrecout !< Number of records to output + integer num_pset !< Number of parameter sets ? integer isec,hrs_obs_cutoff,min_obs_cutoff integer sec_intvl,stat_miss_val,time_inc_betwn_succ_fld - integer perturb_num,num_ens_fcst + integer perturb_num,num_ens_fcst,prob_num,tot_num_prob character*80 type_of_time_inc,stat_unit_time_key_succ logical*1,allocatable :: bmap(:) integer ibm @@ -95,7 +95,7 @@ module grib2_module integer,parameter :: MAX_NUMBIT=16 integer,parameter :: lugi=650 character*255 fl_nametbl,fl_gdss3 - logical :: first_grbtbl + logical :: first_grbtbl !< _____? ! public num_pset,pset,nrecout,gribit2,grib_info_init,first_grbtbl,grib_info_finalize,read_grib2_head,read_grib2_sngle real(8), EXTERNAL :: timef @@ -104,15 +104,13 @@ module grib2_module contains ! !------------------------------------------------------------------------------------- +!> @brief Initializes general grib2 information and local variables subroutine grib_info_init() -! -!--- initialize general grib2 information and ! implicit none ! ! logical,intent(in) :: first_grbtbl ! -!-- local variables integer ierr character(len=80) outfile character(len=10) envvar @@ -165,7 +163,9 @@ subroutine grib_info_init() type_of_time_inc='same_start_time_fcst_fcst_time_inc' stat_unit_time_key_succ='missing' time_inc_betwn_succ_fld=0 -! + prob_num = 0 + tot_num_prob = 1 + ! !-- open fld name tble ! if(first_grbtbl) then @@ -183,10 +183,8 @@ subroutine grib_info_init() end subroutine grib_info_init !------------------------------------------------------------------------------------- !------------------------------------------------------------------------------------- -! +!> @brief Finalizes GRIB2 information and closes the file. subroutine grib_info_finalize -! -!--- finalize grib2 information and close file ! implicit none ! @@ -196,10 +194,9 @@ subroutine grib_info_finalize ! end subroutine grib_info_finalize !------------------------------------------------------------------------------------- -!------------------------------------------------------------------------------------- +!> @brief Outputs fields to grib file +!> @param[in] post_fname UPP file name subroutine gribit2(post_fname) -! -!------- use ctlblk_mod, only : im,jm,im_jm,num_procs,me,ista,iend,jsta,jend,ifhr,sdat,ihrst,imin, & mpi_comm_comp,ntlfld,fld_info,datapd,icnt,idsp implicit none @@ -489,7 +486,7 @@ end subroutine gribit2 ! !---------------------------------------------------------------------------------------- !---------------------------------------------------------------------------------------- -! +!> @brief Generates grib2 message subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvstat, & datafld1,cgrib,lengrib,level_unit_conversion) ! @@ -499,14 +496,15 @@ subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvs vtimeunits,modelname use gridspec_mod, only: maptype use grib2_all_tables_module, only: g2sec0,g2sec1, & - g2sec4_temp0,g2sec4_temp8,g2sec4_temp44,g2sec4_temp48, & - g2sec5_temp0,g2sec5_temp2,g2sec5_temp3,g2sec5_temp40, & - get_g2_sec5packingmethod + g2sec4_temp0,g2sec4_temp8,g2sec4_temp9,g2sec4_temp44, & + g2sec4_temp46,g2sec4_temp48,g2sec5_temp0,g2sec5_temp2, & + g2sec5_temp3,g2sec5_temp40,get_g2_sec5packingmethod, & + g2sec4_temp49 !use gdtsec3, only: getgdtnum implicit none ! - integer,intent(in) :: idisc,icatg, iparm,nprm,fldlvl1,fldlvl2,ntrange,tinvstat - integer,intent(inout) :: nlvl + integer,intent(in) :: idisc,icatg, iparm,nprm,fldlvl1,fldlvl2,ntrange + integer,intent(inout) :: nlvl,tinvstat real,dimension(:),intent(in) :: datafld1 character(1),intent(inout) :: cgrib(max_bytes) integer, intent(inout) :: lengrib @@ -518,10 +516,13 @@ subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvs integer, parameter :: ipdstmp4_0len=15 integer, parameter :: ipdstmp4_1len=18 integer, parameter :: ipdstmp4_8len=29 + integer, parameter :: ipdstmp4_9len=36 integer, parameter :: ipdstmp4_11len=32 integer, parameter :: ipdstmp4_12len=31 integer, parameter :: ipdstmp4_44len=21 + integer, parameter :: ipdstmp4_46len=35 integer, parameter :: ipdstmp4_48len=26 + integer, parameter :: ipdstmp4_49len=29 ! integer, parameter :: idrstmplenmax=50 integer, parameter :: idrstmp5_0len=5 @@ -546,6 +547,7 @@ subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvs integer scaled_val_fixed_sfc1,scale_fct_fixed_sfc2 character(80) fixed_sfc2_type integer idec_scl,ibin_scl,ibmap,inumbits + character(80) prob_type real fldscl integer igdstmpl(igdsmaxlen) integer lat1,lon1,lat2,lon2,lad,ds1 @@ -593,6 +595,8 @@ subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvs pset%param(nprm)%pdstmpl='tmpl4_1' elseif (trim(pset%param(nprm)%pdstmpl)=='tmpl4_8') then pset%param(nprm)%pdstmpl='tmpl4_11' + elseif (trim(pset%param(nprm)%pdstmpl)=='tmpl4_48') then + pset%param(nprm)%pdstmpl='tmpl4_49' endif endif ! @@ -747,6 +751,16 @@ subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvs scale_fct_fixed_sfc2=0 endif + ! Sending an empty key string to g2tmpl is ALWAYS an error. Yet, the post does this for many fields. + ! Fixing that requires refactoring post GRIB2 code and xml reader. This is a workaround for one + ! problematic case of the fixed_sfc2_type that generates numerous error messages in g2tmpl 1.12.0 + if(len_trim(fixed_sfc2_type) == 0) then + ! Internally, due to a g2tmpl bug, when fixed_sfc2_type is invalid, it ends up with the same + ! value as fixed_sfc1_type. This assignment produces that effect without an error message. + fixed_sfc2_type = 'missing' + pset%param(nprm)%fixed_sfc2_type = 'missing' + endif + if(abs(level_unit_conversion-1)>1e-4) then ! print *,'apply level unit conversion ',level_unit_conversion ! print *,'scaled_val_fixed_sfc1 was ',scaled_val_fixed_sfc1 @@ -756,9 +770,12 @@ subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvs endif ihr_start = ifhr-tinvstat - if(modelname=='RAPR'.and.vtimeunits=='FMIN') then + if((modelname=='RAPR'.and.vtimeunits=='FMIN').or.(modelname=='FV3R'.and.pset%time_range_unit=="minute")) then ifhrorig = ifhr ifhr = ifhr*60 + ifmin + if(ifmin<1)then + tinvstat = tinvstat*60 + ifmin + endif ihr_start = max(0,ifhr-tinvstat) else if(ifmin > 0.)then ! change time range unit to minute @@ -825,6 +842,33 @@ subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvs ipdstmpl(1:ipdstmpllen)) ! print *,'aft g2sec4_temp8,ipdstmpl8=',ipdstmpl(1:ipdstmp4_8len) + elseif(trim(pset%param(nprm)%pdstmpl)=='tmpl4_9') then +! + ipdsnum=9 + ipdstmpllen=ipdstmp4_9len + call g2sec4_temp9(icatg,iparm,pset%gen_proc_type, & + pset%gen_proc,hrs_obs_cutoff,min_obs_cutoff, & + pset%time_range_unit,ihr_start, & + pset%param(nprm)%fixed_sfc1_type, & + scale_fct_fixed_sfc1, & + scaled_val_fixed_sfc1, & + pset%param(nprm)%fixed_sfc2_type, & + scale_fct_fixed_sfc2, & + scaled_val_fixed_sfc2, & + prob_num,tot_num_prob, & + pset%param(nprm)%prob_type, & + pset%param(nprm)%scale_fact_lower_limit, & + pset%param(nprm)%scale_val_lower_limit, & + pset%param(nprm)%scale_fact_upper_limit, & + pset%param(nprm)%scale_val_upper_limit, & + idat(3),idat(1),idat(2),idat(4),idat(5), & + sec_intvl,ntrange,stat_miss_val, & + pset%param(nprm)%stats_proc,type_of_time_inc, & + pset%time_range_unit, tinvstat, & + stat_unit_time_key_succ,time_inc_betwn_succ_fld, & + ipdstmpl(1:ipdstmpllen)) +! print *,'aft g2sec4_temp9,ipdstmpl9=',ipdstmpl(1:ipdstmp4_9len) + elseif(trim(pset%param(nprm)%pdstmpl)=='tmpl4_11') then ipdsnum=11 ipdstmpllen=ipdstmp4_11len @@ -889,6 +933,34 @@ subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvs ipdstmpl(1:ipdstmpllen)) ! print *,'aft g2sec4_temp44,ipdstmpl44=',ipdstmpl(1:ipdstmp4_44len),'ipdsnum=',ipdsnum + elseif(trim(pset%param(nprm)%pdstmpl)=='tmpl4_46') then +! + ipdsnum=46 + ipdstmpllen=ipdstmp4_46len + call g2sec4_temp46(icatg,iparm,pset%param(nprm)%aerosol_type, & + pset%param(nprm)%typ_intvl_size, & + pset%param(nprm)%scale_fact_1st_size, & + pset%param(nprm)%scale_val_1st_size, & + pset%param(nprm)%scale_fact_2nd_size, & + pset%param(nprm)%scale_val_2nd_size, & + pset%gen_proc_type, & + pset%gen_proc,hrs_obs_cutoff,min_obs_cutoff, & + pset%time_range_unit,ifhr, & + pset%param(nprm)%fixed_sfc1_type, & + scale_fct_fixed_sfc1, & + scaled_val_fixed_sfc1, & + pset%param(nprm)%fixed_sfc2_type, & + scale_fct_fixed_sfc2, & + scaled_val_fixed_sfc2, & + idat(3),idat(1),idat(2),idat(4),idat(5), & + sec_intvl,ntrange,stat_miss_val, & + pset%param(nprm)%stats_proc,type_of_time_inc, & + pset%time_range_unit, tinvstat, & + stat_unit_time_key_succ,time_inc_betwn_succ_fld, & + ipdstmpl(1:ipdstmpllen)) +! print *,'aft g2sec4_temp46,name=',trim(pset%param(nprm)%shortname),& +! 'ipdstmpl46=',ipdstmpl(1:ipdstmp4_46len) + elseif(trim(pset%param(nprm)%pdstmpl)=='tmpl4_48') then ! ipdsnum=48 @@ -917,9 +989,38 @@ subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvs ! print *,'aft g2sec4_temp48,name=',trim(pset%param(nprm)%shortname),& ! 'ipdstmpl48=',ipdstmpl(1:ipdstmp4_48len) + elseif(trim(pset%param(nprm)%pdstmpl)=='tmpl4_49') then +! + ipdsnum=49 + ipdstmpllen=ipdstmp4_49len + call g2sec4_temp49(icatg,iparm,pset%param(nprm)%aerosol_type, & + pset%param(nprm)%typ_intvl_size, & + pset%param(nprm)%scale_fact_1st_size, & + pset%param(nprm)%scale_val_1st_size, & + pset%param(nprm)%scale_fact_2nd_size, & + pset%param(nprm)%scale_val_2nd_size, & + pset%param(nprm)%typ_intvl_wvlen, & + pset%param(nprm)%scale_fact_1st_wvlen, & + pset%param(nprm)%scale_val_1st_wvlen, & + pset%param(nprm)%scale_fact_2nd_wvlen, & + pset%param(nprm)%scale_val_2nd_wvlen, & + pset%gen_proc_type, & + pset%gen_proc,hrs_obs_cutoff,min_obs_cutoff, & + pset%time_range_unit,ifhr, & + pset%param(nprm)%fixed_sfc1_type, & + scale_fct_fixed_sfc1, & + scaled_val_fixed_sfc1, & + pset%param(nprm)%fixed_sfc2_type, & + scale_fct_fixed_sfc2, & + scaled_val_fixed_sfc2, & + pset%type_ens_fcst,perturb_num,num_ens_fcst, & + ipdstmpl(1:ipdstmpllen)) +! print *,'aft g2sec4_temp49,name=',trim(pset%param(nprm)%shortname),& +! 'ipdstmpl49=',ipdstmpl(1:ipdstmp4_49len) + endif - if(modelname=='RAPR'.and.vtimeunits=='FMIN') then + if((modelname=='RAPR'.or.modelname=='FV3R').and.vtimeunits=='FMIN') then ifhr = ifhrorig end if if(ifmin>0.)then @@ -930,7 +1031,8 @@ subroutine gengrb2msg(idisc,icatg, iparm,nprm,nlvl,fldlvl1,fldlvl2,ntrange,tinvs ! !---------- ! idrstmpl array is the output from g2sec5 -! +!> @brief Gets GRIB2 Section 5 packing method +!> See GRIB2 data representation information: https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_sect5.shtml call get_g2_sec5packingmethod(pset%packing_method,idrsnum,ierr) if(maxval(datafld1)==minval(datafld1))then idrsnum=0 @@ -1025,10 +1127,16 @@ end subroutine gengrb2msg ! ! E. JAMES: 10 JUN 2021 - Adding section to read in GRIB2 files for comparison ! within UPP. Two new subroutines added below. -! +!> @brief Reads in GRIB2 file header information +!> @param[in] filenameG2 Grib 2 file name +!> @param[out] nx Total number of grid points along x +!> @param[out] ny Total number of grid points along y +!> @param[out] nz Total number of grid points along z (vertical) +!> @param[out] rlonmin Westernmost longitude of the subdomain to extract (negative in Western hemisphere; in degrees) _____? +!> @param[out] rlatmax Northernmost latitude of the subdomain to extract (in degrees) _____? +!> @param[out] rdx Inverse x grid length +!> @param[out] rdy Inverse y grid length subroutine read_grib2_head(filenameG2,nx,ny,nz,rlonmin,rlatmax,rdx,rdy) -! -!--- read grib2 file head information ! use grib_mod implicit none @@ -1111,7 +1219,7 @@ subroutine read_grib2_head(filenameG2,nx,ny,nz,rlonmin,rlatmax,rdx,rdy) ! write(*,*) 'listsec0=',listsec0 ! write(*,*) 'listsec1=',listsec1 ! write(*,*) 'numfields=',numfields -! get information form grib2 file +! get information from grib2 file n=1 call gf_getfld(cgrib,lengrib,n,.FALSE.,expand,gfld,ierr) year =gfld%idsect(6) !(FOUR-DIGIT) YEAR OF THE DATA @@ -1175,10 +1283,12 @@ subroutine read_grib2_head(filenameG2,nx,ny,nz,rlonmin,rlatmax,rdx,rdy) end subroutine read_grib2_head ! !--- -! +!> @brief Reads GRIB2 files +!> @param[in] filenameG2 Grib 2 file name +!> @param[in] ntot Total count of variables ? +!> @param[out] height _____? +!> @param[out] var Array of variables subroutine read_grib2_sngle(filenameG2,ntot,height,var) -! -!--- read grib2 files ! use grib_mod implicit none @@ -1375,7 +1485,8 @@ subroutine read_grib2_sngle(filenameG2,ntot,height,var) end subroutine read_grib2_sngle ! !---------------------------------------------------------------------------------------- -! +!> @brief g2sec3tmpl40() Gets grid definition section (Section 3 of the WMO GRIB2 Standards) ? +!> See https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_sect3.shtml subroutine g2sec3tmpl40(nx,nY,lat1,lon1,lat2,lon2,lad,ds1,len3,igds,ifield3) implicit none ! @@ -1419,7 +1530,7 @@ subroutine g2sec3tmpl40(nx,nY,lat1,lon1,lat2,lon2,lad,ds1,len3,igds,ifield3) end subroutine g2sec3tmpl40 ! !------------------------------------------------------------------------------------- -! +!> @brief g2getbits() Compute the total number of bits subroutine g2getbits(MXBIT,ibm,scl,len,bmap,g,ibs,ids,nbits) !$$$ ! This subroutine is changed from w3 lib getbit to compute the total number of bits, @@ -1589,11 +1700,9 @@ subroutine g2getbits(MXBIT,ibm,scl,len,bmap,g,ibs,ids,nbits) END subroutine g2getbits ! !------------------------------------------------------------------------------------- -! +!> @brief getgds() Set up Grid Description Section (GDS) kpds (Product Definition Section?) to call Boi's code ? subroutine getgds(ldfgrd,len3,ifield3len,igds,ifield3) -! -!***** set up gds kpds to call Boi's code -! + use CTLBLK_mod, only : im,jm,gdsdegr,modelname use gridspec_mod, only: DXVAL,DYVAL,CENLAT,CENLON,LATSTART,LONSTART,LATLAST, & & LONLAST,MAPTYPE,STANDLON,latstartv,cenlatv,lonstartv, & diff --git a/sorc/ncep_post.fd/gtg_filter.F90 b/sorc/ncep_post.fd/gtg_filter.F90 index 0af041b1a..3dc603b2a 100644 --- a/sorc/ncep_post.fd/gtg_filter.F90 +++ b/sorc/ncep_post.fd/gtg_filter.F90 @@ -1,5 +1,8 @@ +!> @file +!> @brief Contains stub code for GTG protection that makes public UPP work module gtg_filter contains +!> @brief Stub code for GTG protection that makes public UPP work subroutine filt3d() implicit none print *, "Stub code for GTG protection but to make UPP public to work" diff --git a/sorc/ncep_post.fd/gtg_indices.F90 b/sorc/ncep_post.fd/gtg_indices.F90 index eff35708e..4a41b5119 100644 --- a/sorc/ncep_post.fd/gtg_indices.F90 +++ b/sorc/ncep_post.fd/gtg_indices.F90 @@ -1,5 +1,8 @@ +!> @file +!> @brief Contains stub code for GTG protection that makes public UPP work module gtg_indices contains +!> @brief Stub code for GTG protection that makes public UPP work subroutine indices_gtg() implicit none print *, "Stub code for GTG protection but to make UPP public to work" diff --git a/sorc/ncep_post.fd/gtg_read_config.F90 b/sorc/ncep_post.fd/gtg_read_config.F90 index 910261fcf..99decd291 100644 --- a/sorc/ncep_post.fd/gtg_read_config.F90 +++ b/sorc/ncep_post.fd/gtg_read_config.F90 @@ -1,5 +1,8 @@ +!> @file +!> @brief Contains stub code for GTG protection that makes public UPP work module gtg_config contains +!> @brief Stub code for GTG protection that makes public UPP work subroutine gtg_read_config() implicit none print *, "Stub code for GTG protection but to make UPP public to work" diff --git a/sorc/ncep_post.fd/intio_tags.f b/sorc/ncep_post.fd/intio_tags.f index d9e296b3a..d043d3931 100644 --- a/sorc/ncep_post.fd/intio_tags.f +++ b/sorc/ncep_post.fd/intio_tags.f @@ -1,42 +1,44 @@ +!> @file +!> @brief intio_tags_mod defines variables related to integer input/output + module intio_tags_mod -! -!- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + implicit none ! - INTEGER, PARAMETER :: int_ioexit = 10 - INTEGER, PARAMETER :: int_open_for_write_begin = 20 - INTEGER, PARAMETER :: int_open_for_write_commit = 30 - INTEGER, PARAMETER :: int_open_for_read = 40 - INTEGER, PARAMETER :: int_intio_nextrec = 50 - INTEGER, PARAMETER :: int_inquire_opened = 60 - INTEGER, PARAMETER :: int_inquire_filename = 70 - INTEGER, PARAMETER :: int_iosync = 80 - INTEGER, PARAMETER :: int_ioclose = 90 - INTEGER, PARAMETER :: int_next_time = 100 - INTEGER, PARAMETER :: int_set_time = 110 - INTEGER, PARAMETER :: int_next_var = 120 - INTEGER, PARAMETER :: int_dom_ti_real = 140 - INTEGER, PARAMETER :: int_dom_ti_double = 160 - INTEGER, PARAMETER :: int_dom_ti_integer = 180 - INTEGER, PARAMETER :: int_dom_ti_logical = 200 - INTEGER, PARAMETER :: int_dom_ti_char = 220 - INTEGER, PARAMETER :: int_dom_td_real = 240 - INTEGER, PARAMETER :: int_dom_td_double = 260 - INTEGER, PARAMETER :: int_dom_td_integer = 280 - INTEGER, PARAMETER :: int_dom_td_logical = 300 - INTEGER, PARAMETER :: int_dom_td_char = 320 - INTEGER, PARAMETER :: int_var_ti_real = 340 - INTEGER, PARAMETER :: int_var_ti_double = 360 - INTEGER, PARAMETER :: int_var_ti_integer = 380 - INTEGER, PARAMETER :: int_var_ti_logical = 400 - INTEGER, PARAMETER :: int_var_ti_char = 420 - INTEGER, PARAMETER :: int_var_td_real = 440 - INTEGER, PARAMETER :: int_var_td_double = 460 - INTEGER, PARAMETER :: int_var_td_integer = 480 - INTEGER, PARAMETER :: int_var_td_logical = 500 - INTEGER, PARAMETER :: int_var_td_char = 520 - INTEGER, PARAMETER :: int_field = 530 - INTEGER, PARAMETER :: int_var_info = 540 - INTEGER, PARAMETER :: int_noop = 550 + INTEGER, PARAMETER :: int_ioexit =10 !< Assigns ID 10 to int_ioexit - exit + INTEGER, PARAMETER :: int_open_for_write_begin =20 !< Assigns ID 20 to int_open_for_write_begin - open for write operation + INTEGER, PARAMETER :: int_open_for_write_commit =30 !< Assigns ID 30 to int_open_for_write_commit - open for write operation & commit + INTEGER, PARAMETER :: int_open_for_read =40 !< Assigns ID 40 to int_open_for_read - open for read + INTEGER, PARAMETER :: int_intio_nextrec =50 !< Assigns ID 50 to int_intio_nextrec - next record request + INTEGER, PARAMETER :: int_inquire_opened =60 !< Assigns ID 60 to int_inquire_opened - check if opened + INTEGER, PARAMETER :: int_inquire_filename =70 !< Assigns ID 70 to int_inquire_filename - filename request + INTEGER, PARAMETER :: int_iosync =80 !< Assigns ID 80 to int_iosync - sync data in buffer ? + INTEGER, PARAMETER :: int_ioclose =90 !< Assigns ID 90 to int_ioclose - close + INTEGER, PARAMETER :: int_next_time =100 !< Assigns ID 100 to int_next_time - get next timestamp + INTEGER, PARAMETER :: int_set_time =110 !< Assigns ID 110 to int_set_time - set time request + INTEGER, PARAMETER :: int_next_var =120 !< Assigns ID 120 to int_next_var - next variable request + INTEGER, PARAMETER :: int_dom_ti_real =140 !< Assigns ID 140 to int_dom_ti_real - time-independent domain metadata - real type + INTEGER, PARAMETER :: int_dom_ti_double =160 !< Assigns ID 160 to int_dom_ti_double - time-independent domain metadata - double type + INTEGER, PARAMETER :: int_dom_ti_integer =180 !< Assigns ID 180 to int_dom_ti_integer - time-independent domain metadata - integer type + INTEGER, PARAMETER :: int_dom_ti_logical =200 !< Assigns ID 200 to int_dom_ti_logical - time-independent domain metadata - logical/boolean type + INTEGER, PARAMETER :: int_dom_ti_char =220 !< Assigns ID 220 to int_dom_ti_char - time-independent domain metadata - character type + INTEGER, PARAMETER :: int_dom_td_real =240 !< Assigns ID 240 to int_dom_td_real - time-dependent domain metadata - real type + INTEGER, PARAMETER :: int_dom_td_double =260 !< Assigns ID 260 to int_dom_td_double - time-dependent domain metadata - double type + INTEGER, PARAMETER :: int_dom_td_integer =280 !< Assigns ID 280 to int_dom_td_integer - time-dependent domain metadata - integer type + INTEGER, PARAMETER :: int_dom_td_logical =300 !< Assigns ID 300 to int_dom_td_logical - time-dependent domain metadata - logical/boolean type + INTEGER, PARAMETER :: int_dom_td_char =320 !< Assigns ID 320 to int_dom_td_char - time-dependent domain metadata - character type + INTEGER, PARAMETER :: int_var_ti_real =340 !< Assigns ID 340 to int_var_ti_real - time-independent variable metadata - real type + INTEGER, PARAMETER :: int_var_ti_double =360 !< Assigns ID 360 to int_var_ti_double - time-independent variable metadata - double type + INTEGER, PARAMETER :: int_var_ti_integer =380 !< Assigns ID 380 to int_var_ti_integer - time-independent variable metadata - integer type + INTEGER, PARAMETER :: int_var_ti_logical =400 !< Assigns ID 400 to int_var_ti_logical - time-independent variable metadata - logical/boolean type + INTEGER, PARAMETER :: int_var_ti_char =420 !< Assigns ID 420 to int_var_ti_char - time-independent variable metadata - character type + INTEGER, PARAMETER :: int_var_td_real =440 !< Assigns ID 440 to int_var_td_real - time-dependent variable metadata - real type + INTEGER, PARAMETER :: int_var_td_double =460 !< Assigns ID 460 to int_var_td_double - time-dependent variable metadata - double type + INTEGER, PARAMETER :: int_var_td_integer =480 !< Assigns ID 480 to int_var_td_integer - time-dependent variable metadata - integer type + INTEGER, PARAMETER :: int_var_td_logical =500 !< Assigns ID 500 to int_var_td_logical - time-dependent variable metadata - logical/boolean type + INTEGER, PARAMETER :: int_var_td_char =520 !< Assigns ID 520 to int_var_td_char - time-dependent variable metadata - character type + INTEGER, PARAMETER :: int_field =530 !< Assigns ID 530 to int_field - write field request + INTEGER, PARAMETER :: int_var_info =540 !< Assigns ID 540 to int_var_info - variable info request ? + INTEGER, PARAMETER :: int_noop =550 !< Assigns ID 550 to int_noop - do nothing/no operation request end module intio_tags_mod diff --git a/sorc/ncep_post.fd/io_int_stubs.f b/sorc/ncep_post.fd/io_int_stubs.f index f6dc98c30..6bdefe809 100644 --- a/sorc/ncep_post.fd/io_int_stubs.f +++ b/sorc/ncep_post.fd/io_int_stubs.f @@ -2,12 +2,6 @@ ! !--- get_dom_ti_real SUBROUTINE ext_int_get_dom_ti_real ( DataHandle,Element, Data, Count, Outcount, Status ) - INTEGER , INTENT(IN) :: DataHandle - CHARACTER*(*) :: Element - REAL , INTENT(OUT) :: Data(*) - INTEGER , INTENT(IN) :: Count - INTEGER , INTENT(OUT) :: Outcount - INTEGER , INTENT(OUT) :: Status RETURN END SUBROUTINE ext_int_get_dom_ti_real @@ -140,6 +134,9 @@ subroutine int_gen_ti_header_c ( hdrbuf, hdrbufsize, itypesize, typesize, & END SUBROUTINE int_gen_ti_header_c +subroutine ext_ncd_get_var_ti_real(DataHandle,Element,Var,Data,Count,OutCount,Status) + return +end subroutine ext_ncd_get_var_ti_real diff --git a/sorc/ncep_post.fd/machine.f b/sorc/ncep_post.fd/machine.f index d2d3468fc..372b54bfc 100644 --- a/sorc/ncep_post.fd/machine.f +++ b/sorc/ncep_post.fd/machine.f @@ -1,14 +1,20 @@ +!> @file +!> @brief MACHINE_POST defines machine-dependent constants MODULE MACHINE_POST IMPLICIT NONE SAVE -! Machine dependant constants - integer kind_io4,kind_io8,kind_phys,kind_rad + + integer kind_io4 & !< 4-byte I/O variables ? + ,kind_io8 & !< 8-byte I/O variables ? + ,kind_phys & !< Physics variables ? + ,kind_rad & !< Radiation variables ? + ,kint_mpi !< MPI variables ? + parameter (kind_rad = selected_real_kind(13,60)) ! the '60' maps to 64-bit real parameter (kind_phys = selected_real_kind(13,60)) ! the '60' maps to 64-bit real parameter (kind_io4 = 4) parameter (kind_io8 = 8) - integer kint_mpi parameter (kint_mpi = 4) END MODULE MACHINE_POST diff --git a/sorc/ncep_post.fd/params.F b/sorc/ncep_post.fd/params.F index 5e5e58dbc..76f214ee8 100644 --- a/sorc/ncep_post.fd/params.F +++ b/sorc/ncep_post.fd/params.F @@ -1,117 +1,118 @@ +!> @file +!> @brief params_mod defines physical constants and smoothing coefficients module params_mod !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - implicit none ! -! file: params.f -! defines physical constants and smoothing coefficients ! last update: 09/06/2006 ! ! SMOOTHING PARAMETERS. - integer, parameter :: KSMUD=4 - integer, parameter :: KSLPD=1 - integer, parameter :: KSSLP=2 - integer, parameter :: KSFI=2 - integer, parameter :: KST=2 - integer, parameter :: KSUV=2 - integer, parameter :: KSRH=2 - integer, parameter :: KSAV=2 - integer, parameter :: KSLI=2 - integer, parameter :: KSLP=2 - integer, parameter :: NSUMD=1 + integer, parameter :: KSMUD=4 !< No longer used/supported + integer, parameter :: KSLPD=1 !< No longer used/supported + integer, parameter :: KSSLP=2 !< No longer used/supported + integer, parameter :: KSFI=2 !< No longer used/supported + integer, parameter :: KST=2 !< No longer used/supported + integer, parameter :: KSUV=2 !< No longer used/supported + integer, parameter :: KSRH=2 !< No longer used/supported + integer, parameter :: KSAV=2 !< No longer used/supported + integer, parameter :: KSLI=2 !< No longer used/supported + integer, parameter :: KSLP=2 !< No longer used/supported + integer, parameter :: NSUMD=1 !< No longer used/supported - real, parameter :: SMTHA=-1.8E-4 - real, parameter :: SMTHB=16.0 + real, parameter :: SMTHA=-1.8E-4 !< No longer used/supported + real, parameter :: SMTHB=16.0 !< No longer used/supported ! ! CONSTANTS. - real, parameter :: CM1=2937.4 - real, parameter :: CM2=4.9283 - real, parameter :: CM3=23.5518 - real, parameter :: D00=0.0 - real, parameter :: D1=0.1 - real, parameter :: D01=0.01 - real, parameter :: D001=0.001 - real, parameter :: D50=0.50 - real, parameter :: H999=999. - real, parameter :: H1=1.0 - real, parameter :: H2=2.0 - real, parameter :: H4=4.0 - real, parameter :: H99999=99999. - real, parameter :: H1M12=1.E-12 - real, parameter :: H1000=1000. - real, parameter :: H1M5=1.E-5 - real, parameter :: D125=.125 - real, parameter :: D25=0.25 - real, parameter :: H100=100. - real, parameter :: H10000=10000. - real, parameter :: H10E5=1.E5 - real, parameter :: CAPA=0.28589641E0 - real, parameter :: D115=0.115 - real, parameter :: D608=0.608 - real, parameter :: D05=0.05 - real, parameter :: D0065=0.0065 - real, parameter :: H1E2=100. - real, parameter :: H1E4=1.E4 - real, parameter :: H1M2=1.E-2 - real, parameter :: G=9.81 - real, parameter :: RD=287.04 - real, parameter :: ROG=RD/G - real, parameter :: GI=1./G - real, parameter :: OVERRC=1.10 - real, parameter :: AD05=OVERRC*D05 - real, parameter :: CFT0=OVERRC-H1 - real, parameter :: PI=3.141592653589793 - real, parameter :: DTR=3.1415926/180. - real, parameter :: RTD=1./DTR - real, parameter :: ERAD=6.371E6 - real, parameter :: CP=1004.6 - real, parameter :: RCAPA=1./CAPA - real, parameter :: P1000=1000.E2,DP10M=110 - real, parameter :: ELWV=2.50E6 - real, parameter :: CPDR=CP/RD - real, parameter :: RG=1./GI - real, parameter :: ELDR=ELWV/RD - real, parameter :: BETA=.00367 - real, parameter :: BTG=BETA*G - real, parameter :: FMW=18.015 - real, parameter :: FMD=28.964 - real, parameter :: EPS=FMW/FMD - real, parameter :: ONEPS=1.-EPS - real, parameter :: TFRZ=273.15 - real, parameter :: RDOCP=RD/CP - real, parameter :: LHEAT=2.5E6 - real, parameter :: LHTOCP=LHEAT/CP - real, parameter :: EPSQ2=0.02 - real, parameter :: PQ0=379.90516 - real, parameter :: A2=17.2693882 - real, parameter :: A3=273.16 - real, parameter :: A4=35.86 - real, parameter :: EPSQ=1.E-12 + real, parameter :: CM1=2937.4 !< Constant used in Magnus Formula to calculate saturation water vapor pressure + real, parameter :: CM2=4.9283 !< Constant used in Magnus Formula to calculate saturation water vapor pressure + real, parameter :: CM3=23.5518 !< Constant used in Magnus Formula to calculate saturation water vapor pressure + real, parameter :: D00=0.0 !< Decimal form of 0 + real, parameter :: D1=0.1 !< Decimal number - one tenth + real, parameter :: D01=0.01 !< Decimal number - one hundreth + real, parameter :: D001=0.001 !< Decimal number - one thousandth + real, parameter :: D50=0.50 !< Decimal number 0.5 + real, parameter :: H999=999. !< 999 + real, parameter :: H1=1.0 !< 1.0 + real, parameter :: H2=2.0 !< 2.0 + real, parameter :: H4=4.0 !< 4.0 + real, parameter :: H99999=99999. !< 99999 + real, parameter :: H1M12=1.E-12 !< 1 * 10^(-12) + real, parameter :: H1000=1000. !< 1000 + real, parameter :: H1M5=1.E-5 !< 1/100000 == 0.00001 + real, parameter :: D125=.125 !< Decimal number 0.125 + real, parameter :: D25=0.25 !< Decimal number 0.25 + real, parameter :: H100=100. !< 100 + real, parameter :: H10000=10000. !< 10000 + real, parameter :: H10E5=1.E5 !< 100000 + real, parameter :: CAPA=0.28589641E0 !< R/Cp (universal gas constant over specific heat capacity of dry air at constant pressure) + real, parameter :: D115=0.115 !< Decimal number 0.125 + real, parameter :: D608=0.608 !< Decimal number 0.608 + real, parameter :: D05=0.05 !< Decimal number 0.05 + real, parameter :: D0065=0.0065 !< Decimal number 0.0065 + real, parameter :: H1E2=100. !< No longer used/supported + real, parameter :: H1E4=1.E4 !< No longer used/supported + real, parameter :: H1M2=1.E-2 !< No longer used/supported + real, parameter :: G=9.81 !< Acceleration due to gravity + real, parameter :: RD=287.04 !< Gas constant for dry air + real, parameter :: ROG=RD/G !< RD over G + real, parameter :: GI=1./G !< Inverse of acceleration due to gravity + real, parameter :: OVERRC=1.10 !< Overrelaxation coefficient + real, parameter :: AD05=OVERRC*D05 !< Overrelaxation coefficient * 0.05 + real, parameter :: CFT0=OVERRC-H1 !< A constant calculated by subtracting H1 from OVERRC + real, parameter :: PI=3.141592653589793 !< Pi + real, parameter :: DTR=3.1415926/180. !< Degrees to radians conversion + real, parameter :: RTD=1./DTR !< Radians to degrees conversion + real, parameter :: ERAD=6.371E6 !< Earth's radius in meters + real, parameter :: CP=1004.6 !< Specific heat capacity of dry air at constant pressure (kJ/kg-K) + real, parameter :: RCAPA=1./CAPA !< Reciprocal of CAPA + real, parameter :: P1000=1000.E2 !< 100,000 + real, parameter :: DP10M=110 !< No longer used/supported + real, parameter :: ELWV=2.50E6 !< Latent heat of vaporization of water in J/kg + real, parameter :: CPDR=CP/RD !< CP over RD + real, parameter :: RG=1./GI !< Reciprocal of GI (equal to G) + real, parameter :: ELDR=ELWV/RD !< No longer used/supported + real, parameter :: BETA=.00367 !< Thermal expansion coefficient of air + real, parameter :: BTG=BETA*G !< Beta times acceleration due to gravity + real, parameter :: FMW=18.015 !< Mean molecular mass of wet air + real, parameter :: FMD=28.964 !< Mean molecular mass of dry air + real, parameter :: EPS=FMW/FMD !< Ratio of dry air to water vapor gas constants + real, parameter :: ONEPS=1.-EPS !< _____ Represents the complement of the ratio of molecular weights of water vapor to dry air ? + real, parameter :: TFRZ=273.15 !< Freezing temperature of water + real, parameter :: RDOCP=RD/CP !< RD over CP + real, parameter :: LHEAT=2.5E6 !< Latent heat + real, parameter :: LHTOCP=LHEAT/CP !< Latent heat over CP + real, parameter :: EPSQ2=0.02 !< Minimum value of turbulent kinetic energy (m2 s^-2) ? + real, parameter :: PQ0=379.90516 !< Constant used to parameterize specific humidity at 2m in WRFPOST: qs=pq0/p*exp(a2*(t-a3)/(t-a4)) + real, parameter :: A2=17.2693882 !< Constant used to parameterize specific humidity at 2m in WRFPOST: qs=pq0/p*exp(a2*(t-a3)/(t-a4)) + real, parameter :: A3=273.16 !< Constant used to parameterize specific humidity at 2m in WRFPOST: qs=pq0/p*exp(a2*(t-a3)/(t-a4)) + real, parameter :: A4=35.86 !< Constant used to parameterize specific humidity at 2m in WRFPOST: qs=pq0/p*exp(a2*(t-a3)/(t-a4)) + real, parameter :: EPSQ=1.E-12 !< Minimum q (specific humidity) for computing precipitation type #ifdef GSDRAPR - real, parameter :: QCLDmin=1.E-6 ! was 1.E-6 + real, parameter :: QCLDmin=1.E-6 !< Minimum cloud mixing ratio - was 1.E-6 #else - real, parameter :: QCLDmin=1.E-5 ! was 1.E-6 + real, parameter :: QCLDmin=1.E-5 !< Minimum cloud mixing ratio - was 1.E-6 #endif - real, parameter :: CLFRmin=D1 - real, parameter :: NLImin=1.E3 + real, parameter :: CLFRmin=D1 !< Minimum cloud fraction + real, parameter :: NLImin=1.E3 !< Minimum number concentrations (m**-3) of large ice (snow/graupel/sleet) ! move definition of NLImax and T_ICE to MICROINIT 2012012018 ! real, parameter :: NLImax=5.E3 ! real, parameter :: T_ICE=-30. ! real, parameter :: TRAD_ice=0.5*T_ICE+TFRZ - real, parameter :: Qconv=0.1E-3 + real, parameter :: Qconv=0.1E-3 !< Heat transfer coefficient of convection _____? ! - real, parameter :: STBOL=1./5.67E-8 - real, parameter :: DBZmin=-20. - real, parameter :: abscoef=8.0 - real, parameter :: abscoefi=5.0 - real, parameter :: XLAI=4.0 ! Leaf area index - real, parameter :: RHmin=1.0E-6 ! minimal RH bound - real, parameter :: SMALL=1.E-6 + real, parameter :: STBOL=1./5.67E-8 !< 1 over Stefan-Boltzmann constant (W m^-2 deg^-4) + real, parameter :: DBZmin=-20. !< Minimum detectable radar reflectivity + real, parameter :: abscoef=8.0 !< Cloud water absorption coefficient + real, parameter :: abscoefi=5.0 !< Cloud ice absorption coefficient + real, parameter :: XLAI=4.0 !< Leaf area index + real, parameter :: RHmin=1.0E-6 !< minimal RH bound + real, parameter :: SMALL=1.E-6 !< _____? ! real, parameter :: PTHRESH=0.000000 - real, parameter :: ELIVW=2.72E6 - real, parameter :: ELOCP=ELIVW/CP + real, parameter :: ELIVW=2.72E6 !< Latent heat of vaporization of water in J/kg, used in calculations involving energy transfer during evaporation + real, parameter :: ELOCP=ELIVW/CP !< ELIVW over CP ! - real, parameter :: GAMMA=6.5E-3 - real, parameter :: RGAMOG=RD*GAMMA/G + real, parameter :: GAMMA=6.5E-3 !< Gamma - constant for lapse rate in troposphere + real, parameter :: RGAMOG=RD*GAMMA/G !< Gas constant for dry air times gamma over acceleration due to gravity end module params_mod diff --git a/sorc/ncep_post.fd/physcons.f b/sorc/ncep_post.fd/physcons.f index 126c993c8..7c3773677 100644 --- a/sorc/ncep_post.fd/physcons.f +++ b/sorc/ncep_post.fd/physcons.f @@ -1,3 +1,6 @@ +!> @file +!> @brief physcons_post declares physical constants used throughout UPP code. +!> module physcons_post use machine_post,only:kind_phys !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -8,36 +11,37 @@ module physcons_post ! 1990/04/30: g and rd are made consistent with NWS usage. ! 2001/10/22: g made consistent with SI usage. ! Math constants -! real(kind=kind_phys),parameter:: con_pi =3.141593e+0 ! pi - real(kind=kind_phys),parameter:: con_pi =4.0d0*atan(1.0d0) - real(kind=kind_phys),parameter:: con_sqrt2 =1.414214e+0_kind_phys ! square root of 2 - real(kind=kind_phys),parameter:: con_sqrt3 =1.732051e+0_kind_phys ! square root of 3 -! Primary constants - real(kind=kind_phys),parameter:: con_rerth =6.3712e+6_kind_phys ! radius of earth (m) - real(kind=kind_phys),parameter:: con_g =9.80665e+0_kind_phys! gravity (m/s2) - real(kind=kind_phys),parameter:: con_omega =7.2921e-5_kind_phys ! ang vel of earth (1/s) - real(kind=kind_phys),parameter:: con_rd =2.8705e+2_kind_phys ! gas constant air (J/kg/K) - real(kind=kind_phys),parameter:: con_rv =4.6150e+2_kind_phys ! gas constant H2O (J/kg/K) - real(kind=kind_phys),parameter:: con_cp =1.0046e+3_kind_phys ! spec heat air @p (J/kg/K) - real(kind=kind_phys),parameter:: con_cv =7.1760e+2_kind_phys ! spec heat air @v (J/kg/K) - real(kind=kind_phys),parameter:: con_cvap =1.8460e+3_kind_phys ! spec heat H2O gas (J/kg/K) - real(kind=kind_phys),parameter:: con_cliq =4.1855e+3_kind_phys ! spec heat H2O liq (J/kg/K) - real(kind=kind_phys),parameter:: con_csol =2.1060e+3_kind_phys ! spec heat H2O ice (J/kg/K) - real(kind=kind_phys),parameter:: con_hvap =2.5000e+6_kind_phys ! lat heat H2O cond (J/kg) - real(kind=kind_phys),parameter:: con_hfus =3.3358e+5_kind_phys ! lat heat H2O fusion (J/kg) - real(kind=kind_phys),parameter:: con_psat =6.1078e+2_kind_phys ! pres at H2O 3pt (Pa) - real(kind=kind_phys),parameter:: con_sbc =5.6730e-8_kind_phys ! stefan-boltzmann (W/m2/K4) - real(kind=kind_phys),parameter:: con_solr =1.3533e+3_kind_phys ! solar constant (W/m2) - real(kind=kind_phys),parameter:: con_t0c =2.7315e+2_kind_phys ! temp at 0C (K) - real(kind=kind_phys),parameter:: con_ttp =2.7316e+2_kind_phys ! temp at H2O 3pt (K) -! Secondary constants - real(kind=kind_phys),parameter:: con_rocp =con_rd/con_cp - real(kind=kind_phys),parameter:: con_cpor =con_cp/con_rd - real(kind=kind_phys),parameter:: con_rog =con_rd/con_g - real(kind=kind_phys),parameter:: con_fvirt =con_rv/con_rd-1. - real(kind=kind_phys),parameter:: con_eps =con_rd/con_rv - real(kind=kind_phys),parameter:: con_epsm1 =con_rd/con_rv-1. - real(kind=kind_phys),parameter:: con_dldt =con_cvap-con_cliq - real(kind=kind_phys),parameter:: con_xpona =-con_dldt/con_rv - real(kind=kind_phys),parameter:: con_xponb =-con_dldt/con_rv+con_hvap/(con_rv*con_ttp) +! real(kind=kind_phys),parameter:: con_pi =3.141593e+0 !< pi + real(kind=kind_phys),parameter:: con_pi =4.0d0*atan(1.0d0) !< pi + real(kind=kind_phys),parameter:: con_sqrt2 =1.414214e+0_kind_phys !< square root of 2 + real(kind=kind_phys),parameter:: con_sqrt3 =1.732051e+0_kind_phys !< square root of 3 +!> Primary constants + real(kind=kind_phys),parameter:: con_rerth =6.3712e+6_kind_phys !< radius of earth (m) + real(kind=kind_phys),parameter:: con_g =9.80665e+0_kind_phys!< acceleration due to gravity (m/s2) + real(kind=kind_phys),parameter:: con_omega =7.2921e-5_kind_phys !< angular vel of earth (1/s) + real(kind=kind_phys),parameter:: con_rd =2.8705e+2_kind_phys !< gas constant dry air (J/kg/K) + real(kind=kind_phys),parameter:: con_rv =4.6150e+2_kind_phys !< gas constant H2O (J/kg/K) + real(kind=kind_phys),parameter:: con_cp =1.0046e+3_kind_phys !< specific heat dry air at constant pressure (J/kg/K) + real(kind=kind_phys),parameter:: con_cv =7.1760e+2_kind_phys !< specific heat dry air at constant volume (J/kg/K) + real(kind=kind_phys),parameter:: con_cvap =1.8460e+3_kind_phys !< specific heat H2O gas (J/kg/K) + real(kind=kind_phys),parameter:: con_cliq =4.1855e+3_kind_phys !< specific heat H2O liquid (J/kg/K) + real(kind=kind_phys),parameter:: con_csol =2.1060e+3_kind_phys !< specific heat H2O ice (J/kg/K) + real(kind=kind_phys),parameter:: con_hvap =2.5000e+6_kind_phys !< latent heat H2O condensation (J/kg) + real(kind=kind_phys),parameter:: con_hfus =3.3358e+5_kind_phys !< latent heat H2O fusion (J/kg) + real(kind=kind_phys),parameter:: con_psat =6.1078e+2_kind_phys !< pressure at H2O triple point (Pa) + real(kind=kind_phys),parameter:: con_sbc =5.6730e-8_kind_phys !< stefan-boltzmann constant (W/m2/K4) + real(kind=kind_phys),parameter:: con_solr =1.3533e+3_kind_phys !< solar constant (W/m2) + real(kind=kind_phys),parameter:: con_t0c =2.7315e+2_kind_phys !< temp at 0C (K) + real(kind=kind_phys),parameter:: con_ttp =2.7316e+2_kind_phys !< temp at H2O triple point (K) + +!> Secondary constants + real(kind=kind_phys), parameter :: con_rocp = con_rd / con_cp !< Rd/Cp -- Gas constant for dry air over specific heat of dry air at constant pressure + real(kind=kind_phys), parameter :: con_cpor = con_cp / con_rd !< Cp/Rd -- Specific heat of dry air at constant pressure over gas constant for dry air + real(kind=kind_phys), parameter :: con_rog = con_rd / con_g !< Rd/g -- Gas constant for dry air over acceleration due to gravity + real(kind=kind_phys), parameter :: con_fvirt = con_rv / con_rd - 1. !< Rv/Rd -- Virtual temperature correction factor - Gas constant for H2O over gas constant for dry air minus 1 + real(kind=kind_phys), parameter :: con_eps = con_rd / con_rv !< Epsilon -- Rd/Rv - ratio of gas constant of dry air to gas constant of water vapor + real(kind=kind_phys), parameter :: con_epsm1 = con_rd / con_rv - 1. !< Epsilon minus 1 + real(kind=kind_phys), parameter :: con_dldt = con_cvap - con_cliq !< Difference in specific heat between water vapor and liquid H2O + real(kind=kind_phys), parameter :: con_xpona = con_dldt / con_rv !< Dldt/Rv + real(kind=kind_phys), parameter :: con_xponb = -con_dldt / con_rv + con_hvap / (con_rv * con_ttp) !< -dldt/Rv + hvap/(Rv*Ttp) end module diff --git a/sorc/ncep_post.fd/post_gtg.fd b/sorc/ncep_post.fd/post_gtg.fd index 7476b8f27..567edcc94 160000 --- a/sorc/ncep_post.fd/post_gtg.fd +++ b/sorc/ncep_post.fd/post_gtg.fd @@ -1 +1 @@ -Subproject commit 7476b8f2790a47d788f79cebfdbb551567ae7cf8 +Subproject commit 567edcc94bc418d0dcd6cdaafed448eeb5aab570 diff --git a/sorc/ncep_post.fd/svptbl.f b/sorc/ncep_post.fd/svptbl.f index 9b143d710..b31efe2f4 100644 --- a/sorc/ncep_post.fd/svptbl.f +++ b/sorc/ncep_post.fd/svptbl.f @@ -1,11 +1,16 @@ +!> @file +!> @brief SVPTBL declares variables related to saturation vapor pressure tables module svptbl_mod !--------------------------------------------------------------------- implicit none ! - integer,PARAMETER :: NX=7501 - real C1XPVS0,C2XPVS0 - real C1XPVS,C2XPVS - real TBPVS(NX),TBPVS0(NX) + integer,PARAMETER :: NX=7501 !< Table length + real C1XPVS0 !< Coefficient 1 for saturation vapor pressure in TBPVS0 + real C2XPVS0 !< Coefficient 2 for saturation vapor pressure in TBPVS0 + real C1XPVS !< Coefficient 1 for saturation vapor pressure in TBPVS + real C2XPVS !< Coefficient 2 for saturation vapor pressure in TBPVS + real TBPVS(NX) !< Table of saturation vapor pressure values + real TBPVS0(NX) !< Table of saturation vapor pressure values ! end module svptbl_mod diff --git a/sorc/ncep_post.fd/wrf_io_flags.f b/sorc/ncep_post.fd/wrf_io_flags.f index fbd773e52..a7221893e 100644 --- a/sorc/ncep_post.fd/wrf_io_flags.f +++ b/sorc/ncep_post.fd/wrf_io_flags.f @@ -1,12 +1,14 @@ +!> @file +!> @brief wrf_io_flags declares variables related to WRF input/output. module wrf_io_flags_mod implicit none - integer, parameter :: WRF_FILE_NOT_OPENED = 100 - integer, parameter :: WRF_FILE_OPENED_NOT_COMMITTED = 101 - integer, parameter :: WRF_FILE_OPENED_AND_COMMITTED = 102 - integer, parameter :: WRF_FILE_OPENED_FOR_READ = 103 - integer, parameter :: WRF_REAL = 104 - integer, parameter :: WRF_REAL8 = 105 - integer, parameter :: WRF_INTEGER = 106 - integer, parameter :: WRF_LOGICAL = 107 + integer, parameter :: WRF_FILE_NOT_OPENED = 100 !< Assigns ID 100 to WRF_FILE_NOT_OPENED + integer, parameter :: WRF_FILE_OPENED_NOT_COMMITTED = 101 !< Assigns ID 101 to WRF_FILE_OPENED_NOT_COMMITTED + integer, parameter :: WRF_FILE_OPENED_AND_COMMITTED = 102 !< Assigns ID 102 to WRF_FILE_OPENED_AND_COMMITTED + integer, parameter :: WRF_FILE_OPENED_FOR_READ = 103 !< Assigns ID 103 to WRF_FILE_OPENED_FOR_READ + integer, parameter :: WRF_REAL = 104 !< Assigns ID 104 to WRF_REAL + integer, parameter :: WRF_REAL8 = 105 !< Assigns ID 105 to WRF_REAL8 + integer, parameter :: WRF_INTEGER = 106 !< Assigns ID 106 to WRF_INTEGER + integer, parameter :: WRF_LOGICAL = 107 !< Assigns ID 107 to WRF_LOGICAL end module wrf_io_flags_mod diff --git a/sorc/ncep_post.fd/xml_perl_data.f b/sorc/ncep_post.fd/xml_perl_data.f index afe410c7e..48bbe2e38 100644 --- a/sorc/ncep_post.fd/xml_perl_data.f +++ b/sorc/ncep_post.fd/xml_perl_data.f @@ -1,30 +1,34 @@ module xml_perl_data !------------------------------------------------------------------------ -! -! This module read in Perl XML processed flat file and -! handle parameter marshalling for existing POST program -! -! program log: -! March, 2015 Lin Gan Initial Code -! July, 2016 J. Carley Clean up prints -! +!> @file +!> @brief This module reads in Perl XML processed flat file and +!> handles parameter marshalling for existing POST program +!> +!> ### Program history log: +!> Date | Programmer | Comments +!> -----|------------|--------- +!> March, 2015 | Lin Gan | Initial Code +!> July, 2016 | J. Carley | Clean up prints +!> July, 2024 | Wen Meng | Increase datset length +!> !------------------------------------------------------------------------ -!> @defgroup xml_perl_data_mod Sets parameters that are used to read in -!> Perl XML processed flat file and handle parameter marshalling for -!> existing POST program. +!> @defgroup xml_perl_data_mod xml_perl_data +!> Sets parameters that are used to read in +!! Perl XML processed flat file and handle parameter marshalling for +!! existing POST program. ! implicit none ! !> @ingroup xml_perl_data_mod !> @{ Parameters that are used to read in Perl XML processed flat file -!> and handle parameter marshalling for existing POST program. +!! and handle parameter marshalling for existing POST program. integer :: NFCST,NBC,LIST,IOUT,NTSTM, & NRADS,NRADL,NDDAMP,IDTAD,NBOCO,NSHDE,NCP,IMDLTY !> @} !> @ingroup xml_perl_data_mod !> @{ Parameters that are used to read in Perl XML processed flat file -!> and handle parameter marshalling for existing POST program. +!! and handle parameter marshalling for existing POST program. type param_t integer :: post_avblfldidx=-9999 character(len=80) :: shortname='' @@ -41,6 +45,7 @@ module xml_perl_data integer, dimension(:), pointer :: scale_fact_fixed_sfc2 => null() real, dimension(:), pointer :: level2 => null() character(len=80) :: aerosol_type='' + character(len=80) :: prob_type='' character(len=80) :: typ_intvl_size='' integer :: scale_fact_1st_size=0 real :: scale_val_1st_size=0.0 @@ -51,6 +56,10 @@ module xml_perl_data real :: scale_val_1st_wvlen=0.0 integer :: scale_fact_2nd_wvlen=0 real :: scale_val_2nd_wvlen=0.0 + integer :: scale_fact_lower_limit=0 + real :: scale_val_lower_limit=0.0 + integer :: scale_fact_upper_limit=0 + real :: scale_val_upper_limit=0.0 real, dimension(:), pointer :: scale => null() integer :: stat_miss_val=0 integer :: leng_time_range_prev=0 @@ -59,9 +68,13 @@ module xml_perl_data character(len=20) :: stat_unit_time_key_succ='' character(len=20) :: bit_map_flag='' end type param_t +!> @} +!> @ingroup xml_perl_data_mod +!> @{ Parameters that are used to read in Perl XML processed flat file +!! and handle parameter marshalling for existing POST program. type paramset_t - character(len=6) :: datset='' + character(len=20) :: datset='' integer :: grid_num=255 character(len=20) :: sub_center='' character(len=20) :: version_no='' @@ -80,7 +93,7 @@ module xml_perl_data !> @} !> @ingroup xml_perl_data_mod !> @{ Parameters that are used to read in Perl XML processed flat file -!> and handle parameter marshalling for existing POST program. +!! and handle parameter marshalling for existing POST program. character(len=50) :: type_ens_fcst='' character(len=50) :: type_derived_fcst='' type(param_t), dimension(:), pointer :: param => null() @@ -88,15 +101,20 @@ module xml_perl_data !> @} !> @ingroup xml_perl_data_mod !> @{ Parameters that are used to read in Perl XML processed flat file -!> and handle parameter marshalling for existing POST program. +!! and handle parameter marshalling for existing POST program. type post_avblfld_t type(param_t), dimension(:), pointer :: param => null() end type post_avblfld_t +!> @} +!> @ingroup xml_perl_data_mod +!> @{ Parameters that are used to read in Perl XML processed flat file +!! and handle parameter marshalling for existing POST program. type (paramset_t), dimension(:), pointer :: paramset type (post_avblfld_t),save :: post_avblflds !> @} contains +!> @brief Reads in and processes the postxconfig file subroutine read_postxconfig() use rqstfld_mod,only: num_post_afld,MXLVL,lvlsxml @@ -158,7 +176,6 @@ subroutine read_postxconfig() ! allocate array size from param for current paramset ! filter_char_inp is to check if "?" is found ! then replace to empty string because it means no input. - read(22,*)paramset(i)%datset call filter_char_inp(paramset(i)%datset) @@ -274,6 +291,8 @@ subroutine read_postxconfig() read(22,*)paramset(i)%param(j)%aerosol_type call filter_char_inp(paramset(i)%param(j)%aerosol_type) + read(22,*)paramset(i)%param(j)%prob_type + call filter_char_inp(paramset(i)%param(j)%prob_type) read(22,*)paramset(i)%param(j)%typ_intvl_size call filter_char_inp(paramset(i)%param(j)%typ_intvl_size) @@ -288,6 +307,10 @@ subroutine read_postxconfig() read(22,*)paramset(i)%param(j)%scale_val_1st_wvlen read(22,*)paramset(i)%param(j)%scale_fact_2nd_wvlen read(22,*)paramset(i)%param(j)%scale_val_2nd_wvlen + read(22,*)paramset(i)%param(j)%scale_fact_lower_limit + read(22,*)paramset(i)%param(j)%scale_val_lower_limit + read(22,*)paramset(i)%param(j)%scale_fact_upper_limit + read(22,*)paramset(i)%param(j)%scale_val_upper_limit read(22,*)scale_array_count allocate(paramset(i)%param(j)%scale(1)) if (scale_array_count > 0) then @@ -320,7 +343,8 @@ subroutine read_postxconfig() end subroutine read_postxconfig - +!> @brief Checks parameter set to see whether "?" is found and, if so, replaces it with an empty string because it means no input. +!> @param[inout] inpchar Input character subroutine filter_char_inp (inpchar) implicit none character, intent(inout) :: inpchar diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 76b7ce933..5e1187bde 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -33,7 +33,7 @@ case $(hostname -f) in fe[1-8]) MACHINE_ID=jet ;; ### jet1-8 tfe[12]) MACHINE_ID=jet ;; ### tjet1-2 - Orion-login-[1-4].HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion1-4 + [Oo]rion-login-[1-4].[Hh][Pp][Cc].[Mm]s[Ss]tate.[Ee]du) MACHINE_ID=orion ;; ### orion1-4 [Hh]ercules-login-[1-4].[Hh][Pp][Cc].[Mm]s[Ss]tate.[Ee]du) MACHINE_ID=hercules ;; ### hercules1-4 @@ -76,8 +76,9 @@ elif [[ -d /scratch1 ]]; then # We are on NOAA Hera MACHINE_ID=hera elif [[ -d /work ]]; then - # We are on MSU Orion or Hercules - if [[ -d /apps/other ]]; then + # We are on MSU Orion or Hercules, check the home mount + mount=$(findmnt -n -o SOURCE /home) + if [[ ${mount} =~ "hercules" ]]; then # We are on Hercules MACHINE_ID=hercules else diff --git a/tests/logs/rt.log.HERA b/tests/logs/rt.log.HERA index 0984bff66..0746b6e80 100644 --- a/tests/logs/rt.log.HERA +++ b/tests/logs/rt.log.HERA @@ -1,53 +1,69 @@ -rundir: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/upp/780/UPP/ci/rundir-upp-HERA -10/13 06:21:38Z -hrrr pe test: your new post executable generates bit-identical WRFTWO.GrbF04 as the trunk -10/13 06:21:40Z -hrrr pe test: your new post executable generates bit-identical WRFPRS.GrbF04 as the trunk -10/13 06:21:42Z -hrrr pe test: your new post executable generates bit-identical WRFNAT.GrbF04 as the trunk -10/13 06:21:48Z -fv3gefs test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the trunk -10/13 06:22:09Z -fv3r test: your new post executable generates bit-identical PRSLEV10.tm00 as the trunk -10/13 06:22:14Z -rtma pe test: your new post executable generates bit-identical NATLEV00.tm00 as the trunk -10/13 06:22:16Z -fv3r test: your new post executable generates bit-identical NATLEV10.tm00 as the trunk -10/13 06:22:20Z -rtma pe test: your new post executable generates bit-identical PRSLEV00.tm00 as the trunk -10/13 06:22:20Z -rtma pe test: your new post executable generates bit-identical IFIFIP00.tm00 as the trunk -10/13 06:22:36Z -hrrr test: your new post executable generates bit-identical WRFTWO.GrbF04 as the trunk -10/13 06:22:38Z -hrrr test: your new post executable generates bit-identical WRFPRS.GrbF04 as the trunk -10/13 06:22:40Z -hrrr test: your new post executable generates bit-identical WRFNAT.GrbF04 as the trunk -10/13 06:22:45Z -fv3gefs pe test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the trunk -10/13 06:22:57Z -fv3hafs test: your new post executable generates bit-identical HURPRS09.tm00 as the trunk -10/13 06:23:09Z -fv3hafs pe test: your new post executable generates bit-identical HURPRS09.tm00 as the trunk -10/13 06:23:26Z -rap test: your new post executable generates bit-identical WRFPRS.GrbF16 as the trunk -10/13 06:23:27Z -rap test: your new post executable generates bit-identical WRFNAT.GrbF16 as the trunk -10/13 06:23:43Z -nmmb pe test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the trunk -10/13 06:23:43Z -rap pe test: your new post executable did generate changed results in WRFPRS.GrbF16 -10/13 06:23:45Z -rap pe test: your new post executable generates bit-identical WRFNAT.GrbF16 as the trunk -10/13 06:23:45Z -nmmb pe test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the trunk -10/13 06:23:45Z -nmmb pe test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the trunk -10/13 06:23:48Z -nmmb test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the trunk -10/13 06:23:49Z -nmmb test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the trunk -10/13 06:23:49Z -nmmb test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the trunk -10/13 06:24:00Z -fv3r pe test: your new post executable generates bit-identical PRSLEV10.tm00 as the trunk -10/13 06:24:05Z -fv3r pe test: your new post executable generates bit-identical NATLEV10.tm00 as the trunk -10/13 06:24:09Z -rtma test: your new post executable generates bit-identical NATLEV00.tm00 as the trunk -10/13 06:24:13Z -rtma test: your new post executable generates bit-identical PRSLEV00.tm00 as the trunk -10/13 06:24:13Z -rtma test: your new post executable generates bit-identical IFIFIP00.tm00 as the trunk -10/13 06:31:06Z gfs_post_00.127117-fv3gfs test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the trunk -10/13 06:31:07Z gfs_post_00.127117-fv3gfs test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the trunk -10/13 06:31:07Z gfs_post_00.127117-fv3gfs test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the trunk -10/13 06:31:45Z gfs_post_00.104523-fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the trunk -10/13 06:31:46Z gfs_post_00.104523-fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the trunk -10/13 06:31:46Z gfs_post_00.104523-fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the trunk -10/13 06:24:01Z -Runtime: nmmb_test 00:01:17 -- baseline 00:01:00 -10/13 06:24:01Z -Runtime: nmmb_pe_test 00:01:12 -- baseline 00:01:00 -10/13 06:24:01Z -Runtime: fv3gefs_test 00:00:22 -- baseline 00:40:00 -10/13 06:24:02Z -Runtime: fv3gefs_pe_test 00:00:24 -- baseline 00:40:00 -10/13 06:24:02Z -Runtime: rap_test 00:01:04 -- baseline 00:02:00 -10/13 06:24:02Z -Runtime: rap_pe_test 00:01:12 -- baseline 00:02:00 -10/13 06:24:03Z -Runtime: hrrr_test 00:02:16 -- baseline 00:02:00 -10/13 06:24:03Z -Runtime: hrrr_pe_test 00:02:18 -- baseline 00:02:00 -10/13 06:31:22Z -Runtime: fv3gfs_test 00:12:09 -- baseline 00:15:00 -10/13 06:31:52Z -Runtime: fv3gfs_pe_test 00:12:47 -- baseline 00:15:00 -10/13 06:31:53Z -Runtime: fv3r_test 00:01:51 -- baseline 00:03:00 -10/13 06:31:53Z -Runtime: fv3r_pe_test 00:01:51 -- baseline 00:03:00 -10/13 06:31:53Z -Runtime: fv3hafs_test 00:00:39 -- baseline 00:03:00 -10/13 06:31:54Z -Runtime: fv3hafs_pe_test 00:00:41 -- baseline 00:03:00 -10/13 06:31:54Z -Runtime: rtma_test 00:01:59 -- baseline 00:03:00 -10/13 06:31:54Z -Runtime: rtma_test_pe_test 00:01:56 -- baseline +===== Start of UPP Regression Testing Log ===== +UPP Hash Tested: +e8197c41f54a5a85e663d21c0d71b5acf8e4d1da + +Submodule hashes: +-1ba8270870947b583cd51bc72ff8960f4c1fb36e sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 sorc/ncep_post.fd/post_gtg.fd + +Run directory: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/upp/1029/UPP/ci/rundir/upp-HERA +Baseline directory: /scratch2/NAGAPE/epic/UPP/test_suite + +Total runtime: 00h:12m:02s +Test Date: 20240906 15:35:42 +Summary Results: + +09/06 15:27:43Z -fv3gefs pe test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the trunk +09/06 15:27:51Z -fv3gefs test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the trunk +09/06 15:28:10Z -rtma pe test: your new post executable generates bit-identical NATLEV00.tm00 as the trunk +09/06 15:28:13Z -rtma pe test: your new post executable generates bit-identical PRSLEV00.tm00 as the trunk +09/06 15:28:13Z -rtma pe test: your new post executable generates bit-identical IFIFIP00.tm00 as the trunk +09/06 15:28:40Z -rap test: your new post executable generates bit-identical WRFPRS.GrbF16 as the trunk +09/06 15:28:41Z -rap test: your new post executable generates bit-identical WRFNAT.GrbF16 as the trunk +09/06 15:28:49Z -hrrr pe test: your new post executable generates bit-identical WRFTWO.GrbF04 as the trunk +09/06 15:28:50Z -hrrr pe test: your new post executable generates bit-identical WRFPRS.GrbF04 as the trunk +09/06 15:28:52Z -hrrr pe test: your new post executable generates bit-identical WRFNAT.GrbF04 as the trunk +09/06 15:28:55Z -fv3r test: your new post executable generates bit-identical PRSLEV10.tm00 as the trunk +09/06 15:28:59Z -fv3r test: your new post executable generates bit-identical NATLEV10.tm00 as the trunk +09/06 15:28:59Z -rtma test: your new post executable generates bit-identical NATLEV00.tm00 as the trunk +09/06 15:29:02Z -rtma test: your new post executable generates bit-identical PRSLEV00.tm00 as the trunk +09/06 15:29:03Z -rtma test: your new post executable generates bit-identical IFIFIP00.tm00 as the trunk +09/06 15:29:12Z -fv3hafs test: your new post executable generates bit-identical HURPRS09.tm00 as the trunk +09/06 15:29:20Z -fv3hafs pe test: your new post executable generates bit-identical HURPRS09.tm00 as the trunk +09/06 15:29:45Z -fv3r pe test: your new post executable generates bit-identical PRSLEV10.tm00 as the trunk +09/06 15:29:47Z -hrrr test: your new post executable generates bit-identical WRFTWO.GrbF04 as the trunk +09/06 15:29:47Z -hrrr test: your new post executable generates bit-identical WRFPRS.GrbF04 as the trunk +09/06 15:29:49Z -fv3r pe test: your new post executable generates bit-identical NATLEV10.tm00 as the trunk +09/06 15:29:49Z -hrrr test: your new post executable generates bit-identical WRFNAT.GrbF04 as the trunk +09/06 15:29:51Z -nmmb pe test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the trunk +09/06 15:29:53Z -nmmb pe test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the trunk +09/06 15:29:54Z -nmmb pe test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the trunk +09/06 15:29:55Z -rap pe test: your new post executable did generate changed results in WRFPRS.GrbF16 +09/06 15:29:55Z -rap pe test: your new post executable generates bit-identical WRFNAT.GrbF16 as the trunk +09/06 15:29:56Z -nmmb test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the trunk +09/06 15:29:57Z -nmmb test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the trunk +09/06 15:29:58Z -nmmb test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the trunk +09/06 15:34:48Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the trunk +09/06 15:34:49Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the trunk +09/06 15:34:50Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the trunk +09/06 15:35:26Z -fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the trunk +09/06 15:35:29Z -fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the trunk +09/06 15:35:29Z -fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the trunk +09/06 15:30:04Z -Runtime: nmmb_test 00:01:16 -- baseline 00:01:00 +09/06 15:30:05Z -Runtime: nmmb_pe_test 00:01:12 -- baseline 00:01:00 +09/06 15:30:05Z -Runtime: fv3gefs_test 00:00:16 -- baseline 00:40:00 +09/06 15:30:05Z -Runtime: fv3gefs_pe_test 00:00:22 -- baseline 00:40:00 +09/06 15:30:06Z -Runtime: rap_test 00:00:57 -- baseline 00:02:00 +09/06 15:30:06Z -Runtime: rap_pe_test 00:01:13 -- baseline 00:02:00 +09/06 15:30:06Z -Runtime: hrrr_test 00:02:18 -- baseline 00:02:00 +09/06 15:30:07Z -Runtime: hrrr_pe_test 00:02:06 -- baseline 00:02:00 +09/06 15:34:55Z -Runtime: fv3gfs_test 00:07:35 -- baseline 00:15:00 +09/06 15:35:41Z -Runtime: fv3gfs_pe_test 00:08:14 -- baseline 00:15:00 +09/06 15:35:41Z -Runtime: fv3r_test 00:01:38 -- baseline 00:03:00 +09/06 15:35:41Z -Runtime: fv3r_pe_test 00:01:33 -- baseline 00:03:00 +09/06 15:35:41Z -Runtime: fv3hafs_test 00:00:34 -- baseline 00:03:00 +09/06 15:35:42Z -Runtime: fv3hafs_pe_test 00:00:42 -- baseline 00:03:00 +09/06 15:35:42Z -Runtime: rtma_test 00:01:42 -- baseline 00:03:00 +09/06 15:35:42Z -Runtime: rtma_test_pe_test 00:01:43 -- baseline +No changes in test results detected. +===== End of UPP Regression Testing Log ===== diff --git a/tests/logs/rt.log.HERCULES b/tests/logs/rt.log.HERCULES new file mode 100644 index 000000000..61b10455b --- /dev/null +++ b/tests/logs/rt.log.HERCULES @@ -0,0 +1,69 @@ +===== Start of UPP Regression Testing Log ===== +UPP Hash Tested: +e8197c41f54a5a85e663d21c0d71b5acf8e4d1da + +Submodule hashes: +-1ba8270870947b583cd51bc72ff8960f4c1fb36e sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 sorc/ncep_post.fd/post_gtg.fd + +Run directory: /work2/noaa/epic/nandoam/regression-testing/upp/hercules/1029/UPP/ci/rundir/upp-HERCULES +Baseline directory: /work/noaa/epic/UPP + +Total runtime: 00h:11m:50s +Test Date: 20240906 10:37:08 +Summary Results: + +09/06 15:27:50Z -fv3gefs test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the trunk +09/06 15:27:53Z -fv3gefs pe test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the trunk +09/06 15:28:03Z -fv3hafs test: your new post executable generates bit-identical HURPRS09.tm00 as the trunk +09/06 15:28:04Z -fv3hafs pe test: your new post executable generates bit-identical HURPRS09.tm00 as the trunk +09/06 15:28:23Z -rap test: your new post executable generates bit-identical WRFPRS.GrbF16 as the trunk +09/06 15:28:24Z -rap test: your new post executable generates bit-identical WRFNAT.GrbF16 as the trunk +09/06 15:28:29Z -rap pe test: your new post executable did generate changed results in WRFPRS.GrbF16 +09/06 15:28:30Z -rap pe test: your new post executable generates bit-identical WRFNAT.GrbF16 as the trunk +09/06 15:28:36Z -nmmb pe test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the trunk +09/06 15:28:37Z -nmmb pe test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the trunk +09/06 15:28:37Z -nmmb pe test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the trunk +09/06 15:28:43Z -nmmb test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the trunk +09/06 15:28:44Z -nmmb test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the trunk +09/06 15:28:44Z -nmmb test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the trunk +09/06 15:29:09Z -hrrr pe test: your new post executable generates bit-identical WRFTWO.GrbF04 as the trunk +09/06 15:29:10Z -hrrr pe test: your new post executable generates bit-identical WRFPRS.GrbF04 as the trunk +09/06 15:29:11Z -hrrr pe test: your new post executable generates bit-identical WRFNAT.GrbF04 as the trunk +09/06 15:29:21Z -fv3r test: your new post executable generates bit-identical PRSLEV10.tm00 as the trunk +09/06 15:29:23Z -fv3r test: your new post executable generates bit-identical NATLEV10.tm00 as the trunk +09/06 15:29:27Z -fv3r pe test: your new post executable generates bit-identical PRSLEV10.tm00 as the trunk +09/06 15:29:28Z -fv3r pe test: your new post executable generates bit-identical NATLEV10.tm00 as the trunk +09/06 15:29:48Z -rtma pe test: your new post executable generates bit-identical NATLEV00.tm00 as the trunk +09/06 15:29:49Z -rtma pe test: your new post executable generates bit-identical PRSLEV00.tm00 as the trunk +09/06 15:29:50Z -rtma pe test: your new post executable generates bit-identical IFIFIP00.tm00 as the trunk +09/06 15:29:51Z -rtma test: your new post executable generates bit-identical NATLEV00.tm00 as the trunk +09/06 15:29:52Z -rtma test: your new post executable generates bit-identical PRSLEV00.tm00 as the trunk +09/06 15:29:52Z -rtma test: your new post executable generates bit-identical IFIFIP00.tm00 as the trunk +09/06 15:32:01Z -hrrr test: your new post executable generates bit-identical WRFTWO.GrbF04 as the trunk +09/06 15:32:01Z -hrrr test: your new post executable generates bit-identical WRFPRS.GrbF04 as the trunk +09/06 15:32:03Z -hrrr test: your new post executable generates bit-identical WRFNAT.GrbF04 as the trunk +09/06 15:34:17Z -fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the trunk +09/06 15:34:19Z -fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the trunk +09/06 15:34:19Z -fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the trunk +09/06 15:36:54Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the trunk +09/06 15:36:55Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the trunk +09/06 15:36:55Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the trunk +09/06 15:28:47Z -Runtime: nmmb_test 00:01:12 -- baseline 00:03:00 +09/06 15:28:47Z -Runtime: nmmb_pe_test 00:01:06 -- baseline 00:03:00 +09/06 15:28:47Z -Runtime: fv3gefs_test 00:00:18 -- baseline 01:20:00 +09/06 15:28:47Z -Runtime: fv3gefs_pe_test 00:00:21 -- baseline 01:20:00 +09/06 15:28:47Z -Runtime: rap_test 00:00:52 -- baseline 00:02:00 +09/06 15:28:47Z -Runtime: rap_pe_test 00:00:58 -- baseline 00:02:00 +09/06 15:32:07Z -Runtime: hrrr_test 00:04:31 -- baseline 00:02:00 +09/06 15:32:07Z -Runtime: hrrr_pe_test 00:01:39 -- baseline 00:02:00 +09/06 15:37:08Z -Runtime: fv3gfs_test 00:09:23 -- baseline 00:18:00 +09/06 15:37:08Z -Runtime: fv3gfs_pe_test 00:06:47 -- baseline 00:18:00 +09/06 15:37:08Z -Runtime: fv3r_test 00:01:51 -- baseline 00:03:00 +09/06 15:37:08Z -Runtime: fv3r_pe_test 00:01:56 -- baseline 00:03:00 +09/06 15:37:08Z -Runtime: fv3hafs_test 00:00:31 -- baseline 00:00:40 +09/06 15:37:08Z -Runtime: fv3hafs_pe_test 00:00:29 -- baseline 00:00:40 +09/06 15:37:08Z -Runtime: rtma_test 00:02:17 -- baseline 00:04:00 +09/06 15:37:08Z -Runtime: rtma_pe_test 00:02:15 -- baseline 00:04:00 +No changes in test results detected. +===== End of UPP Regression Testing Log ===== diff --git a/tests/logs/rt.log.ORION b/tests/logs/rt.log.ORION index d30ddfa5d..9ff05e035 100644 --- a/tests/logs/rt.log.ORION +++ b/tests/logs/rt.log.ORION @@ -1,53 +1,69 @@ -rundir: /work2/noaa/epic/nandoam/regression-testing/upp/orion/780/UPP/ci/rundir-upp-ORION -10/23 20:13:51Z -fv3gefs test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the trunk -10/23 20:13:55Z -fv3gefs pe test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the trunk -10/23 20:14:11Z -fv3hafs test: your new post executable generates bit-identical HURPRS09.tm00 as the trunk -10/23 20:14:11Z -fv3hafs pe test: your new post executable generates bit-identical HURPRS09.tm00 as the trunk -10/23 20:14:40Z -rap test: your new post executable generates bit-identical WRFPRS.GrbF16 as the trunk -10/23 20:14:40Z -rap pe test: your new post executable did generate changed results in WRFPRS.GrbF16 -10/23 20:14:41Z -rap pe test: your new post executable generates bit-identical WRFNAT.GrbF16 as the trunk -10/23 20:14:41Z -rap test: your new post executable generates bit-identical WRFNAT.GrbF16 as the trunk -10/23 20:15:06Z -nmmb pe test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the trunk -10/23 20:15:07Z -nmmb pe test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the trunk -10/23 20:15:08Z -nmmb pe test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the trunk -10/23 20:15:12Z -fv3r test: your new post executable generates bit-identical PRSLEV10.tm00 as the trunk -10/23 20:15:14Z -fv3r pe test: your new post executable generates bit-identical PRSLEV10.tm00 as the trunk -10/23 20:15:16Z -fv3r test: your new post executable generates bit-identical NATLEV10.tm00 as the trunk -10/23 20:15:18Z -fv3r pe test: your new post executable generates bit-identical NATLEV10.tm00 as the trunk -10/23 20:15:24Z -rtma pe test: your new post executable generates bit-identical NATLEV00.tm00 as the trunk -10/23 20:15:25Z -nmmb test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the trunk -10/23 20:15:26Z -rtma pe test: your new post executable generates bit-identical PRSLEV00.tm00 as the trunk -10/23 20:15:26Z -nmmb test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the trunk -10/23 20:15:27Z -nmmb test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the trunk -10/23 20:15:27Z -rtma pe test: your new post executable generates bit-identical IFIFIP00.tm00 as the trunk -10/23 20:15:30Z -rtma test: your new post executable generates bit-identical NATLEV00.tm00 as the trunk -10/23 20:15:32Z -rtma test: your new post executable generates bit-identical PRSLEV00.tm00 as the trunk -10/23 20:15:33Z -rtma test: your new post executable generates bit-identical IFIFIP00.tm00 as the trunk -10/23 20:15:39Z -hrrr pe test: your new post executable generates bit-identical WRFTWO.GrbF04 as the trunk -10/23 20:15:40Z -hrrr pe test: your new post executable generates bit-identical WRFPRS.GrbF04 as the trunk -10/23 20:15:42Z -hrrr pe test: your new post executable generates bit-identical WRFNAT.GrbF04 as the trunk -10/23 20:21:03Z -hrrr test: your new post executable generates bit-identical WRFTWO.GrbF04 as the trunk -10/23 20:21:04Z -hrrr test: your new post executable generates bit-identical WRFPRS.GrbF04 as the trunk -10/23 20:21:06Z -hrrr test: your new post executable generates bit-identical WRFNAT.GrbF04 as the trunk -10/23 20:25:06Z gfs_post_00.31515-fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the trunk -10/23 20:25:07Z gfs_post_00.31515-fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the trunk -10/23 20:25:07Z gfs_post_00.31515-fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the trunk -10/23 20:25:32Z gfs_post_00.442830-fv3gfs test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the trunk -10/23 20:25:33Z gfs_post_00.442830-fv3gfs test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the trunk -10/23 20:25:33Z gfs_post_00.442830-fv3gfs test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the trunk -10/23 20:15:32Z -Runtime: nmmb_test 00:01:56 -- baseline 00:03:00 -10/23 20:15:33Z -Runtime: nmmb_pe_test 00:01:37 -- baseline 00:03:00 -10/23 20:15:33Z -Runtime: fv3gefs_test 00:00:20 -- baseline 01:20:00 -10/23 20:15:33Z -Runtime: fv3gefs_pe_test 00:00:24 -- baseline 01:20:00 -10/23 20:15:34Z -Runtime: rap_test 00:01:10 -- baseline 00:02:00 -10/23 20:15:34Z -Runtime: rap_pe_test 00:01:10 -- baseline 00:02:00 -10/23 20:21:07Z -Runtime: hrrr_test 00:07:35 -- baseline 00:02:00 -10/23 20:21:07Z -Runtime: hrrr_pe_test 00:02:11 -- baseline 00:02:00 -10/23 20:25:39Z -Runtime: fv3gfs_test 00:12:03 -- baseline 00:18:00 -10/23 20:25:40Z -Runtime: fv3gfs_pe_test 00:11:36 -- baseline 00:18:00 -10/23 20:25:40Z -Runtime: fv3r_test 00:01:46 -- baseline 00:03:00 -10/23 20:25:40Z -Runtime: fv3r_pe_test 00:01:47 -- baseline 00:03:00 -10/23 20:25:41Z -Runtime: fv3hafs_test 00:00:40 -- baseline 00:00:40 -10/23 20:25:41Z -Runtime: fv3hafs_pe_test 00:00:41 -- baseline 00:00:40 -10/23 20:25:41Z -Runtime: rtma_test 00:02:03 -- baseline 00:04:00 -10/23 20:25:41Z -Runtime: rtma_pe_test 00:01:57 -- baseline 00:04:00 +===== Start of UPP Regression Testing Log ===== +UPP Hash Tested: +e8197c41f54a5a85e663d21c0d71b5acf8e4d1da + +Submodule hashes: +-1ba8270870947b583cd51bc72ff8960f4c1fb36e sorc/libIFI.fd +-567edcc94bc418d0dcd6cdaafed448eeb5aab570 sorc/ncep_post.fd/post_gtg.fd + +Run directory: /work2/noaa/epic/nandoam/regression-testing/upp/orion/1029/UPP/ci/rundir/upp-ORION +Baseline directory: /work/noaa/epic/UPP + +Total runtime: 00h:16m:46s +Test Date: 20240906 10:41:22 +Summary Results: + +09/06 15:29:04Z -nmmb pe test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the trunk +09/06 15:29:05Z -nmmb pe test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the trunk +09/06 15:29:05Z -nmmb pe test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the trunk +09/06 15:29:14Z -nmmb test: your new post executable generates bit-identical BGDAWP03.tm00.Grib2 as the trunk +09/06 15:29:15Z -nmmb test: your new post executable generates bit-identical BGRD3D03.tm00.Grib2 as the trunk +09/06 15:29:15Z -nmmb test: your new post executable generates bit-identical BGRDSF03.tm00.Grib2 as the trunk +09/06 15:30:39Z -fv3gefs test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the trunk +09/06 15:30:43Z -fv3gefs pe test: your new post executable generates bit-identical geaer.t00z.master.grb2f060 as the trunk +09/06 15:30:54Z -fv3hafs pe test: your new post executable generates bit-identical HURPRS09.tm00 as the trunk +09/06 15:30:55Z -fv3hafs test: your new post executable generates bit-identical HURPRS09.tm00 as the trunk +09/06 15:31:43Z -rap pe test: your new post executable did generate changed results in WRFPRS.GrbF16 +09/06 15:31:44Z -rap pe test: your new post executable generates bit-identical WRFNAT.GrbF16 as the trunk +09/06 15:31:45Z -rap test: your new post executable generates bit-identical WRFPRS.GrbF16 as the trunk +09/06 15:31:46Z -rap test: your new post executable generates bit-identical WRFNAT.GrbF16 as the trunk +09/06 15:32:24Z -fv3r test: your new post executable generates bit-identical PRSLEV10.tm00 as the trunk +09/06 15:32:28Z -fv3r test: your new post executable generates bit-identical NATLEV10.tm00 as the trunk +09/06 15:32:31Z -fv3r pe test: your new post executable generates bit-identical PRSLEV10.tm00 as the trunk +09/06 15:32:35Z -fv3r pe test: your new post executable generates bit-identical NATLEV10.tm00 as the trunk +09/06 15:32:59Z -rtma pe test: your new post executable generates bit-identical NATLEV00.tm00 as the trunk +09/06 15:33:01Z -hrrr pe test: your new post executable generates bit-identical WRFTWO.GrbF04 as the trunk +09/06 15:33:01Z -rtma pe test: your new post executable generates bit-identical PRSLEV00.tm00 as the trunk +09/06 15:33:02Z -hrrr pe test: your new post executable generates bit-identical WRFPRS.GrbF04 as the trunk +09/06 15:33:02Z -rtma pe test: your new post executable generates bit-identical IFIFIP00.tm00 as the trunk +09/06 15:33:02Z -rtma test: your new post executable generates bit-identical NATLEV00.tm00 as the trunk +09/06 15:33:04Z -hrrr pe test: your new post executable generates bit-identical WRFNAT.GrbF04 as the trunk +09/06 15:33:05Z -rtma test: your new post executable generates bit-identical PRSLEV00.tm00 as the trunk +09/06 15:33:06Z -rtma test: your new post executable generates bit-identical IFIFIP00.tm00 as the trunk +09/06 15:37:29Z -hrrr test: your new post executable generates bit-identical WRFTWO.GrbF04 as the trunk +09/06 15:37:30Z -hrrr test: your new post executable generates bit-identical WRFPRS.GrbF04 as the trunk +09/06 15:37:32Z -hrrr test: your new post executable generates bit-identical WRFNAT.GrbF04 as the trunk +09/06 15:39:08Z -fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the trunk +09/06 15:39:10Z -fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the trunk +09/06 15:39:10Z -fv3gfs pe test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the trunk +09/06 15:41:05Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.master.grb2f006 as the trunk +09/06 15:41:07Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.sfluxgrbf006.grib2 as the trunk +09/06 15:41:07Z -fv3gfs test: your new post executable generates bit-identical gfs.t00z.special.grb2f006 as the trunk +09/06 15:29:19Z -Runtime: nmmb_test 00:01:26 -- baseline 00:03:00 +09/06 15:29:19Z -Runtime: nmmb_pe_test 00:01:17 -- baseline 00:03:00 +09/06 15:30:49Z -Runtime: fv3gefs_test 00:00:22 -- baseline 01:20:00 +09/06 15:30:49Z -Runtime: fv3gefs_pe_test 00:00:26 -- baseline 01:20:00 +09/06 15:31:49Z -Runtime: rap_test 00:01:29 -- baseline 00:02:00 +09/06 15:31:49Z -Runtime: rap_pe_test 00:01:27 -- baseline 00:02:00 +09/06 15:37:35Z -Runtime: hrrr_test 00:07:15 -- baseline 00:02:00 +09/06 15:37:35Z -Runtime: hrrr_pe_test 00:02:47 -- baseline 00:02:00 +09/06 15:41:21Z -Runtime: fv3gfs_test 00:10:50 -- baseline 00:18:00 +09/06 15:41:21Z -Runtime: fv3gfs_pe_test 00:08:53 -- baseline 00:18:00 +09/06 15:41:21Z -Runtime: fv3r_test 00:02:11 -- baseline 00:03:00 +09/06 15:41:21Z -Runtime: fv3r_pe_test 00:02:18 -- baseline 00:03:00 +09/06 15:41:21Z -Runtime: fv3hafs_test 00:00:38 -- baseline 00:00:40 +09/06 15:41:21Z -Runtime: fv3hafs_pe_test 00:00:37 -- baseline 00:00:40 +09/06 15:41:21Z -Runtime: rtma_test 00:02:49 -- baseline 00:04:00 +09/06 15:41:21Z -Runtime: rtma_pe_test 00:02:45 -- baseline 00:04:00 +No changes in test results detected. +===== End of UPP Regression Testing Log =====