From 1d9c57386600f3c3590cef6fed21d976be4034a6 Mon Sep 17 00:00:00 2001 From: Harry Shepherd <17930806+harry-shepherd@users.noreply.github.com> Date: Tue, 10 Mar 2026 17:33:38 +0000 Subject: [PATCH 01/15] Gitify infrastructure suite (#36) Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com> Co-authored-by: Erica Neininger --- CONTRIBUTORS.md | 3 +- .../bin/create_oasis_module.sh | 2 +- .../bin/create_prgenv_module.sh | 13 +-- .../bin/create_xios_module.sh | 2 +- .../infrastructure_suite/bin/extract_oasis.sh | 20 ++--- .../infrastructure_suite/bin/extract_xios.sh | 4 + .../{suite.rc => flow.cylc} | 57 ++++-------- .../infrastructure_suite/meta/rose-meta.conf | 90 +++++++++---------- .../infrastructure_suite/rose-suite.conf | 14 +-- Infrastructure_Builds/launch_suite.sh | 40 +++++++-- 10 files changed, 123 insertions(+), 122 deletions(-) rename Infrastructure_Builds/infrastructure_suite/{suite.rc => flow.cylc} (80%) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 8f347ab8..4f74e5e6 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -5,4 +5,5 @@ | james-bruten-mo | James Bruten | Met Office | 2025-12-09 | | Pierre-siddall | Pierre Siddall | Met Office | 2025-01-19 | | ericaneininger | Erica Neininger | Met Office | 2026-02-04 | -| dcalve | Daley Calvert | Met Office | 2026-02-04 | \ No newline at end of file +| dcalve | Daley Calvert | Met Office | 2026-02-04 | +| harry-shepherd | Harry Shepherd | Met Office | 2026-02-27 | diff --git a/Infrastructure_Builds/infrastructure_suite/bin/create_oasis_module.sh b/Infrastructure_Builds/infrastructure_suite/bin/create_oasis_module.sh index d6c391d1..1504425b 100755 --- a/Infrastructure_Builds/infrastructure_suite/bin/create_oasis_module.sh +++ b/Infrastructure_Builds/infrastructure_suite/bin/create_oasis_module.sh @@ -31,7 +31,7 @@ if [ -z "$SUITE_REVISION" ]; then SUITE_REVISION='Revision: undefined' revision='undefined' else - revision=$(echo $SUITE_REVISION | grep -oP '\d+') + revision=$SUITE_REVISION fi oasis_mod_version_path=$OASIS_MOD_NAME/$OASIS_MOD_VERSION/$revision diff --git a/Infrastructure_Builds/infrastructure_suite/bin/create_prgenv_module.sh b/Infrastructure_Builds/infrastructure_suite/bin/create_prgenv_module.sh index feaf780b..8b45146d 100755 --- a/Infrastructure_Builds/infrastructure_suite/bin/create_prgenv_module.sh +++ b/Infrastructure_Builds/infrastructure_suite/bin/create_prgenv_module.sh @@ -28,7 +28,7 @@ if [ -z "$SUITE_REVISION" ]; then SUITE_REVISION='Revision: undefined' revision='undefined' else - revision=$(echo $SUITE_REVISION | grep -oP '\d+') + revision=$SUITE_REVISION fi module_file_path=$MODULE_BASE/modules/$PRG_ENV_NAME/$PRG_ENV_VERSION @@ -73,17 +73,6 @@ set version $PRG_ENV_VERSION EOF -for mod in $MODULE_STR; do - if [[ $mod == *'PrgEnv'* ]]; then - line="module swap PrgEnv-cray $mod" - else - line="module load $mod" - fi - cat <>$module_file -$line -EOF -done - # now do the oasis and xios modules if [ "XIOS_ONLY" = "True" ]; then line="module load $XIOS_MODULE_PATH"; diff --git a/Infrastructure_Builds/infrastructure_suite/bin/create_xios_module.sh b/Infrastructure_Builds/infrastructure_suite/bin/create_xios_module.sh index a2b912ab..825ce3ef 100755 --- a/Infrastructure_Builds/infrastructure_suite/bin/create_xios_module.sh +++ b/Infrastructure_Builds/infrastructure_suite/bin/create_xios_module.sh @@ -31,7 +31,7 @@ if [ -z "$SUITE_REVISION" ]; then SUITE_REVISION='Revision: undefined' revision='undefined' else - revision=$(echo $SUITE_REVISION | grep -oP '\d+') + revision=$SUITE_REVISION fi xios_mod_version_path=$XIOS_MOD_NAME/$XIOS_MOD_VERSION/$revision diff --git a/Infrastructure_Builds/infrastructure_suite/bin/extract_oasis.sh b/Infrastructure_Builds/infrastructure_suite/bin/extract_oasis.sh index 9580109f..6ef65538 100755 --- a/Infrastructure_Builds/infrastructure_suite/bin/extract_oasis.sh +++ b/Infrastructure_Builds/infrastructure_suite/bin/extract_oasis.sh @@ -7,7 +7,7 @@ # # ENVIRONMENT VARIABLES (COMPULSORY): # EXTRACT_OASIS -# HPC_HOST_OASIS +# HPC_HOST # OASIS_BRANCH # OASIS_REPOSITORY # @@ -27,7 +27,7 @@ if [ "$EXTRACT_OASIS" = "True" ]; then exit 999 fi - if [ -z "$HPC_HOST_OASIS" ]; then + if [ -z "$HPC_HOST" ]; then hpc_build="False" else hpc_build="True" @@ -55,31 +55,31 @@ if [ "$hpc_build" = "True" ] && [ -z "$CYLC_SUITE_RUN_DIR" ]; then # manually # upload to the HPC ssh $user@$HPC_HOST "mkdir -p $OASIS_BUILD_DIR/"; - scp -r $oasis_extract_dir $user@$HPC_HOST_OASIS:$OASIS_BUILD_DIR/; + scp -r $oasis_extract_dir $user@$HPC_HOST:$OASIS_BUILD_DIR/; # cleanup, only if we have extracted the code from GIT if [ "$EXTRACT_OASIS" = "True" ]; then rm -rf $oasis_extract_dir fi # upload build scripts to hpc - scp bin/oasis_build.sh $user@$HPC_HOST_OASIS:$OASIS_BUILD_DIR/ + scp bin/oasis_build.sh $user@$HPC_HOST:$OASIS_BUILD_DIR/ # pass if [ "$BUILD_TEST" = "True" ]; then # upload our test executables to the HPC - scp src/*.F90 $user@$HPC_HOST_OASIS:$OASIS_BUILD_DIR/oasis3-mct/examples/tutorial/ + scp src/*.F90 $user@$HPC_HOST:$OASIS_BUILD_DIR/oasis3-mct/examples/tutorial/ # upload the run script - scp bin/run_tutorial_mo_xc40.sh $user@$HPC_HOST_OASIS:$OASIS_BUILD_DIR/oasis3-mct/examples/tutorial/ + scp bin/run_tutorial_mo_xc40.sh $user@$HPC_HOST:$OASIS_BUILD_DIR/oasis3-mct/examples/tutorial/ # upload the other files to make the test run for i_file in namcouple_TP script_ferret_FRECVOCN.jnl script_ferret_FSENDOCN_to_File.jnl do - scp file/$i_file $user@$HPC_HOST_OASIS:$OASIS_BUILD_DIR/oasis3-mct/examples/tutorial/data_oasis3 + scp file/$i_file $user@$HPC_HOST:$OASIS_BUILD_DIR/oasis3-mct/examples/tutorial/data_oasis3 done fi else # we are running in a suite context and only need to upload the oasis # source code - scp -r $oasis_extract_dir $user@$HPC_HOST_OASIS:$OASIS_BUILD_DIR/; + scp -r $oasis_extract_dir $user@$HPC_HOST:$OASIS_BUILD_DIR/; if [ $? -ne 0 ]; then - 1>&2 echo "Unable to succesfully upload oasis source to $HPC_HOST_OASIS" + 1>&2 echo "Unable to succesfully upload oasis source to $HPC_HOST" exit 999; fi # cleanup, only if we have extracted the code from GIT @@ -89,5 +89,5 @@ else fi #End of script test, check that the code is avaliable -ssh $user@$HPC_HOST_OASIS ls $OASIS_BUILD_DIR/oasis3-mct +ssh $user@$HPC_HOST ls $OASIS_BUILD_DIR/oasis3-mct [ $? -eq 0 ] || exit 1 diff --git a/Infrastructure_Builds/infrastructure_suite/bin/extract_xios.sh b/Infrastructure_Builds/infrastructure_suite/bin/extract_xios.sh index 375f033a..6c78599a 100755 --- a/Infrastructure_Builds/infrastructure_suite/bin/extract_xios.sh +++ b/Infrastructure_Builds/infrastructure_suite/bin/extract_xios.sh @@ -19,6 +19,10 @@ fcm co $XIOS_URL/$XIOS_VERSION@$XIOS_REV XIOS_VERSION_BASE="$(basename $XIOS_VERSION)" mv $XIOS_VERSION_BASE $XIOSPATH +if [[ "$XIOS_REV" == "1873" ]]; then + sed -i 's/#include /#include \n#include /g' $XIOSPATH/src/mpi.hpp +fi + #End of script test ls $XIOSPATH [ $? -eq 0 ] || exit 1 diff --git a/Infrastructure_Builds/infrastructure_suite/suite.rc b/Infrastructure_Builds/infrastructure_suite/flow.cylc similarity index 80% rename from Infrastructure_Builds/infrastructure_suite/suite.rc rename to Infrastructure_Builds/infrastructure_suite/flow.cylc index ff376117..775ad27b 100644 --- a/Infrastructure_Builds/infrastructure_suite/suite.rc +++ b/Infrastructure_Builds/infrastructure_suite/flow.cylc @@ -1,54 +1,40 @@ #!jinja2 -{% set HPC_HOST_OASIS = DEPLOYMENT_HOST if DEPLOYMENT_HOST is defined else HPC_HOST_OASIS %} +{% set HPC_HOST = DEPLOYMENT_HOST if DEPLOYMENT_HOST is defined else HPC_HOST %} -MODULE_STR = {{ MODULES|join(' ') }} -{% set MODULE_STR = MODULES|join(' ') %} -{% set MODULE_CMD = 'for mod in '+MODULE_STR+'; do module load $mod; module swap $mod; done; module list' %} - -[cylc] +[scheduler] UTC mode = True + install = src/, file/ [[events]] - timeout handler = "rose suite-hook --shutdown" - timeout = PT6H + stall timeout handlers = "rose suite-hook --shutdown" -[scheduling] - [[dependencies]] - graph = """ - prepare_hpc_host => extract_xios_background => build_xios => create_xios_module => create_prgenv_module => run_xios_toy_attached & run_xios_toy_server +[scheduling] + [[graph]] + R1 = """ + prepare_hpc_host => extract_xios_background => build_xios => create_xios_module => create_prgenv_module => run_xios_toy_attached & run_xios_toy_server {% if not XIOS_ONLY %} prepare_hpc_host => extract_oasis => build_oasis => run_oasis_tutorial => create_oasis_module => build_xios {% endif %} """ - [runtime] [[root]] script = 'rose task-run --verbose' [[LINUX_SERVER]] - [[[job]]] - batch system = slurm - execution time limit = PT15M + execution time limit = PT15M + platform = slurm [[[directives]]] --ntasks=1 --mem=1G --qos=normal - --partition=rhel7 [[LOCALHOST]] - [[[remote]]] - host={{ROSE_ORIG_HOST}} - [[[job]]] - batch system = background + platform=localhost [[HPC]] env-script = "{{MODULE_CMD}}" - [[[job]]] - batch system = pbs - [[[remote]]] - host = $(rose host-select {{ HPC_HOST_OASIS }}) + platform = {{HPC_HOST}} [[HPC_SERIAL]] inherit = None, HPC - [[[job]]] - execution time limit = PT10M + execution time limit = PT10M [[[environment]]] ROSE_TASK_N_JOBS = 1 [[[directives]]] @@ -72,7 +58,7 @@ MODULE_STR = {{ MODULES|join(' ') }} --mem=8G [[[environment]]] HPC_HOST_USERNAME={{HPC_HOST_USERNAME}} - HPC_HOST_OASIS={{HPC_HOST_OASIS}} + HPC_HOST={{HPC_HOST}} EXTRACT_OASIS={{EXTRACT_OASIS}} {% if EXTRACT_OASIS == true %} OASIS_BRANCH={{OASIS_BRANCH}} @@ -82,8 +68,7 @@ MODULE_STR = {{ MODULES|join(' ') }} {% endif %} [[build_oasis]] inherit = None, HPC_SERIAL, OASIS - [[[job]]] - execution time limit = PT20M + execution time limit = PT20M [[[environment]]] BUILD_MCT={{BUILD_MCT}} BUILD_TEST={{BUILD_TEST}} @@ -130,11 +115,7 @@ MODULE_STR = {{ MODULES|join(' ') }} [[[environment]]] XIOSPATH=$CYLC_SUITE_RUN_DIR/share/xios [[extract_xios_background]] - inherit = XIOS - [[[remote]]] - host = login.exz - [[[job]]] - execution time limit = PT10M + inherit = XIOS, HPC_SERIAL [[[environment]]] ROSE_TASK_APP=extract_xios XIOS_VERSION={{XIOS_VERSION}} @@ -142,6 +123,7 @@ MODULE_STR = {{ MODULES|join(' ') }} XIOS_URL={{XIOS_URL}} [[build_xios]] inherit = None, HPC, XIOS + execution time limit = PT2H env-script = """ {{MODULE_CMD}}; {% if not XIOS_ONLY %} @@ -153,8 +135,6 @@ MODULE_STR = {{ MODULES|join(' ') }} """ [[[environment]]] XIOS_ONLY={{XIOS_ONLY}} - [[[job]]] - execution time limit = PT2H [[[directives]]] -l select=1:ncpus=8 [[create_xios_module]] @@ -176,6 +156,7 @@ MODULE_STR = {{ MODULES|join(' ') }} {% endif %} [[RUN_XIOS_TOY]] env-script = """ + {{MODULE_CMD}}; eval $(cat $CYLC_SUITE_RUN_DIR/share/load_prgenv_mod.sh); module use $TEST_PRGENV_MODULE_PATH module load $TEST_PRGENV_MODULE_NAME @@ -206,7 +187,7 @@ MODULE_STR = {{ MODULES|join(' ') }} """ [[[environment]]] XIOS_ONLY={{XIOS_ONLY}} - MODULE_STR={{MODULE_STR}} + MODULE_STR={{MODULE_CMD}} {% if not XIOS_ONLY %} PRG_ENV_VERSION={{GC_PRG_ENV_VERSION}} PRG_ENV_NAME={{GC_PRG_ENV_NAME}} diff --git a/Infrastructure_Builds/infrastructure_suite/meta/rose-meta.conf b/Infrastructure_Builds/infrastructure_suite/meta/rose-meta.conf index 12074ecb..dca0ffa6 100644 --- a/Infrastructure_Builds/infrastructure_suite/meta/rose-meta.conf +++ b/Infrastructure_Builds/infrastructure_suite/meta/rose-meta.conf @@ -4,16 +4,18 @@ description=The platform-specific details for the host where =modules are to be created. sort-key=a1a -[jinja2:suite.rc=HPC_HOST_OASIS] +[template variables=HPC_HOST] compulsory=true description=HPC Host on which OASIS3-MCT will be built +help=These values correspond to those that can be found by running the command + =cylc config --platforms. ns=Top Level Control sort-key=1 title=HPC Host -value-titles=EXZ Development system -values='login.exz' +value-titles=EXZ Development system, EXAB Pair, EXCD Pair, EXA, EXB, EXC, EXD +values='login.exz', 'exab', 'excd', 'exa', 'exb', 'exc', 'exd' -[jinja2:suite.rc=HPC_HOST_USERNAME] +[template variables=HPC_HOST_USERNAME] compulsory=true description=Username on the HPC host specified above ns=Top Level Control @@ -21,7 +23,7 @@ sort-key=1a title=HPC Host Username type=character -[jinja2:suite.rc=XIOS_ONLY] +[template variables=XIOS_ONLY] compulsory=true description=Build XIOS without Oasis3-MCT. Will also produce an XIOS-PrgEnv module ns=Top Level Control @@ -31,32 +33,30 @@ help=When set to true, XIOS will be built without Oasis3-MCT. The XIOS module =itself will be produced, along with a corresponding XIOS-PrgEnv module =containing the compiler environment and appropriate NetCDF modules. type=boolean -trigger=jinja2:suite.rc=EXTRACT_OASIS: false; - =jinja2:suite.rc=BUILD_MCT: false; - =jinja2:suite.rc=BUILD_TEST: false; - =jinja2:suite.rc=OASIS_REPOSITORY: false; - =jinja2:suite.rc=OASIS_BRANCH: false; - =jinja2:suite.rc=PLATFORM_CONFIG: false; - =jinja2:suite.rc=OASIS_BUILD_DIR: false; - =jinja2:suite.rc=OASIS_MOD_NAME: false; - =jinja2:suite.rc=OASIS_MOD_VERSION: false; - =jinja2:suite.rc=GC_PRG_ENV_NAME: false; - =jinja2:suite.rc=GC_PRG_ENV_VERSION: false; - =jinja2:suite.rc=XIOS_PRG_ENV_NAME: true; - =jinja2:suite.rc=XIOS_PRG_ENV_VERSION: true; +trigger=template variables=EXTRACT_OASIS: false; + =template variables=BUILD_MCT: false; + =template variables=BUILD_TEST: false; + =template variables=OASIS_REPOSITORY: false; + =template variables=OASIS_BRANCH: false; + =template variables=PLATFORM_CONFIG: false; + =template variables=OASIS_BUILD_DIR: false; + =template variables=OASIS_MOD_NAME: false; + =template variables=OASIS_MOD_VERSION: false; + =template variables=GC_PRG_ENV_NAME: false; + =template variables=GC_PRG_ENV_VERSION: false; + =template variables=XIOS_PRG_ENV_NAME: true; + =template variables=XIOS_PRG_ENV_VERSION: true; -[jinja2:suite.rc=MODULES] +[template variables=MODULE_CMD] compulsory=true -description=List of modules required for the build +description=Set up the environment on the HPC host help=When running the builds it may be required to specify different compiler or =netcdf modules etc. on the HPC host. - =Note: These entries are of type python_list, and - =must be specified in quotes. ns=Top Level Control sort-key=2 title=Preloaded Modules -type=python_list +type=character [ns=OASIS] description=This window allows you to specify the options @@ -64,7 +64,7 @@ description=This window allows you to specify the options =coupling libraries. sort-key=a1b -[jinja2:suite.rc=EXTRACT_OASIS] +[template variables=EXTRACT_OASIS] compulsory=true description=Extract OASIS3-MCT from GIT repository help=Switch to extract OASIS3-MCT @@ -72,11 +72,11 @@ ns=OASIS sort-key=a0 title=Extract MCT type=boolean -trigger=jinja2:suite.rc=OASIS_REPOSITORY: true; - =jinja2:suite.rc=OASIS_BRANCH: true; - =jinja2:suite.rc=OASIS_WC_DIR: false; +trigger=template variables=OASIS_REPOSITORY: true; + =template variables=OASIS_BRANCH: true; + =template variables=OASIS_WC_DIR: false; -[jinja2:suite.rc=BUILD_MCT] +[template variables=BUILD_MCT] compulsory=true description=Build OASIS3-MCT help=Switch to enable the building of the @@ -86,7 +86,7 @@ sort-key=a1 title=Build MCT type=boolean -[jinja2:suite.rc=BUILD_TEST] +[template variables=BUILD_TEST] compulsory=true description=Build OASIS3-MCT tutorial help=Switch to include the build of the OASIS3-MCT @@ -97,7 +97,7 @@ sort-key=a2 title=Build Tutorial type=boolean -[jinja2:suite.rc=OASIS_WC_DIR] +[template variables=OASIS_WC_DIR] compulsory=true description=Path to working copy of OASIS-MCT source on local machine help=Path to OASIS source on the local host, if not extracted from the @@ -107,7 +107,7 @@ sort-key=a21 title=OASIS Source directory type=character -[jinja2:suite.rc=OASIS_REPOSITORY] +[template variables=OASIS_REPOSITORY] compulsory=true description=URL of the OASIS3-MCT repository help=Location of the OASIS Git repository. @@ -116,7 +116,7 @@ sort-key=a3 title=OASIS Repository type=character -[jinja2:suite.rc=OASIS_BRANCH] +[template variables=OASIS_BRANCH] compulsory=true description=The branch to use within the Git Repository help=The branch (or hash) of the OASIS Git repository from which @@ -126,7 +126,7 @@ sort-key=a4 title=OASIS Branch type=character -[jinja2:suite.rc=PLATFORM_CONFIG] +[template variables=PLATFORM_CONFIG] compulsory=true description=The config for the platform on which the code will be compiled. help=The platform configuration in the OAIS3-MCT util/make_dir directory @@ -137,7 +137,7 @@ title=Platform Config value-titles=make.crayEX values='make.crayEX' -[jinja2:suite.rc=OASIS_BUILD_DIR] +[template variables=OASIS_BUILD_DIR] compulsory=true description=Where to find the OASIS libraries and mod file for module creation help= @@ -155,7 +155,7 @@ description=This window allows you to specify the naming details for libraries =and the resulting GC module which will contain them. sort-key=a1d -[jinja2:suite.rc=OASIS_MOD_NAME] +[template variables=OASIS_MOD_NAME] compulsory=true description=Name of the OASIS3-MCT module to be created help=The name you want to be applied to the @@ -166,7 +166,7 @@ sort-key=moda1 title=OASIS Module name type=character -[jinja2:suite.rc=OASIS_MOD_VERSION] +[template variables=OASIS_MOD_VERSION] compulsory=true description=Version ID of the OASIS3-MCT module to be created help=The version number or other identifier to be applied @@ -183,7 +183,7 @@ description=Details of the XIOS source code to be =created by this suite. sort-key=a1c -[jinja2:suite.rc=XIOS_URL] +[template variables=XIOS_URL] compulsory=true description=URL of the XIOS repository help=Location of the XIOS repository. This may point to a mirror @@ -193,7 +193,7 @@ sort-key=a1 title=XIOS Repository type=character -[jinja2:suite.rc=XIOS_VERSION] +[template variables=XIOS_VERSION] compulsory=true description=Location of XIOS (trunk/branch) help=Location of XIOS in the repository. @@ -204,7 +204,7 @@ sort-key=a2 title=XIOS Version type=character -[jinja2:suite.rc=XIOS_REV] +[template variables=XIOS_REV] compulsory=true description=Revision of XIOS to use help=Enter the XIOS repository revison number to @@ -213,7 +213,7 @@ ns=XIOS sort-key=a3 title=XIOS Revision -[jinja2:suite.rc=XIOS_MOD_NAME] +[template variables=XIOS_MOD_NAME] compulsory=true description=Name of the XIOS-MCT module to be created help=The name to apply to the XIOS module @@ -224,7 +224,7 @@ sort-key=modb1 title=XIOS Module name type=character -[jinja2:suite.rc=XIOS_MOD_VERSION] +[template variables=XIOS_MOD_VERSION] compulsory=true description=Version ID of the XIOS module to be created help=Version number or other identifier to apply to @@ -235,7 +235,7 @@ sort-key=modb2 title=XIOS Module version type=character -[jinja2:suite.rc=XIOS_PRG_ENV_NAME] +[template variables=XIOS_PRG_ENV_NAME] compulsory=true description=Name of the XIOS programming environment module to be created help=Enter the name you wish to give to the XIOS @@ -246,7 +246,7 @@ sort-key=modc1 title=XIOS-PrgEnv Module name type=character -[jinja2:suite.rc=XIOS_PRG_ENV_VERSION] +[template variables=XIOS_PRG_ENV_VERSION] compulsory=true description=Version ID of the XIOS module to be created help=Version number or other identifier to apply to @@ -257,7 +257,7 @@ sort-key=modc2 title=XIOS-PrgEnv Module version type=character -[jinja2:suite.rc=GC_PRG_ENV_NAME] +[template variables=GC_PRG_ENV_NAME] compulsory=true description=Name of the GC programming environment module to be created help=Enter the name you wish to give to the GC @@ -268,7 +268,7 @@ sort-key=modz1 title=GC Module name type=character -[jinja2:suite.rc=GC_PRG_ENV_VERSION] +[template variables=GC_PRG_ENV_VERSION] compulsory=true description=Version ID of the GC module to be created help=Version number or other identifier to apply to diff --git a/Infrastructure_Builds/infrastructure_suite/rose-suite.conf b/Infrastructure_Builds/infrastructure_suite/rose-suite.conf index 78a84ca0..699b886b 100644 --- a/Infrastructure_Builds/infrastructure_suite/rose-suite.conf +++ b/Infrastructure_Builds/infrastructure_suite/rose-suite.conf @@ -1,21 +1,21 @@ -[jinja2:suite.rc] +[template variables] BUILD_MCT=true BUILD_TEST=true EXTRACT_OASIS=true -GC_PRG_ENV_NAME='GC4-PrgEnv' -GC_PRG_ENV_VERSION='2023-03-ticket613-cpe22.11' -HPC_HOST_OASIS='login.exz' +GC_PRG_ENV_NAME='GC5-PrgEnv' +GC_PRG_ENV_VERSION='test_git_20251219' +HPC_HOST='exab' HPC_HOST_USERNAME='moci' -MODULES=["cpe/22.11", "cray-libsci/22.11.1.2", "cray-hdf5-parallel/1.12.2.1", "cray-netcdf-hdf5parallel/4.9.0.1"] +MODULE_CMD='module load cpe/23.05; module load cray-libsci; module load cray-hdf5-parallel; module load cray-netcdf-hdf5parallel; module swap cce/15.0.0' OASIS_BRANCH='20b37bfb' OASIS_BUILD_DIR='crayEX' OASIS_MOD_NAME='oasis3-mct_4.0' -OASIS_MOD_VERSION='2023-03-ticket613-cpe22.11' +OASIS_MOD_VERSION='test_git_20251219' OASIS_REPOSITORY='https://gitlab.com/cerfacs/oasis3-mct.git' !!OASIS_WC_DIR='/data/users/hshep/oasis_srcs/oasis3-mct' PLATFORM_CONFIG='make.crayEX' XIOS_MOD_NAME='XIOS-2.5' -XIOS_MOD_VERSION='2023-03-ticket613-cpe22.11' +XIOS_MOD_VERSION='test_git_20251219' XIOS_ONLY=false !!XIOS_PRG_ENV_NAME='XIOS_2.5-PrgEnv' !!XIOS_PRG_ENV_VERSION='2023-03-ticket613-cpe22.11' diff --git a/Infrastructure_Builds/launch_suite.sh b/Infrastructure_Builds/launch_suite.sh index 3b4dba06..ad0e2e1f 100755 --- a/Infrastructure_Builds/launch_suite.sh +++ b/Infrastructure_Builds/launch_suite.sh @@ -8,16 +8,42 @@ fi specified_host=$1 deployment_location=$2 -# Ensure that the suite is checked in -fcm_status=$(fcm stat) -if [ -z "$fcm_status" ]; then - suite_url=$(fcm info | grep URL | grep -v Relative); - suite_revision=$(fcm info | grep Revision); +# Ensure that the branch has been checked in +git_status=$(git status) +if [[ $git_status == *"nothing to commit, working tree clean"* ]]; then + echo "Suite checked in, running in deployment mode" else echo "The suite working copy must be checked in to run in deployment mode" exit 999 fi +# Get our remote repository location, and check that it exists on github +remote_url=($(git remote -v)) +remote_url=${remote_url[1]} +if [[ $remote_url == "git@github.com"* ]]; then + echo "The suite has a remote url $remote_url" +else + echo 'This suite must be connected to an upstream repository in github' + exit 999 +fi + +fullhash=$(git log -n 1 --pretty=format:"%H") +# Check to see if the commit exists upstream +git ls-remote $remote_url | grep $fullhash +if [[ $? == 0 ]]; then + echo 'The remote repository contains this hash' +else + echo 'The remote repository does not contain the current hash. Please push changes' + exit 999 +fi + + +# Get our parameters +#Suite revision is branch name and hash +branch_name=$(git rev-parse --abbrev-ref HEAD) +trunc_hash=$(git log -n 1 --pretty=format:"%h") +suite_revision="$branch_name""_""$trunc_hash" + cd infrastructure_suite # Test the versioning fits our specifications (YYYY-mm-compiler) @@ -59,7 +85,7 @@ run_name="${current_directory}_deploy_${specified_host}" echo "Running launch suite as $run_name. Deploying modules to $specified_host" -echo $suite_url +echo $remote_url echo $suite_revision -rose suite-run --define-suite="DEPLOYMENT_HOST='$specified_host'" --define-suite="MODULE_BASE='$deployment_location'" --define-suite="SUITE_URL='$suite_url'" --define-suite="SUITE_REVISION='$suite_revision'" --name="$run_name" --new +cylc vip -S "DEPLOYMENT_HOST='$specified_host'" -S "MODULE_BASE='$deployment_location'" -S "SUITE_URL='$remote_url'" -S "SUITE_REVISION='$suite_revision'" --workflow-name="$run_name" --no-run-name From 4ef9a2fb9cc45f74446f0ab6b033623248a33139 Mon Sep 17 00:00:00 2001 From: Erica Neininger <107684099+ericaneininger@users.noreply.github.com> Date: Thu, 12 Mar 2026 08:41:48 +0000 Subject: [PATCH 02/15] fortran namlist file identification (#41) Co-authored-by: James Bruten <109733895+james-bruten-mo@users.noreply.github.com> --- .gitattributes | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..689d758a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +# Handle line endings automatically for files detected as text +# and leave all files detected as binary untouched. +* text=auto + +# Binaries +*.nc binary +*.png binary + +# Fortran namelist file identification +*.nl text diff=fortran-free-form +*.nl linguist-language=fortran-free-form \ No newline at end of file From 443e7cecbdfcaefe255531fbc57acb21690cc019 Mon Sep 17 00:00:00 2001 From: Pierre Siddall <43399998+Pierre-siddall@users.noreply.github.com> Date: Wed, 25 Mar 2026 10:36:03 +0000 Subject: [PATCH 03/15] Move shellouts (#40) Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com> --- Coupled_Drivers/cice_driver.py | 1 - Coupled_Drivers/common.py | 12 + Coupled_Drivers/mct_driver.py | 1 + Coupled_Drivers/rivers_driver.py | 1 + Postprocessing/build/build_pp.sh | 6 +- Postprocessing/common/utils.py | 43 +- Postprocessing/unittests/test_common_utils.py | 868 +++++++++--------- Postprocessing/unittests/test_postproc | 139 +-- mocilib/__init__.py | 1 + mocilib/shellout.py | 62 ++ mocilib/unittests/test.py | 61 ++ mocilib/unittests/test_shellout.py | 50 + rose-stem/app/build_pp/rose-app.conf | 2 +- rose-stem/flow.cylc | 35 +- 14 files changed, 762 insertions(+), 520 deletions(-) create mode 100644 mocilib/__init__.py create mode 100644 mocilib/shellout.py create mode 100755 mocilib/unittests/test.py create mode 100644 mocilib/unittests/test_shellout.py diff --git a/Coupled_Drivers/cice_driver.py b/Coupled_Drivers/cice_driver.py index bc0f1a1c..0d365cd0 100644 --- a/Coupled_Drivers/cice_driver.py +++ b/Coupled_Drivers/cice_driver.py @@ -26,7 +26,6 @@ import re import datetime import time -import subprocess import time2days import inc_days import common diff --git a/Coupled_Drivers/common.py b/Coupled_Drivers/common.py index d3470cfd..538f17ac 100644 --- a/Coupled_Drivers/common.py +++ b/Coupled_Drivers/common.py @@ -234,6 +234,10 @@ def exec_subproc_timeout(cmd, timeout_sec=10): the commands to be run, and an integer timeout_sec for how long to wait for the command to run. Returns the return code from the process and the standard out from the command or 'None' if the command times out. + + This function is now DEPRECATED in favour of the exec_shellout function in + mocilib + ''' process = subprocess.Popen(cmd, shell=False, stdin=subprocess.PIPE, @@ -260,6 +264,10 @@ def exec_subproc(cmd, verbose=True): Execute given shell command. Takes a list containing the commands to be run, and a logical verbose which if set to true will write the output of the command to stdout. + + This function is now DEPRECATED in favour of the exec_shellout function in + mocilib + ''' process = subprocess.Popen(cmd, shell=False, stdin=subprocess.PIPE, @@ -281,6 +289,10 @@ def __exec_subproc_true_shell(cmd, verbose=True): exec_subproc does not work correctly. Takes a list containing the commands to be run, and a logical verbose which if set to true will write the output of the command to stdout. + + This function is now DEPRECATED in favour of the exec_shellout function in + mocilib + ''' process = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, diff --git a/Coupled_Drivers/mct_driver.py b/Coupled_Drivers/mct_driver.py index 0b029964..b84636cd 100644 --- a/Coupled_Drivers/mct_driver.py +++ b/Coupled_Drivers/mct_driver.py @@ -28,6 +28,7 @@ import dr_env_lib.mct_def import dr_env_lib.env_lib import cpmip_controller + try: import f90nml except ImportError: diff --git a/Coupled_Drivers/rivers_driver.py b/Coupled_Drivers/rivers_driver.py index 8dfab29f..d0fb534d 100644 --- a/Coupled_Drivers/rivers_driver.py +++ b/Coupled_Drivers/rivers_driver.py @@ -26,6 +26,7 @@ import error import dr_env_lib.rivers_def import dr_env_lib.env_lib + try: import f90nml except ImportError: diff --git a/Postprocessing/build/build_pp.sh b/Postprocessing/build/build_pp.sh index 051ec854..fd915a0d 100755 --- a/Postprocessing/build/build_pp.sh +++ b/Postprocessing/build/build_pp.sh @@ -20,7 +20,7 @@ PP_SOURCE_DIR=${PP_SOURCE_DIR:=$CYLC_WORKFLOW_RUN_DIR/share/source/moci_postproc PP_TARGET_DIR=${PP_TARGET_DIR:-$CYLC_WORKFLOW_SHARE_DIR/bin} MOCILIB=${MOCILIB:=true} -MOCILIB_PATH=${MOCILIB_PATH:=$CYLC_WORKFLOW_RUN_DIR/share/moci/mocilib} +MOCILIB_PATH=${MOCILIB_PATH:=$CYLC_WORKFLOW_SHARE_DIR/source/moci/mocilib} PP_COMPONENTS="atmos nemocice unicicles archive_verify" PP_TESTS=${PP_TESTS:=false} @@ -38,10 +38,12 @@ if [[ ! -d $PP_TARGET_DIR ]] ; then fi # Copy mocilib + if [[ "$MOCILIB" != true ]] ; then echo [INFO] MOCIlib library not installed elif [[ -d "$MOCILIB_PATH" ]] ; then - cp -r $MOCILIB $PP_TARGET_DIR + echo [INFO] Copying MOCILIB ... + cp -r $MOCILIB_PATH $PP_TARGET_DIR else echo [ERROR] Failed to find the required \"mocilib\" library >&2 exit 1 diff --git a/Postprocessing/common/utils.py b/Postprocessing/common/utils.py index 9a79af4c..91123b9d 100644 --- a/Postprocessing/common/utils.py +++ b/Postprocessing/common/utils.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ''' *****************************COPYRIGHT****************************** - (C) Crown copyright 2015-2025 Met Office. All rights reserved. + (C) Crown copyright 2015-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -23,9 +23,9 @@ import os import errno import shutil -import subprocess import timer +from mocilib import shellout globals()['debug_mode'] = None globals()['debug_ok'] = True @@ -165,37 +165,26 @@ def exec_subproc(cmd, verbose=True, cwd=os.getcwd()): failure of the command True: reproduce std.out regardless of outcome cwd = Directory in which to execute the command - ''' - import shlex - cmd_array = [cmd] - if not isinstance(cmd, list): - cmd_array = cmd.split(';') - for i, cmd in enumerate(cmd_array): - # Use shlex.split to cope with arguments that contain whitespace - cmd_array[i] = shlex.split(cmd) + This function is now DEPRECATED in favour of the exec_subprocess function in + mocilib + ''' + if isinstance(cmd, list): + cmd_array = [' '.join(cmd)] + else: + cmd_array = cmd.split(';') # Initialise rcode, in the event there is no command - rcode = 99 + rcode = -99 output = 'No command provided' - for cmd in cmd_array: - try: - output = subprocess.check_output(cmd, - stderr=subprocess.STDOUT, - universal_newlines=True, cwd=cwd) - rcode = 0 - if verbose: - log_msg('[SUBPROCESS]: ' + str(output)) - except subprocess.CalledProcessError as exc: - output = exc.output - rcode = exc.returncode - except OSError as exc: - output = exc.strerror - rcode = exc.errno + for i, cmd in enumerate(cmd_array): + rcode, output = shellout.exec_subprocess( + cmd, verbose=verbose, current_working_directory=cwd + ) if rcode != 0: - msg = '[SUBPROCESS]: Command: {}\n[SUBPROCESS]: Error = {}:\n\t{}' - log_msg(msg.format(' '.join(cmd), rcode, output), level='WARN') + msg = f'[SUBPROCESS]: Command: {cmd}\n[SUBPROCESS]: Error = {rcode}:\n\t {output}' + log_msg(msg, level='WARN') break return rcode, output diff --git a/Postprocessing/unittests/test_common_utils.py b/Postprocessing/unittests/test_common_utils.py index 7fd2787b..80d521eb 100644 --- a/Postprocessing/unittests/test_common_utils.py +++ b/Postprocessing/unittests/test_common_utils.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -''' +""" *****************************COPYRIGHT****************************** - (C) Crown copyright 2015-2025 Met Office. All rights reserved. + (C) Crown copyright 2015-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -11,11 +11,13 @@ Met Office, FitzRoy Road, Exeter, Devon, EX1 3PB, United Kingdom *****************************COPYRIGHT****************************** -''' +""" + import unittest import os import sys import shutil + try: # mock is integrated into unittest as of Python 3.3 import unittest.mock as mock @@ -26,212 +28,219 @@ import testing_functions as func import utils -DUMMY = ['fileone', 'filetwo', 'filethree'] +DUMMY = ["fileone", "filetwo", "filethree"] + class EnvironTests(unittest.TestCase): - '''Unit tests for loading environment variables''' + """Unit tests for loading environment variables""" + def setUp(self): - self.loadvars = ('PWD', 'HOME') + self.loadvars = ("PWD", "HOME") testname = self.shortDescription() self.envar = {} - if 'Load one' in testname: + if "Load one" in testname: self.envar[self.loadvars[0]] = utils.load_env(self.loadvars[0]) else: for var in self.loadvars: self.envar[var] = utils.load_env(var) def test_load1(self): - '''Test load one environment variable''' - func.logtest('Load a single environment variable:') + """Test load one environment variable""" + func.logtest("Load a single environment variable:") var = self.loadvars[0] - self. assertEqual(self.envar[var], os.environ[var]) + self.assertEqual(self.envar[var], os.environ[var]) def test_load2(self): - '''Test load two environment variables''' - func.logtest('Load two environment variables:') + """Test load two environment variables""" + func.logtest("Load two environment variables:") for var in self.loadvars: self.assertEqual(self.envar[var], os.environ[var]) def test_append(self): - '''Test load environment variables and append a further one''' - func.logtest('Ability to append to environment variable list:') - self.envar['DUMMYVAR'] = utils.load_env('DUMMYVAR') + """Test load environment variables and append a further one""" + func.logtest("Ability to append to environment variable list:") + self.envar["DUMMYVAR"] = utils.load_env("DUMMYVAR") for var in self.loadvars: self.assertEqual(self.envar[var], os.environ[var]) - self.assertIsNone(self.envar['DUMMYVAR']) + self.assertIsNone(self.envar["DUMMYVAR"]) def test_not_found_exit(self): - '''Attempt to load non-existent variable with a failure flag''' - func.logtest('Failure mode of loadEnd (FAIL case):') + """Attempt to load non-existent variable with a failure flag""" + func.logtest("Failure mode of loadEnd (FAIL case):") with self.assertRaises(SystemExit): - utils.load_env('DUMMYVAR', required=True) + utils.load_env("DUMMYVAR", required=True) + class ExecTests(unittest.TestCase): - '''Unit tests for exec_subproc method''' + """Unit tests for exec_subproc method""" + def setUp(self): - self.cmd = 'echo Hello World!' + self.cmd = "echo Hello World!" def tearDown(self): try: - os.remove('TestDir/MyFile') + os.remove("TestDir/MyFile") except OSError: pass try: - os.rmdir('TestDir') + os.rmdir("TestDir") except OSError: pass def test_success(self): - '''Test shell out to subprocess command''' - func.logtest('Shell out with simple echo command:') + """Test shell out to subprocess command""" + func.logtest("Shell out with simple echo command:") rcode, _ = utils.exec_subproc(self.cmd, verbose=False) self.assertEqual(rcode, 0) def test_list_success(self): - '''test shell out with a list of commands''' - func.logtest('Shell out with simple list as single command:') + """test shell out with a list of commands""" + func.logtest("Shell out with simple list as single command:") rcode, _ = utils.exec_subproc(self.cmd.split(), verbose=False) self.assertEqual(rcode, 0) def test_failed_exec(self): - '''Test failure mode of exec_subproc with invalid arguments''' - func.logtest('Attempt to shell out with invalid arguments:') - _, output = utils.exec_subproc(self.cmd.replace('echo', 'ls')) + """Test failure mode of exec_subproc with invalid arguments""" + func.logtest("Attempt to shell out with invalid arguments:") + _, output = utils.exec_subproc(self.cmd.replace("echo", "ls")) # Code should catch exception: subprocess.CalledProcessError - self.assertIn('no such file or directory', output.lower()) + self.assertIn("no such file or directory", output.lower()) def test_unknown_cmd(self): - '''Test failure mode of exec_subproc with unknown command''' - func.logtest('Attempt to shell out with unknown command:') - rcode, _ = utils.exec_subproc(self.cmd.replace('echo', 'pumpkin')) + """Test failure mode of exec_subproc with unknown command""" + func.logtest("Attempt to shell out with unknown command:") + rcode, _ = utils.exec_subproc(self.cmd.replace("echo", "pumpkin")) # Code should catch exception: OSError self.assertNotEqual(rcode, 0) def test_multi_command(self): - '''Test subprocess with consecutive commands''' - func.logtest('Attempt to shell out with consecutive commands:') - _, output = utils.exec_subproc(self.cmd.replace(' World', - '; echo World')) - self.assertEqual(output.strip(), 'World!') + """Test subprocess with consecutive commands""" + func.logtest("Attempt to shell out with consecutive commands:") + _, output = utils.exec_subproc(self.cmd.replace(" World", "; echo World")) + self.assertEqual(output.strip(), "World!") def test_bad_multi_command(self): - '''Test subprocess with consecutive commands''' - func.logtest('Attempt to shell out with consecutive commands:') + """Test subprocess with consecutive commands""" + func.logtest("Attempt to shell out with consecutive commands:") cmd = 'pumpkin "Hello\n"; echo "There"' rcode, _ = utils.exec_subproc(cmd) # Code should catch exception: OSError self.assertNotEqual(rcode, 0) def test_output(self): - '''Test verbose output of exec_subproc''' - func.logtest('Verbose output of subprocess command:') + """Test verbose output of exec_subproc""" + func.logtest("Verbose output of subprocess command:") _, output = utils.exec_subproc(self.cmd) - self.assertEqual(output.strip(), 'Hello World!') + self.assertEqual(output.strip(), "Hello World!") def test_command_path(self): - '''Test exec_subproc functionality for running commands in - an alternative location''' - func.logtest('Subprocess command run in an alternative location:') - os.mkdir('TestDir') - open('TestDir/MyFile', 'w').close() - rcode, output = utils.exec_subproc('ls', cwd='TestDir', verbose=False) + """Test exec_subproc functionality for running commands in + an alternative location""" + func.logtest("Subprocess command run in an alternative location:") + os.mkdir("TestDir") + open("TestDir/MyFile", "w").close() + rcode, output = utils.exec_subproc("ls", cwd="TestDir", verbose=False) self.assertEqual(rcode, 0) - self.assertIn('MyFile', output) def test_subproc_options(self): - '''Test subprocess calls optional arguments with default settings''' - func.logtest('Test optional arguments to subprocess calls:') - with mock.patch('subprocess.check_output') as mock_check: - mock_check.side_effect = ['CMD1 output', 'CMD2 output'] - _, _ = utils.exec_subproc('cmd 1') - _, _ = utils.exec_subproc('cmd2', verbose=False, cwd='MyDir') + """Test subprocess calls optional arguments with default settings""" + func.logtest("Test optional arguments to subprocess calls:") + with mock.patch("utils.shellout.exec_subprocess") as mock_lib: + mock_lib.side_effect = [(1, "CMD1 output"), (0, "CMD2 output")] + _, _ = utils.exec_subproc(["cmd", "1"]) + _, _ = utils.exec_subproc("cmd 2", verbose=False, cwd="MyDir") self.assertListEqual( - mock_check.mock_calls, - [mock.call(['cmd', '1'], stderr=mock.ANY, cwd=os.getcwd(), - universal_newlines=True), - mock.call(['cmd2'], stderr=mock.ANY, cwd='MyDir', - universal_newlines=True)]) + mock_lib.mock_calls, + [ + mock.call( + "cmd 1", verbose=True, current_working_directory=os.getcwd() + ), + mock.call( + "cmd 2", verbose=False, current_working_directory="MyDir" + ), + ], + ) - self.assertIn('CMD1 output', func.capture()) - self.assertNotIn('CMD2 output', func.capture()) + self.assertIn("CMD1 output", func.capture("err")) + self.assertNotIn("CMD2 output", func.capture("err")) def test_utility_avail(self): - '''Test availability of shell command''' - func.logtest('Assert availablity of shell command') - self.assertTrue(utils.get_utility_avail('echo')) - self.assertFalse(utils.get_utility_avail('hello_postproc')) + """Test availability of shell command""" + func.logtest("Assert availablity of shell command") + self.assertTrue(utils.get_utility_avail("echo")) + self.assertFalse(utils.get_utility_avail("hello_postproc")) class LogTests(unittest.TestCase): - '''Unit tests for logging output messages''' + """Unit tests for logging output messages""" + def setUp(self): - self.msg = 'Hello There' - if not hasattr(sys.stdout, 'getvalue'): - msg = 'This test requires buffered mode to run (buffer=True)' + self.msg = "Hello There" + if not hasattr(sys.stdout, "getvalue"): + msg = "This test requires buffered mode to run (buffer=True)" self.fail(msg) def tearDown(self): pass def test_msg(self): - '''Test content of output message''' - func.logtest('Verifying output message content.') + """Test content of output message""" + func.logtest("Verifying output message content.") utils.log_msg(self.msg) self.assertIn(self.msg, func.capture()) def test_stdout(self): - '''Test content of messages printed to stdout''' - for lev in ['INFO', 'OK']: - func.logtest('Send output to sys.stdout ({} case):'. - format(lev)) - utils.log_msg('', level=lev) + """Test content of messages printed to stdout""" + for lev in ["INFO", "OK"]: + func.logtest("Send output to sys.stdout ({} case):".format(lev)) + utils.log_msg("", level=lev) self.assertIn(lev, func.capture()) def test_stderr(self): - '''Test content of messages printed to stderr''' - with mock.patch('utils.get_debugmode', return_value=True): - for lev in ['DEBUG', 'WARN', 'ERROR']: - func.logtest('Send output to sys.stderr ({} case):'. - format(lev)) - utils.log_msg('', level=lev) - self.assertIn(lev, func.capture(direct='err')) + """Test content of messages printed to stderr""" + with mock.patch("utils.get_debugmode", return_value=True): + for lev in ["DEBUG", "WARN", "ERROR"]: + func.logtest("Send output to sys.stderr ({} case):".format(lev)) + utils.log_msg("", level=lev) + self.assertIn(lev, func.capture(direct="err")) def test_fail(self): - '''Test content of [FAIL] messages printed to stderr''' - func.logtest('Send output to sys.stderr: (FAIL case):') - for lev in ['ERROR', 'FAIL']: + """Test content of [FAIL] messages printed to stderr""" + func.logtest("Send output to sys.stderr: (FAIL case):") + for lev in ["ERROR", "FAIL"]: with self.assertRaises(SystemExit): - utils.log_msg('', level=lev) - self.assertIn(lev, func.capture(direct='err')) + utils.log_msg("", level=lev) + self.assertIn(lev, func.capture(direct="err")) def test_key_err(self): - '''Test KeyError exception handling for log_msg''' - func.logtest('KeyError exception handling in output message:') - utils.log_msg(self.msg, level='aaa') - self.assertIn('[WARN]', func.capture(direct='err')) - self.assertIn('Unknown', func.capture(direct='err')) + """Test KeyError exception handling for log_msg""" + func.logtest("KeyError exception handling in output message:") + utils.log_msg(self.msg, level="aaa") + self.assertIn("[WARN]", func.capture(direct="err")) + self.assertIn("Unknown", func.capture(direct="err")) class DateCheckTests(unittest.TestCase): - '''Unit test for date retrival''' + """Unit test for date retrival""" + def setUp(self): self.indate = [2004, 2, 15, 0, 0] self.delta = [0, 0, 20, 0, 30] def test_date_360(self): - '''Test adding period to 360 day calendar date''' - func.logtest('Cylc6 date manipulation with 360day calendar:') + """Test adding period to 360 day calendar date""" + func.logtest("Cylc6 date manipulation with 360day calendar:") outdate = [2004, 3, 5, 0, 30] date = utils.add_period_to_date(self.indate, self.delta) self.assertListEqual(date, outdate) def test_date_gregorian(self): - '''Test adding period to Gregorian date''' - func.logtest('Cylc6 date manipulation with Gregorian calendar:') + """Test adding period to Gregorian date""" + func.logtest("Cylc6 date manipulation with Gregorian calendar:") outdate = [2004, 3, 6, 0, 30] - with mock.patch('utils.calendar', return_value='gregorian'): + with mock.patch("utils.calendar", return_value="gregorian"): date = utils.add_period_to_date(self.indate, self.delta) self.assertListEqual(date, outdate) @@ -239,27 +248,27 @@ def test_date_gregorian(self): self.assertListEqual(date, [2004, 3, 14, 0, 0]) def test_short_date(self): - '''Test date input with short array''' - func.logtest('Short array date input:') + """Test date input with short array""" + func.logtest("Short array date input:") indate = self.indate[:2] outdate = [2004, 2, 21, 0, 30] date = utils.add_period_to_date(indate, self.delta) self.assertListEqual(date, outdate) - with mock.patch('utils.calendar', return_value='gregorian'): + with mock.patch("utils.calendar", return_value="gregorian"): date = utils.add_period_to_date(indate, self.delta) self.assertListEqual(date, outdate) def test_zero_date(self): - '''Test date input with zero date input''' - func.logtest('All zeros date input:') - date = utils.add_period_to_date([0]*5, self.delta) + """Test date input with zero date input""" + func.logtest("All zeros date input:") + date = utils.add_period_to_date([0] * 5, self.delta) self.assertListEqual(date, self.delta) def test_negative_delta(self): - '''Test new date with negative delta''' - func.logtest('Assert negative delta date calculation:') + """Test new date with negative delta""" + func.logtest("Assert negative delta date calculation:") delta = [0, -1, -20, 0, -30] outdate = [2003, 12, 24, 23, 30] date = utils.add_period_to_date(self.indate, delta) @@ -267,105 +276,103 @@ def test_negative_delta(self): delta = [0, -1, -20] outdate = [2003, 12, 26, 0, 0] - with mock.patch('utils.calendar', return_value='gregorian'): + with mock.patch("utils.calendar", return_value="gregorian"): date = utils.add_period_to_date(self.indate, delta) self.assertListEqual(date, outdate) def test_bad_date(self): - '''Test date input with bad date input''' - func.logtest('Testing bad date input:') + """Test date input with bad date input""" + func.logtest("Testing bad date input:") with self.assertRaises(SystemExit): - _ = utils.add_period_to_date(['a']*5, self.delta) + _ = utils.add_period_to_date(["a"] * 5, self.delta) def test_string_delta(self): - '''Test time delta in string format''' - func.logtest('Assert calculation of delta from input string:') - self.assertListEqual(utils.add_period_to_date([0]*5, '6HRS'), - [0, 0, 0, 6, 0]) - self.assertListEqual(utils.add_period_to_date([0]*5, 'day'), - [0, 0, 1, 0, 0]) - self.assertListEqual(utils.add_period_to_date([0]*5, '2mths'), - [0, 2, 0, 0, 0]) - self.assertListEqual(utils.add_period_to_date([0]*5, 'Season'), - [0, 3, 0, 0, 0]) - self.assertListEqual(utils.add_period_to_date([0]*5, '1y'), - [1, 0, 0, 0, 0]) - self.assertListEqual(utils.add_period_to_date([0]*5, '1x'), - [10, 0, 0, 0, 0]) + """Test time delta in string format""" + func.logtest("Assert calculation of delta from input string:") + self.assertListEqual(utils.add_period_to_date([0] * 5, "6HRS"), [0, 0, 0, 6, 0]) + self.assertListEqual(utils.add_period_to_date([0] * 5, "day"), [0, 0, 1, 0, 0]) + self.assertListEqual( + utils.add_period_to_date([0] * 5, "2mths"), [0, 2, 0, 0, 0] + ) + self.assertListEqual( + utils.add_period_to_date([0] * 5, "Season"), [0, 3, 0, 0, 0] + ) + self.assertListEqual(utils.add_period_to_date([0] * 5, "1y"), [1, 0, 0, 0, 0]) + self.assertListEqual(utils.add_period_to_date([0] * 5, "1x"), [10, 0, 0, 0, 0]) def test_bad_string_delta(self): - '''Test date input with bad string delta input''' - func.logtest('Testing bad string delta input:') + """Test date input with bad string delta input""" + func.logtest("Testing bad string delta input:") with self.assertRaises(SystemExit): - _ = utils.add_period_to_date(['a']*5, 'xxxx') + _ = utils.add_period_to_date(["a"] * 5, "xxxx") class PathTests(unittest.TestCase): - '''Unit tests for path maniuplations''' + """Unit tests for path maniuplations""" + def setUp(self): self.path = os.getcwd() - self.files = ['fileone', 'filetwo', 'filethree'] + self.files = ["fileone", "filetwo", "filethree"] def test_add_path_single(self): - '''Test adding $HOME path to single file''' - func.logtest('Add $HOME path to single file:') + """Test adding $HOME path to single file""" + func.logtest("Add $HOME path to single file:") outfile = utils.add_path(self.files[0], self.path) - self.assertEqual(outfile, [self.path + '/' + self.files[0]]) + self.assertEqual(outfile, [self.path + "/" + self.files[0]]) def test_add_path_multi(self): - '''Test adding $HOME path to multiple files''' - func.logtest('Add $HOME path to multiple files:') + """Test adding $HOME path to multiple files""" + func.logtest("Add $HOME path to multiple files:") outfiles = utils.add_path(self.files, self.path) - self.assertListEqual(outfiles, - [self.path + '/' + f for f in self.files]) + self.assertListEqual(outfiles, [self.path + "/" + f for f in self.files]) def test_bad_path(self): - '''Test adding bad path to single file''' - func.logtest('Add bad path to single file:') + """Test adding bad path to single file""" + func.logtest("Add bad path to single file:") with self.assertRaises(SystemExit): - _ = utils.add_path(self.files[0], 'Hello there') + _ = utils.add_path(self.files[0], "Hello there") def test_no_path(self): - '''Test adding "None" path to single file''' + """Test adding "None" path to single file""" func.logtest('Add "None" path to single file:') with self.assertRaises(SystemExit): _ = utils.add_path(self.files[0], None) def test_compare_mod_times(self): - '''Test return of last modified file path ''' - func.logtest('Test return of last modified file path') - with mock.patch('utils.os.path.getmtime', side_effect=[1, 3, 2]): + """Test return of last modified file path""" + func.logtest("Test return of last modified file path") + with mock.patch("utils.os.path.getmtime", side_effect=[1, 3, 2]): self.assertEqual(utils.compare_mod_times(self.files), self.files[1]) def test_compare_mod_times_oldest(self): - '''Test return of oldest modified file path ''' - func.logtest('Test return of oldest modified file path') - with mock.patch('utils.os.path.getmtime', side_effect=[1, 3, 2]): + """Test return of oldest modified file path""" + func.logtest("Test return of oldest modified file path") + with mock.patch("utils.os.path.getmtime", side_effect=[1, 3, 2]): self.assertEqual( - utils.compare_mod_times(self.files, last_mod=False), - self.files[0] + utils.compare_mod_times(self.files, last_mod=False), self.files[0] ) def test_compare_mod_times_one(self): - '''Test return of last modified file path - no existing files''' - func.logtest('Test return of last modified file path') - self.assertEqual(utils.compare_mod_times([__file__, 'dummy']), __file__) + """Test return of last modified file path - no existing files""" + func.logtest("Test return of last modified file path") + self.assertEqual(utils.compare_mod_times([__file__, "dummy"]), __file__) def test_compare_mod_times_none(self): - '''Test return of last modified file path - no existing files''' - func.logtest('Test return of last modified file path') + """Test return of last modified file path - no existing files""" + func.logtest("Test return of last modified file path") self.assertIsNone(utils.compare_mod_times(self.files)) class FileManipulationTests(unittest.TestCase): - '''Unit tests for file manipulations''' + """Unit tests for file manipulations""" + def setUp(self): - self.dir1 = 'TestFileOps1' + self.dir1 = "TestFileOps1" os.mkdir(self.dir1) - self.dir2 = 'TestFileOps2' + self.dir2 = "TestFileOps2" os.mkdir(self.dir2) for fname in DUMMY: - open(os.path.join(self.dir1, fname), 'w').close() + open(os.path.join(self.dir1, fname), "w").close() def tearDown(self): for dname in [self.dir1, self.dir2]: @@ -375,21 +382,21 @@ def tearDown(self): pass def test_move_one_file(self): - '''Test moving one file''' - func.logtest('Move single file:') + """Test moving one file""" + func.logtest("Move single file:") utils.move_files(DUMMY[0], self.dir2, originpath=self.dir1) self.assertTrue(os.path.exists(os.path.join(self.dir2, DUMMY[0]))) def test_move_multi_files(self): - '''Test moving multiple files''' - func.logtest('Move multiple files:') + """Test moving multiple files""" + func.logtest("Move multiple files:") utils.move_files(DUMMY, self.dir2, originpath=self.dir1) for fname in DUMMY: self.assertTrue(os.path.exists(os.path.join(self.dir2, fname))) def test_move_non_existent(self): - '''Test moving non-existent file''' - func.logtest('Move non-existent files:') + """Test moving non-existent file""" + func.logtest("Move non-existent files:") utils.move_files(DUMMY, os.getcwd(), originpath=self.dir2) for fname in DUMMY: self.assertFalse(os.path.exists(os.path.join(self.dir2, fname))) @@ -397,68 +404,68 @@ def test_move_non_existent(self): self.assertFalse(os.path.exists(os.path.join(os.getcwd(), fname))) def test_move_overwrite(self): - '''Test overwriting existing file''' - func.logtest('Overwrite existing file:') + """Test overwriting existing file""" + func.logtest("Overwrite existing file:") utils.move_files(DUMMY[0], self.dir1, originpath=self.dir1) # Code should catch exception: shutil.Error self.assertTrue(os.path.exists(os.path.join(self.dir1, DUMMY[0]))) - self.assertIn('Attempted to overwrite', func.capture('err')) + self.assertIn("Attempted to overwrite", func.capture("err")) def test_move_overwrite_fail(self): - '''Test attempt to overwrite file with system exit''' - func.logtest('Attempt to overwrite with system exit:') + """Test attempt to overwrite file with system exit""" + func.logtest("Attempt to overwrite with system exit:") with self.assertRaises(SystemExit): - utils.move_files(DUMMY[0], self.dir1, originpath=self.dir1, - fail_on_err=True) - self.assertIn('Attempted to overwrite', func.capture('err')) + utils.move_files( + DUMMY[0], self.dir1, originpath=self.dir1, fail_on_err=True + ) + self.assertIn("Attempted to overwrite", func.capture("err")) def test_remove_one_file(self): - '''Test removing single file''' - func.logtest('Remove single file:') + """Test removing single file""" + func.logtest("Remove single file:") utils.remove_files(DUMMY[0], self.dir1) self.assertFalse(os.path.exists(os.path.join(self.dir1, DUMMY[0]))) def test_remove_multi_files(self): - '''Test removing multiple files''' - func.logtest('Remove multiple files:') + """Test removing multiple files""" + func.logtest("Remove multiple files:") utils.remove_files(DUMMY, self.dir1) for fname in DUMMY: self.assertFalse(os.path.exists(os.path.join(self.dir1, fname))) def test_remove_non_existent(self): - '''Test removing non-existent file''' - func.logtest('Attempt to move non-existent file:') + """Test removing non-existent file""" + func.logtest("Attempt to move non-existent file:") utils.remove_files(DUMMY[0], self.dir2) # Code should catch exception: OSError - self.assertIn('does not exist', func.capture(direct='err')) + self.assertIn("does not exist", func.capture(direct="err")) self.assertFalse(os.path.exists(os.path.join(self.dir2, DUMMY[0]))) def test_remove_non_existent_ignore(self): - '''Test removing non-existent file, ingnoring failure to find''' - func.logtest('Attempt to move non-existent file, ignoring failure:') + """Test removing non-existent file, ingnoring failure to find""" + func.logtest("Attempt to move non-existent file, ignoring failure:") utils.remove_files(DUMMY[0], self.dir2, ignore_non_exist=True) - self.assertEqual('', func.capture(direct='err')) + self.assertEqual("", func.capture(direct="err")) self.assertFalse(os.path.exists(os.path.join(self.dir2, DUMMY[0]))) def test_remove_file_without_origin(self): - '''Test removing file without specific origin ($PWD)''' - func.logtest('Attempt to remove a file without specific origin:') - open('testfile', 'w').close() - self.assertTrue(os.path.exists('testfile')) - utils.remove_files('testfile') - self.assertFalse(os.path.exists('testfile')) + """Test removing file without specific origin ($PWD)""" + func.logtest("Attempt to remove a file without specific origin:") + open("testfile", "w").close() + self.assertTrue(os.path.exists("testfile")) + utils.remove_files("testfile") + self.assertFalse(os.path.exists("testfile")) def test_copy_files_new_dir_single(self): - '''Test copying a single file to a new directory''' - func.logtest('Assert copy of a single file to a new directory:') - tmpfiles = utils.copy_files(os.path.join(self.dir1, DUMMY[0]), - self.dir2) + """Test copying a single file to a new directory""" + func.logtest("Assert copy of a single file to a new directory:") + tmpfiles = utils.copy_files(os.path.join(self.dir1, DUMMY[0]), self.dir2) self.assertTrue(os.path.isfile(os.path.join(self.dir2, DUMMY[0]))) self.assertListEqual(tmpfiles, [os.path.join(self.dir2, DUMMY[0])]) def test_copy_files_new_dir_list(self): - '''Test copying a list of files to a new directory''' - func.logtest('Assert copy of a list of files to a new directory:') + """Test copying a list of files to a new directory""" + func.logtest("Assert copy of a list of files to a new directory:") srcfiles = [os.path.join(self.dir1, d) for d in DUMMY] tmpfiles = utils.copy_files(srcfiles, self.dir2) for fname in DUMMY: @@ -466,151 +473,152 @@ def test_copy_files_new_dir_list(self): self.assertIn(os.path.join(self.dir2, fname), tmpfiles) def test_copy_files_dottmp_single(self): - '''Test copying a single file to .tmp in the same directory''' - func.logtest('Assert copy of a single file to a .tmp file:') + """Test copying a single file to .tmp in the same directory""" + func.logtest("Assert copy of a single file to a .tmp file:") srcfile = os.path.join(self.dir1, DUMMY[0]) tmpfiles = utils.copy_files(srcfile) - self.assertTrue(os.path.isfile(srcfile + '.tmp')) - self.assertListEqual(tmpfiles, [srcfile + '.tmp']) + self.assertTrue(os.path.isfile(srcfile + ".tmp")) + self.assertListEqual(tmpfiles, [srcfile + ".tmp"]) def test_copy_files_dottmp_list(self): - '''Test copying a list of files to .tmp in the same directory''' - func.logtest('Assert copy of a list of files to a .tmp file:') + """Test copying a list of files to .tmp in the same directory""" + func.logtest("Assert copy of a list of files to a .tmp file:") srcfiles = [os.path.join(self.dir1, d) for d in DUMMY] - tmpfiles = utils.copy_files(srcfiles, tmp_ext='.ext') + tmpfiles = utils.copy_files(srcfiles, tmp_ext=".ext") for fname in srcfiles: - self.assertTrue(os.path.isfile(fname + '.ext')) - self.assertIn(fname + '.ext', tmpfiles) + self.assertTrue(os.path.isfile(fname + ".ext")) + self.assertIn(fname + ".ext", tmpfiles) def test_copy_files_no_such_dir(self): - '''Test failure mode of copy_files - no such directory''' - func.logtest('Assert failure to copy file to a new directory:') + """Test failure mode of copy_files - no such directory""" + func.logtest("Assert failure to copy file to a new directory:") with self.assertRaises(SystemExit): - _ = utils.copy_files(os.path.join(self.dir1, DUMMY[0]), 'NoSuchDir') - self.assertIn('Directory does not exist', func.capture('err')) + _ = utils.copy_files(os.path.join(self.dir1, DUMMY[0]), "NoSuchDir") + self.assertIn("Directory does not exist", func.capture("err")) def test_copy_files_unreadable(self): - '''Test failure mode of copy_files - unreadable source''' - func.logtest('Assert failure to copy file - unreadable source:') + """Test failure mode of copy_files - unreadable source""" + func.logtest("Assert failure to copy file - unreadable source:") with self.assertRaises(SystemExit): _ = utils.copy_files(DUMMY[0], self.dir1) - self.assertIn('Failed to read from source file: fileone' - ' - No such file or directory', - func.capture('err')) + self.assertIn( + "Failed to read from source file: fileone - No such file or directory", + func.capture("err"), + ) def test_copy_files_unwritable(self): - '''Test failure mode of copy_files - unwritable target''' - func.logtest('Assert failure to copy file - unwritable target:') + """Test failure mode of copy_files - unwritable target""" + func.logtest("Assert failure to copy file - unwritable target:") with self.assertRaises(SystemExit): - utils.copy_files(os.path.join(self.dir1, DUMMY[0]), '/') - self.assertIn('Failed to write to target file: /fileone' - ' - Permission denied', - func.capture('err')) + utils.copy_files(os.path.join(self.dir1, DUMMY[0]), "/") + self.assertIn( + "Failed to write to target file: /fileone - Permission denied", + func.capture("err"), + ) def test_catch_failure(self): - '''Test performance of catch_failure method''' - func.logtest('Assert correct failure mode handling:') + """Test performance of catch_failure method""" + func.logtest("Assert correct failure mode handling:") with self.assertRaises(SystemExit): utils.catch_failure() - self.assertIn('Command Terminated', func.capture('err')) + self.assertIn("Command Terminated", func.capture("err")) def test_catch_failure_debug(self): - '''Test performance of catch_failure method - debug_mode''' - func.logtest('Assert correct failure mode handling - debug:') - with mock.patch('utils.get_debugmode', return_value=True): + """Test performance of catch_failure method - debug_mode""" + func.logtest("Assert correct failure mode handling - debug:") + with mock.patch("utils.get_debugmode", return_value=True): utils.catch_failure() - self.assertIn('Ignoring failed external command', - func.capture('err')) + self.assertIn("Ignoring failed external command", func.capture("err")) self.assertFalse(utils.get_debugok()) def test_create_dir(self): - '''Test performance of create_dir method''' - func.logtest('Assert creation of a directory:') - self.assertFalse(os.path.isdir('./MyDir')) - utils.create_dir('MyDir') - self.assertTrue(os.path.isdir('./MyDir')) - os.rmdir('./MyDir') + """Test performance of create_dir method""" + func.logtest("Assert creation of a directory:") + self.assertFalse(os.path.isdir("./MyDir")) + utils.create_dir("MyDir") + self.assertTrue(os.path.isdir("./MyDir")) + os.rmdir("./MyDir") def test_create_dir_existing(self): - '''Test performance of create_dir method - pre-existing''' - func.logtest('Assert creation of a directory - pre-existing:') - utils.create_dir('MyDir') - self.assertTrue(os.path.isdir('./MyDir')) - utils.create_dir('MyDir') - self.assertTrue(os.path.isdir('./MyDir')) - os.rmdir('./MyDir') + """Test performance of create_dir method - pre-existing""" + func.logtest("Assert creation of a directory - pre-existing:") + utils.create_dir("MyDir") + self.assertTrue(os.path.isdir("./MyDir")) + utils.create_dir("MyDir") + self.assertTrue(os.path.isdir("./MyDir")) + os.rmdir("./MyDir") def test_create_dir_path(self): - '''Test performance of create_dir method''' - func.logtest('Assert creation of a directory:') - self.assertFalse(os.path.isdir('./MyDir')) - utils.create_dir('MyDir', path='TopLev') - self.assertTrue(os.path.isdir('./TopLev/MyDir')) - os.rmdir('./TopLev/MyDir') - os.rmdir('./TopLev') + """Test performance of create_dir method""" + func.logtest("Assert creation of a directory:") + self.assertFalse(os.path.isdir("./MyDir")) + utils.create_dir("MyDir", path="TopLev") + self.assertTrue(os.path.isdir("./TopLev/MyDir")) + os.rmdir("./TopLev/MyDir") + os.rmdir("./TopLev") def test_create_dir_fail(self): - '''Test performance of create_dir method - failure''' - func.logtest('Assert creation of a directory - failure:') + """Test performance of create_dir method - failure""" + func.logtest("Assert creation of a directory - failure:") with self.assertRaises(SystemExit): - utils.create_dir('/MyDir') - self.assertIn('Unable to create directory', func.capture('err')) + utils.create_dir("/MyDir") + self.assertIn("Unable to create directory", func.capture("err")) class GetSubsetTests(unittest.TestCase): - '''Unit tests for the get_subset method''' + """Unit tests for the get_subset method""" + def setUp(self): - self.dir = os.path.join(os.getcwd(), 'TestSubset') - self.pattern = '^file[a-z]*$' + self.dir = os.path.join(os.getcwd(), "TestSubset") + self.pattern = "^file[a-z]*$" os.mkdir(self.dir) for fname in DUMMY: - open(os.path.join(self.dir, fname), 'w').close() + open(os.path.join(self.dir, fname), "w").close() def tearDown(self): shutil.rmtree(self.dir) def test_get_no_files(self): - '''Test pattern which matches no files''' - func.logtest('Pattern matches no files:') - files = utils.get_subset(self.dir, 'pattern') + """Test pattern which matches no files""" + func.logtest("Pattern matches no files:") + files = utils.get_subset(self.dir, "pattern") self.assertListEqual(files, []) def test_get_one_file(self): - '''Test pattern which matches one file''' - func.logtest('Pattern matches one file:') - files = utils.get_subset(self.dir, - self.pattern.replace('[a-z]*', 'one')) + """Test pattern which matches one file""" + func.logtest("Pattern matches one file:") + files = utils.get_subset(self.dir, self.pattern.replace("[a-z]*", "one")) self.assertListEqual(files, [DUMMY[0]]) def test_get_multi_files(self): - '''Test pattern which matches multiple files''' - func.logtest('Pattern matches multiple files:') + """Test pattern which matches multiple files""" + func.logtest("Pattern matches multiple files:") files = utils.get_subset(self.dir, self.pattern) self.assertListEqual(sorted(files), sorted(DUMMY)) def test_bad_directory(self): - '''Test call to get_subset with non existent directory path''' - func.logtest('Attempt to get_subset with non-existent path:') + """Test call to get_subset with non existent directory path""" + func.logtest("Attempt to get_subset with non-existent path:") with self.assertRaises(SystemExit): - _ = utils.get_subset('NotDirectory', self.pattern) + _ = utils.get_subset("NotDirectory", self.pattern) def test_envar_expand(self): - '''Test variable expansion in pathnames''' - func.logtest('Verify environment variable expansion in paths:') - files = utils.get_subset(os.path.join(os.getcwd(), self.dir), - self.pattern) + """Test variable expansion in pathnames""" + func.logtest("Verify environment variable expansion in paths:") + files = utils.get_subset(os.path.join(os.getcwd(), self.dir), self.pattern) self.assertListEqual(sorted(files), sorted(DUMMY)) def test_none_pattern(self): - '''Test call to get_subset with None pattern provided''' - func.logtest('Attempt to get_subset with `None` pattern:') + """Test call to get_subset with None pattern provided""" + func.logtest("Attempt to get_subset with `None` pattern:") files = utils.get_subset(self.dir, None) # Code should catch exception: TypeError self.assertListEqual(files, []) class CycletimeTests(unittest.TestCase): - '''Unit tests for the SuiteEnvironment class''' + """Unit tests for the SuiteEnvironment class""" + def setUp(self): pass @@ -618,142 +626,158 @@ def tearDown(self): pass def test_cylccycle(self): - '''Test instantiation of a CylcCycle object''' - func.logtest('Assert instantiation of a CylcCycle object:') + """Test instantiation of a CylcCycle object""" + func.logtest("Assert instantiation of a CylcCycle object:") cycle = utils.CylcCycle() # startcycle == $CYLC_TASK_CYCLE_POINT - self.assertEqual(cycle.startcycle['iso'], '20000121T0000Z') - self.assertListEqual(cycle.startcycle['strlist'], - ['2000', '01', '21', '00', '00']) - self.assertListEqual(cycle.startcycle['intlist'], - [2000, 1, 21, 0, 0]) - - self.assertEqual(cycle.endcycle['iso'], '20000221T0000Z') - self.assertListEqual(cycle.endcycle['strlist'], - ['2000', '02', '21', '00', '00']) - self.assertListEqual(cycle.endcycle['intlist'], - [2000, 2, 21, 0, 0]) - self.assertEqual(cycle.period, 'P1M') + self.assertEqual(cycle.startcycle["iso"], "20000121T0000Z") + self.assertListEqual( + cycle.startcycle["strlist"], ["2000", "01", "21", "00", "00"] + ) + self.assertListEqual(cycle.startcycle["intlist"], [2000, 1, 21, 0, 0]) + + self.assertEqual(cycle.endcycle["iso"], "20000221T0000Z") + self.assertListEqual( + cycle.endcycle["strlist"], ["2000", "02", "21", "00", "00"] + ) + self.assertListEqual(cycle.endcycle["intlist"], [2000, 2, 21, 0, 0]) + self.assertEqual(cycle.period, "P1M") def test_cylccycle_specific(self): - '''Test instantiation of a CylcCycle object - given point''' - func.logtest('Assert instantiation of CylcCycle object - given point:') - with mock.patch.dict('utils.os.environ', - {'CYCLEPERIOD': '3h1y'}): + """Test instantiation of a CylcCycle object - given point""" + func.logtest("Assert instantiation of CylcCycle object - given point:") + with mock.patch.dict("utils.os.environ", {"CYCLEPERIOD": "3h1y"}): cycle = utils.CylcCycle(cyclepoint=[1234, 8, 17, 6]) - self.assertEqual(cycle.startcycle['iso'], '12340817T0600Z') - self.assertListEqual(cycle.startcycle['strlist'], - ['1234', '08', '17', '06', '00']) - self.assertListEqual(cycle.startcycle['intlist'], - [1234, 8, 17, 6, 0]) + self.assertEqual(cycle.startcycle["iso"], "12340817T0600Z") + self.assertListEqual( + cycle.startcycle["strlist"], ["1234", "08", "17", "06", "00"] + ) + self.assertListEqual(cycle.startcycle["intlist"], [1234, 8, 17, 6, 0]) - self.assertEqual(cycle.endcycle['iso'], '12350817T0900Z') - self.assertListEqual(cycle.endcycle['strlist'], - ['1235', '08', '17', '09', '00']) - self.assertListEqual(cycle.endcycle['intlist'], - [1235, 8, 17, 9, 0]) - self.assertEqual(cycle.period, '3h1y') + self.assertEqual(cycle.endcycle["iso"], "12350817T0900Z") + self.assertListEqual( + cycle.endcycle["strlist"], ["1235", "08", "17", "09", "00"] + ) + self.assertListEqual(cycle.endcycle["intlist"], [1235, 8, 17, 9, 0]) + self.assertEqual(cycle.period, "3h1y") def test_cylccycle_period(self): - '''Test instantiation of a CylcCycle object - given period''' - func.logtest('Assert instantiation of CylcCycle object - given period:') - cycle = utils.CylcCycle(cycleperiod='1y') + """Test instantiation of a CylcCycle object - given period""" + func.logtest("Assert instantiation of CylcCycle object - given period:") + cycle = utils.CylcCycle(cycleperiod="1y") # startcycle == $CYLC_TASK_CYCLE_POINT - self.assertEqual(cycle.startcycle['iso'], '20000121T0000Z') - self.assertListEqual(cycle.startcycle['strlist'], - ['2000', '01', '21', '00', '00']) - self.assertListEqual(cycle.startcycle['intlist'], - [2000, 1, 21, 0, 0]) - - self.assertEqual(cycle.endcycle['iso'], '20010121T0000Z') - self.assertListEqual(cycle.endcycle['strlist'], - ['2001', '01', '21', '00', '00']) - self.assertListEqual(cycle.endcycle['intlist'], - [2001, 1, 21, 0, 0]) - self.assertEqual(cycle.period, '1y') + self.assertEqual(cycle.startcycle["iso"], "20000121T0000Z") + self.assertListEqual( + cycle.startcycle["strlist"], ["2000", "01", "21", "00", "00"] + ) + self.assertListEqual(cycle.startcycle["intlist"], [2000, 1, 21, 0, 0]) + + self.assertEqual(cycle.endcycle["iso"], "20010121T0000Z") + self.assertListEqual( + cycle.endcycle["strlist"], ["2001", "01", "21", "00", "00"] + ) + self.assertListEqual(cycle.endcycle["intlist"], [2001, 1, 21, 0, 0]) + self.assertEqual(cycle.period, "1y") def test_cylccycle_periodlist(self): - '''Test instantiation of a CylcCycle object - given period list''' - func.logtest('Assert instantiation of CylcCycle object - given period:') - cycle = utils.CylcCycle(cycleperiod='1,0,1') + """Test instantiation of a CylcCycle object - given period list""" + func.logtest("Assert instantiation of CylcCycle object - given period:") + cycle = utils.CylcCycle(cycleperiod="1,0,1") # startcycle == $CYLC_TASK_CYCLE_POINT - self.assertEqual(cycle.startcycle['iso'], '20000121T0000Z') - self.assertListEqual(cycle.startcycle['strlist'], - ['2000', '01', '21', '00', '00']) - self.assertListEqual(cycle.startcycle['intlist'], - [2000, 1, 21, 0, 0]) - - self.assertEqual(cycle.endcycle['iso'], '20010122T0000Z') - self.assertListEqual(cycle.endcycle['strlist'], - ['2001', '01', '22', '00', '00']) - self.assertListEqual(cycle.endcycle['intlist'], - [2001, 1, 22, 0, 0]) + self.assertEqual(cycle.startcycle["iso"], "20000121T0000Z") + self.assertListEqual( + cycle.startcycle["strlist"], ["2000", "01", "21", "00", "00"] + ) + self.assertListEqual(cycle.startcycle["intlist"], [2000, 1, 21, 0, 0]) + + self.assertEqual(cycle.endcycle["iso"], "20010122T0000Z") + self.assertListEqual( + cycle.endcycle["strlist"], ["2001", "01", "22", "00", "00"] + ) + self.assertListEqual(cycle.endcycle["intlist"], [2001, 1, 22, 0, 0]) self.assertEqual(cycle.period, [1, 0, 1]) def test_failed_cylccycle(self): - ''' Assert failure to instantiate CylcCycle object ''' - func.logtest('Assert failure to instantiate CylcCycle object:') + """Assert failure to instantiate CylcCycle object""" + func.logtest("Assert failure to instantiate CylcCycle object:") with self.assertRaises(SystemExit): - _ = utils.CylcCycle(cyclepoint='Dummy') - self.assertIn('Unable to determine cycle point', func.capture('err')) + _ = utils.CylcCycle(cyclepoint="Dummy") + self.assertIn("Unable to determine cycle point", func.capture("err")) def test_finalcycle_cylc(self): - '''Test assertion of final cycle - defined by Cylc environment''' - func.logtest('Assert final cycle time property - TRUE Cylc:') - with mock.patch.dict('utils.os.environ', - {'CYLC_SUITE_FINAL_CYCLE_POINT': '20000130T2359Z', - 'CYLC_TASK_CYCLE_POINT': '20000101T0000Z', - 'CYCLEPERIOD': '0,1,0,0,0,0'}): + """Test assertion of final cycle - defined by Cylc environment""" + func.logtest("Assert final cycle time property - TRUE Cylc:") + with mock.patch.dict( + "utils.os.environ", + { + "CYLC_SUITE_FINAL_CYCLE_POINT": "20000130T2359Z", + "CYLC_TASK_CYCLE_POINT": "20000101T0000Z", + "CYCLEPERIOD": "0,1,0,0,0,0", + }, + ): self.assertTrue(utils.finalcycle()) def test_finalcycle_override(self): - '''Test assertion of final cycle - defined by Cylc override''' - func.logtest('Assert final cycle time property - TRUE override:') - with mock.patch.dict('utils.os.environ', - {'CYCLEPOINT_OVERRIDE': '19911201T0000Z', - 'FINALCYCLE_OVERRIDE': '19911201T0000Z', - 'CYCLEPERIOD': 'P10D'}): + """Test assertion of final cycle - defined by Cylc override""" + func.logtest("Assert final cycle time property - TRUE override:") + with mock.patch.dict( + "utils.os.environ", + { + "CYCLEPOINT_OVERRIDE": "19911201T0000Z", + "FINALCYCLE_OVERRIDE": "19911201T0000Z", + "CYCLEPERIOD": "P10D", + }, + ): self.assertTrue(utils.finalcycle()) - with mock.patch.dict('utils.os.environ', - {'CYCLEPOINT_OVERRIDE': '19911201T0000Z', - 'FINALCYCLE_OVERRIDE': '19911230T0000Z', - 'CYCLEPERIOD': '0,1,0,0,0,0'}): + with mock.patch.dict( + "utils.os.environ", + { + "CYCLEPOINT_OVERRIDE": "19911201T0000Z", + "FINALCYCLE_OVERRIDE": "19911230T0000Z", + "CYCLEPERIOD": "0,1,0,0,0,0", + }, + ): self.assertTrue(utils.finalcycle()) def test_final_cycle_env(self): - '''Test assertion of final cycle in defined by ARCHIVE_FINAL''' - func.logtest('Assert final cycle time property - TRUE archive_final:') - with mock.patch.dict('utils.os.environ', {'ARCHIVE_FINAL': 'true'}): + """Test assertion of final cycle in defined by ARCHIVE_FINAL""" + func.logtest("Assert final cycle time property - TRUE archive_final:") + with mock.patch.dict("utils.os.environ", {"ARCHIVE_FINAL": "true"}): self.assertTrue(utils.finalcycle()) def test_final_cycle_undefined(self): - '''Test assert final cycle with $CYLC_SUITE_FINAL_CYCLE undefined''' - func.logtest('Assert final cycle time property - undefined:') - with mock.patch.dict('utils.os.environ', - {'CYLC_SUITE_FINAL_CYCLE_POINT': ''}): + """Test assert final cycle with $CYLC_SUITE_FINAL_CYCLE undefined""" + func.logtest("Assert final cycle time property - undefined:") + with mock.patch.dict("utils.os.environ", {"CYLC_SUITE_FINAL_CYCLE_POINT": ""}): self.assertFalse(utils.finalcycle()) - + def test_not_final_cycle(self): - '''Test negative assertion of final cycle''' - func.logtest('Assert final cycle time property - FALSE:') - with mock.patch.dict('utils.os.environ', - {'CYLC_TASK_CYCLE_POINT': '19810611T0000Z', - 'CYCLEPERIOD': '3M'}): + """Test negative assertion of final cycle""" + func.logtest("Assert final cycle time property - FALSE:") + with mock.patch.dict( + "utils.os.environ", + {"CYLC_TASK_CYCLE_POINT": "19810611T0000Z", "CYCLEPERIOD": "3M"}, + ): self.assertFalse(utils.finalcycle()) - with mock.patch.dict('utils.os.environ', - {'CYCLEPOINT_OVERRIDE': '19911101T0000Z', - 'FINALCYCLE_OVERRIDE': '19911201T0000Z', - 'CYCLEPERIOD': '0,1,0,0,0,0'}): + with mock.patch.dict( + "utils.os.environ", + { + "CYCLEPOINT_OVERRIDE": "19911101T0000Z", + "FINALCYCLE_OVERRIDE": "19911201T0000Z", + "CYCLEPERIOD": "0,1,0,0,0,0", + }, + ): self.assertFalse(utils.finalcycle()) class SmallUtilsTests(unittest.TestCase): - '''Unit tests for small utility methods''' + """Unit tests for small utility methods""" + def setUp(self): pass @@ -761,67 +785,71 @@ def tearDown(self): pass def test_ensure_list(self): - ''' Assert return of a list for a given input ''' - func.logtest('Assert return of a list for a given input:') + """Assert return of a list for a given input""" + func.logtest("Assert return of a list for a given input:") self.assertListEqual(utils.ensure_list(None, listnone=True), [None]) self.assertListEqual(utils.ensure_list(None), []) - self.assertListEqual(utils.ensure_list('', listnone=True), ['']) - self.assertListEqual(utils.ensure_list(''), []) + self.assertListEqual(utils.ensure_list("", listnone=True), [""]) + self.assertListEqual(utils.ensure_list(""), []) - self.assertListEqual(utils.ensure_list('mystring', listnone=True), - ['mystring']) - self.assertListEqual(utils.ensure_list('mystring'), ['mystring']) + self.assertListEqual(utils.ensure_list("mystring", listnone=True), ["mystring"]) + self.assertListEqual(utils.ensure_list("mystring"), ["mystring"]) self.assertListEqual(utils.ensure_list([1, 2], listnone=True), [1, 2]) self.assertTupleEqual(utils.ensure_list((1, 2)), (1, 2)) def test_get_frequency(self): - ''' Assert return of int frequency and base period from delta string ''' - func.logtest('Assert return of freq and base from a delta string:') - self.assertListEqual(utils.get_frequency('3Hrs'), [3, 'h']) - self.assertListEqual(utils.get_frequency('10d'), [10, 'd']) - self.assertListEqual(utils.get_frequency('3months'), [3, 'm']) - self.assertListEqual(utils.get_frequency('2s'), [2, 's']) - self.assertListEqual(utils.get_frequency('YEAR'), [1, 'y']) - self.assertListEqual(utils.get_frequency('x'), [1, 'x']) - self.assertListEqual(utils.get_frequency('-PT12H'), [-12, 'h']) + """Assert return of int frequency and base period from delta string""" + func.logtest("Assert return of freq and base from a delta string:") + self.assertListEqual(utils.get_frequency("3Hrs"), [3, "h"]) + self.assertListEqual(utils.get_frequency("10d"), [10, "d"]) + self.assertListEqual(utils.get_frequency("3months"), [3, "m"]) + self.assertListEqual(utils.get_frequency("2s"), [2, "s"]) + self.assertListEqual(utils.get_frequency("YEAR"), [1, "y"]) + self.assertListEqual(utils.get_frequency("x"), [1, "x"]) + self.assertListEqual(utils.get_frequency("-PT12H"), [-12, "h"]) def test_get_frequency_deltalist(self): - ''' Assert return of a delta list from delta string ''' - func.logtest('Assert return of delta list from a delta string:') - self.assertListEqual(utils.get_frequency('3Hrs', rtn_delta=True), - [0, 0, 0, 3, 0]) - self.assertListEqual(utils.get_frequency('10d', rtn_delta=True), - [0, 0, 10, 0, 0]) - self.assertListEqual(utils.get_frequency('3months', rtn_delta=True), - [0, 3, 0, 0, 0]) - self.assertListEqual(utils.get_frequency('2s', rtn_delta=True), - [0, 6, 0, 0, 0]) - self.assertListEqual(utils.get_frequency('YEAR', rtn_delta=True), - [1, 0, 0, 0, 0]) - self.assertListEqual(utils.get_frequency('x', rtn_delta=True), - [10, 0, 0, 0, 0]) - self.assertListEqual(utils.get_frequency('-P3M', rtn_delta=True), - [0, -3, 0, 0, 0]) - self.assertListEqual(utils.get_frequency('PT30M', rtn_delta=True), - [0, 0, 0, 0, 30]) - + """Assert return of a delta list from delta string""" + func.logtest("Assert return of delta list from a delta string:") + self.assertListEqual( + utils.get_frequency("3Hrs", rtn_delta=True), [0, 0, 0, 3, 0] + ) + self.assertListEqual( + utils.get_frequency("10d", rtn_delta=True), [0, 0, 10, 0, 0] + ) + self.assertListEqual( + utils.get_frequency("3months", rtn_delta=True), [0, 3, 0, 0, 0] + ) + self.assertListEqual(utils.get_frequency("2s", rtn_delta=True), [0, 6, 0, 0, 0]) + self.assertListEqual( + utils.get_frequency("YEAR", rtn_delta=True), [1, 0, 0, 0, 0] + ) + self.assertListEqual(utils.get_frequency("x", rtn_delta=True), [10, 0, 0, 0, 0]) + self.assertListEqual( + utils.get_frequency("-P3M", rtn_delta=True), [0, -3, 0, 0, 0] + ) + self.assertListEqual( + utils.get_frequency("PT30M", rtn_delta=True), [0, 0, 0, 0, 30] + ) def test_get_frequency_delta_multi(self): - ''' Assert get_frequency delta return value given an multiple period ''' - func.logtest('Assert get_frequency return with multiple periods:') - self.assertListEqual(utils.get_frequency('3H-2M1Y', rtn_delta=True), - [1, -2, 0, 3, 0]) - self.assertListEqual(utils.get_frequency('-P1YT10M', rtn_delta=True), - [-1, 0, 0, 0, -10]) - self.assertListEqual(utils.get_frequency('P5Y4M3DT2H1M', - rtn_delta=True), - [5, 4, 3, 2, 1]) + """Assert get_frequency delta return value given an multiple period""" + func.logtest("Assert get_frequency return with multiple periods:") + self.assertListEqual( + utils.get_frequency("3H-2M1Y", rtn_delta=True), [1, -2, 0, 3, 0] + ) + self.assertListEqual( + utils.get_frequency("-P1YT10M", rtn_delta=True), [-1, 0, 0, 0, -10] + ) + self.assertListEqual( + utils.get_frequency("P5Y4M3DT2H1M", rtn_delta=True), [5, 4, 3, 2, 1] + ) def test_get_frequency_fail(self): - ''' Assert SystemExit given an invalid delta string ''' - func.logtest('Assert SystemExit given an invalid delta string:') + """Assert SystemExit given an invalid delta string""" + func.logtest("Assert SystemExit given an invalid delta string:") with self.assertRaises(SystemExit): - _ = utils.get_frequency('1F') - self.assertIn('Invalid target provided: 1f', func.capture('err')) + _ = utils.get_frequency("1F") + self.assertIn("Invalid target provided: 1f", func.capture("err")) diff --git a/Postprocessing/unittests/test_postproc b/Postprocessing/unittests/test_postproc index af67ea95..51bcde70 100755 --- a/Postprocessing/unittests/test_postproc +++ b/Postprocessing/unittests/test_postproc @@ -1,5 +1,5 @@ #!/usr/bin/env python -''' +""" *****************************COPYRIGHT****************************** (C) Crown copyright 2015-2025 Met Office. All rights reserved. @@ -11,7 +11,8 @@ Met Office, FitzRoy Road, Exeter, Devon, EX1 3PB, United Kingdom *****************************COPYRIGHT****************************** -''' +""" + import argparse import unittest import sys @@ -19,100 +20,112 @@ import os assert sys.version_info >= (2, 7) +# Path to mocilib +sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir)) + +# Path to PostProc modules. Pre-pend since (at least) 'utils' is a common name sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir)) -sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'common')) -sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'platforms')) -sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'atmos')) -sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'nemocice')) -sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'unicicles')) -sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, - 'archive_verify')) +sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, "common")) +sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, "platforms")) +sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, "atmos")) +sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, "nemocice")) +sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, "unicicles")) +sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, "archive_verify")) # Setup a null timer instance to ensure the decorated functions behave # correctly with the unit tests import runtime_environment + runtime_environment.setup_env() import timer + timer.set_nulltimer() def main(): - '''Run unit tests for postproc app''' + """Run unit tests for postproc app""" groups = { - 'all': 'test_*.py', - 'main': 'test_main.py', - 'common': 'test_common_*.py', - 'control': 'test_common_control.py', - 'suitegen': 'test_common_suitegen.py', - 'nlist': 'test_common_nlist.py', - 'utils': 'test_common_utils.py', - 'timer': 'test_common_timer.py', - 'netcdf': 'test_common_netcdf_*.py', - 'iris': 'test_common_iris.py', - 'means': 'test_common_climatemean.py', - 'atmos': 'test_atmos_*.py', - 'atmbase': 'test_atmos_base.py', - 'atmutils': 'test_atmos_utils.py', - 'nemocice': 'test_nemocice*.py', - 'nemo': 'test_nemocice_nemo.py', - 'cice': 'test_nemocice_cice.py', - 'template': 'test_nemocice_template.py', - 'unicicles': 'test_unicicles.py', - 'verify': 'test_verify_*.py', - 'archer': 'test_platforms_archer.py', - 'moo': 'test_platforms_moo.py', - 'platforms': 'test_platforms_*.py', - 'transfer': 'test_platforms_transfer.py', - 'jdma': 'test_platforms_jdma.py', - } + "all": "test_*.py", + "main": "test_main.py", + "common": "test_common_*.py", + "control": "test_common_control.py", + "suitegen": "test_common_suitegen.py", + "nlist": "test_common_nlist.py", + "utils": "test_common_utils.py", + "timer": "test_common_timer.py", + "netcdf": "test_common_netcdf_*.py", + "iris": "test_common_iris.py", + "means": "test_common_climatemean.py", + "atmos": "test_atmos_*.py", + "atmbase": "test_atmos_base.py", + "atmutils": "test_atmos_utils.py", + "nemocice": "test_nemocice*.py", + "nemo": "test_nemocice_nemo.py", + "cice": "test_nemocice_cice.py", + "template": "test_nemocice_template.py", + "unicicles": "test_unicicles.py", + "verify": "test_verify_*.py", + "archer": "test_platforms_archer.py", + "moo": "test_platforms_moo.py", + "platforms": "test_platforms_*.py", + "transfer": "test_platforms_transfer.py", + "jdma": "test_platforms_jdma.py", + } subgroups = [ - ' '.join(['common groups:'] + [c for c in groups if - 'common_' in groups[c]]), - ' '.join(['atmos groups:'] + [a for a in groups if - 'atmos_' in groups[a]]), - ' '.join(['nemo and cice groups:'] + [n for n in groups if - 'nemocice_' in groups[n]]), - ' '.join(['unicicles groups:'] + [u for u in groups if - 'unicicles_' in groups[u]]), - ' '.join(['verification group:'] + [v for v in groups if - 'verify_' in groups[v]]), - ' '.join(['platforms group:'] + [p for p in groups if - 'platforms_' in groups[p]]), - ] + " ".join(["common groups:"] + [c for c in groups if "common_" in groups[c]]), + " ".join(["atmos groups:"] + [a for a in groups if "atmos_" in groups[a]]), + " ".join( + ["nemo and cice groups:"] + [n for n in groups if "nemocice_" in groups[n]] + ), + " ".join( + ["unicicles groups:"] + [u for u in groups if "unicicles_" in groups[u]] + ), + " ".join( + ["verification group:"] + [v for v in groups if "verify_" in groups[v]] + ), + " ".join( + ["platforms group:"] + [p for p in groups if "platforms_" in groups[p]] + ), + ] parser = argparse.ArgumentParser( - description='MOCI PostProcessing App UnitTests', - formatter_class=argparse.RawTextHelpFormatter) + description="MOCI PostProcessing App UnitTests", + formatter_class=argparse.RawTextHelpFormatter, + ) - parser.add_argument('-g', '--group', - help='''Specify a group of tests to run. Default=all + parser.add_argument( + "-g", + "--group", + help="""Specify a group of tests to run. Default=all Additional groups may be requested with further --group arguments. -Available groups: \n\t{}'''.format('\n\t'.join(subgroups)), - action='append') +Available groups: \n\t{}""".format("\n\t".join(subgroups)), + action="append", + ) args = parser.parse_args() if args.group: testgroup = args.group else: - testgroup = ['all'] + testgroup = ["all"] rtn_code = 0 for grp in testgroup: try: - test_suite = unittest.TestLoader().\ - discover(os.path.dirname(os.path.realpath(__file__)), - pattern=groups[grp]) + test_suite = unittest.TestLoader().discover( + os.path.dirname(os.path.realpath(__file__)), pattern=groups[grp] + ) except KeyError: sys.stderr.write( - '[ERROR] UnitTest - Unknown group: {}. See help'.format(grp) - ) + "[ERROR] UnitTest - Unknown group: {}. See help".format(grp) + ) continue - sys.stdout.write('[INFO] Running test group: {}'.format(grp)) + sys.stdout.write("[INFO] Running test group: {}".format(grp)) test_rtn = unittest.TextTestRunner(buffer=True).run(test_suite) rtn_code += len(test_rtn.failures) + len(test_rtn.errors) exit(rtn_code) -if __name__ == '__main__': + +if __name__ == "__main__": main() diff --git a/mocilib/__init__.py b/mocilib/__init__.py new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/mocilib/__init__.py @@ -0,0 +1 @@ + diff --git a/mocilib/shellout.py b/mocilib/shellout.py new file mode 100644 index 00000000..8e4bd584 --- /dev/null +++ b/mocilib/shellout.py @@ -0,0 +1,62 @@ +# ----------------------------------------------------------------------------- +# (C) Crown copyright Met Office. All rights reserved. +# The file LICENCE, distributed with this code, contains details of the terms +# under which the code may be used. +# ----------------------------------------------------------------------------- + +import subprocess +import os +import sys +import shlex + + +def exec_subprocess( + cmd, verbose=False, timeout=None, current_working_directory=os.getcwd() +): + """ + Execute a given shell command + + :param cmd: The command to be executed given as a string + :param verbose: A boolean value to determine if the stdout + stream is displayed during the runtime. + :param current_working_directory: The directory in which the + command should be executed. + """ + + cmd = shlex.shlex(cmd, posix=True, punctuation_chars=True) + cmd.whitespace_split = True + formatted_cmd = list(cmd) + + try: + output = subprocess.run( + formatted_cmd, + capture_output=True, + cwd=current_working_directory, + timeout=timeout, + check=True, + ) + rcode = output.returncode + output_message = output.stdout.decode() + + if verbose and output: + sys.stdout.write(f"[DEBUG]{output.stdout}\n") + if output.stderr and output.returncode != 0: + sys.stderr.write(f"[ERROR] {output.stderr}\n") + + except subprocess.CalledProcessError as exc: + output_message = exc.stderr.decode() if exc.stderr else "" + rcode = exc.returncode + + except subprocess.TimeoutExpired as exc: + output_message = exc.stdout.decode() if exc.stdout else "" + rcode = 1 + + except FileNotFoundError as exc: + output_message = exc.strerror if exc.strerror else "" + rcode = exc.errno + + except PermissionError as exc: + output_message = exc.strerror if exc.strerror else "" + rcode = exc.errno + + return rcode, output_message diff --git a/mocilib/unittests/test.py b/mocilib/unittests/test.py new file mode 100755 index 00000000..3d032054 --- /dev/null +++ b/mocilib/unittests/test.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python3 +# ----------------------------------------------------------------------------- +# (C) Crown copyright Met Office. All rights reserved. +# The file LICENCE, distributed with this code, contains details of the terms +# under which the code may be used. +# ----------------------------------------------------------------------------- +import argparse +import unittest +import sys +import os + +assert sys.version_info >= (3, 6) + +sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir)) + + +def main(): + """ + Runs all mocilib unit tests + """ + groups = {"all": "test*.py", "shellouts": "test_shellouts.py"} + + parser = argparse.ArgumentParser( + description="MOCIlib UnitTests", formatter_class=argparse.RawTextHelpFormatter + ) + + parser.add_argument( + "-g", + "--group", + help="Specify a group of tests to run. Default=all" + " Additional groups may be requested with further" + " --group arguments", + action="append", + ) + args = parser.parse_args() + + if args.group: + testgroup = args.group + else: + testgroup = ["all"] + + rcode = 0 + for grp in testgroup: + try: + test_suite = unittest.TestLoader().discover( + os.path.dirname(os.path.realpath(__file__)), pattern=groups[grp] + ) + except KeyError: + sys.stderr.write( + "[ERROR] UnitTest - Unknown group: {}\n. See help".format(grp) + ) + continue + sys.stdout.write("[INFO] Running test group: {}\n".format(grp)) + test_rtn = unittest.TextTestRunner(buffer=True).run(test_suite) + rcode += len(test_rtn.failures) + len(test_rtn.errors) + + sys.exit(rcode) + + +if __name__ == "__main__": + main() diff --git a/mocilib/unittests/test_shellout.py b/mocilib/unittests/test_shellout.py new file mode 100644 index 00000000..c4b48169 --- /dev/null +++ b/mocilib/unittests/test_shellout.py @@ -0,0 +1,50 @@ +# ----------------------------------------------------------------------------- +# (C) Crown copyright Met Office. All rights reserved. +# The file LICENCE, distributed with this code, contains details of the terms +# under which the code may be used. +# ----------------------------------------------------------------------------- + +import sys +import os +import unittest + +sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir)) +from mocilib import shellout + + +class ExecTests(unittest.TestCase): + """Unit tests for executing shellout commands""" + + def test_called_process_error_fail(self): + cmd = "ls peche" + rcode, _ = shellout.exec_subprocess(cmd) + self.assertGreater(rcode, 0) + + def test_called_process_error_pass(self): + cmd = "ls ." + rcode, _ = shellout.exec_subprocess(cmd) + self.assertEqual(rcode, 0) + + def test_timeout_expired_fail(self): + cmd = "sleep 3" + rcode, _ = shellout.exec_subprocess(cmd, timeout=1) + self.assertGreater(rcode, 0) + + def test_timeout_expired_pass(self): + cmd = "sleep 3" + rcode, _ = shellout.exec_subprocess(cmd, timeout=5) + self.assertEqual(rcode, 0) + + def test_file_not_found_fail(self): + cmd = "pineapple" + rcode, _ = shellout.exec_subprocess(cmd) + self.assertGreater(rcode, 0) + + def test_file_not_found_pass(self): + cmd = "man sleep" + rcode, _ = shellout.exec_subprocess(cmd) + self.assertEqual(rcode, 0) + + +if __name__ == "__main__": + unittest.main() diff --git a/rose-stem/app/build_pp/rose-app.conf b/rose-stem/app/build_pp/rose-app.conf index e62a0435..7211f175 100644 --- a/rose-stem/app/build_pp/rose-app.conf +++ b/rose-stem/app/build_pp/rose-app.conf @@ -3,7 +3,7 @@ default=$SOURCE_DIRECTORY/moci/Postprocessing/build/build_pp.sh [env] # MOCIlib doesn't exist yet! Default is true. -MOCILIB=false +!MOCILIB=true NEMO_TOOLS=fcm:nemo.xm/utils/tools_r4.0-HEAD NEMO_TOOLS_REV=@16016 !PP_COMPONENTS=atmos nemocice unicicles archive_verify diff --git a/rose-stem/flow.cylc b/rose-stem/flow.cylc index ced3c51a..54d6e2c0 100644 --- a/rose-stem/flow.cylc +++ b/rose-stem/flow.cylc @@ -15,8 +15,9 @@ {# Read the sources of dependencies from the dependencies.yaml file #} {% set dependencies = read_sources(SOURCE_DIRECTORY, "moci", false) %} +{% set SPACER = " " %} {# Read in groups to run #} -{% if group is defined %} + {% if group is defined %} {% set RUN_NAMES = group %} {% elif g is defined %} {% set RUN_NAMES = g %} @@ -38,7 +39,8 @@ # set of cylc task dependencies {# name_graphs contains test_option-dependency key-value pairs -#} {%- set name_graphs = { - "default" : "default_task", + "default" : "default_task", + "mocilib_unittests" : SPACER + "extract_source => mocilib_unittests" } -%} @@ -46,12 +48,13 @@ {# groups contains group_option-trigger_list key-value pairs. -#} {# If a group option is set, each group or task in the trigger list will be set. -#} {%- set groups = { - "tests" : [], - "ALL" : [], + "tests" : ["mocilib_unittests"], + "ALL" : ["tests"], "all" : ["ALL"] } %} +{% set SPACER = " " %} {% include 'graph-postproc.cylc' %} {% include 'graph-drivers.cylc' %} @@ -98,7 +101,7 @@ [[[environment]]] SOURCE_DIRECTORY = $CYLC_WORKFLOW_SHARE_DIR/source SOURCE_MOCI_BASE = $SOURCE_DIRECTORY/moci - + [[default_task]] script = "echo [ERROR] Please select a valid group within the test suite to test the component that has been modified >&2; exit 1" @@ -143,6 +146,26 @@ sleep 5 [[UNITTESTS]] + [[extract_source]] + inherit = SOURCE_EXTRACTION, EXTRACT_RESOURCE + + [[mirror_source]] + inherit = SOURCE_EXTRACTION, EXTRACT_RESOURCE + script = """ +RELATIVE_SOURCE_DIRECTORY=`echo $SOURCE_DIRECTORY | sed 's|$HOME/||'` +ssh $HOSTNAME mkdir -p $RELATIVE_SOURCE_DIRECTORY +rsync -avz --exclude='.*' $SOURCE_DIRECTORY/* $HOSTNAME:$RELATIVE_SOURCE_DIRECTORY/ +sleep 5 + """ + [[[environment]]] + HOSTNAME = $(rose host-select {{COMPUTE_HOST}}) + + [[UNITTESTS]] + + [[mocilib_unittests]] + inherit = UNITTESTS, EXTRACT_RESOURCE + script = "python $SOURCE_DIRECTORY/moci/mocilib/unittests/test.py" + [[HOUSEKEEPING]] {% if HOUSEKEEPING == true %} script = "rose task-run --verbose" @@ -153,6 +176,6 @@ sleep 5 ROSE_TASK_APP = housekeeping {% include "site/" + SYSTEM_NAME + ".cylc" %} - + {% include 'tasks-postproc.cylc' %} {% include 'tasks-drivers.cylc' %} From c8da1e0ab9399dd390546cfeab95973676edbd26 Mon Sep 17 00:00:00 2001 From: Erica Neininger <107684099+ericaneininger@users.noreply.github.com> Date: Wed, 1 Apr 2026 08:11:16 +0100 Subject: [PATCH 04/15] Add utilities unittests to rose-stem (#46) --- README.md | 17 ++++++++++++- .../unittests/test_ozone.py | 8 ++++--- Utilities/suite_monitoring/rates_lib.py | 4 ++-- rose-stem/flow.cylc | 14 +++-------- rose-stem/graph-drivers.cylc | 1 - rose-stem/graph-postproc.cylc | 1 - rose-stem/graph-unittests.cylc | 15 ++++++++++++ rose-stem/tasks-unittests.cylc | 24 +++++++++++++++++++ 8 files changed, 65 insertions(+), 19 deletions(-) create mode 100644 rose-stem/graph-unittests.cylc create mode 100644 rose-stem/tasks-unittests.cylc diff --git a/README.md b/README.md index 6e0e6e89..fe4210ef 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ space for all contributors. Please see the [Momentum Contributors Licence Agreement](https://github.com/MetOffice/Momentum/blob/main/CLA.md) -Agreement of the CLA can be shown by adding yourself to the CONTRIBUTORS file +Agreement of the CLA can be shown by adding yourself to the CONTRIBUTORS.md file alongside this one, and is a requirement for contributing to this project. ### Code of Conduct @@ -44,3 +44,18 @@ Questions are encouraged in the Simulation Systems Please be aware of and follow the Simulation Systems [AI Policy.](https://metoffice.github.io/simulation-systems/FurtherDetails/ai.html) + +#### Testing + +MOCI rose-stem provides testing for the Coupled_Drivers and Postprocessing applications plus Utilities unittests. +`cylc vip -z group= -n + +Available test groups: +`all` Runs all available tasks +`tests` Runs all unit tests covering MOCI code +`postproc` Runs all Postprocessing application tasks +`drivers` Runs all Coupled_Drivers related tasks. + Drivers run tasks currently only available on Met Office internal machines. + `drivers_non_run` tests are available on other platforms + + diff --git a/Utilities/ozone_redistribution/unittests/test_ozone.py b/Utilities/ozone_redistribution/unittests/test_ozone.py index b2d77b8a..8d942a7b 100755 --- a/Utilities/ozone_redistribution/unittests/test_ozone.py +++ b/Utilities/ozone_redistribution/unittests/test_ozone.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ''' *****************************COPYRIGHT****************************** - (C) Crown copyright 2022 Met Office. All rights reserved. + (C) Crown copyright 2022-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -292,8 +292,10 @@ def test_shell_cmd_fail(self): rval = retrieve_ozone_data.shell_cmd('run this command') self.assertNotEqual(rval, 0) - self.assertIn('[SUBPROCESS] No such file or directory', - str(mock_out.write.mock_calls[0])) + # Depending on Python version, output may differ + errmsg = ['No such file or directory', 'Permission denied'] + self.assertTrue(any(['[SUBPROCESS] ' + e for e in errmsg + if e in str(mock_out.write.mock_calls[0])])) class OzoneMainTests(unittest.TestCase): diff --git a/Utilities/suite_monitoring/rates_lib.py b/Utilities/suite_monitoring/rates_lib.py index 748d3073..d00fd9e8 100644 --- a/Utilities/suite_monitoring/rates_lib.py +++ b/Utilities/suite_monitoring/rates_lib.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ''' *****************************COPYRIGHT****************************** - (C) Crown copyright 2019-2020 Met Office. All rights reserved. + (C) Crown copyright 2019-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -173,7 +173,7 @@ def interpolate(x_values, y_values, interval): x_min = x_values[0] x_max = x_values[-1] - n_interp = ((x_max - x_min) / float(interval)) + 1 + n_interp = int(((x_max - x_min) / float(interval))) + 1 x_values_interp = numpy.linspace(x_min, x_max, n_interp) y_values_interp = numpy.interp(x_values_interp, x_values, y_values) diff --git a/rose-stem/flow.cylc b/rose-stem/flow.cylc index 54d6e2c0..aae4d676 100644 --- a/rose-stem/flow.cylc +++ b/rose-stem/flow.cylc @@ -40,7 +40,6 @@ {# name_graphs contains test_option-dependency key-value pairs -#} {%- set name_graphs = { "default" : "default_task", - "mocilib_unittests" : SPACER + "extract_source => mocilib_unittests" } -%} @@ -48,13 +47,13 @@ {# groups contains group_option-trigger_list key-value pairs. -#} {# If a group option is set, each group or task in the trigger list will be set. -#} {%- set groups = { - "tests" : ["mocilib_unittests"], - "ALL" : ["tests"], + "ALL" : [], "all" : ["ALL"] } %} {% set SPACER = " " %} +{% include 'graph-unittests.cylc' %} {% include 'graph-postproc.cylc' %} {% include 'graph-drivers.cylc' %} @@ -144,8 +143,6 @@ sleep 5 [[[environment]]] HOSTNAME = $(rose host-select {{COMPUTE_HOST}}) - [[UNITTESTS]] - [[extract_source]] inherit = SOURCE_EXTRACTION, EXTRACT_RESOURCE @@ -160,12 +157,6 @@ sleep 5 [[[environment]]] HOSTNAME = $(rose host-select {{COMPUTE_HOST}}) - [[UNITTESTS]] - - [[mocilib_unittests]] - inherit = UNITTESTS, EXTRACT_RESOURCE - script = "python $SOURCE_DIRECTORY/moci/mocilib/unittests/test.py" - [[HOUSEKEEPING]] {% if HOUSEKEEPING == true %} script = "rose task-run --verbose" @@ -177,5 +168,6 @@ sleep 5 {% include "site/" + SYSTEM_NAME + ".cylc" %} +{% include 'tasks-unittests.cylc' %} {% include 'tasks-postproc.cylc' %} {% include 'tasks-drivers.cylc' %} diff --git a/rose-stem/graph-drivers.cylc b/rose-stem/graph-drivers.cylc index 3159de33..f7175071 100644 --- a/rose-stem/graph-drivers.cylc +++ b/rose-stem/graph-drivers.cylc @@ -1,5 +1,4 @@ {# Setup graph required to run postproc tasks #} -{% set SPACER = " " %} {%- do name_graphs.update({ "test_drivers_unit" : SPACER + "extract_source => drivers_unittests & mct_validate_unittests" + (" => drivers_local_housekeeping" if HOUSEKEEPING else ""), "test_drivers_misc" : SPACER + "extract_source => drivers_check_python_tabs" + (" => drivers_local_housekeeping" if HOUSEKEEPING else ""), diff --git a/rose-stem/graph-postproc.cylc b/rose-stem/graph-postproc.cylc index b5b298e7..565aa499 100644 --- a/rose-stem/graph-postproc.cylc +++ b/rose-stem/graph-postproc.cylc @@ -3,7 +3,6 @@ {% set BUILD_GRAPH = "extract_source => " + ("mirror_source => " if REMOTE_PP else "") + "build_pp" %} {# Setup Multi-date tasks #} -{% set SPACER = " " %} {% set FAM_SUCCEED = ":succeed-all" if SPLIT_PP else "" %} {% set COUPLED_GRAPH = [ SPACER + "pp_clearlog => " + BUILD_GRAPH + " => coupled_dummy_198" + PP_CYCLES[0]|string + "01" + " & pp_unicicles_startup" ] %} {% set PP_GRAPH = [] %} diff --git a/rose-stem/graph-unittests.cylc b/rose-stem/graph-unittests.cylc new file mode 100644 index 00000000..68d90cda --- /dev/null +++ b/rose-stem/graph-unittests.cylc @@ -0,0 +1,15 @@ +{%- do name_graphs.update({ + "mocilib_unittests" : SPACER + "extract_source => mocilib_unittests", + "ngmsutils_unittests" : SPACER + "extract_source => ngmsutils_unittests", + "verification_unittests" : SPACER + "extract_source => verification_unittests", + "ozone_unittests": SPACER + "extract_source => ozone_unittests", + "monitor_unittests": SPACER + "extract_source => monitor_unittests", +}) %} + +{# groups contains group_option-trigger_list key-value pairs. -#} +{# If a group option is set, each group or task in the trigger list will be set. -#} +{%- do groups.update({ + "tests" : ["mocilib_unittests", "ngmsutils_unittests", "verification_unittests", "ozone_unittests", "monitor_unittests"] +}) %} + +{%- do groups['ALL'].append( "tests" ) %} \ No newline at end of file diff --git a/rose-stem/tasks-unittests.cylc b/rose-stem/tasks-unittests.cylc new file mode 100644 index 00000000..4570d7d9 --- /dev/null +++ b/rose-stem/tasks-unittests.cylc @@ -0,0 +1,24 @@ + [[UNITTESTS]] + + [[mocilib_unittests]] + inherit = UNITTESTS, EXTRACT_RESOURCE + script = "python $SOURCE_MOCI_BASE/mocilib/unittests/test.py" + + [[ngmsutils_unittests]] + inherit = UNITTESTS, EXTRACT_RESOURCE + script = """ +python $SOURCE_MOCI_BASE/Utilities/NGMS_utils/ngms_namcouple_gen/unittests/test.py +python $SOURCE_MOCI_BASE/Utilities/NGMS_utils/ngms_suite_lib/unittests/test.py +""" + + [[verification_unittests]] + inherit = UNITTESTS, EXTRACT_RESOURCE + script = "python $SOURCE_MOCI_BASE/Utilities/verification_scripts/unittests/test_compare_norms.py" + + [[ozone_unittests]] + inherit = UNITTESTS, EXTRACT_RESOURCE + script = "python $SOURCE_MOCI_BASE/Utilities/ozone_redistribution/unittests/test_ozone.py" + + [[monitor_unittests]] + inherit = UNITTESTS, EXTRACT_RESOURCE + script = "python $SOURCE_MOCI_BASE/Utilities/suite_monitoring/unit_tests/test.py" \ No newline at end of file From 53307609bf398f98aaf234eb168f1547ca605aeb Mon Sep 17 00:00:00 2001 From: Erica Neininger <107684099+ericaneininger@users.noreply.github.com> Date: Wed, 1 Apr 2026 10:27:49 +0100 Subject: [PATCH 05/15] Add metadata for the build_pp app (#48) Co-authored-by: Pierre Siddall <43399998+Pierre-siddall@users.noreply.github.com> --- Postprocessing/build/build_pp.sh | 19 +++--- Postprocessing/nemocice/nemo_namelist.py | 8 +-- .../postproc/HEAD/rose-meta.conf | 4 +- .../pp_build/HEAD/rose-meta.conf | 68 +++++++++++++++++++ rose-stem/app/build_pp/rose-app.conf | 10 +-- 5 files changed, 88 insertions(+), 21 deletions(-) create mode 100644 rose-meta/archive_and_meaning/pp_build/HEAD/rose-meta.conf diff --git a/Postprocessing/build/build_pp.sh b/Postprocessing/build/build_pp.sh index fd915a0d..cc35c524 100755 --- a/Postprocessing/build/build_pp.sh +++ b/Postprocessing/build/build_pp.sh @@ -16,13 +16,13 @@ set -eu # Required environment -PP_SOURCE_DIR=${PP_SOURCE_DIR:=$CYLC_WORKFLOW_RUN_DIR/share/source/moci_postproc} -PP_TARGET_DIR=${PP_TARGET_DIR:-$CYLC_WORKFLOW_SHARE_DIR/bin} +PP_SOURCE_DIR=${PP_SOURCE_DIR:=$CYLC_WORKFLOW_SHARE_DIR/source/moci_postproc} +PP_TARGET_DIR=${PP_TARGET_DIR:=$CYLC_WORKFLOW_SHARE_DIR/bin} MOCILIB=${MOCILIB:=true} -MOCILIB_PATH=${MOCILIB_PATH:=$CYLC_WORKFLOW_SHARE_DIR/source/moci/mocilib} +MOCILIB_PATH=${MOCILIB_PATH:=$PP_SOURCE_DIR/mocilib} -PP_COMPONENTS="atmos nemocice unicicles archive_verify" +PP_COMPONENTS=${PP_COMPONENTS:="atmos nemocice unicicles archive_verify"} PP_TESTS=${PP_TESTS:=false} echo [INFO] Building PostProc application from $PP_SOURCE_DIR @@ -33,17 +33,16 @@ if [[ ! -d $PP_SOURCE_DIR ]] ; then exit 1 fi if [[ ! -d $PP_TARGET_DIR ]] ; then - echo [INFO] Creating build directory... + echo [INFO] Creating build directory ... mkdir -p $PP_TARGET_DIR fi -# Copy mocilib - +# Link mocilib if [[ "$MOCILIB" != true ]] ; then - echo [INFO] MOCIlib library not installed + echo [INFO] MOCIlib library not requested elif [[ -d "$MOCILIB_PATH" ]] ; then - echo [INFO] Copying MOCILIB ... - cp -r $MOCILIB_PATH $PP_TARGET_DIR + echo [INFO] Linking to MOCILIB at $MOCILIB_PATH ... + ln -sf $MOCILIB_PATH $PP_TARGET_DIR/mocilib else echo [ERROR] Failed to find the required \"mocilib\" library >&2 exit 1 diff --git a/Postprocessing/nemocice/nemo_namelist.py b/Postprocessing/nemocice/nemo_namelist.py index 5525ef38..79e1f71c 100644 --- a/Postprocessing/nemocice/nemo_namelist.py +++ b/Postprocessing/nemocice/nemo_namelist.py @@ -31,10 +31,10 @@ class Processing(template_namelist.Processing): means_fieldsfiles = None exec_rebuild = '/projects/ocean/hadgem3/scripts/GC2.0/rebuild_nemo.exe' - exec_rebuild_icebergs = os.environ['CYLC_SUITE_SHARE_DIR'] + \ - '/fcm_make_pp/build/bin/icb_combrest.py' - exec_rebuild_iceberg_trajectory = os.environ['CYLC_SUITE_SHARE_DIR'] + \ - '/fcm_make_pp/build/bin/icb_pp.py' + exec_rebuild_icebergs = os.environ['CYLC_WORKFLOW_SHARE_DIR'] + \ + '/bin/icb_combrest.py' + exec_rebuild_iceberg_trajectory = os.environ['CYLC_WORKFLOW_SHARE_DIR'] + \ + '/bin/icb_pp.py' msk_rebuild = False rebuild_restart_timestamps = '05-30', '11-30', '06-01', '12-01' rebuild_omp_numthreads = 1 diff --git a/rose-meta/archive_and_meaning/postproc/HEAD/rose-meta.conf b/rose-meta/archive_and_meaning/postproc/HEAD/rose-meta.conf index 59cde990..3b1228bc 100644 --- a/rose-meta/archive_and_meaning/postproc/HEAD/rose-meta.conf +++ b/rose-meta/archive_and_meaning/postproc/HEAD/rose-meta.conf @@ -1729,7 +1729,7 @@ sort-key=4 compulsory=false description=Archive iceberg trajectory files (diagnostics) help=Script to be executed for rebuilding iceberg trajectory files - =Default: $CYLC_SUITE_SHARE_DIR/fcm_make_pp/build/bin.icb_pp.py + =Default: $CYLC_WORKFLOW_SHARE_DIR/bin/icb_pp.py ns=NEMO/Diagnostics sort-key=other1b @@ -1738,7 +1738,7 @@ compulsory=false description=NEMO icebergs rebuild script help=Script to be executed for completing the rebuild process of iceberg =restart files. - =Default: $CYLC_SUITE_SHARE_DIR/fcm_make_pp/build/bin/icb_combrest + =Default: $CYLC_WORKFLOW_SHARE_DIR/bin/icb_combrest.py ns=NEMO/Restart Files sort-key=0 diff --git a/rose-meta/archive_and_meaning/pp_build/HEAD/rose-meta.conf b/rose-meta/archive_and_meaning/pp_build/HEAD/rose-meta.conf new file mode 100644 index 00000000..bb48d85a --- /dev/null +++ b/rose-meta/archive_and_meaning/pp_build/HEAD/rose-meta.conf @@ -0,0 +1,68 @@ +[env=MOCILIB] +compulsory=false +description=Include MOCILIB library source +help=Include the MOCILIB library in PostProc app build + = + =Default: True +ns=Configuration +sort-key=build3a +trigger=env=MOCILIB_PATH : true +type=boolean + +[env=MOCILIB_PATH] +compulsory=false +description=Path to the MOCILIB library source +help=Path to the MOCILIB library source extracted from Git repository or local source + = + =Default: $PP_SOURCE_DIR/mocilib +ns=Configuration +sort-key=build3b + +[env=PP_COMPONENTS] +compulsory=false +description=Model components +help=List of model components to be included in the PostProc app build + = + =Default: atmos nemocice unicicles archive_verify +length=: +ns=Configuration +sort-key=build1 + +[env=PP_SOURCE_DIR] +compulsory=false +description=Extracted source directory for the MOCI PostProc application +help=Path to the MOCI post-processing app source, extracted from the Git Repository or local source + = + =Default: $CYLC_WORKFLOW_SHARE_DIR/source/moci_postproc +ns=Configuration +sort-key=build2a + +[env=PP_TARGET_DIR] +compulsory=false +description=Extracted source directory for the MOCI PostProc application +help=Build path for the MOCI post-processing app source + = + =Default: $CYLC_WORKFLOW_SHARE_DIR/bin +ns=Configuration +sort-key=build2b + +[env=PP_TESTS] +compulsory=false +description=Include PostProc app unittests +help=Include all unit tests in PostProc application build + = + =Default: false +ns=Configuration +sort-key=buildtests +type=boolean + +[file:$PP_SOURCE_DIR/../nemotools/icb_combrest.py] +compulsory=false +description=Nemo iceberg restart file rebuild script + +[file:$PP_SOURCE_DIR/../nemotools/icb_combrest.py=source] +pattern=.*icb_pp\.py.* + +[file:$PP_SOURCE_DIR/../nemotools/icb_pp.py] +compulsory=false +description=Nemo iceberg trajectory file rebuild script diff --git a/rose-stem/app/build_pp/rose-app.conf b/rose-stem/app/build_pp/rose-app.conf index 7211f175..034a421a 100644 --- a/rose-stem/app/build_pp/rose-app.conf +++ b/rose-stem/app/build_pp/rose-app.conf @@ -1,21 +1,21 @@ +meta=../../../rose-meta/archive_and_meaning/pp_build/HEAD + [command] default=$SOURCE_DIRECTORY/moci/Postprocessing/build/build_pp.sh [env] -# MOCIlib doesn't exist yet! Default is true. !MOCILIB=true +!MOCILIB_PATH=SOURCE_DIRECTORY/moci/mocilib NEMO_TOOLS=fcm:nemo.xm/utils/tools_r4.0-HEAD NEMO_TOOLS_REV=@16016 !PP_COMPONENTS=atmos nemocice unicicles archive_verify -# Default name for extracted repository source = "moci_postproc" PP_SOURCE_DIR=$SOURCE_DIRECTORY/moci !PP_TARGET_DIR=$CYLC_WORKFLOW_SHARE_DIR/bin -# Unit tests not copied by default PP_TESTS=true # Icebergs not currently used in rose-stem - nemotools not required -[file:$SOURCE_DIRECTORY/nemotools/icb_combrest.py] +[file:$PP_SOURCE_DIR/../nemotools/icb_combrest.py] source=$NEMO_TOOLS/REBUILD_NEMO/icb_combrest.py$NEMO_TOOLS_REV -[!file:$SOURCE_DIRECTORY/nemotools/icb_pp.py] +[!file:$PP_SOURCE_DIR/../nemotools/icb_pp.py] source=$NEMO_TOOLS/MISCELLANEOUS/icb_pp.py$NEMO_TOOLS_REV From ce25373e01211e88bcd84add152ccf0799928738 Mon Sep 17 00:00:00 2001 From: marcstring <129505194+marcstring@users.noreply.github.com> Date: Wed, 8 Apr 2026 10:42:27 +0100 Subject: [PATCH 06/15] Postproc updates for UKESM2 (#49) Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com> --- CONTRIBUTORS.md | 2 ++ .../archive_verify/expected_content.py | 2 +- Postprocessing/archive_verify/filenames.py | 12 +++++------ Postprocessing/unicicles/unicicles.py | 8 +++++-- .../unittests/test_verify_expected.py | 21 ++++++++++++++++++- rose-stem/app/postproc/rose-app.conf | 4 ++-- rose-stem/tasks-postproc.cylc | 5 ++++- 7 files changed, 41 insertions(+), 13 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4f74e5e6..e91605ee 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -7,3 +7,5 @@ | ericaneininger | Erica Neininger | Met Office | 2026-02-04 | | dcalve | Daley Calvert | Met Office | 2026-02-04 | | harry-shepherd | Harry Shepherd | Met Office | 2026-02-27 | +| marcstring | Marc Stringer | NCAS | 2026-04-01 | + diff --git a/Postprocessing/archive_verify/expected_content.py b/Postprocessing/archive_verify/expected_content.py index 14926bea..f54ed8e9 100644 --- a/Postprocessing/archive_verify/expected_content.py +++ b/Postprocessing/archive_verify/expected_content.py @@ -350,7 +350,7 @@ def expected_files(self): for rstcoll in restart_files: restart_files[rstcoll] = self.remove_invalid(restart_files[rstcoll]) - if self.finalcycle and not coll.startswith('c'): + if self.finalcycle and (self.model != 'unicicles'): # Additionally archive the end date dump. # Ignore UniCiCles because it does not necessarily # run on the final cycle. diff --git a/Postprocessing/archive_verify/filenames.py b/Postprocessing/archive_verify/filenames.py index ca1a9c13..e1991c81 100644 --- a/Postprocessing/archive_verify/filenames.py +++ b/Postprocessing/archive_verify/filenames.py @@ -35,13 +35,13 @@ 'cice': {'cice': ('i', '', ['', 'age'])}, 'unicicles': {'bisicles': ('c', ['calving-AIS', 'calving-GrIS', 'nemo-icecouple-AIS', - 'plot-AIS', 'plot-GrIS'], ['']), + 'plot-AIS', 'plot-GrIS', + 'plot-CF-AIS', 'plot-CF-GrIS'], ['']), 'unicicles': - ('c', ['atmos-icecouple', 'nemo-bathy-isf', - 'bisicles-icecouple', 'bisicles-icecouple-AIS', - 'bisicles-icecouple-GrIS', 'calv-AIS', - 'calv-GrIS', 'calving', - 'nemo-icecouple'], + ('c', ['atmos-icecouple', 'bisicles-icecouple', + 'bisicles-icecouple-AIS', 'bisicles-icecouple-GrIS', + 'calv-AIS', 'calv-GrIS', 'calving', + 'nemo-bathy-isf', 'nemo-domain', 'nemo-icecouple'], [''])}, } diff --git a/Postprocessing/unicicles/unicicles.py b/Postprocessing/unicicles/unicicles.py index 4ebd1ba2..1c695588 100644 --- a/Postprocessing/unicicles/unicicles.py +++ b/Postprocessing/unicicles/unicicles.py @@ -109,16 +109,20 @@ def template_to_archive(self): format('bisicles', self.suite.prefix), r'^{0}_{1}c_\d*[dmy]_\d{{8}}-\d{{8}}_plot-(A|Gr)IS\.hdf5$'. format('bisicles', self.suite.prefix), + r'^{0}_{1}c_\d*[dmy]_\d{{8}}-\d{{8}}_plot-CF-(A|Gr)IS\.hdf5$'. + format('bisicles', self.suite.prefix), r'^{0}_{1}c_\d*[dmy]_\d{{8}}-\d{{8}}_nemo-icecouple-AIS\.hdf5$'. format('bisicles', self.suite.prefix), r'^{0}_{1}c_\d*[dmy]_\d{{8}}-\d{{8}}_atmos-icecouple\.nc$'. format('unicicles', self.suite.prefix), - r'^{0}_{1}c_\d*[dmy]_\d{{8}}-\d{{8}}_nemo-bathy-isf\.nc$'. - format('unicicles', self.suite.prefix), r'^{0}_{1}c_\d*[dmy]_\d{{8}}-\d{{8}}_bisicles-icecouple\.nc$'. format('unicicles', self.suite.prefix), r'^{0}_{1}c_\d*[dmy]_\d{{8}}-\d{{8}}_calving\.nc$'. format('unicicles', self.suite.prefix), + r'^{0}_{1}c_\d*[dmy]_\d{{8}}-\d{{8}}_nemo-bathy-isf\.nc$'. + format('unicicles', self.suite.prefix), + r'^{0}_{1}c_\d*[dmy]_\d{{8}}-\d{{8}}_nemo-domain\.nc$'. + format('unicicles', self.suite.prefix), r'^{0}_{1}c_\d*[dmy]_\d{{8}}-\d{{8}}_nemo-icecouple\.nc$'. format('unicicles', self.suite.prefix)] diff --git a/Postprocessing/unittests/test_verify_expected.py b/Postprocessing/unittests/test_verify_expected.py index 3c7d0dc1..9705e919 100644 --- a/Postprocessing/unittests/test_verify_expected.py +++ b/Postprocessing/unittests/test_verify_expected.py @@ -651,10 +651,29 @@ def test_expected_unicicles_dumps_final(self): expect = ['PREFIXc_19960101_bisicles-AIS_restart.hdf5', 'PREFIXc_19960101_glint-GrIS_restart.nc', 'PREFIXc_19970101_bisicles-AIS_restart.hdf5', - 'PREFIXc_19970101_glint-GrIS_restart.nc' + 'PREFIXc_19970101_glint-GrIS_restart.nc', 'PREFIXc_19980101_bisicles-AIS_restart.hdf5', 'PREFIXc_19980101_glint-GrIS_restart.nc'] + actual = files.expected_files() + self.assertListEqual(actual['cda.file'], expect) + self.assertListEqual(list(actual.keys()), ['cda.file']) + + def test_expected_unicicles_static_final(self): + ''' Test calculation of expected unicicles restarts finalcycle''' + func.logtest('Assert archived finalcycle unicicles with static ice:') + # No dumps are archived with static ice + naml =verify_namelist.UniciclesVerify() + naml.unicicles_bisicles_ais_rst = False + naml.unicicles_glint_gris_rst = False + with mock.patch('expected_content.utils.finalcycle', + return_value=True): + files = expected_content.RestartFiles( + '19950901', '19980901', 'PREFIX', 'unicicles', naml) + + actual = files.expected_files() + self.assertEqual(actual, {}) + class DiagnosticFilesTests(unittest.TestCase): ''' Unit tests relating to the DiagnosticFiles (child) class methods ''' diff --git a/rose-stem/app/postproc/rose-app.conf b/rose-stem/app/postproc/rose-app.conf index 2a2af338..d571e054 100644 --- a/rose-stem/app/postproc/rose-app.conf +++ b/rose-stem/app/postproc/rose-app.conf @@ -266,8 +266,8 @@ share_directory=$UNICICLES_DATA archive_timestamps='01-01','04-01','07-01','10-01' cycle_length=3m meanfields=atmos-icecouple,bisicles-icecouple,calving,nemo-bathy-isf, - =plot-AIS,nemo-icecouple-AIS,calving-AIS,nemo-icecouple, - =plot-GrIS,calving-GrIS + =plot-AIS,plot-CF-AIS,nemo-icecouple-AIS,calving-AIS,nemo-icecouple, + =plot-GrIS,plot-CF-GrIS,calving-GrIS,nemo-domain meanstreams=3m unicicles_bisicles_ais_rst=true unicicles_bisicles_gris_rst=true diff --git a/rose-stem/tasks-postproc.cylc b/rose-stem/tasks-postproc.cylc index cf3e1f0e..1b7fc660 100644 --- a/rose-stem/tasks-postproc.cylc +++ b/rose-stem/tasks-postproc.cylc @@ -110,7 +110,7 @@ touch ${UNICICLES_DATA}/${RUNID}c_${startdate}_glint-GrIS_restart.nc touch ${UNICICLES_DATA}/bisicles_${RUNID}c_3m_${predate}-${startdate}_calving-AIS.hdf5 touch ${UNICICLES_DATA}/bisicles_${RUNID}c_3m_${predate}-${startdate}_calving-GrIS.hdf5 touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${predate}-${startdate}_atmos-icecouple.nc -touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${predate}-${startdate}_nemo-bathy-isf.nc +touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${predate}-${startdate}_nemo-domain.nc touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${predate}-${startdate}_calving.nc touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${predate}-${startdate}_nemo-icecouple.nc @@ -138,8 +138,10 @@ touch ${UNICICLES_DATA}/${RUNID}c_${enddate}_glint-GrIS_restart.nc touch ${UNICICLES_DATA}/bisicles_${RUNID}c_3m_${startdate}-${enddate}_nemo-icecouple-AIS.hdf5 touch ${UNICICLES_DATA}/bisicles_${RUNID}c_3m_${startdate}-${enddate}_plot-AIS.hdf5 +touch ${UNICICLES_DATA}/bisicles_${RUNID}c_3m_${startdate}-${enddate}_plot-CF-AIS.hdf5 touch ${UNICICLES_DATA}/bisicles_${RUNID}c_3m_${startdate}-${enddate}_calving-AIS.hdf5 touch ${UNICICLES_DATA}/bisicles_${RUNID}c_3m_${startdate}-${enddate}_plot-GrIS.hdf5 +touch ${UNICICLES_DATA}/bisicles_${RUNID}c_3m_${startdate}-${enddate}_plot-CF-GrIS.hdf5 touch ${UNICICLES_DATA}/bisicles_${RUNID}c_3m_${startdate}-${enddate}_calving-GrIS.hdf5 touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${startdate}-${enddate}_atmos-icecouple.nc @@ -154,6 +156,7 @@ touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${startdate}-${enddate}_orog-li-G touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${startdate}-${enddate}_orog-li.anc touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${startdate}-${enddate}_calving.nc touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${startdate}-${enddate}_nemo-bathy-isf.nc +touch ${UNICICLES_DATA}/unicicles_${RUNID}c_3m_${startdate}-${enddate}_nemo-domain.nc echo [INFO] Created the following files to simulate uniCiCles output data: ls ${UNICICLES_DATA}/*c_${startdate}_* From 56c702521730fd9070071ccb702ba50d5fda58a5 Mon Sep 17 00:00:00 2001 From: Erica Neininger <107684099+ericaneininger@users.noreply.github.com> Date: Mon, 27 Apr 2026 11:16:24 +0100 Subject: [PATCH 07/15] Update norms comparison for UM output as of UM#5034 (#47) Co-authored-by: Sam Clarke-Green <74185251+t00sa@users.noreply.github.com> --- .../verification_scripts/compare_absnorms.py | 4 +- .../unittests/norms_kgo_vn14 | 99307 ++++++++++++++++ .../unittests/test_compare_norms.py | 17 +- 3 files changed, 99324 insertions(+), 4 deletions(-) create mode 100644 Utilities/verification_scripts/unittests/norms_kgo_vn14 diff --git a/Utilities/verification_scripts/compare_absnorms.py b/Utilities/verification_scripts/compare_absnorms.py index 69df1c24..fadc9cec 100755 --- a/Utilities/verification_scripts/compare_absnorms.py +++ b/Utilities/verification_scripts/compare_absnorms.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ''' *****************************COPYRIGHT****************************** - (C) Crown copyright 2020 Met Office. All rights reserved. + (C) Crown copyright 2020-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -75,7 +75,7 @@ def generate_timestep(filename): helmholtz_regex = re.compile( r'\*.*Linear solve for Helmholtz problem.*\*' ) - norms_regex = re.compile(r'\*\s+\d+\s+\d+\s+(\d+)\s+(\S+)\s+\*') + norms_regex = re.compile(r'\*\s+\d+\s+\d+\s+(\d+)\s+(\S+)\s+(?:\s+\S+)?\s+\*') with open(filename, 'r') as fhandle: nextstep = None diff --git a/Utilities/verification_scripts/unittests/norms_kgo_vn14 b/Utilities/verification_scripts/unittests/norms_kgo_vn14 new file mode 100644 index 00000000..4e770549 --- /dev/null +++ b/Utilities/verification_scripts/unittests/norms_kgo_vn14 @@ -0,0 +1,99307 @@ +FILE_MANAGER: Assigned : SHARED +FILE_MANAGER: : Unit : 11 (fortran) +FILE_MANAGER: Released : Unit : 11 (fortran) +Contents of namelist exceptions +l_custom_exceptions = F +l_exception_fpe_dbz = F +l_exception_fpe_fpi = F +l_exception_fpe_und = F +l_exception_fpe_ovr = F +l_exception_fpe_inx = F +exception_signals = "" +exception_action = 0 +exception_verbosity = 0 +- - - - - - end of namelist - - - - - - +****************************************** +App ID: 2, Name:Unified Model +------------------------------------------ +- Data size is 64 bit. Program is 64 bit. +- Program is parallel. +****************************************** +FILE_MANAGER: Assigned : pseudo-file for UNIX operations +FILE_MANAGER: : id : io_reserved_unit +FILE_MANAGER: : Unit : 10 (portio) +Contents of namelist io_control +io_wbuffer_size = 4194304 +io_rbuffer_size = 4194304 +io_rbuffer_count = 4 +io_rbuffer_update = 1 +io_rbuffer_prefetch = 1 +io_data_alignment = 524288 +io_field_padding = 512 +io_timing = 0 +io_filesystem_profile = 0 +io_use_unique_units = F +print_runtime_info = F +print_memory_info = F +io_external_control = F +l_postp = T +io_omp_passive_dump_reading = F +io_alltoall_readflds = T +- - - - - - end of namelist - - - - - - +Buffered I/O active. Buffer size set to 4194304, bytes. +IO: Initialised IO +Enabling 0 I/O PEs + +**************************** PROCESSOR INFORMATION **************************** + +512 Processors initialised. +I am PE 0 on nida1347 +[0] I am running with 2 thread(s). +[0] OpenMP Specification: 201511 +FILE_MANAGER: Assigned : ATMOSCNTL +FILE_MANAGER: : id : atmoscntl +FILE_MANAGER: : Unit : 11 (fortran) +FILE_MANAGER: Assigned : SHARED +FILE_MANAGER: : id : shared +FILE_MANAGER: : Unit : 12 (fortran) + +******************************************************************************* +**************** Start of UM RUN Job : 22:44:32 on 26/03/2026 ***************** +**************** Based upon UM release vn13.8 ***************** +******************************************************************************* + +Info: Control file:IOSCNTL +No IO Servers, reset IOS_spacing +Info: Full Multithreading available. +Info: IO servers are not configured +[0] IO servers starting at time= 0.240 seconds +[1] IO servers starting at time= 0.240 seconds +Info: Original Rank= 0 Global_Rank= 0 Model_Rank= 0 +Info: Total Size= 512 Submodel size= 512 + +Communicators.... + +Function Comm ID Processors My Rank +-------- ------- ---------- ------- +Global 1140850688 512 0 +Model -2080374778 512 0 +IO 67108864 0 -1 +Leader -2080374779 1 0 + +Info: Configuration not IOS capable, deactivating IOS +Info: Reason:No IO server processes assigned + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -10 +? Warning from routine: GET_ENV_VAR +? Warning message: Environment variable OMP_WAIT_POLICY is not set. +? Warning from processor: 0 +? Warning number: 0 +???????????????????????????????????????????????????????????????????????????????? + +OMP wait policy unknown, probably active + +--> HARDWARE TOPOLOGY <-- + +Total shared memory nodes : 8 +Total nodes with atmos PEs : 8 +Total nodes with IO PEs : 0 +Max PEs in a node : 64 + +--> AFFINITY REPORT (short form) <-- + +Cores in a node: 256 + +Cores available to each thread across PEs: +Mean: 1.00 +Minimum: 1 +Maximum: 1 + +Running Atmospheric code as pe 0 +MPPIO_File_Utils: Initialised file utils using unit 10 +Opening history file: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.xhist +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.xhist +FILE_MANAGER: : Unit : 13 (fortran) +Contents of namelist nlcfiles +alabcin1 = +alabcin2 = +astart = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/testia.astart +atmanl = unset +iau_inc = +obs01 = +obs02 = +obs03 = +obs04 = +obs05 = +rp2_seed = unset +streqlog = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.stash +- - - - - - end of namelist - - - - - - +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm1979feb +FILE_MANAGER: : id : pp130 +FILE_MANAGER: : Unit : 11 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa1979feb +FILE_MANAGER: : id : pp0 +FILE_MANAGER: : Unit : 12 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pb1979jan +FILE_MANAGER: : id : pp1 +FILE_MANAGER: : Unit : 13 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk1979feb +FILE_MANAGER: : id : pp10 +FILE_MANAGER: : Unit : 14 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl1979feb +FILE_MANAGER: : id : pp11 +FILE_MANAGER: : Unit : 15 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p11979feb +FILE_MANAGER: : id : pp112 +FILE_MANAGER: : Unit : 16 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p21979feb +FILE_MANAGER: : id : pp113 +FILE_MANAGER: : Unit : 17 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p31979feb +FILE_MANAGER: : id : pp114 +FILE_MANAGER: : Unit : 18 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p41979feb +FILE_MANAGER: : id : pp115 +FILE_MANAGER: : Unit : 19 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p51979feb +FILE_MANAGER: : id : pp116 +FILE_MANAGER: : Unit : 20 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p61979feb +FILE_MANAGER: : id : pp117 +FILE_MANAGER: : Unit : 21 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p71979feb +FILE_MANAGER: : id : pp118 +FILE_MANAGER: : Unit : 22 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p81979feb +FILE_MANAGER: : id : pp119 +FILE_MANAGER: : Unit : 23 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn1979feb +FILE_MANAGER: : id : pp12 +FILE_MANAGER: : Unit : 24 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p91979feb +FILE_MANAGER: : id : pp120 +FILE_MANAGER: : Unit : 25 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt1979feb +FILE_MANAGER: : id : pp121 +FILE_MANAGER: : Unit : 26 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu1979feb +FILE_MANAGER: : id : pp122 +FILE_MANAGER: : Unit : 27 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv1979feb +FILE_MANAGER: : id : pp123 +FILE_MANAGER: : Unit : 28 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pc1979jan +FILE_MANAGER: : id : pp2 +FILE_MANAGER: : Unit : 29 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd1979feb +FILE_MANAGER: : id : pp3 +FILE_MANAGER: : Unit : 30 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe1979feb +FILE_MANAGER: : id : pp4 +FILE_MANAGER: : Unit : 31 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pf1979jan +FILE_MANAGER: : id : pp5 +FILE_MANAGER: : Unit : 32 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pg1979jan +FILE_MANAGER: : id : pp6 +FILE_MANAGER: : Unit : 33 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph1979feb +FILE_MANAGER: : id : pp7 +FILE_MANAGER: : Unit : 34 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pi1979jan +FILE_MANAGER: : id : pp8 +FILE_MANAGER: : Unit : 35 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pj1979jan +FILE_MANAGER: : id : pp9 +FILE_MANAGER: : Unit : 36 (portio) +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz1979feb +FILE_MANAGER: : id : ppz_ozone +FILE_MANAGER: : Unit : 37 (portio) +FILE_MANAGER: Released : Unit : 13 (fortran) +Contents of namelist nlstcall +model_basis_time(1) = 1979 +model_basis_time(2) = 1 +model_basis_time(3) = 1 +model_basis_time(4) = 0 +model_basis_time(5) = 0 +model_basis_time(6) = 0 +ancil_reftime(1) = 1979 +ancil_reftime(2) = 12 +ancil_reftime(3) = 1 +ancil_reftime(4) = 0 +ancil_reftime(5) = 0 +ancil_reftime(6) = 0 +run_target_end(1) = 0 +run_target_end(2) = 0 +run_target_end(3) = 90 +run_target_end(4) = 0 +run_target_end(5) = 0 +run_target_end(6) = 0 +lclimrealyr = T +ltimer = T +model_analysis_mins = 0 +num_albcs = 0 +albc2_starttime_mins = -32768 +lcal360 = F +ltimers_user = F +l_nrun_as_crun = F +lstashdumptimer = F +- - - - - - end of namelist - - - - - - + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -10 +? Warning from routine: check_configid +? Warning message: +? itab is set to missing data, pp_head(LBEXP) will be set to zero +? Warning from processor: 0 +? Warning number: 1 +???????????????????????????????????????????????????????????????????????????????? + +Contents of namelist ancilcta +l_sstanom = F +l_sstanom_clim = T +l_amipii_ice_processing = T +l_snow_assim = F +use_lookup_dates_anc_time_interp = F +nancil_lookupsa = 300000 +- - - - - - end of namelist - - - - - - + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -10 +? Warning from routine: GET_ENV_VAR +? Warning message: Environment variable FASTRUN is not set. +? Warning from processor: 0 +? Warning number: 2 +???????????????????????????????????????????????????????????????????????????????? + +******************** READLSTA: Atmosphere run-time constants ******************* +Contents of namelist temp_fixes +l_fix_conserv = T +l_fix_arcl_eg_levs = T +l_pc2_homog_turb_q_neg = T +l_methox_fix = T +l_stph_rhcrit_unbias = T +l_eg_damp_height_lid = T +l_rm_hardwire_gas360 = T +l_fix_conv_precip_evap = T +l_fix_ukca_impscav = T +l_fix_rp_shock_amp = T +l_fix_dyndiag = T +l_fix_riming = T +l_fix_zh = T +l_fix_ccb_cct = T +l_fix_nacl_density = T +l_fix_iau_rim_density = T +l_fix_rcf_mlsnow_icefreemax = T +l_fix_conv_diags_var = T +l_fix_lsp_incs_to_spt = T +l_fix_ec_gen_hgt = T +l_fix_improve_drydepT +l_fix_drydep_so2_waterT +l_fix_ukca_h2dd_xT +l_fix_neg_pvol_watT +l_fix_ukca_h2so4_ystoreT +l_fix_pc2_cnv_mix_phase = T +l_fix_tidy_rainfracs = T +l_fix_incloud_qcf = T +l_fix_mcr_frac_ice = T +l_fix_ukca_offox_h2o_fac = F +l_fix_ukca_cloud_frac = T +l_fix_gr_autoc = T +l_fix_ukca_activate_vert_rep = T +l_fix_ukca_activate_pdf = T +l_fix_true_latlon = T +l_use_q1p5m_in_cape_diag = T +i_fix_mphys_drop_settle =2 +l_pc2_checks_sdfix = T +l_improve_cv_cons = T +l_improve_aero_drydep = F +l_enforce_f03_compliance = T +l_fix_ukca_hygroscopicities = F +l_fix_ukca_water_content = F +l_fix_level_indexing_bimodal =F +- - - - - - end of namelist - - - - - - +Contents of namelist jules_temp_fixes +l_dtcanfix = T +ctile_orog_fix = 2 +l_fix_ustar_dust = T +l_fix_alb_ice_thick = T +l_fix_lake_ice_temperatures = T +l_fix_albsnow_ts = T +l_fix_wind_snow = T +l_fix_moruses_roof_rad_coupling = T +l_fix_osa_chloro = T +l_accurate_rho = T +l_fix_snow_frac = F +l_fix_neg_snow = F +l_fix_improve_drydep = F +l_fix_ukca_h2dd_x = F +l_fix_drydep_so2_water = F +- - - - - - end of namelist - - - - - - + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: WARN_TEMP_FIXES +? Warning message: +? Model run excludes a change from ticket #5118 as +? l_fix_ukca_offox_h2o_fac=.FALSE. +? This means that water vapour will not be in vmr when +? using UKCA Offline-Oxidants. +? Warning from processor: 0 +? Warning number: 3 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: WARN_TEMP_FIXES +? Warning message: Model run excludes a change from ticket #6088 as +? l_improve_aero_drydep = .FALSE. +? This means the incorrect roughness length is being used in the +? UKCA aerosol dry deposition, as well as a possible mismatch in +? surface types seen by the scheme +? Warning from processor: 0 +? Warning number: 4 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: WARN_TEMP_FIXES +? Warning message: Model run excludes a change from ticket #6174 as +? l_fix_ukca_hygroscopicities = .FALSE. +? This means hygroscopicities used in aerosol activation will be +? outdated and, if UKCA-ACTIVATE is used, incorrectly averaged +? across the different composition types if more than one +? soluble species is used in a given mode. +? These errors affect both UKCA and GLOMAP-CLIM runs. +? Warning from processor: 0 +? Warning number: 5 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: WARN_TEMP_FIXES +? Warning message: Model run excludes a change from ticket #7634 as +? l_fix_ukca_water_content = .FALSE. +? This means that aerosol water content values will be +? incorrect. +? These errors affect both UKCA and GLOMAP-CLIM runs. +? Warning from processor: 0 +? Warning number: 6 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: WARN_TEMP_FIXES +? Warning message: Run excludes a change from ticket #7232 as +? l_fix_level_indexing_bimodal = .FALSE. +? This means that the correct indexing supplying pressure +? levels to the bimodal cloud scheme will not be applied +? meaning that the lowest level will be duplicated in error. +? +? Warning from processor: 0 +? Warning number: 7 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: WARN_JULES_TEMP_FIXES +? Warning message: +? jules:#1279 fix to remove persistent small snow amounts +? when using the frac_snow_subl_melt=1 option is not enabled: +? l_fix_snow_frac = .FALSE. +? Warning from processor: 0 +? Warning number: 8 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: WARN_JULES_TEMP_FIXES +? Warning message: +? jules:#1396 fix to remove correct the melting calculation +? that can result in negative snow amounts is not enabled: +? l_fix_neg_snow = .FALSE. +? Warning from processor: 0 +? Warning number: 9 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: WARN_JULES_TEMP_FIXES +? Warning message: +? Model run excludes a change from ticket um:#1250 as +? l_fix_improve_drydep=.FALSE. +? This will mean that dry deposition velocities are set to null +? for HCl, HOCl, HBr, HOBr, H2SO4, MeOH and Sec_Org and that dry +? deposition velocities for 9 tiles are inconsistent with 13/17/27 tiles. +? Warning from processor: 0 +? Warning number: 10 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: WARN_JULES_TEMP_FIXES +? Warning message: +? Model run excludes a change from ticket um:#5651, +? l_fix_drydep_so2_water=.FALSE. +? This will mean that the surface resistance of water when +? calculating the dry deposition of SO2 is too high for 13, 17 +? and 27 tiles. +? Warning from processor: 0 +? Warning number: 11 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: WARN_JULES_TEMP_FIXES +? Warning message: +? Model run excludes a change from ticket um:#4157 as +? l_fix_ukca_h2dd_x=.FALSE. . +? This will mean that the wrong element is used for h2dd_c & h2dd_m. +? Warning from processor: 0 +? Warning number: 12 +???????????????????????????????????????????????????????????????????????????????? + +Contents of namelist carbon_options +i_co2_opt = 2 +l_co2_emits = F +- - - - - - end of namelist - - - - - - +Contents of namelist coupling_control +l_oasis = F +l_oasis_timers = F +oasis_couple_freq_ao = -32768-32768 +oasis_couple_freq_oa = -32768-32768 +oasis_couple_freq_aj = -32768-32768 +oasis_couple_freq_ja = -32768-32768 +oasis_couple_freq_aj_stats = -32768-32768 +oasis_couple_freq_ja_stats = -32768-32768 +oasis_couple_freq_aw = -32768-32768 +oasis_couple_freq_wa = -32768-32768 +l_oasis_ocean = F +l_oasis_wave = F +l_oasis_obgc = F +l_oasis_icecalve = F +l_oasis_sstperts = F +hi_min = -32768.000 +Contents of namelist model_domain +model_type = 1 +l_regular = T +l_cartesian = F +- - - - - - end of namelist - - - - - - +Contents of namelist planet_constants +i_planet= 3 +i_eqt= 1 +planet_t_intrinsic= -1.0737418E+09 +planet_albedo= -1.0737418E+09 +planet_emissivity= -1.0737418E+09 +planet_aerosol_mmr= -1.0737418E+09 +solar_zenith_angle= -1.0737418E+09 +solar_azimuth_angle= -1.0737418E+09 +planet_radius= 6.3712290E+06 +planet_epoch= -1.0737418E+09 +planet_e= -1.0737418E+09 +planet_de= -1.0737418E+09 +planet_lph= -1.0737418E+09 +planet_dlph= -1.0737418E+09 +planet_oblq= -1.0737418E+09 +planet_doblq= -1.0737418E+09 +planet_a= -1.0737418E+09 +planet_da= -1.0737418E+09 +planet_M= -1.0737418E+09 +planet_dM= -1.0737418E+09 +planet_ha= -1.0737418E+09 +planet_dha= 6.2831853E+00 +planet_obs_lon= 0.0000000E+00 +planet_obs_lat= 0.0000000E+00 +sc= 1.3610000E+03 +g= 9.8066500E+00 +r= 2.8705000E+02 +cp= 1.0050000E+03 +pref= 1.0000000E+05 +sclht= 6.8000000E+03 +lapse= 6.5000000E-03 +omega= 7.2921160E-05 +l_planet_orbit= F +l_set_planet_rotation= F +l_planet_g= F +l_planet_grey_surface= F +l_planet_intrinsic_flux = F +l_planet_aerosol= F +l_fix_solang= F +l_time_mean_solar_irradiance= F +- - - - - - end of namelist - - - - - - +Contents of namelist run_dust +us_am = 1.45000 +sm_corr = 0.50000 +horiz_d = 2.25000 +l_fix_size_dist = F +dust_veg_emiss = 1 +l_twobin_dust = F +l_dust_div1_lbc = F +l_dust_div2_lbc = F +l_dust_div3_lbc = F +l_dust_div4_lbc = F +l_dust_div5_lbc = F +l_dust_div6_lbc = F +l_dust_clay_as_max = F +l_dust_emp_sc = F +pwsdiag_sfc_em = 0.0000 +dust_bl_mixfac = 1.0000 +- - - - - - end of namelist - - - - - - +Contents of namelist Run_Track +l_hoskins = T +nbot_850 = 6 +ntop_850 = 42 +ntop_tc = 63 +nlevs_avg = 3 +sm = 1.0000E-01 +- - - - - - end of namelist - - - - - - +Contents of namelist run_glomap_aeroclim +l_glomap_mode_clim = F +l_glomap_clim_aie1 = F +l_glomap_clim_aie2 = F +l_glomap_clim_radaer = F +i_glomap_clim_tune_bc = -32768 +l_glomap_clim_radaer_sustrat = F +i_glomap_clim_setup = -32768 +i_glomap_clim_nwbins = -32768 +i_glomap_clim_activation_scheme = -32768 +gclmaclw = gclmaclw is unset +gclmacsw = gclmacsw is unset +gclmanlw = gclmanlw is unset +gclmansw = gclmansw is unset +gclmcrlw = gclmcrlw is unset +gclmcrsw = gclmcrsw is unset +gclmcnlw = gclmcnlw is unset +gclmcnsw = gclmcnsw is unset +gclmsulw = gclmsulw is unset +gclmsusw = gclmsusw is unset +gclmprec = gclmprec is unset +- - - - - - end of namelist - - - - - - +Contents of namelist run_ukca +l_ukca = T +l_ukca_aie1 = T +l_ukca_aie2 = T +i_ukca_chem = 54 +l_ukca_chem_aero = T +i_ukca_photol = 0 +l_ukca_mode = T +l_ukca_dust = F +l_ukca_qch4inter = F +l_ukca_emsdrvn_ch4 = F +l_ukca_het_psc = F +l_ukca_limit_nat = F +l_ukca_sa_clim = F +l_ukca_h2o_feedback = F +l_ukca_rado3 = F +l_ukca_radch4 = F +l_ukca_radn2o = F +l_ukca_radf11 = F +l_ukca_radf12 = F +l_ukca_radf113 = F +l_ukca_radf22 = F +l_ukca_radaer = T +i_ukca_tune_bc = 1 +l_ukca_radaer_prescribe_ssa = F +l_ukca_intdd = T +l_ukca_ddepo3_ocean = F +l_ukca_trophet = F +l_ukca_prescribech4 = F +l_ukca_set_trace_gases = F +l_ukca_use_background_aerosol = F +i_ukca_hetconfig = 0 +i_ukca_topboundary = 1 +l_ukca_asad_full = F +l_ukca_linox_scaling = F +i_ukca_light_param = 1 +l_ukca_debug_asad = F +l_ukca_ro2_ntp = F +l_ukca_ro2_perm = F +l_ukca_intph = F +ph_fit_coeff_a = -0.107374E+10 +ph_fit_coeff_b = -0.107374E+10 +ph_fit_intercept = -0.107374E+10 +l_ukca_primsu = T +l_ukca_primss = T +i_primss_method = 2 +l_ukca_primbcoc = T +l_ukca_prim_moc = T +l_ukca_primdu = F +l_ukca_dry_dep_so2wet = T +l_bcoc_ff = T +l_bcoc_bf = T +l_bcoc_bm = T +l_ukca_fine_no3_prod = F +l_ukca_coarse_no3_prod = F +l_no3_prod_in_aero_step = F +l_dust_slinn_impc_scav = F +hno3_uptake_coeff = -0.107374E+10 +l_dust_slinn_impc_scav = F +l_mode_bhn_on = T +l_mode_bln_on = F +i_ukca_activation_scheme = 1 +l_ukca_sfix = F +i_mode_setup = 2 +i_mode_nzts = 15 +i_mode_bln_param_method = 1 +mode_parfrac = 0.250000E+01 +l_ukca_scale_biom_aer_ems = T +biom_aer_ems_scaling = 0.200000E+01 +l_ukca_scale_soa_yield_mt = T +soa_yield_scaling_mt = 0.200000E+01 +l_ukca_scale_soa_yield_isop = F +soa_yield_scaling_isop = -0.107374E+10 +mode_incld_so2_rfrac = 0.250000E+00 +mode_activation_dryr = 0.375000E+02 +chem_timestep = 3600 +dts0 = 300 +nit = 8 +nrsteps = 45 +jvspec_dir = jvspec dir is unset +jvspec_file = jvspec file is unset +jvscat_file = jvscat file is unset +jvsolar_file = jvsolar file is unset +phot2d_dir = phot2d dir is unset +fastjx_numwl = -32768 +fastjx_mode = -32768 +fastjx_prescutoff = -0.107374E+10 +dir_strat_aer = dir_strat_aer is unset +file_strat_aer = file_strat_aer is unset +l_ukca_so2ems_plumeria = F +file_volc_so2 = file_volc_so2 is unset +ukca_MeBrmmr = -0.107374E+10 +ukca_MeClmmr = -0.107374E+10 +ukca_CH2Br2mmr = -0.107374E+10 +ukca_H2mmr = -0.107374E+10 +ukca_N2mmr = -0.107374E+10 +ukca_CFC115mmr = -0.107374E+10 +ukca_CCl4mmr = -0.107374E+10 +ukca_MeCCl3mmr = -0.107374E+10 +ukca_HCFC141bmmr = -0.107374E+10 +ukca_HCFC142bmmr = -0.107374E+10 +ukca_H1211mmr = -0.107374E+10 +ukca_H1202mmr = -0.107374E+10 +ukca_H1301mmr = -0.107374E+10 +ukca_H2402mmr = -0.107374E+10 +ukca_COSmmr = -0.107374E+10 +i_ukca_scenario = -32768 +ukca_RCPdir = ukca_RCPdir is unset +ukca_RCPfile = ukca_RCPfile is unset +i_ukca_conserve_method = 2 +i_ukca_hiorder_scheme = 0 +l_ukca_src_in_conservation = T +ukca_em_dir = +ukca_em_files( 1) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_BC_biofuel.nc +ukca_em_files( 2) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_BC_fossil.nc +ukca_em_files( 3) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_DMS.nc +ukca_em_files( 4) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_Monoterp.nc +ukca_em_files( 5) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_OC_biofuel.nc +ukca_em_files( 6) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_OC_fossil.nc +ukca_em_files( 7) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_SO2_high.nc +ukca_em_files( 8) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_SO2_low.nc +ukca_em_files( 9) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_SO2_nat.nc +ukca_em_files( 10) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_BC_biomass_high.nc +ukca_em_files( 11) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_BC_biomass_low.nc +ukca_em_files( 12) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_OC_biomass_high.nc +ukca_em_files( 13) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_OC_biomass_low.nc +ukca_offline_dir = +ukca_offline_files(1) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_oxid_clim_O3.nc +ukca_offline_files(2) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_oxid_clim_OH.nc +ukca_offline_files(3) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_oxid_clim_NO3.nc +ukca_offline_files(4) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_oxid_clim_H2O2.nc +ukca_offline_files(5) = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_oxid_clim_HO2.nc +ukca_radaer_dir = unset +ukca_radaer_lwabs_file = unset +ukca_radaer_lwext_file = unset +ukca_radaer_swabs_file = unset +ukca_radaer_swext_file = unset +tc_lbc_ukca +1 0 +2 0 +3 0 +4 0 +5 0 +6 0 +7 0 +8 0 +9 0 +10 0 +11 0 +12 0 +13 0 +14 0 +15 0 +16 0 +17 0 +18 0 +19 0 +20 0 +21 0 +22 0 +23 0 +24 0 +25 0 +26 0 +27 0 +28 0 +29 0 +30 0 +31 0 +32 0 +33 0 +34 0 +35 0 +36 0 +37 0 +38 0 +39 0 +40 0 +41 0 +42 0 +43 0 +44 0 +45 0 +46 0 +47 0 +48 0 +49 0 +50 0 +51 0 +52 0 +53 0 +54 0 +55 0 +56 0 +57 0 +58 0 +59 0 +60 0 +61 0 +62 0 +63 0 +64 0 +65 0 +66 0 +67 0 +68 0 +69 0 +70 0 +71 0 +72 0 +73 0 +74 0 +75 0 +76 0 +77 0 +78 0 +79 0 +80 0 +81 0 +82 0 +83 0 +84 0 +85 0 +86 0 +87 0 +88 0 +89 0 +90 0 +91 0 +92 0 +93 0 +94 0 +95 0 +96 0 +97 0 +98 0 +99 0 +100 0 +101 0 +102 0 +103 0 +104 0 +105 0 +106 0 +107 0 +108 0 +109 0 +110 0 +111 0 +112 0 +113 0 +114 0 +115 0 +116 0 +117 0 +118 0 +119 0 +120 0 +121 0 +122 0 +123 0 +124 0 +125 0 +126 0 +127 0 +128 0 +129 0 +130 0 +131 0 +132 0 +133 0 +134 0 +135 0 +136 0 +137 0 +138 0 +139 0 +140 0 +141 0 +142 0 +143 0 +144 0 +145 0 +146 0 +147 0 +148 0 +149 0 +150 0 +151 0 +152 0 +153 0 +154 0 +155 0 +156 0 +157 0 +158 0 +159 0 +160 0 +161 0 +162 0 +163 0 +164 0 +165 0 +166 0 +167 0 +168 0 +169 0 +170 0 +171 0 +172 0 +173 0 +174 0 +175 0 +176 0 +177 0 +178 0 +179 0 +180 0 +181 0 +182 0 +183 0 +184 0 +185 0 +186 0 +187 0 +188 0 +189 0 +190 0 +191 0 +192 0 +193 0 +194 0 +195 0 +196 0 +197 0 +198 0 +199 0 +200 0 +201 0 +202 0 +203 0 +204 0 +205 0 +206 0 +207 0 +208 0 +209 0 +210 0 +211 0 +212 0 +213 0 +214 0 +215 0 +216 0 +217 0 +218 0 +219 0 +220 0 +221 0 +222 0 +223 0 +224 0 +225 0 +226 0 +227 0 +228 0 +229 0 +230 0 +231 0 +232 0 +233 0 +234 0 +235 0 +236 0 +237 0 +238 0 +239 0 +240 0 +241 0 +242 0 +243 0 +244 0 +245 0 +246 0 +247 0 +248 0 +249 0 +250 0 +251 0 +252 0 +253 0 +254 0 +255 0 +256 0 +257 0 +258 0 +259 0 +260 0 +261 0 +262 0 +263 0 +264 0 +265 0 +266 0 +267 0 +268 0 +269 0 +270 0 +271 0 +272 0 +273 0 +274 0 +275 0 +276 0 +277 0 +278 0 +279 0 +280 0 +281 0 +282 0 +283 0 +284 0 +285 0 +286 0 +287 0 +288 0 +289 0 +290 0 +291 0 +292 0 +293 0 +294 0 +295 0 +296 0 +297 0 +298 0 +299 0 +300 0 +301 0 +302 0 +303 0 +304 0 +305 0 +306 0 +307 0 +308 0 +309 0 +310 0 +311 0 +312 0 +313 0 +314 0 +315 0 +316 0 +317 0 +318 0 +319 0 +320 0 +321 0 +322 0 +323 0 +324 0 +325 0 +326 0 +327 0 +328 0 +329 0 +330 0 +331 0 +332 0 +333 0 +334 0 +335 0 +336 0 +337 0 +338 0 +339 0 +340 0 +341 0 +342 0 +343 0 +344 0 +345 0 +346 0 +347 0 +348 0 +349 0 +350 0 +351 0 +352 0 +353 0 +354 0 +355 0 +356 0 +357 0 +358 0 +359 0 +360 0 +361 0 +362 0 +363 0 +364 0 +365 0 +366 0 +367 0 +368 0 +369 0 +370 0 +371 0 +372 0 +373 0 +374 0 +375 0 +376 0 +377 0 +378 0 +379 0 +380 0 +381 0 +382 0 +383 0 +384 0 +385 0 +386 0 +387 0 +388 0 +389 0 +390 0 +391 0 +392 0 +393 0 +394 0 +395 0 +396 0 +397 0 +398 0 +399 0 +400 0 +401 0 +402 0 +403 0 +404 0 +405 0 +406 0 +407 0 +408 0 +409 0 +410 0 +411 0 +412 0 +413 0 +414 0 +415 0 +416 0 +417 0 +418 0 +419 0 +420 0 +421 0 +422 0 +423 0 +424 0 +425 0 +426 0 +427 0 +428 0 +429 0 +430 0 +431 0 +432 0 +433 0 +434 0 +435 0 +436 0 +437 0 +438 0 +439 0 +440 0 +441 0 +442 0 +443 0 +444 0 +445 0 +446 0 +447 0 +448 0 +449 0 +450 0 +451 0 +452 0 +453 0 +454 0 +455 0 +456 0 +457 0 +458 0 +459 0 +460 0 +461 0 +462 0 +463 0 +464 0 +465 0 +466 0 +467 0 +468 0 +469 0 +470 0 +471 0 +472 0 +473 0 +474 0 +475 0 +476 0 +477 0 +478 0 +479 0 +480 0 +481 0 +482 0 +483 0 +484 0 +485 0 +486 0 +487 0 +488 0 +489 0 +490 0 +491 0 +492 0 +493 0 +494 0 +495 0 +496 0 +497 0 +498 0 +499 0 +i_ukca_dms_flux = 1 +l_ukca_ibvoc = F +L_ukca_ageair = T +l_ukca_classic_hetchem = F +l_ukca_ddep_lev1 = F +ukcaaclw = /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_ac_lw +ukcaacsw = /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_ac_sw +ukcaanlw = /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_an_lw +ukcaansw = /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_an_sw +ukcacrlw = /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_cr_lw +ukcacrsw = /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_cr_sw +ukcacnlw = /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_cn_lw +ukcacnsw = /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_cn_sw +ukcasulw = /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_su_lw +ukcasusw = /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_su_sw +ukcaprec = /common/internal/umdir/vn13.8/ctldata/spectral/ga7_1/RADAER_pcalc.ukca +lightnox_scale_fac = -1073741824.0000 +L_ukca_so2ems_expvolc= F +i_ukca_solcyc= 0 +i_ukca_solcyc_start_year= -32768 +l_ukca_scale_seadms_ems = T +seadms_ems_scaling = 1.5000 +l_ukca_scale_sea_salt_ems = T +sea_salt_ems_scaling = 1.4000 +marine_pom_ems_scaling = 1.4000 +l_ukca_quasinewton = F +i_ukca_quasinewton_start = -32768 +i_ukca_quasinewton_end = -32768 +i_ageair_reset_method = 1 +max_ageair_reset_level = 10 +max_ageair_reset_height= -1073741824.0000 +nerupt = -32768 +i_ukca_nwbins = 20 +l_ukca_inferno = F +l_ukca_inferno_ch4 = F +i_inferno_emi = -32768 +i_ukca_chem_version = 111 +l_environ_jo2 = F +l_environ_jo2b = F +l_ukca_scale_ppe = T +dry_depvel_so2_scaling = 1.0000 +anth_so2_ems_scaling = 1.0000 +dry_depvel_acc_scaling = 1.0000 +acc_cor_scav_scaling = 1.0000 +sigma_updraught_scaling = 1.0000 +bc_refrac_im_scaling = 1.0000 +- - - - - - end of namelist - - - - - - +Contents of namelist run_gwd +i_gwd_vn = 5 +kay_gwave = -1073741824.00 +gwd_frc = 4.54 +nsigma = 3.14 +gwd_fsat = 0.25 +gsharp = 1.67 +fbcd = 2.09 +l_smooth = T +scale_aware = F +middle = 0.42 +var = 0.18 +l_gw_heating = TTT +ussp_launch_factor = 1.3000 +wavelstar = 4300.0000 +l_gwd = T +l_use_ussp = T +i_ussp_vn = 1 +l_add_cgw = T +cgw_scale_factor = 0.8600 +i_moist = 1 +- - - - - - end of namelist - - - - - - +Successfully retrieved ens_member = 0 +Contents of namelist RUN_Vera +vera_scheme_flag = 0 +aerosol_source = 1 +seed_method = 1 +seed_constant = 19701219 +vera_config = 10 +n_rd = 16 +n_b0 = 4 +n_noise = 0 +am_background = 18.95600000 +rd_mode_scale = 1.00000000 +rd_sigma = 3.16227766 +rd_max = 3.16227766 +rd_min = 0.31622777 +b0_max = 1.00000000 +b0_min = 0.00000000 +b0_peak = 0.14000000 +initial_growth_guess = 1.1000 +tolerance = 0.000001000000 +rho_aerosol = 1700.00000000 +rho_air = 1.00000000 +rho_water = 1000.00000000 +radius0 = 0.000000110000 +n0 = 2000000000.00 +power = 0.166666666667 +switch_visbty = 0 +switch_q_total = 0 +rhcrit = 0.920000000000 +prob = 0.400000000000 +visbty_b0 = 0.140000000000 +liminal_contrast = 0.050000000000 +clear_air_vis = 100000.0000 +a0 = 0.0000000012000000 +geometric_scattering = 0 +visbty_scattering = 0 +switch_blumel = 1 +wavelength_blumel = 0.0000005500000000 +upper_bound_normal = 1.00000000 +lower_bound_normal = -1.00000000 +width_p = 0.00000000 +bias_p = 0.00000000 +width_t = 0.10000000 +bias_t = 0.00000000 +width_q = 0.01000000 +bias_q = 0.00000000 +width_qcl = 0.00000000 +bias_qcl = 0.00000000 +width_am = 0.00000000 +bias_am = 0.00000000 +- - - - - - end of namelist - - - - - - +Contents of namelist run_murk +l_murk = F +l_murk_advect = F +l_murk_source = F +murk_source_scale = -1073741824.0000 +m0_murk_scale = -1073741824.0000 +l_murk_lbc = F +l_murk_vis = F +krain_murk = -1073741824.000000 +ksnow_murk = -1073741824.000000 +- - - - - - end of namelist - - - - - - +Contents of namelist run_convection +i_convection_vn = 6 +l_mom = T +l_fix_udfactor = F +l_snow_rain = F +l_eman_dd = F +l_cloud_deep = T +l_rediagnosis = F +l_dcpl_cld4pc2 = F +l_anvil = T +l_murk_conv = F +l_safe_conv = T +l_ccrad = T +l_3d_cca = T +l_conv_hist = F +l_param_conv = T +l_cv_conserve_check = T +l_cmt_heating = T +l_conv_prog_dtheta = T +l_conv_prog_dq = T +l_conv_prog_flx = F +l_conv_prog_precip = T +adv_conv_prog_dtheta = F +adv_conv_prog_dq = F +adv_conv_prog_flx = F +l_prog_pert = F +l_jules_flux = T +l_ccp_blv = F +l_ccp_parcel_md = F +l_ccp_parcel_dp = F +l_ccp_trig = F +l_ccp_wind = F +l_ccp_seabreeze = F +l_reset_neg_delthvu = T +l_cvdiag_ctop_qmax = F +l_fcape = T +n_conv_calls = 2 +sh_pert_opt = 1 +md_pert_opt = 1 +dd_opt = 1 +deep_cmt_opt = 6 +mid_cmt_opt = 2 +termconv = 2 +adapt = 8 +fdet_opt = 2 +r_det = 0.64543362800000004 +tice = 263.14999999999998 +qstice = 3.50000000000000007E-3 +ent_fac_sh = 2.2531 +ent_fac_dp = 1. +ent_fac_md = 1. +ent_opt_dp = 7 +ent_opt_md = 6 +ent_dp_power = -1073741824. +ent_md_power = -1073741824. +efrac = 0.890 +max_pert_scale = -1073741824.000 +thpixs_mid = 0.762 +bl_cnv_mix = 1 +mid_cnv_pmin = 10000. +orig_mdet_fac = 1.4412 +amdet_fac = 3. +ccw_for_precip_opt = 4 +cnv_wat_load_opt = 0 +tv1_sd_opt = 2 +midtrig_opt = 2 +limit_pert_opt = 2 +icvdiag = 1 +plume_water_load = 0 +dil_plume_water_load = 0 +cvdiag_inv = 0 +cvdiag_sh_wtest = 2.00000000000000004E-2 +cldbase_opt_dp = 8 +cldbase_opt_md = 2 +cldbase_opt_sh = 0 +cape_bottom = 5 +cape_top = 50 +cape_timescale = 2090.0804899999998 +w_cape_limit = 0.40000000000000002 +cape_min = 0.5 +cape_ts_min = 1800.000 +cape_ts_max = 14400.000 +c_mass_sh = 0.0579 +cld_life_opt = -32768 +rad_cloud_decay_opt = 0 +cca_min = -1073741824. +fixed_cld_life = -1073741824. +ud_factor = 1. +mparwtr = 1.07443199999999995E-3 +qlmin = 2.78708999999999977E-4 +fac_qsat = 0.34999999999999998 +eff_dcfl = 1. +eff_dcff = 3. +cpress_term = 0.930400E+00 +cca2d_sh_opt = 2 +cca_sh_knob = 0.40000000000000002 +ccw_sh_knob = 1. +cca2d_md_opt = 2 +cca_md_knob = 0.80000000000000004 +ccw_md_knob = 1. +cca2d_dp_opt = 2 +cca_dp_knob = 0.80000000000000004 +ccw_dp_knob = 1. +anvil_factor = 1. +tower_factor = 1. +anv_opt = 0 +t_melt_snow = 276.14999999999998 +iconv_shallow = 1 +iconv_mid = 1 +iconv_deep = 0 +iconv_congestus = 0 +tau_conv_prog_precip = 10800. +tau_conv_prog_dtheta = 2700.000 +tau_conv_prog_dq = 2700.000 +tau_conv_prog_flx = -1073741824.000 +prog_ent_grad = -0.577 +prog_ent_int = -1.198 +prog_ent_max = 1.636 +prog_ent_min = 0.699 +pr_melt_frz_opt = 2 +cnv_cold_pools = 0 +kappa_g = -0.107E+10 +kappa_h = -0.107E+10 +remain_max = -0.107E+10 +phi_ccp = -0.107E+10 +ccp_buoyancy = -0.107E+10 +ccp_nonelastic = -0.107E+10 +entrain_max = -0.107E+10 +entrain_min = -0.107E+10 +betts_tau = -1073741824.0 +betts_rh = -1073741824.00000 +betts_cld_evap_const = -1073741824.00000 +llcs_cloud_precip = -32768 +llcs_detrain_coef = -1073741824.00000 +llcs_rhcrit = -1073741824.00000 +llcs_timescale = -1073741824.0 +llcs_rain_frac = -1073741824.0 +- - - - - - end of namelist - - - - - - +Contents of namelist run_bl +i_bl_vn = 3 +sbl_op = 6 +cbl_op = 4 +cbl_mix_fac_nml = 0.0000E+00 +l_use_surf_in_ri = F +ritrans = 0.10000 +lambda_min_nml = 40.00000 +l_bl_mix_qcf = F +c_gust = 4.0000E+00 +l_reset_neg_q = F +local_fa = 1 +Keep_Ri_FA = 2 +sg_orog_mixing = 0 +fric_heating = 1 +calc_prob_of_vis = 0.40000 +z_nl_bl_levels = 6.0000E+03 +idyndiag = 3 +zhloc_depth_fac = -1073741824.00000 +flux_grad = 0 +entr_smooth_dec = 1 +l_use_sml_dsc_fixes = F +l_reset_dec_thres = T +l_new_kcloudtop = T +sc_diag_opt = 0 +kprof_cu = 2 +bl_res_inv = 1 +a_ent_shr_nml = 1.60000 +a_ent_2 = 0.05600 +blending_option = 0 +l_conv_tke = T +dzrad_disc_opt = 1 +num_sweeps_bflux = 3 +l_converge_ga = F +var_diags_opt = 1 +l_use_var_fixes = T +tke_diag_fac = 1.0000E+00 +i_interp_local = 2 +l_noice_in_turb = F +shallow_cu_maxtop = -1.0737E+09 +alpha_cd_in = 2.00000 1.50000 +puns = 1.00000 +pstb = 2.00000 +flux_bc_opt = 0 +i_impsolve_loc = 2 +bdy_tke = -32768 +tke_levels = -32768 +l_local_above_tkelvs = F +l_my_initialize = F +l_my_ini_zero = F +my_ini_dbdz_min = -1073741824.00000 +l_adv_turb_field = F +l_my_condense = F +l_shcu_buoy = F +shcu_levels = -32768 +wb_ng_max = -1073741824.00000 +my_lowest_pd_surf = -32768 +l_my_prod_adj = F +my_z_limit_elb = -1073741824.00000 +l_print_max_tke = F +tke_cm_mx = -1073741824.00000 +tke_cm_fa = -1073741824.00000 +tke_dlen = -32768 +fric_number = -32768 +l_3dtke = F +dec_thres_cloud = 0.09036 +near_neut_z_on_l = 1.60000 +blend_height_opt = 0 +h_blend_fix = -1.0737E+09 +ng_stress = 2 +- - - - - - end of namelist - - - - - - +Contents of namelist run_precip +l_warm_new = T +l_psd = T +l_autoconv_murk = F +l_use_sulphate_autoconv = F +l_use_seasalt_autoconv = F +l_use_ocff_autoconv = F +l_use_nitrate_autoconv = F +l_use_bmass_autoconv = F +x1r = 0.2200 +x2r = 2.2000 +c_r_correl = 0.4332 +aut_qc = 3.2261 +ai = 0.0193 +bi = 2.0000 +ar = 1.0000 +arc = -1073741824.0000 +ndrop_surf = -1073741824.0000 +z_surf = -1073741824.0000 +l_droplet_tpr = F +i_mcr_iter = 2 +niters_mp = -32768 +timestep_mp_in = 120 +l_mcr_arcl = F +arcl_inhom_sc = -1073741824.0000 +l_mcr_qrain =T +l_mcr_qrain_lbc =F +l_mcr_qgraup_lbc =F +l_rain =T +l_fsd_generator =T +l_subgrid_qcl_mp =T +l_ice_shape_parameter =F +l_progn_tnuc =T +mp_dz_scal =2.0000 +l_shape_rime =T +qclrime =0.0001 +a_ratio_fac =0.0517 +a_ratio_exp =-0.2707 +l_orograin =T +l_orogrime =T +l_orograin_block =T +fcrit =1.000000 +nsigmasf =2.828430 +nscalesf =1.000000 +wvarfac =-1073741824.000000 +heavy_rain_evap_fac =0.000000 +l_casim =F +casim_moments_choice =-32768 +l_het_freezing_rain =F +l_mphys_nonshallow =F +sediment_loc = 1 +casim_iopt_act =-32768 +l_mcr_precfrac = F +l_subgrid_graupel_frac = F +l_proc_fluxes = F +i_update_precfrac =-32768 +mp_czero =10.000000 +mp_tau_lim =1200.000000 +l_casim_warmstart = F +l_micro_in_rim = F +- - - - - - end of namelist - - - - - - +Contents of namelist run_radiation +cusack_aero = 1 +cusack_aero_hgt = -32768 +co2_mmr = 5.241E-4 +l_sec_var = F +inhom_cloud_sw = 0., 3*-1073741824. +inhom_cloud_lw = 0., 3*-1073741824. +dp_corr_strat = 35851.17136 +rad_mcica_sampling = 2 +rad_mcica_sigma = 0.75 +two_d_fsd_factor = 1.2684647179999999 +l_fsd_eff_res = T +dp_corr_conv = 0. +aero_bl_levels = -32768 +l_rad_use_clim_volc = F +clim_rad_volc_eruption_year = -32768 +clim_rad_volc_eruption_month = -32768 +clim_rad_volc_eruption_weight = -1073741824. +n2ommr = 0. +ch4mmr = 0. +c11mmr = 0. +c12mmr = 0. +o2mmr = 0.23139999999999999 +so2mmr = 0. +c113mmr = 0. +c114mmr = 0. +hcfc22mmr = 0. +hfc125mmr = 0. +hfc134ammr = 0. +l_use_sulpc_direct = F +l_use_sulpc_indirect_sw = F +l_use_sulpc_indirect_lw = F +l_use_seasalt_direct = F +l_use_seasalt_indirect = F +l_use_biogenic = F +l_use_ocff_direct = F +l_use_ocff_indirect = F +l_use_nitrate_direct = F +l_use_nitrate_indirect = F +l_consistent_cdnc = T +l_use_soot_direct = F +l_use_soot_indirect = F +l_use_bmass_direct = F +l_use_bmass_indirect = F +l_use_dust = T +l_use_arclbiom = F +l_use_arclblck = F +l_use_arcldlta = F +l_use_arcldust = F +l_use_arclocff = F +l_use_arclsslt = F +l_use_arclsulp = F +l_use_cariolle = F +l_bs1999_abundances = F +l_hydrostatic_mass = T +l_moist_heat_capacity = F +l_extra_top = F +l_use_liu_spec = T +aparam = 9.00797779999999992E-2 +bparam = -0.13828990099999999 +l_nlte_corr = F +- - - - - - end of namelist - - - - - - +Contents of namelist run_cloud +For Reference: no. of rhcrit inputs = 85 +lev 1-8 rhcrit=0.92000 0.91800 0.91600 0.91200 0.90800 0.90300 0.90000 0.90000 +lev 9-16 rhcrit=0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 +lev 17-24 rhcrit=0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 +lev 25-32 rhcrit=0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 +lev 33-40 rhcrit=0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 +lev 41-48 rhcrit=0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 +lev 49-56 rhcrit=0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 +lev 57-64 rhcrit=0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 +lev 65-72 rhcrit=0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 +lev 73-80 rhcrit=0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 0.90000 +lev 81-85 rhcrit=0.90000 0.90000 0.90000 0.90000 0.90000 +i_eacf = -32768 +forced_cu = 2 +forced_cu_fac = 0.5000 +cloud_pc2_tol = 5.000E-03 +cloud_pc2_tol_2 = 1.000E-03 +dbsdtbs_turb_0 = 0.0006 +falliceshear_method = 2 +l_ensure_min_in_cloud_qcf = F +l_pc2_check_init = T +i_pc2_conv_coupling = 3 +i_pc2_erosion_method = 3 +l_micro_eros = F +starticeTKelvin = 263.1500 +alliceTdegC = -20.0000 +cff_spread_rate = 0.0000 +ice_width = 0.0200 +turb_var_fac_bm = 1.0000 +ent_coef_bm = -1073741824.0000 +max_sigmas = 3.0000 +min_sigx_ft = 0.0000 +i_cld_area = 0 +i_cld_vn = 2 +l_pc2_lbc = F +i_rhcpt = 2 +l_add_cca_to_mcica = T +l_od_cld_filter = T +tau_thresh = 0.0100 +ez_max_bm = 400.0000 +l_ceil_cld_filter = F +l_sharpen_cbh_diags = F +l_subgrid_qv = T +l_pc2_sl_advection = F +l_pc2_homog_conv_pressure = F +l_pc2_implicit_erosion = T +l_cloud_call_b4_conv = F +i_pc2_homog_g_method = 1 +i_pc2_checks_cld_frac_method = 2 +ice_fraction_method = 1 +i_pc2_init_method = 2 +i_pc2_init_logic = 1 +i_bm_ez_opt = 2 +l_bm_sigma_s_grad = F +l_bm_tweaks = F +- - - - - - end of namelist - - - - - - +Contents of namelist run_aerosol +l_sulpc_so2 = F +l_so2_surfem = F +l_so2_hilem = F +l_so2_natem = F +l_so2_lbc = F +l_sulpc_dms = F +l_dms_em = F +l_dms_em_inter = F +i_dms_flux = -32768 +l_sulpc_ozone = F +l_sulpc_online_oxidants = F +l_sulpc_nh3 = F +l_nh3_em = F +l_sulpc_so2_o3_nonbuffered=F +l_soot = F +l_soot_surem = F +l_soot_hilem = F +l_biomass = F +l_bmass_surem = F +l_bmass_hilem = F +l_ocff = F +l_ocff_surem = F +l_ocff_hilem = F +l_nitrate = F +l_use_sulphate_sulpc = F +l_use_nitrate_sulpc = F +l_use_seasalt_sulpc = F +l_use_seasalt_pm = F +l_temporal_emi = F +l_use_bmass_sulpc = F +l_use_ocff_sulpc = F +so2_high_level = -32768 +soot_high_level = -32768 +bMass_high_level_1 = -32768 +bMass_high_level_2 = -32768 +ocff_high_level = -32768 +l_so2_lbc = F +l_dms_lbc = F +l_so4_aitken_lbc = F +l_so4_accu_lbc = F +l_so4_diss_lbc = F +l_nh3_lbc = F +l_soot_new_lbc = F +l_soot_agd_lbc = F +l_soot_cld_lbc = F +l_bmass_new_lbc = F +l_bmass_agd_lbc = F +l_bmass_cld_lbc = F +l_ocff_new_lbc = F +l_ocff_agd_lbc = F +l_ocff_cld_lbc = F +l_nitr_acc_lbc = F +l_nitr_diss_lbc = F +l_bmass_hilem_variable = F +- - - - - - end of namelist - - - - - - +Contents of namelist lam_config +delta_lon = -1073741824.000000 +delta_lat = -1073741824.000000 +frstlata = -1073741824.000000 +frstlona = -1073741824.000000 +polelata = -1073741824.000000 +polelona = -1073741824.000000 +- - - - - - end of namelist - - - - - - +Contents of namelist run_ozone +zon_av_ozone = F +Contents of namelist run_free_tracers +l_free_tracer = F +l_free_tracer_lbc = F +i_free_tracer = 150*0 +i_free_tracer_lbc = 150*0 +l_bl_tracer_mix = F +l_pv_tracer = F +l_pv_dyn = F +l_pv_tr_rad = F +l_pv_tr_bl = F +l_pv_tr_conv = F +l_calc_pv_full = F +l_theta_tracer = F +l_theta_tr_rad = F +l_theta_tr_bl = F +l_wtrac = F +l_h218o_wtrac = F +l_hdo_wtrac = F +n_norm_wtrac = -32768 +n_noniso_wtrac = -32768 +n_noniso_wtrac_jls = -32768 +qlimit_h218o_wtrac = -0.10737E+10 +qlimit_hdo_wtrac = -0.10737E+10 +- - - - - - end of namelist - - - - - - +Contents of namelist run_eng_corr +l_emcorr = T +lmass_corr = F +lemq_print = T +a_energyhours = 24 +- - - - - - end of namelist - - - - - - +Contents of namelist run_calc_pmsl +npmsl_height = 500.00 +l_pmsl_sor = F +- - - - - - end of namelist - - - - - - +Contents of namelist gen_phys_inputs +l_use_methox= T +l_mr_physics = F +l_leads_temp_prog = F +l_check_moist_inc = F +l_vol_interp_rho = F +- - - - - - end of namelist - - - - - - +Contents of namelist lbc_options +l_lateral_boundary = F +rimweightsa = 30*-1073741824. +l_old_lbc_file = F +nrim_timesa = -32768 +- - - - - - end of namelist - - - - - - +Contents of namelist run_nudging +ndg_relax_uvalue = -0.1074E+10 +ndg_relax_vvalue = -0.1074E+10 +ndg_relax_tvalue = -0.1074E+10 +ndg_lev_bottom = -32768 +ndg_lev_top = -32768 +ndg_on_lev_bottom = -32768 +ndg_on_lev_top = -32768 +ndg_datapath = unset +ndg_hours_perdata = -32768 +ndg_analysis_source = -32768 +ndg_strat_fac = -.1074E+10 +l_nudging = F +ndg_filename_template = unset unset +l_nudge_subdomain = F +ndg_lon_min = -0.1074E+10 +ndg_lon_max = -0.1074E+10 +ndg_lat_min = -0.1074E+10 +ndg_lat_max = -0.1074E+10 +ndg_dampwidth = -0.1074E+10 +- - - - - - end of namelist - - - - - - +Contents of namelist run_dyn +polar_cap_rows = 0 +GCR_max_iterations = 999 +GCR_precon_option = 4 +GCR_tol = 1.00000000000000005E-4 +conserve_dry_mass = 3 +l_sl_bc_correction = F +l_dry_static_adjust = F +alpha_relax_type = 4 +eg_vert_damp_profile = 4 +eg_vert_damp_coeff = 5.0000000000E-02 +damp_height = -1073741824.000 +l_viscosity = F +horiz_viscosity = -1073741824.000 +vert_viscosity = -1073741824.000 +zlf_conservation_moist_option = 0 +zlf_conservation_tracers_option = 0 +zlf_conservation_theta_option = 0 +zlf_maximum_height = 0.300E+05 +zlf_maximum_height = 0.300E+05 +l_use_mg = T +semicoarsening = T +full_multigrid = F +relaxation_factor = 1.00000000 +relaxation_factor_fmg = 1.00000000 +mg_tolerance = 0.000100000000 +n_presmooth = 2 +n_postsmooth = 2 +n_presmooth_fine = 1 +n_postsmooth_fine = 1 +n_coarsesmooth = 4 +maxiter = 100 +maxlevel = 3 +norm_type = 1 +solver = 2 +coarsegrid_solver = 2 +solver_precision = 64 +l_tri_sor_vl = F +l_use_ib_method = F +l_ib_noslip = F +l_use_ib_mask = F +ib_filename = +ib_alpha = -1073741824.00000000 +ib_beta = -1073741824.00000000 +ib_damping = -1073741824.00000000 +- - - - - - end of namelist - - - - - - +Contents of namelist run_dyntest +L_dynamics_only = F +L_Backwards = F +L_hydrostatic_EG = F +L_exclude_Physics2 = F +L_perturb_IC_theta = F +L_dry = F +L_trap_uv = F +L_idealised_data = F +GCR_Diagnostics = 1 +lambda_p_end = -0.1073742E+10 +phi_p_end = -0.1073742E+10 +lambda_u_end = -0.1073742E+10 +phi_v_end = -0.1073742E+10 +dlambda_p_end = -0.1073742E+10 +dphi_p_end = -0.1073742E+10 +dlambda_u_end = -0.1073742E+10 +dphi_v_end = -0.1073742E+10 +lam_var = -32768 +phi_var = -32768 +var_ratio = -0.1073742E+10 +lam_ratio = -0.1073742E+10 +phi_ratio = -0.1073742E+10 +lam_frac = -0.1073742E+10 +phi_frac = -0.1073742E+10 +problem_number = 0 +IntRand_seed = -32768 +- - - - - - end of namelist - - - - - - +Contents of namelist run_sl +L_conserv = 5*F +L_mono = 5*F +L_high = 5*F +L_Ritchie_high = F +L_Ritchie_mono = F +high_order_scheme = 2*8, 2*1, 7 +monotone_scheme = 2*1, 2*0, 1 +monotone_vapour = -1 +Depart_scheme = 1 +L_conserve_tracers = T +L_priestley_correct_moist = T +L_priestley_correct_tracers= T +tr_priestley_opt = 2 +moist_priestley_opt = 2 +L_tr_src_in_conserve = T +L_moist_src_in_conserve = T +L_priestley_correct_thetav =T +L_fountain_buster =T +stag_dropoff = 1.2211E+00 +- - - - - - end of namelist - - - - - - +Contents of namelist run_diffusion +hdiffopt = 0 +pofil_opt = 0 +diffusion_order_thermo = 250*-32768 +diffusion_order_wind = 250*-32768 +diffusion_order_q = 250*-32768 +diffusion_coefficient_thermo = 250*-1073741824. +diffusion_coefficient_wind = 250*-1073741824. +diffusion_coefficient_q = 250*-1073741824. +diff_order_thermo = -32768 +diff_timescale_thermo = -32768 +diff_order_wind = -32768 +diff_timescale_wind = -32768 +horizontal_level = 0 +L_polar_filter = F +L_polar_filter_incs = F +l_qpos = T +qlimit = 1.00000000000000002E-8 +L_tardiff_q = F +w_conv_limit = -1073741824. +tardiffq_factor = -1073741824. +tardiffq_test = -32768 +tardiffq_start = -32768 +tardiffq_end = -32768 +L_subfilter_horiz = F +L_subfilter_vert = F +L_fullstress = F +hyd_mix_opt = -32768 +diff_factor = -1073741824. +mix_factor = -1073741824. +turb_startlev_horiz = -32768 +turb_endlev_horiz = -32768 +turb_startlev_vert = -32768 +turb_endlev_vert = -32768 +L_pftheta = F +L_pfuv = F +L_pfw = F +L_pfincs = F +L_pofil_hadgem2 = F +L_diff_incs = F +L_diff_thermo = F +L_diff_wind = F +L_diff_wind_ew_only = F +L_diff_w = F +L_pofil_new = F +L_diff_auto = F +diff_coeff_ref = -1073741824. +polar_cap = -1073741824. +scale_ratio = -1073741824. +ref_lat_deg = -1073741824. +max_sweeps = -32768 +L_upper_ramp = F +up_diff_scale = -1073741824. +top_diff = -1073741824. +top_filt_start = -32768 +top_filt_end = -32768 +L_sponge = F +sponge_power = -32768 +sponge_ew = -32768 +sponge_ns = -32768 +L_diag_print = T +L_diag_print_ops = F +L_print_pe = F +L_print_w = F +L_print_wmax = T +L_print_lapse = F +L_print_theta1 = T +L_print_div = F +L_diag_wind = F +L_print_shear = F +L_print_max_wind = F +L_diag_noise = F +L_diag_L2norms = F +L_diag_L2helm = F +norm_lev_start = 1 +norm_lev_end = 85 +first_norm_print = 1 +print_step = 1 +diag_interval = 1 +w_print_limit = 0. +L_Flush6 = T +l_leonard_term = F +leonard_kl = -1073741824. +- - - - - - end of namelist - - - - - - + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -100 +? Warning from routine: CHECK_RUN_DIFFUSION +? Warning message: +? cldbase_opt_sh set to sh_wstar_closure since +? Smagorinsky diffusion not chosen. +? Warning from processor: 0 +? Warning number: 13 +???????????????????????????????????????????????????????????????????????????????? + +Contents of namelist run_cosp +cosp_cloudsat_sim = T +cosp_lidar_sim = T +cosp_isccp_sim = T +cosp_misr_sim = F +cosp_modis_sim = T +cosp_rttov_sim = F +cosp_use_vgrid = T +cosp_sr_cloud = 0.500E+01 +- - - - - - end of namelist - - - - - - +Contents of namelist radfcdia +c2c_o2 = F +c2c_o3 = F +c2c_co2 = F +c2c_n2o = F +c2c_ch4 = F +c2c_cfc11 = F +c2c_cfc12 = F +c2c_c113 = F +c2c_hcfc22 = F +c2c_hfc125 = F +c2c_hfc134 = F +c2c_aerosol = F +c2c_sulpc_d = F +c2c_seas_d = F +c2c_soot_d = F +c2c_bmb_d = F +c2c_ocff_d = F +c2c_land_s = F +c2c_all = F +c2c_wmg = F +c2c_nitr_d = F +c2c_dust_d = F +c2c_biog_d = F +c2c_ukca_d = F +c2c_easy_d = F +co2_mmr_scl = -0.107374E+10 +co2_mmr_add = -0.107374E+10 +n2o_mmr_scl = -0.107374E+10 +n2o_mmr_add = -0.107374E+10 +ch4_mmr_scl = -0.107374E+10 +ch4_mmr_add = -0.107374E+10 +o2_mmr_scl = -0.107374E+10 +o2_mmr_add = -0.107374E+10 +cfc11_mmr_scl = -0.107374E+10 +cfc11_mmr_add = -0.107374E+10 +cfc12_mmr_scl = -0.107374E+10 +cfc12_mmr_add = -0.107374E+10 +cfc113_mmr_scl = -0.107374E+10 +cfc113_mmr_add = -0.107374E+10 +hcfc22_mmr_scl = -0.107374E+10 +hcfc22_mmr_add = -0.107374E+10 +hfc125_mmr_scl = -0.107374E+10 +hfc125_mmr_add = -0.107374E+10 +hfc134a_mmr_scl = -0.107374E+10 +hfc134a_mmr_add = -0.107374E+10 +- - - - - - end of namelist - - - - - - +Contents of namelist easyaerosol +l_easyaerosol_sw = T +l_easyaerosol_lw = T +l_easyaerosol_cdnc = F +l_easyaerosol_autoconv = F +l_easyaerosol_zonal = T +easyaerosol_dir = /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol +easyaerosol_files(1) = volc_aer_extinction_sw.nc +easyaerosol_files(2) = volc_aer_absorption_sw.nc +easyaerosol_files(3) = volc_aer_asymmetry_sw.nc +easyaerosol_files(4) = volc_aer_extinction_lw.nc +easyaerosol_files(5) = volc_aer_absorption_lw.nc +easyaerosol_files(6) = volc_aer_asymmetry_lw.nc +easyaerosol_files(7) = +- - - - - - end of namelist - - - - - - +Contents of namelist clmchfcg +L_ClmChFcg = T +L_Cts_Fcg_Rates = F +Clim_Fcg_Years_CO2 = 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, +Clim_Fcg_Years_CH4 = 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, +Clim_Fcg_Years_N2O = 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991, +Clim_Fcg_Years_CFC11 = 500*-32768 +Clim_Fcg_Years_CFC12 = 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 1991 +Clim_Fcg_Years_SO4 = 1000*-32768 +Clim_Fcg_Years_CFC113 = 500*-32768 +Clim_Fcg_Years_HCFC22 = 500*-32768 +Clim_Fcg_Years_HFC125 = 500*-32768 +Clim_Fcg_Years_HFC134A = 1849, 1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1871, 1872, 1873, 1874, 1875, 1876, 1877, 1878, 1879, 1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1988, 1989, 1990, 19 +Clim_Fcg_Years_CFC114 = 500*-32768 +Clim_Fcg_NYears_CO2 = 175 +Clim_Fcg_NYears_CH4 = 175 +Clim_Fcg_NYears_N2O = 175 +Clim_Fcg_NYears_CFC11 = 0 +Clim_Fcg_NYears_CFC12 = 175 +Clim_Fcg_NYears_SO4 = 0, -32768 +Clim_Fcg_NYears_CFC113 = 0 +Clim_Fcg_NYears_HCFC22 = 0 +Clim_Fcg_NYears_HFC125 = 0 +Clim_Fcg_NYears_HFC134A = 175 +Clim_Fcg_NYears_CFC114 = 0 +Clim_Fcg_Levls_CO2 = 4.31489999999999977E-4, 4.31689999999999982E-4, 4.31879999999999992E-4, 4.32079999999999997E-4, 4.32270000000000007E-4, 4.32460000000000017E-4, 4.32639999999999978E-4, 4.32819999999999993E-4, 4.33000000000000008E-4, 4.33180000000000023E-4, 4.33369999999999979E-4, 4.33559999999999989E-4, 4.33769999999999989E-4, 4.33979999999999989E-4, 4.34189999999999988E-4, 4.34409999999999983E-4, 4.34640000000000026E-4, 4.3488000000000001E-4, 4.35129999999999989E-4, 4.35400000000000012E-4, 4.35669999999999981E-4, 4.35940000000000004E-4, 4.36220000000000021E-4, 4.3650999999999998E-4, 4.36789999999999997E-4, 4.37070000000000015E-4, 4.37339999999999984E-4, 4.37620000000000001E-4, 4.37900000000000019E-4, 4.38210000000000021E-4, 4.38530000000000018E-4, 4.38879999999999999E-4, 4.39260000000000019E-4, 4.39670000000000024E-4, 4.40110000000000013E-4, 4.40559999999999997E-4, 4.41019999999999975E-4, 4.41499999999999998E-4, 4.4200000000000001E-4, 4.42530000000000007E-4, 4.4 +Clim_Fcg_Levls_CH4 = 4.40669999999999988E-7, 4.41030000000000026E-7, 4.4126999999999998E-7, 4.41509999999999988E-7, 4.41870000000000025E-7, 4.42339999999999976E-7, 4.42990000000000025E-7, 4.43820000000000013E-7, 4.44689999999999994E-7, 4.45650000000000023E-7, 4.46739999999999989E-7, 4.47920000000000003E-7, 4.49240000000000018E-7, 4.50590000000000013E-7, 4.52009999999999982E-7, 4.53630000000000019E-7, 4.55319999999999977E-7, 4.57080000000000014E-7, 4.5887999999999999E-7, 4.6041999999999999E-7, 4.61600000000000004E-7, 4.62630000000000007E-7, 4.63710000000000014E-7, 4.64759999999999987E-7, 4.65749999999999998E-7, 4.66719999999999986E-7, 4.67620000000000001E-7, 4.68460000000000001E-7, 4.69270000000000019E-7, 4.7E-7, 4.70679999999999977E-7, 4.71500000000000007E-7, 4.72490000000000018E-7, 4.73489999999999987E-7, 4.74509999999999979E-7, 4.75650000000000001E-7, 4.76930000000000023E-7, 4.78319999999999958E-7, 4.79730000000000022E-7, 4.81369999999999975E-7, 4.83440000000000046 +Clim_Fcg_Levls_N2O = 4.12189999999999987E-7, 4.1236999999999998E-7, 4.12550000000000025E-7, 4.12739999999999976E-7, 4.12929999999999979E-7, 4.13110000000000025E-7, 4.13299999999999975E-7, 4.13489999999999979E-7, 4.13679999999999983E-7, 4.13869999999999986E-7, 4.1405999999999999E-7, 4.14239999999999982E-7, 4.14429999999999986E-7, 4.14609999999999978E-7, 4.14780000000000012E-7, 4.14960000000000005E-7, 4.15129999999999986E-7, 4.15290000000000008E-7, 4.15459999999999989E-7, 4.15620000000000012E-7, 4.15770000000000023E-7, 4.15919999999999982E-7, 4.16059999999999981E-7, 4.16199999999999981E-7, 4.16349999999999993E-7, 4.16489999999999993E-7, 4.16640000000000004E-7, 4.16790000000000015E-7, 4.16940000000000026E-7, 4.17089999999999985E-7, 4.17250000000000007E-7, 4.17419999999999988E-7, 4.17590000000000022E-7, 4.17770000000000015E-7, 4.17960000000000018E-7, 4.1815999999999998E-7, 4.18359999999999995E-7, 4.18570000000000022E-7, 4.18790000000000007E-7, 4.19009999999999991E-7, 4.1 +Clim_Fcg_Levls_CFC11 = 175*-32768., 325*-1073741824. +Clim_Fcg_Levls_CFC12 = 52*3.44339999999999997E-11, 3.44459999999999992E-11, 3.44930000000000018E-11, 3.45889999999999981E-11, 3.47329999999999991E-11, 3.49249999999999983E-11, 3.51650000000000021E-11, 3.54529999999999977E-11, 3.579E-11, 3.61760000000000026E-11, 3.66099999999999969E-11, 3.70940000000000001E-11, 3.76279999999999992E-11, 3.82109999999999986E-11, 3.88440000000000005E-11, 3.95280000000000004E-11, 4.02629999999999984E-11, 4.10490000000000009E-11, 4.18869999999999971E-11, 4.27780000000000021E-11, 4.37210000000000008E-11, 4.47179999999999975E-11, 4.57700000000000007E-11, 4.68749999999999997E-11, 4.80360000000000009E-11, 4.9254E-11, 5.05269999999999991E-11, 5.18590000000000003E-11, 5.32490000000000014E-11, 5.46979999999999982E-11, 5.6205999999999997E-11, 5.77799999999999998E-11, 5.94250000000000042E-11, 6.11479999999999992E-11, 6.29490000000000041E-11, 6.48290000000000017E-11, 6.67910000000000049E-11, 6.88419999999999961E-11, 7.09840000000000053E-11, 7.3218999 +Clim_Fcg_Levls_SO4 = 175*-32768., 825*-1073741824. +Clim_Fcg_Levls_CFC113 = 175*-32768., 325*-1073741824. +Clim_Fcg_Levls_HCFC22 = 175*-32768., 325*-1073741824. +Clim_Fcg_Levls_HFC125 = 175*-32768., 325*-1073741824. +Clim_Fcg_Levls_HFC134A = 47*7.10910000000000056E-11, 2*7.10920000000000012E-11, 7.10940000000000054E-11, 7.10950000000000011E-11, 7.1098000000000001E-11, 7.11010000000000009E-11, 7.11049999999999964E-11, 7.11130000000000004E-11, 7.11210000000000044E-11, 7.11309999999999997E-11, 7.11429999999999993E-11, 7.11600000000000029E-11, 7.11780000000000023E-11, 7.11980000000000058E-11, 7.12280000000000047E-11, 7.12700000000000031E-11, 7.1315999999999997E-11, 7.1369999999999995E-11, 7.14300000000000056E-11, 7.14939999999999989E-11, 7.15710000000000003E-11, 7.16680000000000052E-11, 7.17780000000000054E-11, 7.18890000000000011E-11, 7.19960000000000014E-11, 7.2085999999999998E-11, 7.21530000000000041E-11, 7.22349999999999966E-11, 7.23580000000000049E-11, 7.25049999999999993E-11, 7.26610000000000063E-11, 7.2829E-11, 7.30190000000000014E-11, 7.32320000000000062E-11, 7.34550000000000064E-11, 7.36559999999999988E-11, 7.38079999999999973E-11, 7.39160000000000061E-11, 7.40180000000000023E +Clim_Fcg_Levls_CFC114 = 175*-32768., 325*-1073741824. +Clim_Fcg_Rates_CO2 = 175*-32768., 325*-1073741824. +Clim_Fcg_Rates_CH4 = 175*-32768., 325*-1073741824. +Clim_Fcg_Rates_N2O = 175*-32768., 325*-1073741824. +Clim_Fcg_Rates_CFC11 = 175*-32768., 325*-1073741824. +Clim_Fcg_Rates_CFC12 = 175*-32768., 325*-1073741824. +Clim_Fcg_Rates_SO4 = 175*-32768., 825*-1073741824. +Clim_Fcg_Rates_CFC113 = 175*-32768., 325*-1073741824. +Clim_Fcg_Rates_HCFC22 = 175*-32768., 325*-1073741824. +Clim_Fcg_Rates_HFC125 = 175*-32768., 325*-1073741824. +Clim_Fcg_Rates_HFC134A = 175*-32768., 325*-1073741824. +Clim_Fcg_Rates_CFC114 = 175*-32768., 325*-1073741824. +Contents of namelist acp +AC_ORDER = 182*-32768 +AC_OBS_TYPES = 182*-32768 +TIMEA = 182*-32768 +TIMEB = 182*-32768 +TGETOBA = 182*-32768 +TGETOBB = 182*-32768 +NPASS_RF = 0 +LAC_MES = F +OBS_FORMAT = -32768 +NO_OBS_FILES = -32768 +DIAG_RDOBS = -32768 +LHN_RANGE = -32768 +L_LHN = F +L_LHN_1A = F +L_LHN_SCALE = F +L_LHN_SEARCH = F +LHN_DIAG = F +EPSILON_LHN = -1073741824. +ALPHA_LHN = -1073741824. +RELAX_CF_LHN = -1073741824. +LHN_LIMIT = -1073741824. +L_VERIF_RANGE = F +L_LHN_LIMIT = F +L_LHN_FACT = F +L_LHN_FILT = F +FI_SCALE_LHN = -1073741824. +NPASS_RF_LHN = -32768 +REMOVE_NEG_LH = F +USE_CONV_IN_MOPS = F +a_assim_start_min = -32768 +a_assim_end_min = -32768 +- - - - - - end of namelist - - - - - - +Contents of namelist acdiag +LDIAGAC = F +LLDAC = 5*F +LRMS = F +LTEMP = F +LVERIF = F +- - - - - - end of namelist - - - - - - +Land surface model selected is JULES +Derived variables from jules_surface_types +ntype = 9 +nnpft = 5 +- - - - - - end of derived variables - - - - - - +Surface types present = 1 2 3 4 5 6 7 8 9 +Contents of namelist run_stochastic +l_skeb2 = T +l_rp2 = T +rp2_callfreq = 10800 +i_rp_scheme = 0 +rp2_decorr_ts = 2.1600E+05 +l_rp2_cycle_out = F +l_rp2_cycle_in = F +rp2_cycle_tm = -32768 +stph_n1 = 20 +stph_n2 = 60 +br = 2.7000E-02 +tot_backscat = 1.0000E-04 +tau_skeb = 2.0000E+04 +tau_spt = 2.0000E+04 +alphac = -1.0737E+09 +l_skeb2_psicdisp = T +l_skeb2_psisdisp = T +sdispfac = 2.0000E+00 +cdispfac = 1.0000E+00 +skeb2_sdisp = 7 +skeb2_cdisp = 4 +nsmooth = 3 +skeb2_toplev = 50 +skeb2_botlev = 2 +l_skeb2_velpot = T +ran_max = 1 +rhcrit_ref_level = 3 +l_skebsmooth_adv = T +l_skebprint = F +l_x_eq_sin_x = F +stphseed = 0 +m_ci_rp = 1.3930E+00 1.3930E+00 1.3930E+00 +x1r_rp = -1.0737E+09 -1.0737E+09 -1.0737E+09 +ndrop_surf_rp = -1.0737E+09 -1.0737E+09 -1.0737E+09 +rhcrit_max = 9.1600E-01 +rhcrit_min = 9.1600E-01 +par_mezcla_rp = 1.5861E-01 1.5861E-01 1.5861E-01 +g0_rp = 3.3012E+01 3.3012E+01 3.3012E+01 +charnock_max = 1.8000E-02 +charnock_min = 1.8000E-02 +lambda_min_rp = 4.2296E+01 4.2296E+01 4.2296E+01 +cbl_mix_fac_rp = -1.0737E+09 -1.0737E+09 -1.0737E+09 +cs_rp = -1.0737E+09 -1.0737E+09 -1.0737E+09 +zhloc_depth_fac_rp = -1.0737E+09 -1.0737E+09 -1.0737E+09 +ricrit_rp = 3.0292E-01 3.0292E-01 3.0292E-01 +a_ent_1_rp = 4.7038E-01 4.7038E-01 4.7038E-01 +a_ent_shr_rp = -1.0737E+09 +g1_rp = 1.7384E+00 1.7384E+00 1.7384E+00 +lai_mult_rp_max = -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 +lai_mult_rp_min = -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 +dz0v_dh_rp_max = -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 +dz0v_dh_rp = -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 +dz0v_dh_rp_min = -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 +z0hm_pft_rp_max = -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 +z0hm_pft_rp = -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 +z0hm_pft_rp_min = -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 -1.0737E+09 +l_skeb2_conv_disp_mod = T +i_pert_theta = 0 +i_pert_theta_type = -32768 +decorr_ts_pert_theta = -1.0737E+09 +mag_pert_theta = -1.0737E+09 +zmin_pert_theta = -1.0737E+09 +zmax_pert_theta = -1.0737E+09 +npts_pert_theta = -32768 +l_only_pert_near_edge = F +npts_pert_from_edge = -32768 +l_pert_all_points = F +l_pert_shape = F +l_spt = T +l_spt_rain = T +l_spt_rad = T +l_spt_gwd = T +l_spt_conv = T +l_spt_conv_mom = F +l_spt_cfl = T +l_spt_qcons = T +l_spt_mse = T +spt_toplev = 41 +spt_botlev = 15 +spt_bot_tap_lev = 9 +spt_top_tap_lev = 45 +nsmooth_spt = 3 +rain_std = 1.7300E+00 +rad_std = 1.7300E+00 +gwd_std = 1.5000E+00 +conv_std = 1.7300E+00 +sd_orog_thres = 5.0000E+02 +psif_orog_thres = 5.0000E-01 +- - - - - - end of namelist - - - - - - +Contents of namelist run_electric +electric_method =0 +storm_definition =-32768 +k1 =-1073741824.0000 +k2 =-1073741824.0000 +g1 =-1073741824.0000 +g2 =-1073741824.0000 +tiwp_thresh =-1073741824.0000 +gwp_thresh =-1073741824.0000 +l_cg_inferno =F +l_pr_update =F +- - - - - - end of namelist - - - - - - +Conserve UKCA with other tracers? T +Contents of namelist tuning_segments +bl_segment_size = 16 +gw_seg_size = 32 +ussp_seg_size = 32 +precip_segment_size = 32 +a_convect_seg_size = 16 +a_convect_trac_seg_size = 16 +a_convect_segments = -32768 +l_conv_1_seg_per_thread = F +a_lw_seg_size = 16 +a_lw_segments = -32768 +a_sw_seg_size = 16 +a_sw_segments = -32768 +ukca_mode_seg_size = 4 +ukca_chem_seg_size = 85 +gc_radaer_seg_size = -32768 +l_autotune_segments = F +- - - - - - end of namelist - - - - - - +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790301_00 +FILE_MANAGER: : Unit : 38 (portio) +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790301_00 to be Opened on Unit 38 Exists +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790301_00 on unit 38 +loadHeader: Model Version: 13.8 +swap_bounds_method_3D_large = ddt_nsew_wa +swap_bounds_method_3D_small = ddt_aao +swap_bounds_method_2D = ddt_aao +nb_swap_bounds_method = ddt_aao +---------------------------------------------------- +| Typical non blocking message sizes | +| Dir Type Small Halo Size(B) Large Halo Size(B) | +| E/W SP 3060 12240 | +| E/W DP 6120 24480 | +| N/S SP 2040 10200 | +| N/S DP 4080 20400 | +| Crns SP 340 6800 | +| Crns DP 680 13600 | +---------------------------------------------------- +DERVSIZE: Number of levels for convective clouds is 85 +global_land_field set to 10678 +PE 0 : LAND_FIELD is being reset from 10678 to 54 +local_land_field set to 54 +******************************************************************************* +UKCA_CHEM_MASTER: qualifier = 1 +jpspec = 11 +CHCH +3 O3 CF 0 0 107 +6 NO3 CF 0 0 107 +11 H2O2 TR 1 1 107 +19 OH CF 0 0 107 +20 HO2 CF 0 0 107 +76 DMS TR 0 0 107 +77 SO2 TR 1 1 107 +78 H2SO4 TR 1 0 107 +80 DMSO TR 1 1 107 +86 Monoterp TR 1 0 107 +87 Sec_Org TR 1 1 107 +jpctr = 7 +jpro2 = 0 +jpcspf 7 +jpbk = 9 +ratb +51 HO2 HO2 H2O2 +107 0.220000E-12 0.000000E+00 -0.600000E+03 +154 OH H2O2 H2O +107 0.290000E-11 0.000000E+00 0.160000E+03 +200 DMS OH SO2 +107 0.960000E-11 0.000000E+00 0.240000E+03 +201 DMS OH SO2 DMSO +107 0.304000E-11 0.000000E+00 -0.350000E+03 +202 DMS NO3 SO2 +107 0.190000E-12 0.000000E+00 -0.500000E+03 +204 DMSO OH SO2 +107 0.580000E-10 0.000000E+00 0.000000E+00 +211 Monoterp OH Sec_Org +107 0.120000E-10 0.000000E+00 -0.444000E+03 +212 Monoterp O3 Sec_Org +107 0.101000E-14 0.000000E+00 0.732000E+03 +213 Monoterp NO3 Sec_Org +107 0.119000E-11 0.000000E+00 -0.925000E+03 +jppj = 0 +ratj +jptk = 1 +ratt +25 SO2 OH H2SO4 +0.300000E-30 -3.300000 0.000000 0.150000E-11 0.000000 0.000000 107 +jphk = 3 +rath +14 SO2 H2O2 NULL0 107 +15 SO2 O3 NULL1 107 +16 SO2 O3 NULL2 107 +jpdd = 6 +H2O2 +1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 +1.250000 0.160000 0.710000 0.280000 0.120000 0.200000 +1.250000 0.530000 0.890000 0.830000 0.780000 0.810000 +0.260000 0.260000 0.260000 0.260000 0.260000 0.260000 +0.320000 0.320000 0.320000 0.320000 0.320000 0.320000 +SO2 +0.800000 0.800000 0.800000 0.800000 0.800000 0.800000 +0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 +0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 +0.600000 0.600000 0.600000 0.600000 0.600000 0.600000 +0.100000 0.100000 0.100000 0.100000 0.100000 0.100000 +H2SO4 +0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 +0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 +0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 +0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 +0.500000 0.500000 0.500000 0.500000 0.500000 0.500000 +DMSO +1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 +0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 +0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 +0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 +0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 +Monoterp +0.200000 0.200000 0.200000 0.200000 0.200000 0.200000 +0.100000 0.100000 0.100000 0.100000 0.100000 0.100000 +0.100000 0.100000 0.100000 0.100000 0.100000 0.100000 +0.100000 0.100000 0.100000 0.100000 0.100000 0.100000 +0.100000 0.100000 0.100000 0.100000 0.100000 0.100000 +Sec_Org +0.200000 0.200000 0.200000 0.200000 0.200000 0.200000 +0.100000 0.100000 0.100000 0.100000 0.100000 0.100000 +0.100000 0.100000 0.100000 0.100000 0.100000 0.100000 +0.100000 0.100000 0.100000 0.100000 0.100000 0.100000 +0.100000 0.100000 0.100000 0.100000 0.100000 0.100000 +jpdw = 4 +H2O2 +0.830000E+05 0.740000E+04 0.240000E-11 -0.373000E+04 0.000000E+00 0.000000E+00 +SO2 +0.123000E+01 0.302000E+04 0.123000E-01 0.201000E+04 0.600000E-07 0.112000E+04 +DMSO +0.500000E+05 0.642500E+04 0.000000E+00 0.000000E+00 0.000000E+00 0.000000E+00 +Sec_Org +0.100000E+06 0.120000E+02 0.000000E+00 0.000000E+00 0.000000E+00 0.000000E+00 +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.stash +FILE_MANAGER: : id : stash_req_log +FILE_MANAGER: : Unit : 13 (fortran) +FILE_MANAGER: Assigned : windmax.dat +FILE_MANAGER: : Unit : 14 (fortran) +FILE_MANAGER: Assigned : STASHC +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/STASHmaster/STASHmaster_A +FILE_MANAGER: : Unit : 15 (fortran) +STASHmaster: /common/internal/umdir/vn13.8/ctldata/STASHmaster/STASHmaster_A +FILE_MANAGER: Released : Unit : 15 (fortran) + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:0, Item:95 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 14 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:0, Item:194 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 15 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:0, Item:198 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 16 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:0, Item:413 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 17 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:0, Item:414 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 18 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:0, Item:415 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 19 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:0, Item:416 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 20 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:0, Item:428 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 21 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:0, Item:429 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 22 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:0, Item:441 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 23 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -95 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:1, Item:500 ignored. +? Field has last pseudo-level set too high. +? Warning from processor: 0 +? Warning number: 24 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -95 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:1, Item:502 ignored. +? Field has last pseudo-level set too high. +? Warning from processor: 0 +? Warning number: 25 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -95 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:1, Item:504 ignored. +? Field has last pseudo-level set too high. +? Warning from processor: 0 +? Warning number: 26 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -95 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:1, Item:570 ignored. +? Field has last pseudo-level set too high. +? Warning from processor: 0 +? Warning number: 27 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -95 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:1, Item:570 ignored. +? Field has last pseudo-level set too high. +? Warning from processor: 0 +? Warning number: 28 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -95 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:2, Item:500 ignored. +? Field has last pseudo-level set too high. +? Warning from processor: 0 +? Warning number: 29 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:256 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 30 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:257 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 31 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:257 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 32 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -80 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:353 ignored. +? Invalid pseudo-level type. +? Warning from processor: 0 +? Warning number: 33 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:509 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 34 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:509 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 35 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:510 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 36 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:530 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 37 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:532 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 38 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:534 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 39 +???????????????????????????????????????????????????????????????????????????????? + + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -30 +? Warning from routine: PRELIM_MOD:PRELIM +? Warning message: +? Field - Section:3, Item:536 request denied. +? Unavailable to this model version. +? Warning from processor: 0 +? Warning number: 40 +???????????????????????????????????????????????????????????????????????????????? + + +*********************************** +ADDRES : A_PROG_LOOKUP = 8670 +ADDRES : A_PROG_LEN = 748020 +ADDRES : NHEAD, len_primim = 8670 748020 +1241 D1 items in submodel 1 +******************************************************************************* + +Fast i/o of radincs directly to core memory +Submodel id 1 +Submodel Number 1 +No of objects in this submodel: 1241 +* # Type Modl Sect Item Address Length Levels Gridtype Halotype +* 1 0 1 0 2 1 7480 85 18 1 +* 2 0 1 0 3 7481 7480 85 19 1 +* 3 0 1 0 4 14961 7568 86 1 1 +* 4 0 1 0 5 22529 54 1 21 3 +* 5 0 1 0 6 22583 54 1 21 3 +* 6 0 1 0 9 22637 216 4 21 3 +* 7 0 1 0 10 22853 22876 86 1 2 +* 8 0 1 0 12 45729 22876 86 1 2 +* 9 0 1 0 14 68605 54 1 1 3 +* 10 0 1 0 15 68659 54 1 1 3 +* 11 0 1 0 16 68713 54 1 1 3 +* 12 0 1 0 17 68767 54 1 21 3 +* 13 0 1 0 18 68821 54 1 21 3 +* 14 0 1 0 20 68875 216 4 21 3 +* 15 0 1 0 21 69091 54 1 1 3 +* 16 0 1 0 22 69145 54 1 21 3 +* 17 0 1 0 23 69199 54 1 1 3 +* 18 0 1 0 24 69253 54 1 1 3 +* 19 0 1 0 25 69307 54 1 1 3 +* 20 0 1 0 26 69361 54 1 1 3 +* 21 0 1 0 28 69415 54 1 18 3 +* 22 0 1 0 29 69469 54 1 19 3 +* 23 0 1 0 30 69523 54 1 1 3 +* 24 0 1 0 31 69577 54 1 3 3 +* 25 0 1 0 32 69631 54 1 3 3 +* 26 0 1 0 33 69685 54 1 1 3 +* 27 0 1 0 34 69739 54 1 21 3 +* 28 0 1 0 35 69793 54 1 21 3 +* 29 0 1 0 36 69847 54 1 21 3 +* 30 0 1 0 37 69901 54 1 21 3 +* 31 0 1 0 40 69955 54 1 21 3 +* 32 0 1 0 41 70009 54 1 21 3 +* 33 0 1 0 43 70063 54 1 21 3 +* 34 0 1 0 44 70117 54 1 21 3 +* 35 0 1 0 46 70171 54 1 21 3 +* 36 0 1 0 47 70225 54 1 21 3 +* 37 0 1 0 48 70279 54 1 21 3 +* 38 0 1 0 49 70333 54 1 3 3 +* 39 0 1 0 60 70387 4644 86 22 3 +* 40 0 1 0 96 75031 54 1 1 3 +* 41 0 1 0 97 75085 54 1 21 3 +* 42 0 1 0 99 75139 4590 85 1 3 +* 43 0 1 0 132 79729 54 1 1 3 +* 44 0 1 0 136 79783 7568 86 1 1 +* 45 0 1 0 137 87351 7568 86 1 1 +* 46 0 1 0 139 94919 7568 86 1 1 +* 47 0 1 0 150 102487 7568 86 1 1 +* 48 0 1 0 151 110055 144 1 23 3 +* 49 0 1 0 152 110199 144 1 23 3 +* 50 0 1 0 153 110343 144 1 23 3 +* 51 0 1 0 155 110487 54 1 21 3 +* 52 0 1 0 156 110541 54 1 21 3 +* 53 0 1 0 157 110595 54 1 1 3 +* 54 0 1 0 207 110649 54 1 21 3 +* 55 0 1 0 211 110703 4590 85 1 3 +* 56 0 1 0 212 115293 4590 85 1 3 +* 57 0 1 0 213 119883 54 1 21 3 +* 58 0 1 0 214 119937 216 4 21 3 +* 59 0 1 0 215 120153 216 4 21 3 +* 60 0 1 0 216 120369 486 9 21 3 +* 61 0 1 0 217 120855 270 5 21 3 +* 62 0 1 0 218 121125 270 5 21 3 +* 63 0 1 0 220 121395 54 1 21 3 +* 64 0 1 0 221 121449 54 1 1 3 +* 65 0 1 0 222 121503 54 1 1 3 +* 66 0 1 0 223 121557 54 1 21 3 +* 67 0 1 0 225 121611 270 5 21 3 +* 68 0 1 0 229 121881 486 9 21 3 +* 69 0 1 0 230 122367 486 9 21 3 +* 70 0 1 0 231 122853 486 9 21 3 +* 71 0 1 0 233 123339 486 9 21 3 +* 72 0 1 0 234 123825 486 9 21 3 +* 73 0 1 0 235 124311 54 1 1 3 +* 74 0 1 0 236 124365 486 9 21 3 +* 75 0 1 0 237 124851 486 9 21 3 +* 76 0 1 0 238 125337 54 1 1 3 +* 77 0 1 0 239 125391 54 1 1 3 +* 78 0 1 0 240 125445 486 9 21 3 +* 79 0 1 0 241 125931 486 9 21 3 +* 80 0 1 0 242 126417 486 9 21 3 +* 81 0 1 0 253 126903 7480 85 1 1 +* 82 0 1 0 254 134383 22876 86 1 2 +* 83 0 1 0 255 157259 7568 86 1 1 +* 84 0 1 0 259 164827 54 1 1 3 +* 85 0 1 0 260 164881 54 1 1 3 +* 86 0 1 0 261 164935 54 1 1 3 +* 87 0 1 0 262 164989 54 1 1 3 +* 88 0 1 0 263 165043 54 1 1 3 +* 89 0 1 0 264 165097 54 1 1 3 +* 90 0 1 0 265 165151 4590 85 1 3 +* 91 0 1 0 266 169741 22876 86 1 2 +* 92 0 1 0 267 192617 22876 86 1 2 +* 93 0 1 0 268 215493 22876 86 1 2 +* 94 0 1 0 269 238369 54 1 1 3 +* 95 0 1 0 270 238423 54 1 1 3 +* 96 0 1 0 272 238477 22876 86 1 2 +* 97 0 1 0 274 261353 54 1 21 3 +* 98 0 1 0 275 261407 54 1 21 3 +* 99 0 1 0 276 261461 54 1 21 3 +* 100 0 1 0 277 261515 54 1 21 3 +* 101 0 1 0 278 261569 54 1 21 3 +* 102 0 1 0 279 261623 54 1 21 3 +* 103 0 1 0 280 261677 54 1 21 3 +* 104 0 1 0 281 261731 54 1 21 3 +* 105 0 1 0 282 261785 54 1 21 3 +* 106 0 1 0 283 261839 54 1 21 3 +* 107 0 1 0 284 261893 54 1 21 3 +* 108 0 1 0 285 261947 54 1 21 3 +* 109 0 1 0 290 262001 54 1 1 3 +* 110 0 1 0 345 262055 4644 86 1 3 +* 111 0 1 0 346 266699 4644 86 1 3 +* 112 0 1 0 347 271343 4644 86 1 3 +* 113 0 1 0 348 275987 54 1 1 3 +* 114 0 1 0 376 276041 486 9 21 3 +* 115 0 1 0 377 276527 486 9 21 3 +* 116 0 1 0 380 277013 486 9 21 3 +* 117 0 1 0 381 277499 1458 27 21 3 +* 118 0 1 0 382 278957 1458 27 21 3 +* 119 0 1 0 383 280415 1458 27 21 3 +* 120 0 1 0 384 281873 1458 27 21 3 +* 121 0 1 0 385 283331 1458 27 21 3 +* 122 0 1 0 386 284789 1458 27 21 3 +* 123 0 1 0 387 286247 7568 86 1 1 +* 124 0 1 0 388 293815 7568 86 1 1 +* 125 0 1 0 389 301383 7480 85 1 1 +* 126 0 1 0 390 308863 54 1 1 3 +* 127 0 1 0 391 308917 7568 86 1 1 +* 128 0 1 0 392 316485 7568 86 1 1 +* 129 0 1 0 393 324053 7568 86 1 1 +* 130 0 1 0 394 331621 7568 86 1 1 +* 131 0 1 0 395 339189 7568 86 1 1 +* 132 0 1 0 396 346757 7568 86 1 1 +* 133 0 1 0 397 354325 54 1 1 3 +* 134 0 1 0 398 354379 88 1 1 1 +* 135 0 1 0 418 354467 54 1 1 3 +* 136 0 1 0 419 354521 54 1 1 3 +* 137 0 1 0 420 354575 54 1 1 3 +* 138 0 1 0 421 354629 54 1 1 3 +* 139 0 1 0 422 354683 54 1 1 3 +* 140 0 1 0 423 354737 54 1 1 3 +* 141 0 1 0 424 354791 54 1 1 3 +* 142 0 1 0 425 354845 54 1 1 3 +* 143 0 1 0 426 354899 54 1 1 3 +* 144 0 1 0 431 354953 7568 86 1 1 +* 145 0 1 0 432 362521 7568 86 1 1 +* 146 0 1 0 433 370089 7568 86 1 1 +* 147 0 1 0 434 377657 7568 86 1 1 +* 148 0 1 0 435 385225 7568 86 1 1 +* 149 0 1 0 436 392793 7568 86 1 1 +* 150 0 1 0 490 400361 486 9 21 3 +* 151 0 1 0 491 400847 54 1 1 3 +* 152 0 1 0 492 400901 54 1 1 3 +* 153 0 1 0 493 400955 54 1 1 3 +* 154 0 1 0 505 401009 54 1 21 3 +* 155 0 1 0 506 401063 54 1 1 3 +* 156 0 1 0 507 401117 54 1 1 3 +* 157 0 1 0 508 401171 54 1 1 3 +* 158 0 1 0 509 401225 54 1 1 3 +* 159 0 1 0 510 401279 54 1 1 3 +* 160 0 1 0 511 401333 54 1 21 3 +* 161 0 1 0 634 401387 54 1 1 3 +* 162 0 1 34 8 401441 7568 86 1 1 +* 163 0 1 34 71 409009 7568 86 1 1 +* 164 0 1 34 72 416577 7568 86 1 1 +* 165 0 1 34 73 424145 7568 86 1 1 +* 166 0 1 34 75 431713 7568 86 1 1 +* 167 0 1 34 91 439281 7568 86 1 1 +* 168 0 1 34 92 446849 7568 86 1 1 +* 169 0 1 34 101 454417 7568 86 1 1 +* 170 0 1 34 102 461985 7568 86 1 1 +* 171 0 1 34 103 469553 7568 86 1 1 +* 172 0 1 34 104 477121 7568 86 1 1 +* 173 0 1 34 105 484689 7568 86 1 1 +* 174 0 1 34 106 492257 7568 86 1 1 +* 175 0 1 34 107 499825 7568 86 1 1 +* 176 0 1 34 108 507393 7568 86 1 1 +* 177 0 1 34 109 514961 7568 86 1 1 +* 178 0 1 34 110 522529 7568 86 1 1 +* 179 0 1 34 111 530097 7568 86 1 1 +* 180 0 1 34 113 537665 7568 86 1 1 +* 181 0 1 34 114 545233 7568 86 1 1 +* 182 0 1 34 115 552801 7568 86 1 1 +* 183 0 1 34 116 560369 7568 86 1 1 +* 184 0 1 34 117 567937 7568 86 1 1 +* 185 0 1 34 119 575505 7568 86 1 1 +* 186 0 1 34 120 583073 7568 86 1 1 +* 187 0 1 34 121 590641 7568 86 1 1 +* 188 0 1 34 126 598209 7568 86 1 1 +* 189 0 1 34 150 605777 7568 86 1 1 +* 190 0 1 34 921 613345 4644 86 1 3 +* 191 0 1 34 922 617989 4644 86 1 3 +* 192 0 1 34 923 622633 4644 86 1 3 +* 193 0 1 34 924 627277 4644 86 1 3 +* 194 0 1 34 927 631921 4644 86 1 3 +* 195 0 1 34 928 636565 4644 86 1 3 +* 196 0 1 34 929 641209 4644 86 1 3 +* 197 0 1 34 930 645853 4644 86 1 3 +* 198 0 1 34 931 650497 4644 86 1 3 +* 199 0 1 34 932 655141 4644 86 1 3 +* 200 0 1 34 933 659785 4644 86 1 3 +* 201 0 1 34 936 664429 4644 86 1 3 +* 202 0 1 34 937 669073 4644 86 1 3 +* 203 0 1 34 938 673717 4644 86 1 3 +* 204 0 1 34 941 678361 4644 86 1 3 +* 205 0 1 34 942 683005 4644 86 1 3 +* 206 0 1 34 943 687649 4644 86 1 3 +* 207 0 1 34 944 692293 4644 86 1 3 +* 208 0 1 34 945 696937 4644 86 1 3 +* 209 0 1 34 951 701581 4644 86 1 3 +* 210 0 1 34 952 706225 4644 86 1 3 +* 211 0 1 34 953 710869 4644 86 1 3 +* 212 0 1 34 954 715513 4644 86 1 3 +* 213 0 1 34 955 720157 4644 86 1 3 +* 214 0 1 34 961 724801 4644 86 1 3 +* 215 0 1 34 962 729445 4644 86 1 3 +* 216 0 1 34 963 734089 4644 86 1 3 +* 217 0 1 34 966 738733 4644 86 1 3 +* 218 0 1 34 968 743377 4644 86 1 3 +* 219 1 1 0 2 748021 7480 85 18 1 +* 220 1 1 0 2 755501 7480 85 18 1 +* 221 1 1 0 2 762981 578346 1 18 1 +* 222 1 1 0 3 1341327 7480 85 19 1 +* 223 1 1 0 3 1348807 7480 85 19 1 +* 224 1 1 0 3 1356287 578346 1 19 1 +* 225 1 1 0 4 1934633 7480 85 1 1 +* 226 1 1 0 10 1942113 22610 85 1 2 +* 227 1 1 0 10 1964723 22610 85 1 2 +* 228 1 1 0 10 1987333 578346 1 1 2 +* 229 1 1 0 12 2565679 22610 85 1 2 +* 230 1 1 0 23 2588289 54 1 1 3 +* 231 1 1 0 24 2588343 54 1 1 3 +* 232 1 1 0 24 2588397 54 1 1 3 +* 233 1 1 0 24 2588451 54 1 1 3 +* 234 1 1 0 24 2588505 54 1 1 3 +* 235 1 1 0 24 2588559 54 1 1 3 +* 236 1 1 0 24 2588613 54 1 1 3 +* 237 1 1 0 24 2588667 54 1 1 3 +* 238 1 1 0 24 2588721 54 1 1 3 +* 239 1 1 0 24 2588775 54 1 1 3 +* 240 1 1 0 24 2588829 54 1 1 3 +* 241 1 1 0 24 2588883 54 1 1 3 +* 242 1 1 0 24 2588937 6810 1 1 3 +* 243 1 1 0 25 2595747 54 1 1 3 +* 244 1 1 0 28 2595801 54 1 18 3 +* 245 1 1 0 29 2595855 54 1 19 3 +* 246 1 1 0 30 2595909 54 1 1 3 +* 247 1 1 0 31 2595963 54 1 3 3 +* 248 1 1 0 31 2596017 54 1 3 3 +* 249 1 1 0 32 2596071 54 1 3 3 +* 250 1 1 0 33 2596125 54 1 1 3 +* 251 1 1 0 33 2596179 54 1 1 3 +* 252 1 1 0 33 2596233 54 1 1 3 +* 253 1 1 0 33 2596287 54 1 1 3 +* 254 1 1 0 150 2596341 7480 85 1 1 +* 255 1 1 0 211 2603821 4590 85 1 3 +* 256 1 1 0 253 2608411 7480 85 1 1 +* 257 1 1 0 254 2615891 22610 85 1 2 +* 258 1 1 0 266 2638501 22610 85 1 2 +* 259 1 1 0 272 2661111 22610 85 1 2 +* 260 1 1 0 407 2683721 7568 86 1 1 +* 261 1 1 0 407 2691289 7480 85 1 1 +* 262 1 1 0 407 2698769 7568 86 1 1 +* 263 1 1 0 407 2706337 585150 1 1 1 +* 264 1 1 0 408 3291487 7480 85 1 1 +* 265 1 1 0 408 3298967 7480 85 1 1 +* 266 1 1 0 408 3306447 578346 1 1 1 +* 267 1 1 0 409 3884793 54 1 1 3 +* 268 1 1 0 409 3884847 54 1 1 3 +* 269 1 1 0 409 3884901 54 1 1 3 +* 270 1 1 0 409 3884955 54 1 1 3 +* 271 1 1 0 409 3885009 6810 1 1 3 +* 272 1 1 0 431 3891819 88 1 1 1 +* 273 1 1 0 431 3891907 88 1 1 1 +* 274 1 1 0 431 3891995 7480 85 1 1 +* 275 1 1 0 432 3899475 88 1 1 1 +* 276 1 1 0 432 3899563 88 1 1 1 +* 277 1 1 0 432 3899651 7480 85 1 1 +* 278 1 1 0 433 3907131 88 1 1 1 +* 279 1 1 0 433 3907219 88 1 1 1 +* 280 1 1 0 433 3907307 7480 85 1 1 +* 281 1 1 0 434 3914787 88 1 1 1 +* 282 1 1 0 434 3914875 88 1 1 1 +* 283 1 1 0 434 3914963 7480 85 1 1 +* 284 1 1 0 435 3922443 88 1 1 1 +* 285 1 1 0 435 3922531 88 1 1 1 +* 286 1 1 0 435 3922619 7480 85 1 1 +* 287 1 1 0 436 3930099 88 1 1 1 +* 288 1 1 0 436 3930187 7480 85 1 1 +* 289 1 1 0 507 3937667 54 1 1 3 +* 290 1 1 0 507 3937721 54 1 1 3 +* 291 1 1 0 507 3937775 54 1 1 3 +* 292 1 1 0 507 3937829 54 1 1 3 +* 293 1 1 0 507 3937883 54 1 1 3 +* 294 1 1 0 507 3937937 54 1 1 3 +* 295 1 1 0 507 3937991 54 1 1 3 +* 296 1 1 0 507 3938045 54 1 1 3 +* 297 1 1 0 507 3938099 54 1 1 3 +* 298 1 1 0 508 3938153 54 1 1 3 +* 299 1 1 0 509 3938207 54 1 1 3 +* 300 1 1 1 161 3938261 4590 85 1 3 +* 301 1 1 1 161 3942851 578346 1 1 3 +* 302 1 1 1 181 4521197 4590 85 1 3 +* 303 1 1 1 181 4525787 578346 1 1 3 +* 304 1 1 1 182 5104133 4590 85 1 3 +* 305 1 1 1 182 5108723 578346 1 1 3 +* 306 1 1 1 201 5687069 54 1 1 3 +* 307 1 1 1 201 5687123 54 1 1 3 +* 308 1 1 1 201 5687177 54 1 1 3 +* 309 1 1 1 201 5687231 54 1 1 3 +* 310 1 1 1 201 5687285 54 1 1 3 +* 311 1 1 1 201 5687339 54 1 1 3 +* 312 1 1 1 201 5687393 54 1 1 3 +* 313 1 1 1 201 5687447 54 1 1 3 +* 314 1 1 1 201 5687501 54 1 1 3 +* 315 1 1 1 201 5687555 54 1 1 3 +* 316 1 1 1 201 5687609 3786 1 1 3 +* 317 1 1 1 203 5691395 54 1 1 3 +* 318 1 1 1 203 5691449 54 1 1 3 +* 319 1 1 1 203 5691503 54 1 1 3 +* 320 1 1 1 203 5691557 54 1 1 3 +* 321 1 1 1 203 5691611 54 1 1 3 +* 322 1 1 1 203 5691665 54 1 1 3 +* 323 1 1 1 203 5691719 54 1 1 3 +* 324 1 1 1 203 5691773 54 1 1 3 +* 325 1 1 1 203 5691827 54 1 1 3 +* 326 1 1 1 203 5691881 54 1 1 3 +* 327 1 1 1 207 5691935 54 1 1 3 +* 328 1 1 1 207 5691989 54 1 1 3 +* 329 1 1 1 207 5692043 54 1 1 3 +* 330 1 1 1 207 5692097 6810 1 1 3 +* 331 1 1 1 208 5698907 54 1 1 3 +* 332 1 1 1 208 5698961 54 1 1 3 +* 333 1 1 1 208 5699015 54 1 1 3 +* 334 1 1 1 208 5699069 54 1 1 3 +* 335 1 1 1 208 5699123 54 1 1 3 +* 336 1 1 1 208 5699177 54 1 1 3 +* 337 1 1 1 208 5699231 54 1 1 3 +* 338 1 1 1 208 5699285 54 1 1 3 +* 339 1 1 1 208 5699339 54 1 1 3 +* 340 1 1 1 208 5699393 54 1 1 3 +* 341 1 1 1 208 5699447 54 1 1 3 +* 342 1 1 1 208 5699501 3786 1 1 3 +* 343 1 1 1 209 5703287 54 1 1 3 +* 344 1 1 1 209 5703341 54 1 1 3 +* 345 1 1 1 209 5703395 54 1 1 3 +* 346 1 1 1 209 5703449 54 1 1 3 +* 347 1 1 1 209 5703503 54 1 1 3 +* 348 1 1 1 209 5703557 54 1 1 3 +* 349 1 1 1 209 5703611 54 1 1 3 +* 350 1 1 1 209 5703665 54 1 1 3 +* 351 1 1 1 209 5703719 54 1 1 3 +* 352 1 1 1 209 5703773 54 1 1 3 +* 353 1 1 1 209 5703827 54 1 1 3 +* 354 1 1 1 209 5703881 3786 1 1 3 +* 355 1 1 1 210 5707667 54 1 1 3 +* 356 1 1 1 210 5707721 54 1 1 3 +* 357 1 1 1 210 5707775 54 1 1 3 +* 358 1 1 1 210 5707829 54 1 1 3 +* 359 1 1 1 210 5707883 54 1 1 3 +* 360 1 1 1 210 5707937 54 1 1 3 +* 361 1 1 1 210 5707991 54 1 1 3 +* 362 1 1 1 210 5708045 54 1 1 3 +* 363 1 1 1 210 5708099 54 1 1 3 +* 364 1 1 1 210 5708153 54 1 1 3 +* 365 1 1 1 210 5708207 3786 1 1 3 +* 366 1 1 1 211 5711993 54 1 1 3 +* 367 1 1 1 211 5712047 54 1 1 3 +* 368 1 1 1 211 5712101 54 1 1 3 +* 369 1 1 1 211 5712155 54 1 1 3 +* 370 1 1 1 211 5712209 54 1 1 3 +* 371 1 1 1 211 5712263 54 1 1 3 +* 372 1 1 1 211 5712317 54 1 1 3 +* 373 1 1 1 211 5712371 54 1 1 3 +* 374 1 1 1 211 5712425 54 1 1 3 +* 375 1 1 1 211 5712479 54 1 1 3 +* 376 1 1 1 211 5712533 3786 1 1 3 +* 377 1 1 1 216 5716319 54 1 1 3 +* 378 1 1 1 217 5716373 4644 86 1 3 +* 379 1 1 1 217 5721017 325086 1 1 3 +* 380 1 1 1 218 6046103 4644 86 1 3 +* 381 1 1 1 218 6050747 325086 1 1 3 +* 382 1 1 1 219 6375833 4644 86 1 3 +* 383 1 1 1 219 6380477 325086 1 1 3 +* 384 1 1 1 220 6705563 4644 86 1 3 +* 385 1 1 1 220 6710207 325086 1 1 3 +* 386 1 1 1 221 7035293 4590 85 1 3 +* 387 1 1 1 223 7039883 4590 85 1 3 +* 388 1 1 1 225 7044473 4590 85 1 3 +* 389 1 1 1 226 7049063 4590 85 1 3 +* 390 1 1 1 233 7053653 4590 85 1 3 +* 391 1 1 1 233 7058243 321306 1 1 3 +* 392 1 1 1 235 7379549 54 1 1 3 +* 393 1 1 1 235 7379603 54 1 1 3 +* 394 1 1 1 235 7379657 54 1 1 3 +* 395 1 1 1 235 7379711 54 1 1 3 +* 396 1 1 1 235 7379765 54 1 1 3 +* 397 1 1 1 235 7379819 54 1 1 3 +* 398 1 1 1 235 7379873 54 1 1 3 +* 399 1 1 1 235 7379927 54 1 1 3 +* 400 1 1 1 235 7379981 54 1 1 3 +* 401 1 1 1 235 7380035 54 1 1 3 +* 402 1 1 1 235 7380089 54 1 1 3 +* 403 1 1 1 235 7380143 54 1 1 3 +* 404 1 1 1 235 7380197 54 1 1 3 +* 405 1 1 1 235 7380251 3786 1 1 3 +* 406 1 1 1 241 7384037 4590 85 1 3 +* 407 1 1 1 242 7388627 4590 85 1 3 +* 408 1 1 1 245 7393217 54 1 1 3 +* 409 1 1 1 245 7393271 54 1 1 3 +* 410 1 1 1 246 7393325 54 1 1 3 +* 411 1 1 1 246 7393379 54 1 1 3 +* 412 1 1 1 254 7393433 54 1 1 3 +* 413 1 1 1 255 7393487 54 1 1 3 +* 414 1 1 1 260 7393541 54 1 1 3 +* 415 1 1 1 280 7393595 54 1 1 3 +* 416 1 1 1 280 7393649 54 1 1 3 +* 417 1 1 1 281 7393703 54 1 1 3 +* 418 1 1 1 281 7393757 54 1 1 3 +* 419 1 1 1 298 7393811 54 1 1 3 +* 420 1 1 1 298 7393865 54 1 1 3 +* 421 1 1 1 299 7393919 54 1 1 3 +* 422 1 1 1 299 7393973 54 1 1 3 +* 423 1 1 1 501 7394027 54 1 3 3 +* 424 1 1 1 501 7394081 54 1 3 3 +* 425 1 1 1 503 7394135 54 1 3 3 +* 426 1 1 1 503 7394189 54 1 3 3 +* 427 1 1 1 505 7394243 54 1 3 3 +* 428 1 1 1 517 7394297 4644 86 1 3 +* 429 1 1 1 519 7398941 4644 86 1 3 +* 430 1 1 1 521 7403585 4644 86 1 3 +* 431 1 1 1 522 7408229 4644 86 1 3 +* 432 1 1 1 523 7412873 4644 86 1 3 +* 433 1 1 1 524 7417517 4644 86 1 3 +* 434 1 1 2 161 7422161 4590 85 1 3 +* 435 1 1 2 161 7426751 578346 1 1 3 +* 436 1 1 2 181 8005097 4590 85 1 3 +* 437 1 1 2 181 8009687 578346 1 1 3 +* 438 1 1 2 182 8588033 4590 85 1 3 +* 439 1 1 2 182 8592623 578346 1 1 3 +* 440 1 1 2 201 9170969 54 1 1 3 +* 441 1 1 2 201 9171023 54 1 1 3 +* 442 1 1 2 201 9171077 54 1 1 3 +* 443 1 1 2 201 9171131 54 1 1 3 +* 444 1 1 2 201 9171185 54 1 1 3 +* 445 1 1 2 201 9171239 54 1 1 3 +* 446 1 1 2 201 9171293 54 1 1 3 +* 447 1 1 2 201 9171347 54 1 1 3 +* 448 1 1 2 201 9171401 54 1 1 3 +* 449 1 1 2 201 9171455 54 1 1 3 +* 450 1 1 2 201 9171509 3786 1 1 3 +* 451 1 1 2 203 9175295 54 1 1 3 +* 452 1 1 2 203 9175349 54 1 1 3 +* 453 1 1 2 204 9175403 54 1 1 3 +* 454 1 1 2 204 9175457 54 1 1 3 +* 455 1 1 2 204 9175511 54 1 1 3 +* 456 1 1 2 204 9175565 54 1 1 3 +* 457 1 1 2 204 9175619 54 1 1 3 +* 458 1 1 2 204 9175673 54 1 1 3 +* 459 1 1 2 204 9175727 54 1 1 3 +* 460 1 1 2 204 9175781 54 1 1 3 +* 461 1 1 2 204 9175835 54 1 1 3 +* 462 1 1 2 204 9175889 54 1 1 3 +* 463 1 1 2 204 9175943 54 1 1 3 +* 464 1 1 2 204 9175997 3786 1 1 3 +* 465 1 1 2 205 9179783 54 1 1 3 +* 466 1 1 2 205 9179837 54 1 1 3 +* 467 1 1 2 205 9179891 54 1 1 3 +* 468 1 1 2 205 9179945 3786 1 1 3 +* 469 1 1 2 206 9183731 54 1 1 3 +* 470 1 1 2 206 9183785 54 1 1 3 +* 471 1 1 2 206 9183839 54 1 1 3 +* 472 1 1 2 206 9183893 54 1 1 3 +* 473 1 1 2 206 9183947 54 1 1 3 +* 474 1 1 2 206 9184001 54 1 1 3 +* 475 1 1 2 206 9184055 54 1 1 3 +* 476 1 1 2 206 9184109 54 1 1 3 +* 477 1 1 2 206 9184163 54 1 1 3 +* 478 1 1 2 206 9184217 54 1 1 3 +* 479 1 1 2 206 9184271 54 1 1 3 +* 480 1 1 2 206 9184325 3786 1 1 3 +* 481 1 1 2 207 9188111 54 1 1 3 +* 482 1 1 2 207 9188165 54 1 1 3 +* 483 1 1 2 207 9188219 54 1 1 3 +* 484 1 1 2 207 9188273 54 1 1 3 +* 485 1 1 2 207 9188327 54 1 1 3 +* 486 1 1 2 207 9188381 54 1 1 3 +* 487 1 1 2 207 9188435 54 1 1 3 +* 488 1 1 2 207 9188489 54 1 1 3 +* 489 1 1 2 207 9188543 54 1 1 3 +* 490 1 1 2 207 9188597 54 1 1 3 +* 491 1 1 2 207 9188651 54 1 1 3 +* 492 1 1 2 207 9188705 54 1 1 3 +* 493 1 1 2 207 9188759 3786 1 1 3 +* 494 1 1 2 208 9192545 54 1 1 3 +* 495 1 1 2 208 9192599 54 1 1 3 +* 496 1 1 2 208 9192653 54 1 1 3 +* 497 1 1 2 208 9192707 54 1 1 3 +* 498 1 1 2 208 9192761 54 1 1 3 +* 499 1 1 2 208 9192815 54 1 1 3 +* 500 1 1 2 208 9192869 54 1 1 3 +* 501 1 1 2 208 9192923 54 1 1 3 +* 502 1 1 2 208 9192977 54 1 1 3 +* 503 1 1 2 208 9193031 54 1 1 3 +* 504 1 1 2 208 9193085 3786 1 1 3 +* 505 1 1 2 217 9196871 4644 86 1 3 +* 506 1 1 2 217 9201515 325086 1 1 3 +* 507 1 1 2 218 9526601 4644 86 1 3 +* 508 1 1 2 218 9531245 325086 1 1 3 +* 509 1 1 2 219 9856331 4644 86 1 3 +* 510 1 1 2 219 9860975 4644 86 1 3 +* 511 1 1 2 219 9865619 325086 1 1 3 +* 512 1 1 2 220 10190705 4644 86 1 3 +* 513 1 1 2 220 10195349 325086 1 1 3 +* 514 1 1 2 233 10520435 4590 85 1 3 +* 515 1 1 2 233 10525025 321306 1 1 3 +* 516 1 1 2 240 10846331 324 6 1 3 +* 517 1 1 2 241 10846655 324 6 1 3 +* 518 1 1 2 242 10846979 324 6 1 3 +* 519 1 1 2 243 10847303 324 6 1 3 +* 520 1 1 2 251 10847627 324 6 1 3 +* 521 1 1 2 252 10847951 324 6 1 3 +* 522 1 1 2 253 10848275 324 6 1 3 +* 523 1 1 2 254 10848599 324 6 1 3 +* 524 1 1 2 261 10848923 4590 85 1 3 +* 525 1 1 2 261 10853513 4590 85 1 3 +* 526 1 1 2 261 10858103 321306 1 1 3 +* 527 1 1 2 285 11179409 324 6 1 3 +* 528 1 1 2 285 11179733 324 6 1 3 +* 529 1 1 2 300 11180057 324 6 1 3 +* 530 1 1 2 300 11180381 324 6 1 3 +* 531 1 1 2 301 11180705 324 6 1 3 +* 532 1 1 2 301 11181029 324 6 1 3 +* 533 1 1 2 302 11181353 324 6 1 3 +* 534 1 1 2 302 11181677 324 6 1 3 +* 535 1 1 2 303 11182001 324 6 1 3 +* 536 1 1 2 303 11182325 324 6 1 3 +* 537 1 1 2 308 11182649 4590 85 1 3 +* 538 1 1 2 308 11187239 4590 85 1 3 +* 539 1 1 2 308 11191829 321306 1 1 3 +* 540 1 1 2 309 11513135 4590 85 1 3 +* 541 1 1 2 309 11517725 4590 85 1 3 +* 542 1 1 2 309 11522315 321306 1 1 3 +* 543 1 1 2 312 11843621 4590 85 1 3 +* 544 1 1 2 312 11848211 321306 1 1 3 +* 545 1 1 2 313 12169517 4590 85 1 3 +* 546 1 1 2 313 12174107 321306 1 1 3 +* 547 1 1 2 317 12495413 4590 85 1 3 +* 548 1 1 2 318 12500003 4590 85 1 3 +* 549 1 1 2 319 12504593 4590 85 1 3 +* 550 1 1 2 321 12509183 54 1 1 3 +* 551 1 1 2 321 12509237 54 1 1 3 +* 552 1 1 2 322 12509291 54 1 1 3 +* 553 1 1 2 322 12509345 54 1 1 3 +* 554 1 1 2 323 12509399 54 1 1 3 +* 555 1 1 2 323 12509453 54 1 1 3 +* 556 1 1 2 324 12509507 54 1 1 3 +* 557 1 1 2 324 12509561 54 1 1 3 +* 558 1 1 2 325 12509615 2160 40 1 3 +* 559 1 1 2 325 12511775 2160 40 1 3 +* 560 1 1 2 330 12513935 54 1 1 3 +* 561 1 1 2 330 12513989 54 1 1 3 +* 562 1 1 2 331 12514043 54 1 1 3 +* 563 1 1 2 331 12514097 54 1 1 3 +* 564 1 1 2 332 12514151 54 1 1 3 +* 565 1 1 2 332 12514205 54 1 1 3 +* 566 1 1 2 333 12514259 54 1 1 3 +* 567 1 1 2 333 12514313 54 1 1 3 +* 568 1 1 2 334 12514367 54 1 1 3 +* 569 1 1 2 334 12514421 54 1 1 3 +* 570 1 1 2 337 12514475 2646 49 1 3 +* 571 1 1 2 337 12517121 2646 49 1 3 +* 572 1 1 2 344 12519767 54 1 1 3 +* 573 1 1 2 344 12519821 54 1 1 3 +* 574 1 1 2 345 12519875 54 1 1 3 +* 575 1 1 2 345 12519929 54 1 1 3 +* 576 1 1 2 346 12519983 54 1 1 3 +* 577 1 1 2 346 12520037 54 1 1 3 +* 578 1 1 2 347 12520091 54 1 1 3 +* 579 1 1 2 347 12520145 54 1 1 3 +* 580 1 1 2 348 12520199 270 5 1 3 +* 581 1 1 2 348 12520469 270 5 1 3 +* 582 1 1 2 370 12520739 32400 600 1 3 +* 583 1 1 2 371 12553139 2160 40 1 3 +* 584 1 1 2 371 12555299 2160 40 1 3 +* 585 1 1 2 372 12557459 32400 600 1 3 +* 586 1 1 2 391 12589859 54 1 1 3 +* 587 1 1 2 391 12589913 54 1 1 3 +* 588 1 1 2 391 12589967 3786 1 1 3 +* 589 1 1 2 392 12593753 54 1 1 3 +* 590 1 1 2 392 12593807 54 1 1 3 +* 591 1 1 2 392 12593861 3786 1 1 3 +* 592 1 1 2 395 12597647 54 1 1 3 +* 593 1 1 2 395 12597701 54 1 1 3 +* 594 1 1 2 396 12597755 54 1 1 3 +* 595 1 1 2 396 12597809 54 1 1 3 +* 596 1 1 2 397 12597863 4590 85 1 3 +* 597 1 1 2 397 12602453 321306 1 1 3 +* 598 1 1 2 398 12923759 4590 85 1 3 +* 599 1 1 2 398 12928349 321306 1 1 3 +* 600 1 1 2 422 13249655 324 6 1 3 +* 601 1 1 2 450 13249979 2646 49 1 3 +* 602 1 1 2 451 13252625 54 1 1 3 +* 603 1 1 2 452 13252679 54 1 1 3 +* 604 1 1 2 453 13252733 54 1 1 3 +* 605 1 1 2 466 13252787 54 1 1 3 +* 606 1 1 2 467 13252841 54 1 1 3 +* 607 1 1 2 473 13252895 2160 40 1 3 +* 608 1 1 2 474 13255055 2160 40 1 3 +* 609 1 1 2 501 13257215 54 1 3 3 +* 610 1 1 2 501 13257269 54 1 3 3 +* 611 1 1 2 517 13257323 4644 86 1 3 +* 612 1 1 2 519 13261967 4644 86 1 3 +* 613 1 1 2 521 13266611 4644 86 1 3 +* 614 1 1 2 522 13271255 4644 86 1 3 +* 615 1 1 2 523 13275899 4644 86 1 3 +* 616 1 1 2 524 13280543 4644 86 1 3 +* 617 1 1 2 530 13285187 4590 85 1 3 +* 618 1 1 2 540 13289777 4590 85 1 3 +* 619 1 1 2 585 13294367 324 6 1 3 +* 620 1 1 3 181 13294691 4590 85 1 3 +* 621 1 1 3 181 13299281 578346 1 1 3 +* 622 1 1 3 182 13877627 4590 85 1 3 +* 623 1 1 3 182 13882217 578346 1 1 3 +* 624 1 1 3 189 14460563 4590 85 1 3 +* 625 1 1 3 189 14465153 578346 1 1 3 +* 626 1 1 3 190 15043499 4590 85 1 3 +* 627 1 1 3 190 15048089 578346 1 1 3 +* 628 1 1 3 201 15626435 54 1 1 3 +* 629 1 1 3 209 15626489 54 1 18 3 +* 630 1 1 3 209 15626543 54 1 18 3 +* 631 1 1 3 209 15626597 54 1 18 3 +* 632 1 1 3 209 15626651 6810 1 18 3 +* 633 1 1 3 210 15633461 54 1 19 3 +* 634 1 1 3 210 15633515 54 1 19 3 +* 635 1 1 3 210 15633569 54 1 19 3 +* 636 1 1 3 210 15633623 6810 1 19 3 +* 637 1 1 3 217 15640433 54 1 1 3 +* 638 1 1 3 217 15640487 54 1 1 3 +* 639 1 1 3 217 15640541 6810 1 1 3 +* 640 1 1 3 219 15647351 2700 50 18 3 +* 641 1 1 3 220 15650051 2700 50 19 3 +* 642 1 1 3 223 15652751 54 1 1 3 +* 643 1 1 3 223 15652805 54 1 1 3 +* 644 1 1 3 223 15652859 6810 1 1 3 +* 645 1 1 3 224 15659669 54 1 1 3 +* 646 1 1 3 225 15659723 54 1 11 3 +* 647 1 1 3 226 15659777 54 1 11 3 +* 648 1 1 3 227 15659831 54 1 11 3 +* 649 1 1 3 228 15659885 54 1 1 3 +* 650 1 1 3 228 15659939 54 1 1 3 +* 651 1 1 3 228 15659993 54 1 1 3 +* 652 1 1 3 228 15660047 54 1 1 3 +* 653 1 1 3 228 15660101 54 1 1 3 +* 654 1 1 3 228 15660155 54 1 1 3 +* 655 1 1 3 228 15660209 54 1 1 3 +* 656 1 1 3 228 15660263 54 1 1 3 +* 657 1 1 3 228 15660317 54 1 1 3 +* 658 1 1 3 228 15660371 54 1 1 3 +* 659 1 1 3 230 15660425 54 1 1 3 +* 660 1 1 3 230 15660479 54 1 1 3 +* 661 1 1 3 230 15660533 54 1 1 3 +* 662 1 1 3 230 15660587 54 1 1 3 +* 663 1 1 3 230 15660641 54 1 1 3 +* 664 1 1 3 230 15660695 54 1 1 3 +* 665 1 1 3 230 15660749 54 1 1 3 +* 666 1 1 3 230 15660803 54 1 1 3 +* 667 1 1 3 230 15660857 54 1 1 3 +* 668 1 1 3 230 15660911 54 1 1 3 +* 669 1 1 3 230 15660965 54 1 1 3 +* 670 1 1 3 230 15661019 54 1 1 3 +* 671 1 1 3 230 15661073 54 1 1 3 +* 672 1 1 3 230 15661127 6810 1 1 3 +* 673 1 1 3 230 15667937 54 1 1 3 +* 674 1 1 3 231 15667991 54 1 1 3 +* 675 1 1 3 232 15668045 54 1 1 3 +* 676 1 1 3 232 15668099 54 1 1 3 +* 677 1 1 3 232 15668153 54 1 1 3 +* 678 1 1 3 232 15668207 54 1 1 3 +* 679 1 1 3 232 15668261 54 1 1 3 +* 680 1 1 3 232 15668315 54 1 1 3 +* 681 1 1 3 232 15668369 54 1 1 3 +* 682 1 1 3 232 15668423 54 1 1 3 +* 683 1 1 3 232 15668477 54 1 1 3 +* 684 1 1 3 232 15668531 54 1 1 3 +* 685 1 1 3 234 15668585 54 1 1 3 +* 686 1 1 3 234 15668639 54 1 1 3 +* 687 1 1 3 234 15668693 6810 1 1 3 +* 688 1 1 3 235 15675503 54 1 1 3 +* 689 1 1 3 236 15675557 54 1 1 3 +* 690 1 1 3 236 15675611 54 1 1 3 +* 691 1 1 3 236 15675665 54 1 1 3 +* 692 1 1 3 236 15675719 54 1 1 3 +* 693 1 1 3 236 15675773 54 1 1 3 +* 694 1 1 3 236 15675827 54 1 1 3 +* 695 1 1 3 236 15675881 54 1 1 3 +* 696 1 1 3 236 15675935 54 1 1 3 +* 697 1 1 3 236 15675989 54 1 1 3 +* 698 1 1 3 236 15676043 54 1 1 3 +* 699 1 1 3 236 15676097 54 1 1 3 +* 700 1 1 3 236 15676151 54 1 1 3 +* 701 1 1 3 236 15676205 54 1 1 3 +* 702 1 1 3 236 15676259 6810 1 1 3 +* 703 1 1 3 236 15683069 54 1 1 3 +* 704 1 1 3 236 15683123 54 1 1 3 +* 705 1 1 3 237 15683177 54 1 1 3 +* 706 1 1 3 237 15683231 54 1 1 3 +* 707 1 1 3 237 15683285 54 1 1 3 +* 708 1 1 3 237 15683339 6810 1 1 3 +* 709 1 1 3 245 15690149 54 1 1 3 +* 710 1 1 3 245 15690203 54 1 1 3 +* 711 1 1 3 245 15690257 54 1 1 3 +* 712 1 1 3 245 15690311 54 1 1 3 +* 713 1 1 3 245 15690365 6810 1 1 3 +* 714 1 1 3 245 15697175 54 1 1 3 +* 715 1 1 3 245 15697229 54 1 1 3 +* 716 1 1 3 250 15697283 54 1 1 3 +* 717 1 1 3 250 15697337 54 1 1 3 +* 718 1 1 3 258 15697391 54 1 2 3 +* 719 1 1 3 261 15697445 54 1 2 3 +* 720 1 1 3 287 15697499 486 9 2 3 +* 721 1 1 3 293 15697985 54 1 2 3 +* 722 1 1 3 296 15698039 54 1 2 3 +* 723 1 1 3 296 15698093 54 1 2 3 +* 724 1 1 3 297 15698147 54 1 2 3 +* 725 1 1 3 297 15698201 54 1 2 3 +* 726 1 1 3 298 15698255 54 1 1 3 +* 727 1 1 3 298 15698309 54 1 1 3 +* 728 1 1 3 304 15698363 54 1 1 3 +* 729 1 1 3 304 15698417 54 1 1 3 +* 730 1 1 3 304 15698471 54 1 1 3 +* 731 1 1 3 305 15698525 54 1 1 3 +* 732 1 1 3 306 15698579 54 1 1 3 +* 733 1 1 3 307 15698633 54 1 1 3 +* 734 1 1 3 308 15698687 54 1 1 3 +* 735 1 1 3 309 15698741 54 1 1 3 +* 736 1 1 3 310 15698795 54 1 1 3 +* 737 1 1 3 317 15698849 486 9 2 3 +* 738 1 1 3 318 15699335 270 5 2 3 +* 739 1 1 3 321 15699605 486 9 2 3 +* 740 1 1 3 331 15700091 486 9 2 3 +* 741 1 1 3 332 15700577 54 1 1 3 +* 742 1 1 3 332 15700631 54 1 1 3 +* 743 1 1 3 332 15700685 54 1 1 3 +* 744 1 1 3 332 15700739 54 1 1 3 +* 745 1 1 3 332 15700793 54 1 1 3 +* 746 1 1 3 332 15700847 54 1 1 3 +* 747 1 1 3 332 15700901 54 1 1 3 +* 748 1 1 3 332 15700955 54 1 1 3 +* 749 1 1 3 332 15701009 54 1 1 3 +* 750 1 1 3 332 15701063 54 1 1 3 +* 751 1 1 3 332 15701117 54 1 1 3 +* 752 1 1 3 334 15701171 54 1 2 3 +* 753 1 1 3 334 15701225 54 1 2 3 +* 754 1 1 3 340 15701279 54 1 1 3 +* 755 1 1 3 353 15701333 54 1 1 3 +* 756 1 1 3 365 15701387 54 1 11 3 +* 757 1 1 3 366 15701441 54 1 11 3 +* 758 1 1 3 367 15701495 54 1 11 3 +* 759 1 1 3 370 15701549 54 1 18 3 +* 760 1 1 3 371 15701603 54 1 19 3 +* 761 1 1 3 392 15701657 54 1 18 3 +* 762 1 1 3 392 15701711 54 1 18 3 +* 763 1 1 3 394 15701765 54 1 19 3 +* 764 1 1 3 394 15701819 54 1 19 3 +* 765 1 1 3 395 15701873 54 1 1 3 +* 766 1 1 3 395 15701927 54 1 1 3 +* 767 1 1 3 401 15701981 54 1 1 3 +* 768 1 1 3 402 15702035 54 1 1 3 +* 769 1 1 3 403 15702089 54 1 1 3 +* 770 1 1 3 404 15702143 54 1 1 3 +* 771 1 1 3 405 15702197 54 1 1 3 +* 772 1 1 3 406 15702251 54 1 1 3 +* 773 1 1 3 430 15702305 486 9 2 3 +* 774 1 1 3 440 15702791 54 1 1 3 +* 775 1 1 3 441 15702845 54 1 1 3 +* 776 1 1 3 442 15702899 54 1 1 3 +* 777 1 1 3 443 15702953 54 1 1 3 +* 778 1 1 3 444 15703007 54 1 1 3 +* 779 1 1 3 445 15703061 54 1 1 3 +* 780 1 1 3 446 15703115 54 1 1 3 +* 781 1 1 3 451 15703169 54 1 1 3 +* 782 1 1 3 452 15703223 54 1 1 3 +* 783 1 1 3 453 15703277 54 1 1 3 +* 784 1 1 3 454 15703331 54 1 1 3 +* 785 1 1 3 455 15703385 54 1 1 3 +* 786 1 1 3 456 15703439 54 1 1 3 +* 787 1 1 3 460 15703493 54 1 18 3 +* 788 1 1 3 460 15703547 54 1 18 3 +* 789 1 1 3 460 15703601 6810 1 18 3 +* 790 1 1 3 461 15710411 54 1 19 3 +* 791 1 1 3 461 15710465 54 1 19 3 +* 792 1 1 3 461 15710519 6810 1 19 3 +* 793 1 1 3 495 15717329 54 1 2 3 +* 794 1 1 3 496 15717383 54 1 2 3 +* 795 1 1 3 531 15717437 54 1 3 3 +* 796 1 1 3 531 15717491 54 1 3 3 +* 797 1 1 3 533 15717545 54 1 3 3 +* 798 1 1 3 533 15717599 54 1 3 3 +* 799 1 1 3 535 15717653 54 1 3 3 +* 800 1 1 3 535 15717707 54 1 3 3 +* 801 1 1 3 537 15717761 54 1 3 3 +* 802 1 1 3 538 15717815 54 1 3 3 +* 803 1 1 3 539 15717869 54 1 2 3 +* 804 1 1 3 539 15717923 54 1 2 3 +* 805 1 1 3 662 15717977 54 1 2 3 +* 806 1 1 3 663 15718031 54 1 2 3 +* 807 1 1 3 691 15718085 270 5 2 3 +* 808 1 1 4 141 15718355 4590 85 1 3 +* 809 1 1 4 141 15722945 578346 1 1 3 +* 810 1 1 4 142 16301291 4590 85 1 3 +* 811 1 1 4 142 16305881 578346 1 1 3 +* 812 1 1 4 181 16884227 4590 85 1 3 +* 813 1 1 4 181 16888817 578346 1 1 3 +* 814 1 1 4 182 17467163 4590 85 1 3 +* 815 1 1 4 182 17471753 578346 1 1 3 +* 816 1 1 4 203 18050099 54 1 1 3 +* 817 1 1 4 203 18050153 54 1 1 3 +* 818 1 1 4 204 18050207 54 1 1 3 +* 819 1 1 4 204 18050261 54 1 1 3 +* 820 1 1 4 231 18050315 54 1 1 3 +* 821 1 1 4 232 18050369 54 1 1 3 +* 822 1 1 4 233 18050423 54 1 1 3 +* 823 1 1 4 234 18050477 54 1 1 3 +* 824 1 1 4 235 18050531 54 1 1 3 +* 825 1 1 4 236 18050585 54 1 1 3 +* 826 1 1 4 982 18050639 4590 85 1 3 +* 827 1 1 5 161 18055229 4590 85 1 3 +* 828 1 1 5 161 18059819 578346 1 1 3 +* 829 1 1 5 162 18638165 4590 85 1 3 +* 830 1 1 5 162 18642755 578346 1 1 3 +* 831 1 1 5 181 19221101 4590 85 1 3 +* 832 1 1 5 181 19225691 578346 1 1 3 +* 833 1 1 5 182 19804037 4590 85 1 3 +* 834 1 1 5 182 19808627 578346 1 1 3 +* 835 1 1 5 205 20386973 54 1 1 3 +* 836 1 1 5 205 20387027 54 1 1 3 +* 837 1 1 5 205 20387081 54 1 1 3 +* 838 1 1 5 205 20387135 54 1 1 3 +* 839 1 1 5 205 20387189 54 1 1 3 +* 840 1 1 5 205 20387243 54 1 1 3 +* 841 1 1 5 205 20387297 54 1 1 3 +* 842 1 1 5 205 20387351 54 1 1 3 +* 843 1 1 5 205 20387405 54 1 1 3 +* 844 1 1 5 205 20387459 54 1 1 3 +* 845 1 1 5 205 20387513 54 1 1 3 +* 846 1 1 5 205 20387567 6810 1 1 3 +* 847 1 1 5 206 20394377 54 1 1 3 +* 848 1 1 5 206 20394431 54 1 1 3 +* 849 1 1 5 206 20394485 54 1 1 3 +* 850 1 1 5 206 20394539 54 1 1 3 +* 851 1 1 5 206 20394593 54 1 1 3 +* 852 1 1 5 206 20394647 54 1 1 3 +* 853 1 1 5 206 20394701 54 1 1 3 +* 854 1 1 5 206 20394755 54 1 1 3 +* 855 1 1 5 206 20394809 54 1 1 3 +* 856 1 1 5 206 20394863 54 1 1 3 +* 857 1 1 5 206 20394917 54 1 1 3 +* 858 1 1 5 206 20394971 6810 1 1 3 +* 859 1 1 5 209 20401781 54 1 1 3 +* 860 1 1 5 214 20401835 54 1 1 3 +* 861 1 1 5 214 20401889 54 1 1 3 +* 862 1 1 5 214 20401943 54 1 1 3 +* 863 1 1 5 215 20401997 54 1 1 3 +* 864 1 1 5 215 20402051 54 1 1 3 +* 865 1 1 5 215 20402105 54 1 1 3 +* 866 1 1 5 215 20402159 54 1 1 3 +* 867 1 1 5 215 20402213 6810 1 1 3 +* 868 1 1 5 216 20409023 54 1 1 3 +* 869 1 1 5 216 20409077 54 1 1 3 +* 870 1 1 5 216 20409131 54 1 1 3 +* 871 1 1 5 216 20409185 54 1 1 3 +* 872 1 1 5 216 20409239 54 1 1 3 +* 873 1 1 5 216 20409293 54 1 1 3 +* 874 1 1 5 216 20409347 54 1 1 3 +* 875 1 1 5 216 20409401 54 1 1 3 +* 876 1 1 5 216 20409455 54 1 1 3 +* 877 1 1 5 216 20409509 54 1 1 3 +* 878 1 1 5 216 20409563 54 1 1 3 +* 879 1 1 5 216 20409617 54 1 1 3 +* 880 1 1 5 216 20409671 54 1 1 3 +* 881 1 1 5 216 20409725 6810 1 1 3 +* 882 1 1 5 250 20416535 4590 85 1 3 +* 883 1 1 5 250 20421125 4590 85 1 3 +* 884 1 1 5 250 20425715 578346 1 1 3 +* 885 1 1 5 251 21004061 4590 85 1 3 +* 886 1 1 5 251 21008651 4590 85 1 3 +* 887 1 1 5 251 21013241 578346 1 1 3 +* 888 1 1 5 269 21591587 54 1 1 3 +* 889 1 1 5 269 21591641 6810 1 1 3 +* 890 1 1 5 270 21598451 54 1 1 3 +* 891 1 1 5 270 21598505 6810 1 1 3 +* 892 1 1 5 272 21605315 54 1 1 3 +* 893 1 1 5 278 21605369 54 1 1 3 +* 894 1 1 5 279 21605423 54 1 1 3 +* 895 1 1 5 281 21605477 54 1 1 3 +* 896 1 1 5 282 21605531 54 1 1 3 +* 897 1 1 5 283 21605585 54 1 1 3 +* 898 1 1 5 284 21605639 54 1 1 3 +* 899 1 1 5 285 21605693 54 1 1 3 +* 900 1 1 5 286 21605747 54 1 1 3 +* 901 1 1 5 322 21605801 2808 52 1 3 +* 902 1 1 5 323 21608609 2808 52 1 3 +* 903 1 1 6 115 21611417 1026 19 11 3 +* 904 1 1 6 115 21612443 351 39 11 3 +* 905 1 1 6 115 21612794 1026 19 11 3 +* 906 1 1 6 115 21613820 351 39 11 3 +* 907 1 1 6 181 21614171 4590 85 1 3 +* 908 1 1 6 181 21618761 578346 1 1 3 +* 909 1 1 6 201 22197107 4590 85 18 3 +* 910 1 1 6 247 22201697 1026 19 11 3 +* 911 1 1 6 247 22202723 351 39 11 3 +* 912 1 1 6 247 22203074 1026 19 11 3 +* 913 1 1 8 23 22204100 54 1 2 3 +* 914 1 1 8 208 22204154 54 1 2 3 +* 915 1 1 8 209 22204208 54 1 2 3 +* 916 1 1 8 223 22204262 216 4 2 3 +* 917 1 1 8 223 22204478 216 4 2 3 +* 918 1 1 8 225 22204694 216 4 2 3 +* 919 1 1 8 225 22204910 216 4 2 3 +* 920 1 1 8 229 22205126 216 4 2 3 +* 921 1 1 8 229 22205342 216 4 2 3 +* 922 1 1 8 230 22205558 216 4 2 3 +* 923 1 1 8 230 22205774 216 4 2 3 +* 924 1 1 8 231 22205990 54 1 2 3 +* 925 1 1 8 233 22206044 54 1 2 3 +* 926 1 1 8 234 22206098 54 1 2 3 +* 927 1 1 8 234 22206152 54 1 2 3 +* 928 1 1 8 234 22206206 54 1 2 3 +* 929 1 1 8 235 22206260 54 1 2 3 +* 930 1 1 8 235 22206314 54 1 2 3 +* 931 1 1 8 235 22206368 54 1 2 3 +* 932 1 1 8 236 22206422 486 9 2 3 +* 933 1 1 8 242 22206908 54 1 2 3 +* 934 1 1 8 245 22206962 54 1 2 3 +* 935 1 1 8 249 22207016 54 1 2 3 +* 936 1 1 10 181 22207070 4590 85 1 3 +* 937 1 1 10 181 22211660 578346 1 1 3 +* 938 1 1 12 181 22790006 4590 85 1 3 +* 939 1 1 12 182 22794596 4590 85 1 3 +* 940 1 1 12 381 22799186 4590 85 1 3 +* 941 1 1 12 381 22803776 578346 1 1 3 +* 942 1 1 12 382 23382122 4590 85 1 3 +* 943 1 1 12 382 23386712 578346 1 1 3 +* 944 1 1 14 181 23965058 4590 85 1 3 +* 945 1 1 14 181 23969648 578346 1 1 3 +* 946 1 1 15 271 24547994 54 1 1 3 +* 947 1 1 15 271 24548048 54 1 1 3 +* 948 1 1 15 271 24548102 4590 85 1 3 +* 949 1 1 16 161 24552692 4590 85 1 3 +* 950 1 1 16 161 24557282 578346 1 1 3 +* 951 1 1 16 162 25135628 4590 85 1 3 +* 952 1 1 16 162 25140218 578346 1 1 3 +* 953 1 1 16 181 25718564 4590 85 1 3 +* 954 1 1 16 181 25723154 578346 1 1 3 +* 955 1 1 16 182 26301500 4590 85 1 3 +* 956 1 1 16 182 26306090 578346 1 1 3 +* 957 1 1 16 201 26884436 4590 85 1 3 +* 958 1 1 16 201 26889026 4590 85 1 3 +* 959 1 1 16 201 26893616 578346 1 1 3 +* 960 1 1 16 207 27471962 4590 85 1 3 +* 961 1 1 16 222 27476552 54 1 1 3 +* 962 1 1 16 222 27476606 54 1 1 3 +* 963 1 1 16 222 27476660 54 1 1 3 +* 964 1 1 16 222 27476714 54 1 1 3 +* 965 1 1 16 222 27476768 54 1 1 3 +* 966 1 1 16 222 27476822 6810 1 1 3 +* 967 1 1 17 257 27483632 4590 85 1 3 +* 968 1 1 26 1 27488222 144 1 23 3 +* 969 1 1 26 2 27488366 144 1 23 3 +* 970 1 1 26 3 27488510 144 1 23 3 +* 971 1 1 26 5 27488654 144 1 23 3 +* 972 1 1 26 6 27488798 144 1 23 3 +* 973 1 1 30 8 27488942 4590 85 1 3 +* 974 1 1 30 8 27493532 578346 1 1 3 +* 975 1 1 30 111 28071878 4590 85 1 3 +* 976 1 1 30 111 28076468 4590 85 1 3 +* 977 1 1 30 111 28081058 578346 1 1 3 +* 978 1 1 30 112 28659404 4590 85 1 3 +* 979 1 1 30 113 28663994 4590 85 1 3 +* 980 1 1 30 113 28668584 4590 85 1 3 +* 981 1 1 30 113 28673174 578346 1 1 3 +* 982 1 1 30 114 29251520 4590 85 1 3 +* 983 1 1 30 181 29256110 4590 85 1 3 +* 984 1 1 30 181 29260700 578346 1 1 3 +* 985 1 1 30 182 29839046 4590 85 1 3 +* 986 1 1 30 182 29843636 578346 1 1 3 +* 987 1 1 30 201 30421982 1026 19 11 3 +* 988 1 1 30 201 30423008 54 1 11 3 +* 989 1 1 30 201 30423062 54 1 11 3 +* 990 1 1 30 201 30423116 351 39 11 3 +* 991 1 1 30 201 30423467 1026 19 11 3 +* 992 1 1 30 201 30424493 351 39 11 3 +* 993 1 1 30 201 30424844 918 17 11 3 +* 994 1 1 30 202 30425762 1026 19 11 3 +* 995 1 1 30 202 30426788 54 1 11 3 +* 996 1 1 30 202 30426842 1026 19 11 3 +* 997 1 1 30 202 30427868 351 39 11 3 +* 998 1 1 30 202 30428219 918 17 11 3 +* 999 1 1 30 203 30429137 918 17 11 3 +* 1000 1 1 30 204 30430055 918 17 11 3 +* 1001 1 1 30 205 30430973 54 1 11 3 +* 1002 1 1 30 205 30431027 918 17 11 3 +* 1003 1 1 30 206 30431945 918 17 11 3 +* 1004 1 1 30 207 30432863 918 17 11 3 +* 1005 1 1 30 208 30433781 918 17 11 3 +* 1006 1 1 30 211 30434699 918 17 11 3 +* 1007 1 1 30 212 30435617 918 17 11 3 +* 1008 1 1 30 214 30436535 918 17 11 3 +* 1009 1 1 30 215 30437453 432 8 11 3 +* 1010 1 1 30 215 30437885 918 17 11 3 +* 1011 1 1 30 218 30438803 918 17 11 3 +* 1012 1 1 30 222 30439721 918 17 11 3 +* 1013 1 1 30 224 30440639 918 17 11 3 +* 1014 1 1 30 225 30441557 432 8 11 3 +* 1015 1 1 30 225 30441989 918 17 11 3 +* 1016 1 1 30 228 30442907 918 17 11 3 +* 1017 1 1 30 234 30443825 918 17 11 3 +* 1018 1 1 30 244 30444743 918 17 11 3 +* 1019 1 1 30 248 30445661 918 17 11 3 +* 1020 1 1 30 258 30446579 918 17 11 3 +* 1021 1 1 30 288 30447497 918 17 11 3 +* 1022 1 1 30 294 30448415 1026 19 1 3 +* 1023 1 1 30 294 30449441 54 1 1 3 +* 1024 1 1 30 294 30449495 54 1 1 3 +* 1025 1 1 30 294 30449549 351 39 1 3 +* 1026 1 1 30 294 30449900 1026 19 1 3 +* 1027 1 1 30 294 30450926 351 39 1 3 +* 1028 1 1 30 295 30451277 1026 19 1 3 +* 1029 1 1 30 295 30452303 1026 19 1 3 +* 1030 1 1 30 296 30453329 1026 19 1 3 +* 1031 1 1 30 296 30454355 54 1 1 3 +* 1032 1 1 30 296 30454409 1026 19 1 3 +* 1033 1 1 30 297 30455435 54 1 1 3 +* 1034 1 1 30 297 30455489 1026 19 1 3 +* 1035 1 1 30 297 30456515 54 1 1 3 +* 1036 1 1 30 297 30456569 54 1 1 3 +* 1037 1 1 30 297 30456623 54 1 1 3 +* 1038 1 1 30 297 30456677 351 39 1 3 +* 1039 1 1 30 297 30457028 1026 19 1 3 +* 1040 1 1 30 297 30458054 351 39 1 3 +* 1041 1 1 30 298 30458405 1026 19 1 3 +* 1042 1 1 30 298 30459431 54 1 1 3 +* 1043 1 1 30 298 30459485 1026 19 1 3 +* 1044 1 1 30 301 30460511 1026 19 11 3 +* 1045 1 1 30 301 30461537 54 1 11 3 +* 1046 1 1 30 301 30461591 351 39 11 3 +* 1047 1 1 30 301 30461942 1026 19 11 3 +* 1048 1 1 30 301 30462968 351 39 11 3 +* 1049 1 1 30 301 30463319 918 17 11 3 +* 1050 1 1 30 304 30464237 54 1 1 3 +* 1051 1 1 30 304 30464291 1026 19 1 3 +* 1052 1 1 30 304 30465317 54 1 1 3 +* 1053 1 1 30 304 30465371 54 1 1 3 +* 1054 1 1 30 304 30465425 54 1 1 3 +* 1055 1 1 30 304 30465479 54 1 1 3 +* 1056 1 1 30 304 30465533 54 1 1 3 +* 1057 1 1 30 304 30465587 351 39 1 3 +* 1058 1 1 30 304 30465938 1026 19 1 3 +* 1059 1 1 30 304 30466964 351 39 1 3 +* 1060 1 1 30 310 30467315 351 39 14 3 +* 1061 1 1 30 310 30467666 351 39 14 3 +* 1062 1 1 30 311 30468017 351 39 14 3 +* 1063 1 1 30 311 30468368 351 39 14 3 +* 1064 1 1 30 312 30468719 351 39 14 3 +* 1065 1 1 30 312 30469070 351 39 14 3 +* 1066 1 1 30 313 30469421 351 39 14 3 +* 1067 1 1 30 313 30469772 351 39 14 3 +* 1068 1 1 30 314 30470123 351 39 14 3 +* 1069 1 1 30 314 30470474 351 39 14 3 +* 1070 1 1 30 403 30470825 54 1 1 3 +* 1071 1 1 30 403 30470879 54 1 1 3 +* 1072 1 1 30 404 30470933 54 1 1 3 +* 1073 1 1 30 404 30470987 54 1 1 3 +* 1074 1 1 30 405 30471041 54 1 1 3 +* 1075 1 1 30 405 30471095 54 1 1 3 +* 1076 1 1 30 406 30471149 54 1 1 3 +* 1077 1 1 30 406 30471203 54 1 1 3 +* 1078 1 1 30 419 30471257 54 1 1 3 +* 1079 1 1 30 422 30471311 54 1 1 3 +* 1080 1 1 30 422 30471365 54 1 1 3 +* 1081 1 1 30 423 30471419 54 1 1 3 +* 1082 1 1 30 423 30471473 54 1 1 3 +* 1083 1 1 30 425 30471527 54 1 1 3 +* 1084 1 1 30 425 30471581 54 1 1 3 +* 1085 1 1 30 426 30471635 54 1 1 3 +* 1086 1 1 30 426 30471689 54 1 1 3 +* 1087 1 1 30 428 30471743 54 1 1 3 +* 1088 1 1 30 429 30471797 54 1 1 3 +* 1089 1 1 30 431 30471851 54 1 1 3 +* 1090 1 1 30 451 30471905 54 1 1 3 +* 1091 1 1 30 452 30471959 54 1 1 3 +* 1092 1 1 30 453 30472013 54 1 1 3 +* 1093 1 1 30 455 30472067 54 1 11 3 +* 1094 1 1 30 461 30472121 54 1 1 3 +* 1095 1 1 30 461 30472175 54 1 1 3 +* 1096 1 1 30 461 30472229 6810 1 1 3 +* 1097 1 1 30 462 30479039 54 1 1 3 +* 1098 1 1 30 462 30479093 54 1 1 3 +* 1099 1 1 30 463 30479147 54 1 1 3 +* 1100 1 1 30 463 30479201 54 1 1 3 +* 1101 1 1 34 8 30479255 7480 85 1 1 +* 1102 1 1 34 71 30486735 7480 85 1 1 +* 1103 1 1 34 72 30494215 88 1 1 1 +* 1104 1 1 34 72 30494303 7480 85 1 1 +* 1105 1 1 34 73 30501783 7480 85 1 1 +* 1106 1 1 34 75 30509263 7480 85 1 1 +* 1107 1 1 34 91 30516743 7480 85 1 1 +* 1108 1 1 34 92 30524223 7480 85 1 1 +* 1109 1 1 34 101 30531703 7480 85 1 1 +* 1110 1 1 34 102 30539183 88 1 1 1 +* 1111 1 1 34 102 30539271 7480 85 1 1 +* 1112 1 1 34 103 30546751 7480 85 1 1 +* 1113 1 1 34 104 30554231 88 1 1 1 +* 1114 1 1 34 104 30554319 7480 85 1 1 +* 1115 1 1 34 105 30561799 88 1 1 1 +* 1116 1 1 34 105 30561887 7480 85 1 1 +* 1117 1 1 34 106 30569367 88 1 1 1 +* 1118 1 1 34 106 30569455 7480 85 1 1 +* 1119 1 1 34 107 30576935 7480 85 1 1 +* 1120 1 1 34 108 30584415 88 1 1 1 +* 1121 1 1 34 108 30584503 7480 85 1 1 +* 1122 1 1 34 109 30591983 88 1 1 1 +* 1123 1 1 34 109 30592071 7480 85 1 1 +* 1124 1 1 34 110 30599551 88 1 1 1 +* 1125 1 1 34 110 30599639 7480 85 1 1 +* 1126 1 1 34 111 30607119 88 1 1 1 +* 1127 1 1 34 111 30607207 7480 85 1 1 +* 1128 1 1 34 113 30614687 7480 85 1 1 +* 1129 1 1 34 114 30622167 88 1 1 1 +* 1130 1 1 34 114 30622255 7480 85 1 1 +* 1131 1 1 34 115 30629735 88 1 1 1 +* 1132 1 1 34 115 30629823 7480 85 1 1 +* 1133 1 1 34 116 30637303 88 1 1 1 +* 1134 1 1 34 116 30637391 7480 85 1 1 +* 1135 1 1 34 117 30644871 88 1 1 1 +* 1136 1 1 34 117 30644959 7480 85 1 1 +* 1137 1 1 34 119 30652439 7480 85 1 1 +* 1138 1 1 34 120 30659919 88 1 1 1 +* 1139 1 1 34 120 30660007 7480 85 1 1 +* 1140 1 1 34 121 30667487 88 1 1 1 +* 1141 1 1 34 121 30667575 7480 85 1 1 +* 1142 1 1 34 126 30675055 88 1 1 1 +* 1143 1 1 34 126 30675143 7480 85 1 1 +* 1144 1 1 35 24 30682623 578346 1 1 3 +* 1145 1 1 35 25 31260969 4590 85 1 3 +* 1146 1 1 35 25 31265559 578346 1 1 3 +* 1147 1 1 35 29 31843905 4590 85 1 3 +* 1148 1 1 38 201 31848495 4590 85 1 3 +* 1149 1 1 38 202 31853085 4590 85 1 3 +* 1150 1 1 38 203 31857675 4590 85 1 3 +* 1151 1 1 38 204 31862265 4590 85 1 3 +* 1152 1 1 38 205 31866855 4590 85 1 3 +* 1153 1 1 38 207 31871445 4590 85 1 3 +* 1154 1 1 38 285 31876035 4590 85 1 3 +* 1155 1 1 38 286 31880625 4590 85 1 3 +* 1156 1 1 38 288 31885215 4590 85 1 3 +* 1157 1 1 38 289 31889805 4590 85 1 3 +* 1158 1 1 38 301 31894395 4590 85 1 3 +* 1159 1 1 38 302 31898985 4590 85 1 3 +* 1160 1 1 38 303 31903575 4590 85 1 3 +* 1161 1 1 38 304 31908165 4590 85 1 3 +* 1162 1 1 38 305 31912755 4590 85 1 3 +* 1163 1 1 38 504 31917345 4590 85 1 3 +* 1164 1 1 38 505 31921935 4590 85 1 3 +* 1165 1 1 38 506 31926525 4590 85 1 3 +* 1166 1 1 38 507 31931115 4590 85 1 3 +* 1167 1 1 38 508 31935705 4590 85 1 3 +* 1168 1 1 38 545 31940295 54 1 1 3 +* 1169 1 1 38 560 31940349 54 1 1 3 +* 1170 1 1 38 560 31940403 54 1 1 3 +* 1171 1 1 38 560 31940457 4590 85 1 3 +* 1172 1 1 38 561 31945047 54 1 1 3 +* 1173 1 1 38 561 31945101 54 1 1 3 +* 1174 1 1 38 561 31945155 4590 85 1 3 +* 1175 1 1 50 1 31949745 4590 85 1 3 +* 1176 1 1 50 3 31954335 4590 85 1 3 +* 1177 1 1 50 11 31958925 4590 85 1 3 +* 1178 1 1 50 13 31963515 4590 85 1 3 +* 1179 1 1 50 14 31968105 4590 85 1 3 +* 1180 1 1 50 15 31972695 4590 85 1 3 +* 1181 1 1 50 62 31977285 4590 85 1 3 +* 1182 1 1 50 63 31981875 4590 85 1 3 +* 1183 1 1 50 71 31986465 4590 85 1 3 +* 1184 1 1 50 81 31991055 4590 85 1 3 +* 1185 1 1 50 103 31995645 4590 85 1 3 +* 1186 1 1 50 131 32000235 4590 85 1 3 +* 1187 1 1 50 150 32004825 4590 85 1 3 +* 1188 1 1 50 214 32009415 54 1 1 3 +* 1189 1 1 50 215 32009469 54 1 1 3 +* 1190 1 1 50 216 32009523 54 1 1 3 +* 1191 1 1 50 217 32009577 4590 85 1 3 +* 1192 1 1 50 255 32014167 4590 85 1 3 +* 1193 1 1 50 255 32018757 4590 85 1 3 +* 1194 1 1 51 150 32023347 351 39 1 3 +* 1195 1 1 51 999 32023698 1026 19 1 3 +* 1196 1 1 51 999 32024724 351 39 1 3 +* 1197 3 1 0 406 32025075 7568 86 1 1 +* 1198 3 1 0 407 32032643 7568 86 1 1 +* 1199 3 1 0 408 32040211 7568 86 1 1 +* 1200 3 1 0 409 32047779 54 1 1 3 +* 1201 3 1 0 410 32047833 4698 87 1 3 +* 1202 3 1 0 411 32052531 4644 86 1 3 +* 1203 3 1 0 412 32057175 88 1 1 1 +* 1204 2 1 0 406 32057263 7480 85 1 1 +* 1205 2 1 0 407 32064743 7480 85 1 1 +* 1206 2 1 0 408 32072223 7480 85 1 1 +* 1207 2 1 0 409 32079703 54 1 1 3 +* 1208 2 1 1 201 32079757 54 1 1 3 +* 1209 2 1 1 235 32079811 54 1 1 3 +* 1210 2 1 3 60 32079865 2700 50 1 3 +* 1211 2 1 3 64 32082565 2700 50 1 3 +* 1212 2 1 3 65 32085265 54 1 1 3 +* 1213 2 1 3 66 32085319 270 5 1 3 +* 1214 2 1 3 67 32085589 270 5 1 3 +* 1215 2 1 3 68 32085859 270 5 1 3 +* 1216 2 1 3 69 32086129 54 1 1 3 +* 1217 2 1 3 70 32086183 270 5 1 3 +* 1218 2 1 3 71 32086453 270 5 1 3 +* 1219 2 1 3 72 32086723 270 5 1 3 +* 1220 2 1 3 73 32086993 54 1 1 3 +* 1221 2 1 3 217 32087047 54 1 1 3 +* 1222 2 1 3 230 32087101 54 1 1 3 +* 1223 2 1 3 462 32087155 270 5 1 3 +* 1224 2 1 3 465 32087425 54 1 1 3 +* 1225 2 1 3 473 32087479 2700 50 1 3 +* 1226 2 1 4 205 32090179 4590 85 1 3 +* 1227 2 1 4 222 32094769 4590 85 1 3 +* 1228 2 1 4 223 32099359 4590 85 1 3 +* 1229 2 1 4 247 32103949 4590 85 1 3 +* 1230 2 1 4 248 32108539 4590 85 1 3 +* 1231 2 1 4 253 32113129 4590 85 1 3 +* 1232 2 1 4 254 32117719 4590 85 1 3 +* 1233 2 1 4 257 32122309 4590 85 1 3 +* 1234 2 1 4 258 32126899 4590 85 1 3 +* 1235 2 1 5 218 32131489 54 1 1 3 +* 1236 2 1 5 219 32131543 54 1 1 3 +* 1237 2 1 5 227 32131597 4590 85 1 3 +* 1238 2 1 5 228 32136187 4590 85 1 3 +* 1239 2 1 8 242 32140777 54 1 2 3 +* 1240 2 1 15 218 32140831 4590 85 1 3 +* 1241 2 1 30 453 32145421 54 1 1 3 +******************************************************************************* + + +Read in all 28959 fields. +[0] +[0] READING UNIFIED MODEL DUMP ON UNIT 38 +[0] ##################################### +[0] +[1] um_readdump: thread 1 is inactive +[0] readflds[0] : reading fields 1 to 57 on this PE. +[0] +[0] ???????????????????????????????????????????????????????????????????????????????? +[0] ?????????????????????????????? WARNING ?????????????????????????????? +[0] ? Warning code: -23 +[0] ? Warning from routine: READFLDS_CORE +[0] ? Warning message: READFLDS: alltoall was selected, but a field being read is currently un-handled. Resetting read method. +[0] ? Warning from processor: 0 +[0] ? Warning number: 41 +[0] ???????????????????????????????????????????????????????????????????????????????? +[0] +[0] Data successfully read +[0] 794416694 words read from unit 38 +[0] (Model data) +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790301_00 Closed on Unit 38 +FILE_MANAGER: Released : Unit : 38 (portio) + +INTEGER CONSTANTS +----------------- +Number of timesteps since start of run - -32768 +Meaning interval for mean fields (hrs) - -32768 +Number of dumps used to generate mean - -32768 +No of hrs between neighbouring contiguous sections of means - -32768 +No of hrs between end of one contiguous section and start of next - -32768 +Number of E-W x N-S points - 192 x 144 +Number of levels - 85 +Number of wet levels - 85 +Number of soil temperature levels - 4 +Number of soil moisture levels - 4 +Number of tracer levels - 85 +Number of boundary layer levels - 50 +Number of passive tracers advected - 0 + +REAL CONSTANTS +-------------- +E-W grid spacing in degrees - 0.1875E+01 +N-S grid spacing in degress - 0.1250E+01 +Latitude of first row in degrees - -0.9000E+02 +Longitude of first point in a row in degrees - 0.0000E+00 +Real latitude of pseudo North Pole in degrees - 0.9000E+02 +Real longitude of pseudo North Pole in degrees - 0.0000E+00 +Grid orientation in degrees - -0.1074E+10 +Year Day Hour Minute Second +Atmosphere time = -0.1074E+10 -0.1074E+10 -0.1074E+10 -0.1074E+10 -0.1074E+10 +Mass, energy, energy drift = 0.5130E+19 0.1306E+25 0.3510E-08 +Successfully retrieved ens_member = 0 + + +INITMEAN: ***** Called in ATMOSPHERIC mode ***** +INITMEAN: No means requested +ancil_reftime set by User Interface +ancil_reftime(1) = 1979 +ancil_reftime(2) = 12 +ancil_reftime(3) = 1 +ancil_reftime(4) = 0 +ancil_reftime(5) = 0 +ancil_reftime(6) = 0 +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.ozone +FILE_MANAGER: : Unit : 38 (portio) +Ancil file num : 1 +Ancil file unit num: 38 +Ancil filename : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.ozone +Stash req = 60 +--------------------------------------------- +------------------ +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.seaice +FILE_MANAGER: : Unit : 39 (portio) +Ancil file num : 2 +Ancil file unit num: 39 +Ancil filename : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.seaice +Stash req = 31 +Stash req = 32 +--------------------------------------------- +------------------ +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sst +FILE_MANAGER: : Unit : 40 (portio) +Ancil file num : 3 +Ancil file unit num: 40 +Ancil filename : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sst +Stash req = 24 +--------------------------------------------- +------------------ +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.frac +FILE_MANAGER: : Unit : 41 (portio) +Ancil file num : 4 +Ancil file unit num: 41 +Ancil filename : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.frac +Stash req = 216 +--------------------------------------------- +------------------ +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.func +FILE_MANAGER: : Unit : 42 (portio) +Ancil file num : 5 +Ancil file unit num: 42 +Ancil filename : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.func +Stash req = 217 +Stash req = 218 +--------------------------------------------- +------------------ +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sulpdms +FILE_MANAGER: : Unit : 43 (portio) +Ancil file num : 6 +Ancil file unit num: 43 +Ancil filename : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sulpdms +Stash req = 132 +--------------------------------------------- +------------------ +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sea +FILE_MANAGER: : Unit : 44 (portio) +Ancil file num : 7 +Ancil file unit num: 44 +Ancil filename : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sea +Stash req = 96 +--------------------------------------------- +------------------ + +9 Atmos Ancillaries to be updated. +Anc field 1 Stash code 60 Interval 1 Months +Anc field 2 Stash code 31 Interval 1 Days +Anc field 3 Stash code 24 Interval 1 Days +Anc field 4 Stash code 32 Interval 1 Days +Anc field 5 Stash code 216 Interval 5 Days +Anc field 6 Stash code 217 Interval 1 Days +Anc field 7 Stash code 218 Interval 1 Days +Anc field 8 Stash code 132 Interval 1 Days +Anc field 9 Stash code 96 Interval 1 Days + + +Ancillary file 1 unit 38 : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.ozone +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.ozone to be Opened on Unit 38 Exists +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.ozone on unit 38 +Unspecified calendar type in ancillary file 1 + +Ancillary file 2 unit 39 : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.seaice +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.seaice to be Opened on Unit 39 Exists +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.seaice on unit 39 +Unspecified calendar type in ancillary file 2 + +Ancillary file 3 unit 40 : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sst +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sst to be Opened on Unit 40 Exists +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sst on unit 40 +Unspecified calendar type in ancillary file 3 + +Ancillary file 4 unit 41 : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.frac +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.frac to be Opened on Unit 41 Exists +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.frac on unit 41 +Unspecified calendar type in ancillary file 4 + +Ancillary file 5 unit 42 : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.func +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.func to be Opened on Unit 42 Exists +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.func on unit 42 +Unspecified calendar type in ancillary file 5 + +Ancillary file 6 unit 43 : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sulpdms +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sulpdms to be Opened on Unit 43 Exists +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sulpdms on unit 43 +Unspecified calendar type in ancillary file 6 + +Ancillary file 7 unit 44 : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sea +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sea to be Opened on Unit 44 Exists +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sea on unit 44 +Unspecified calendar type in ancillary file 7 + +********************** This run uses bit-reproducible code ******************** + +************************ PE configuration for this run *********************** +**** PE configuration: 32 processors East-West 16 processors North-South * + +================================================ +Top-of-atmosphere: 6459178.9929999998 +================================================ +** Generating standard E-W grid ** +WARNING - +only New combi-filter is compatible with ENDGAME +****** Polar filter is OFF ****** + +*** Targeted diffusion of q is NOT ACTIVE *** +No additional upper-level diffusion +z_nl_bl_levels= 6.0000E+03 which gives nl_bl_levels = 30 +moisture super array size, moisture_array_size = 9 +For moisture components +tri-linear monotone scheme used. +water vapour uses the same monotone scheme as the other moist components +tracer super array size, tracer_array_size = 34 +turbulence super array size, turb_array_size = 1 + + +******************************************************************************** + +Atm_Step: Timestep 2832 Model time: 1979-03-01 00:00:00 + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? WARNING ?????????????????????????????? +? Warning code: -1 +? Warning from routine: eg_SISL_setcon +? Warning message: Constant gravity enforced +? Warning from processor: 0 +? Warning number: 42 +???????????????????????????????????????????????????????????????????????????????? + + +*********************** Reading spectral files *********************** +SW spectral file: spectral_files/sp_sw_ga9 +FILE_MANAGER: Assigned : spectral_files/sp_sw_ga9 +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Assigned : spectral_files/sp_sw_ga9_k +FILE_MANAGER: : Unit : 16 (fortran) +FILE_MANAGER: Assigned : spectral_files/sp_sw_ga9_var +FILE_MANAGER: : Unit : 17 (fortran) +FILE_MANAGER: Released : Unit : 17 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 16 (fortran) +LW spectral file: spectral_files/sp_lw_ga9 +FILE_MANAGER: Assigned : spectral_files/sp_lw_ga9 +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Assigned : spectral_files/sp_lw_ga9_k +FILE_MANAGER: : Unit : 16 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 16 (fortran) + +Reading McICA data file: spectral_files/mcica_data +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_ac_sw +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_cr_sw +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_an_sw +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_cn_sw +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_su_sw +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_ac_lw +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_cr_lw +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_an_lw +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_cn_lw +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/UKCA/radaer/ga7_1/nml_su_lw +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +FILE_MANAGER: Assigned : /common/internal/umdir/vn13.8/ctldata/spectral/ga7_1/RADAER_pcalc.ukca +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +********************************************************************** + +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm1979feb to be Opened on Unit 11 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x1f9ac1e0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm1979feb on unit 11 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa1979feb to be Opened on Unit 12 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x1fdac1f0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa1979feb on unit 12 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pb1979jan to be Opened on Unit 13 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x2114c5d0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pb1979jan on unit 13 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk1979feb to be Opened on Unit 14 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x2194c9d0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk1979feb on unit 14 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl1979feb to be Opened on Unit 15 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x22cecdd0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl1979feb on unit 15 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p11979feb to be Opened on Unit 16 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x234ed1d0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p11979feb on unit 16 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p21979feb to be Opened on Unit 17 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x2488d5d0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p21979feb on unit 17 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p31979feb to be Opened on Unit 18 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x25c2d9d0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p31979feb on unit 18 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p41979feb to be Opened on Unit 19 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x26fcddd0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p41979feb on unit 19 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p51979feb to be Opened on Unit 20 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x273cdde0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p51979feb on unit 20 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p61979feb to be Opened on Unit 21 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x277cddf0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p61979feb on unit 21 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p71979feb to be Opened on Unit 22 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x27bcde00 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p71979feb on unit 22 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p81979feb to be Opened on Unit 23 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x27fcde10 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p81979feb on unit 23 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn1979feb to be Opened on Unit 24 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x283cde20 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn1979feb on unit 24 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p91979feb to be Opened on Unit 25 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x28bce2b0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p91979feb on unit 25 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt1979feb to be Opened on Unit 26 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x28fce2c0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt1979feb on unit 26 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu1979feb to be Opened on Unit 27 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x293ce2d0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu1979feb on unit 27 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv1979feb to be Opened on Unit 28 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x297ce2e0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv1979feb on unit 28 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pc1979jan to be Opened on Unit 29 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x29bce2f0 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pc1979jan on unit 29 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd1979feb to be Opened on Unit 30 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x29fce300 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd1979feb on unit 30 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe1979feb to be Opened on Unit 31 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x2b36e710 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe1979feb on unit 31 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pf1979jan to be Opened on Unit 32 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x2c70eb10 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pf1979jan on unit 32 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pg1979jan to be Opened on Unit 33 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x2cf0ef10 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pg1979jan on unit 33 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph1979feb to be Opened on Unit 34 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x2e2af310 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph1979feb on unit 34 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pi1979jan to be Opened on Unit 35 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x2f843510 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pi1979jan on unit 35 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pj1979jan to be Opened on Unit 36 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x30043910 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pj1979jan on unit 36 +loadHeader: Model Version: 13.8 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz1979feb to be Opened on Unit 37 Exists +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x30843d10 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz1979feb on unit 37 +loadHeader: Model Version: 13.8 +REPLANCA: UPDATE REQUIRED FOR FIELD1 +REPLANCA - time interpolation for ancillary field, stashcode 60 +targ_time,time1,time2 -6228.00000 -6264.00000 -5520.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:132771 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 85 Number of steps1562 +STASH code in dataset 60 STASH code requested 60 +'start' position of lookup tables for dataset 1in overall lookup array 1 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6588.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6588.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD5 +REPLANCA - time interpolation for ancillary field, stashcode 216 +targ_time,time1,time2 -6540.00000 -12396.00000 -3636.00000 +hours,int,period -32768 12 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1162 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 9 Number of steps129 +STASH code in dataset 216 STASH code requested 216 +'start' position of lookup tables for dataset 4in overall lookup array 182173 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6588.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6588.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6588.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6588.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 +U_MODEL_4A - OBS arrays allocated with sizes 0, 2048 +Model running with timestep 1800.00 seconds +FILE_MANAGER: Assigned : testia.pm1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm1979feb Closed on Unit 11 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm1979mar on unit 11 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm1979mar to be Opened on Unit 11 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm1979mar Created on Unit 11 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm1979mar on unit 11 +PPCTL_REINIT: Initialising new file on unit 11 +FILE_MANAGER: Assigned : testia.pa1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa1979feb Closed on Unit 12 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa1979mar on unit 12 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa1979mar to be Opened on Unit 12 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa1979mar Created on Unit 12 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa1979mar on unit 12 +PPCTL_REINIT: Initialising new file on unit 12 +FILE_MANAGER: Assigned : testia.pk1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk1979feb Closed on Unit 14 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk1979mar on unit 14 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk1979mar to be Opened on Unit 14 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk1979mar Created on Unit 14 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk1979mar on unit 14 +PPCTL_REINIT: Initialising new file on unit 14 +FILE_MANAGER: Assigned : testia.pl1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl1979feb Closed on Unit 15 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl1979mar on unit 15 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl1979mar to be Opened on Unit 15 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl1979mar Created on Unit 15 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl1979mar on unit 15 +PPCTL_REINIT: Initialising new file on unit 15 +FILE_MANAGER: Assigned : testia.p11979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p11979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p1%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p11979feb Closed on Unit 16 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p11979mar on unit 16 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p11979mar to be Opened on Unit 16 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p11979mar Created on Unit 16 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p11979mar on unit 16 +PPCTL_REINIT: Initialising new file on unit 16 +FILE_MANAGER: Assigned : testia.p21979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p21979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p2%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p21979feb Closed on Unit 17 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p21979mar on unit 17 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p21979mar to be Opened on Unit 17 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p21979mar Created on Unit 17 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p21979mar on unit 17 +PPCTL_REINIT: Initialising new file on unit 17 +FILE_MANAGER: Assigned : testia.p31979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p31979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p3%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p31979feb Closed on Unit 18 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p31979mar on unit 18 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p31979mar to be Opened on Unit 18 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p31979mar Created on Unit 18 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p31979mar on unit 18 +PPCTL_REINIT: Initialising new file on unit 18 +FILE_MANAGER: Assigned : testia.p41979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p41979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p4%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p41979feb Closed on Unit 19 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p41979mar on unit 19 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p41979mar to be Opened on Unit 19 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p41979mar Created on Unit 19 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p41979mar on unit 19 +PPCTL_REINIT: Initialising new file on unit 19 +FILE_MANAGER: Assigned : testia.p51979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p51979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p5%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p51979feb Closed on Unit 20 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p51979mar on unit 20 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p51979mar to be Opened on Unit 20 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p51979mar Created on Unit 20 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p51979mar on unit 20 +PPCTL_REINIT: Initialising new file on unit 20 +FILE_MANAGER: Assigned : testia.p61979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p61979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p6%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p61979feb Closed on Unit 21 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p61979mar on unit 21 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p61979mar to be Opened on Unit 21 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p61979mar Created on Unit 21 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p61979mar on unit 21 +PPCTL_REINIT: Initialising new file on unit 21 +FILE_MANAGER: Assigned : testia.p71979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p71979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p7%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p71979feb Closed on Unit 22 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p71979mar on unit 22 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p71979mar to be Opened on Unit 22 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p71979mar Created on Unit 22 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p71979mar on unit 22 +PPCTL_REINIT: Initialising new file on unit 22 +FILE_MANAGER: Assigned : testia.p81979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p81979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p8%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p81979feb Closed on Unit 23 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p81979mar on unit 23 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p81979mar to be Opened on Unit 23 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p81979mar Created on Unit 23 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p81979mar on unit 23 +PPCTL_REINIT: Initialising new file on unit 23 +FILE_MANAGER: Assigned : testia.pn1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn1979feb Closed on Unit 24 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn1979mar on unit 24 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn1979mar to be Opened on Unit 24 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn1979mar Created on Unit 24 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn1979mar on unit 24 +PPCTL_REINIT: Initialising new file on unit 24 +FILE_MANAGER: Assigned : testia.p91979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p91979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p9%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p91979feb Closed on Unit 25 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p91979mar on unit 25 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p91979mar to be Opened on Unit 25 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p91979mar Created on Unit 25 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p91979mar on unit 25 +PPCTL_REINIT: Initialising new file on unit 25 +FILE_MANAGER: Assigned : testia.pt1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt1979feb Closed on Unit 26 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt1979mar on unit 26 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt1979mar to be Opened on Unit 26 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt1979mar Created on Unit 26 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt1979mar on unit 26 +PPCTL_REINIT: Initialising new file on unit 26 +FILE_MANAGER: Assigned : testia.pu1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu1979feb Closed on Unit 27 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu1979mar on unit 27 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu1979mar to be Opened on Unit 27 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu1979mar Created on Unit 27 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu1979mar on unit 27 +PPCTL_REINIT: Initialising new file on unit 27 +FILE_MANAGER: Assigned : testia.pv1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv1979feb Closed on Unit 28 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv1979mar on unit 28 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv1979mar to be Opened on Unit 28 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv1979mar Created on Unit 28 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv1979mar on unit 28 +PPCTL_REINIT: Initialising new file on unit 28 +FILE_MANAGER: Assigned : testia.pd1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd1979feb Closed on Unit 30 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd1979mar on unit 30 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd1979mar to be Opened on Unit 30 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd1979mar Created on Unit 30 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd1979mar on unit 30 +PPCTL_REINIT: Initialising new file on unit 30 +FILE_MANAGER: Assigned : testia.pe1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe1979feb Closed on Unit 31 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe1979mar on unit 31 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe1979mar to be Opened on Unit 31 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe1979mar Created on Unit 31 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe1979mar on unit 31 +PPCTL_REINIT: Initialising new file on unit 31 +FILE_MANAGER: Assigned : testia.ph1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph1979feb Closed on Unit 34 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph1979mar on unit 34 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph1979mar to be Opened on Unit 34 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph1979mar Created on Unit 34 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph1979mar on unit 34 +PPCTL_REINIT: Initialising new file on unit 34 +FILE_MANAGER: Assigned : testia.pz1979feb.arch +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz1979mar +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz%C +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz1979feb Closed on Unit 37 +PPCTL_REINIT: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz1979mar on unit 37 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz1979mar to be Opened on Unit 37 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz1979mar Created on Unit 37 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz1979mar on unit 37 +PPCTL_REINIT: Initialising new file on unit 37 + +******************************************************************************** + +Atm_Step: Timestep 2833 Model time: 1979-03-01 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Initialising coarse grids... +Number of multigrid level requested : 3 +Number of multigrid level allowed (lon/lat) : ( 3 / 4 ) +Level 1: 192 x 144 x 85 = 2350080 +Level 2: 96 x 94 x 85 = 767040 +Level 3: 48 x 57 x 85 = 232560 +grid complexity = 1.4253 [ lower bound = 1.3125 ] +...Done + +Constructing Helmholtz operator... +SP data present, assigning to array +SPT data read in from dump header +SKEB2 data read in from dump header +RP2 data read in from dump header + +*** STPH SETUP *** +L_RP2 =T +L_SKEB2 = T +L_SPT = T +STPHSEED = 0 +Successfully retrieved ens_member = 0 +STPH SETUP: Size of Random Seed 1 +STPH SETUP: Random seed generated using model date +699874288 +Reading iranseed from dump headers +Value of iranseed read from dump 132314698419561 +CALLING RANDOM PARAMETERS2 +EasyAerosol variable easy_extinction_sw found in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_extinction_sw.nc +EasyAerosol distribution number 1 initialised. +Source file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_extinction_sw.nc +Source variable name easy_extinction_sw +Source standard name +Source long name extinction coefficient of EasyAerosol +Source variable units m-1 +Variable ID, ndims, n_specbands 1 4 6 +Update frequency and type 120 1 +EasyAerosol variable easy_absorption_sw found in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_absorption_sw.nc +EasyAerosol distribution number 2 initialised. +Source file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_absorption_sw.nc +Source variable name easy_absorption_sw +Source standard name +Source long name absorption coefficient of EasyAerosol +Source variable units m-1 +Variable ID, ndims, n_specbands 1 4 6 +Update frequency and type 120 1 +EasyAerosol variable easy_asymmetry_sw found in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_asymmetry_sw.nc +EasyAerosol distribution number 3 initialised. +Source file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_asymmetry_sw.nc +Source variable name easy_asymmetry_sw +Source standard name +Source long name asymmetry parameter of EasyAerosol +Source variable units m-1 +Variable ID, ndims, n_specbands 1 4 6 +Update frequency and type 120 1 +EasyAerosol variable easy_extinction_lw found in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_extinction_lw.nc +EasyAerosol distribution number 4 initialised. +Source file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_extinction_lw.nc +Source variable name easy_extinction_lw +Source standard name +Source long name extinction coefficient of EasyAerosol +Source variable units m-1 +Variable ID, ndims, n_specbands 1 4 9 +Update frequency and type 120 1 +EasyAerosol variable easy_absorption_lw found in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_absorption_lw.nc +EasyAerosol distribution number 5 initialised. +Source file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_absorption_lw.nc +Source variable name easy_absorption_lw +Source standard name +Source long name absorption coefficient of EasyAerosol +Source variable units m-1 +Variable ID, ndims, n_specbands 1 4 9 +Update frequency and type 120 1 +EasyAerosol variable easy_asymmetry_lw found in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_asymmetry_lw.nc +EasyAerosol distribution number 6 initialised. +Source file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_easyaerosol/volc_aer_asymmetry_lw.nc +Source variable name easy_asymmetry_lw +Source standard name +Source long name asymmetry parameter of EasyAerosol +Source variable units m-1 +Variable ID, ndims, n_specbands 1 4 9 +Update frequency and type 120 1 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +L_SKEB2_PSISDISP = T +L_SKEB2_PSICDISP = T +SKEB2_CDISP type = 4 +L_SKEB2_VELPOT = T +retrieving dpsidtc/dpsidts from dump header array +update_dpsidt: updating based on existing values +retrieving coeffc/coeffs from dump header array +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043592 + +* 1 1 3 0.100000E+01 0.828367E-04 * +Number of iterations = 2 +Initial residual = 0.014170 +Final residual = 0.000046 +Average conv. rate = 0.056833 + +* 1 2 2 0.141698E-01 0.457683E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109917 +Final residual = 0.000014 +Average conv. rate = 0.049708 + +* 2 1 3 0.109917E+00 0.135003E-04 * +Number of iterations = 1 +Initial residual = 0.001528 +Final residual = 0.000058 +Average conv. rate = 0.038262 + +* 2 2 1 0.152849E-02 0.584833E-04 * +*************************************************************** + +Atm_Step_4A: Cariolle scheme not called +Setting up Fm matrix for FV-TRACK at vor. 850hPa + +Minimum theta level 1 for timestep 2833 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.53 455 82.5deg E 70.0deg N 226.53 2833 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.04K. At min for run = -3.04K + +Maximum vertical velocity at timestep 2833 Max w this run +w_max level proc position run w_max level timestep +0.583E+00 29 194 30.0deg E -14.4deg S 0.583E+00 29 2833 +13 files found in emission namelist +Found BC_biofuel in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_BC_biofuel.nc +Found BC_fossil in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_BC_fossil.nc +Found DMS in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_DMS.nc +Found Monoterp in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_Monoterp.nc +Found OC_biofuel (translates to OM_biofuel) in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_OC_biofuel.nc +Found OC_fossil (translates to OM_fossil ) in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_OC_fossil.nc +Found SO2_high in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_SO2_high.nc +Found SO2_low in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_SO2_low.nc +Found SO2_nat in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_SO2_nat.nc +Found BC_biomass in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_BC_biomass_high.nc +Found BC_biomass in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_BC_biomass_low.nc +Found OC_biomass (translates to OM_biomass) in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_OC_biomass_high.nc +Found OC_biomass (translates to OM_biomass) in /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil_ukca/ukca_emiss_OC_biomass_low.nc +Number of NetCDF emission fields: 41 +5 files found in offline namelist +Number of NetCDF offline fields: 5 +UKCA AGE-OF-AIR: Reset method= 1. Tracer will be reset upto level 10 +Number of online emission fields: 15 +Total number of emission fields: 56 +Number of independent hourly emission profiles found: 2 + +******************************************************************************** + +Atm_Step: Timestep 2834 Model time: 1979-03-01 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043800 + +* 1 1 3 0.100000E+01 0.840293E-04 * +Number of iterations = 2 +Initial residual = 0.013980 +Final residual = 0.000045 +Average conv. rate = 0.056550 + +* 1 2 2 0.139805E-01 0.447089E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108939 +Final residual = 0.000013 +Average conv. rate = 0.049620 + +* 2 1 3 0.108939E+00 0.133092E-04 * +Number of iterations = 1 +Initial residual = 0.001497 +Final residual = 0.000058 +Average conv. rate = 0.038982 + +* 2 2 1 0.149696E-02 0.583542E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2834 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.42 455 82.5deg E 70.0deg N 226.42 2834 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.11K. At min for run = -3.11K + +Maximum vertical velocity at timestep 2834 Max w this run +w_max level proc position run w_max level timestep +0.555E+00 27 175 176.2deg E -24.4deg S 0.583E+00 29 2833 +[0] Initial and final fill-in: 14 14 +[0] spfjsize_max is currently set to: 1000 +[0] Reduce spfjsize_max if much greater than total1 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2835 Model time: 1979-03-01 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043173 + +* 1 1 3 0.100000E+01 0.804720E-04 * +Number of iterations = 2 +Initial residual = 0.013909 +Final residual = 0.000046 +Average conv. rate = 0.057350 + +* 1 2 2 0.139087E-01 0.457469E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111356 +Final residual = 0.000013 +Average conv. rate = 0.048651 + +* 2 1 3 0.111356E+00 0.128230E-04 * +Number of iterations = 1 +Initial residual = 0.001498 +Final residual = 0.000059 +Average conv. rate = 0.039141 + +* 2 2 1 0.149797E-02 0.586328E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2835 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.31 455 84.4deg E 70.0deg N 226.31 2835 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.55K. At min for run = -3.55K + +Maximum vertical velocity at timestep 2835 Max w this run +w_max level proc position run w_max level timestep +0.605E+00 28 175 176.2deg E -24.4deg S 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2836 Model time: 1979-03-01 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042812 + +* 1 1 3 0.100000E+01 0.784673E-04 * +Number of iterations = 2 +Initial residual = 0.013858 +Final residual = 0.000045 +Average conv. rate = 0.057281 + +* 1 2 2 0.138581E-01 0.454701E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108202 +Final residual = 0.000013 +Average conv. rate = 0.049158 + +* 2 1 3 0.108202E+00 0.128534E-04 * +Number of iterations = 1 +Initial residual = 0.001450 +Final residual = 0.000059 +Average conv. rate = 0.040410 + +* 2 2 1 0.144980E-02 0.585861E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2836 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.21 455 84.4deg E 70.0deg N 226.21 2836 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.56K. At min for run = -3.56K + +Maximum vertical velocity at timestep 2836 Max w this run +w_max level proc position run w_max level timestep +0.601E+00 28 175 176.2deg E -24.4deg S 0.605E+00 28 2835 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2837 Model time: 1979-03-01 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043277 + +* 1 1 3 0.100000E+01 0.810516E-04 * +Number of iterations = 2 +Initial residual = 0.014037 +Final residual = 0.000046 +Average conv. rate = 0.057188 + +* 1 2 2 0.140365E-01 0.459056E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109365 +Final residual = 0.000012 +Average conv. rate = 0.048441 + +* 2 1 3 0.109365E+00 0.124317E-04 * +Number of iterations = 1 +Initial residual = 0.001451 +Final residual = 0.000058 +Average conv. rate = 0.040278 + +* 2 2 1 0.145103E-02 0.584450E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2837 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.12 455 82.5deg E 70.0deg N 226.12 2837 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.27K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2837 Max w this run +w_max level proc position run w_max level timestep +0.531E+00 28 175 176.2deg E -24.4deg S 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2838 Model time: 1979-03-01 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043724 + +* 1 1 3 0.100000E+01 0.835907E-04 * +Number of iterations = 2 +Initial residual = 0.014133 +Final residual = 0.000046 +Average conv. rate = 0.057113 + +* 1 2 2 0.141328E-01 0.460994E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107493 +Final residual = 0.000012 +Average conv. rate = 0.047896 + +* 2 1 3 0.107493E+00 0.118107E-04 * +Number of iterations = 1 +Initial residual = 0.001450 +Final residual = 0.000058 +Average conv. rate = 0.040242 + +* 2 2 1 0.144972E-02 0.583395E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2838 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.09 455 82.5deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.27K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2838 Max w this run +w_max level proc position run w_max level timestep +0.522E+00 29 175 176.2deg E -24.4deg S 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2839 Model time: 1979-03-01 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043537 + +* 1 1 3 0.100000E+01 0.825255E-04 * +Number of iterations = 2 +Initial residual = 0.014158 +Final residual = 0.000045 +Average conv. rate = 0.056140 + +* 1 2 2 0.141581E-01 0.446226E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106066 +Final residual = 0.000012 +Average conv. rate = 0.047865 + +* 2 1 3 0.106066E+00 0.116310E-04 * +Number of iterations = 1 +Initial residual = 0.001429 +Final residual = 0.000059 +Average conv. rate = 0.040959 + +* 2 2 1 0.142928E-02 0.585418E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2839 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.14 455 84.4deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.46K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2839 Max w this run +w_max level proc position run w_max level timestep +0.524E+00 30 175 176.2deg E -24.4deg S 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2840 Model time: 1979-03-01 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043257 + +* 1 1 3 0.100000E+01 0.809411E-04 * +Number of iterations = 2 +Initial residual = 0.014008 +Final residual = 0.000045 +Average conv. rate = 0.056976 + +* 1 2 2 0.140079E-01 0.454738E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106270 +Final residual = 0.000013 +Average conv. rate = 0.049636 + +* 2 1 3 0.106270E+00 0.129957E-04 * +Number of iterations = 1 +Initial residual = 0.001437 +Final residual = 0.000059 +Average conv. rate = 0.041098 + +* 2 2 1 0.143723E-02 0.590668E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2840 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.24 455 84.4deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.38K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2840 Max w this run +w_max level proc position run w_max level timestep +0.528E+00 31 175 176.2deg E -24.4deg S 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2841 Model time: 1979-03-01 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043518 + +* 1 1 3 0.100000E+01 0.824128E-04 * +Number of iterations = 2 +Initial residual = 0.013991 +Final residual = 0.000046 +Average conv. rate = 0.057581 + +* 1 2 2 0.139911E-01 0.463883E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108445 +Final residual = 0.000012 +Average conv. rate = 0.048173 + +* 2 1 3 0.108445E+00 0.121231E-04 * +Number of iterations = 1 +Initial residual = 0.001461 +Final residual = 0.000061 +Average conv. rate = 0.041486 + +* 2 2 1 0.146054E-02 0.605915E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2841 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.44 455 84.4deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.26K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2841 Max w this run +w_max level proc position run w_max level timestep +0.497E+00 81 450 30.0deg E 70.6deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2842 Model time: 1979-03-01 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043555 + +* 1 1 3 0.100000E+01 0.826276E-04 * +Number of iterations = 2 +Initial residual = 0.013954 +Final residual = 0.000045 +Average conv. rate = 0.056672 + +* 1 2 2 0.139537E-01 0.448155E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106362 +Final residual = 0.000012 +Average conv. rate = 0.048679 + +* 2 1 3 0.106362E+00 0.122692E-04 * +Number of iterations = 1 +Initial residual = 0.001435 +Final residual = 0.000061 +Average conv. rate = 0.042201 + +* 2 2 1 0.143490E-02 0.605545E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2842 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.72 455 84.4deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.10K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2842 Max w this run +w_max level proc position run w_max level timestep +0.477E+00 81 450 28.1deg E 69.4deg N 0.605E+00 28 2835 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2843 Model time: 1979-03-01 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043513 + +* 1 1 3 0.100000E+01 0.823862E-04 * +Number of iterations = 2 +Initial residual = 0.013993 +Final residual = 0.000047 +Average conv. rate = 0.057820 + +* 1 2 2 0.139929E-01 0.467799E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106138 +Final residual = 0.000013 +Average conv. rate = 0.049118 + +* 2 1 3 0.106138E+00 0.125776E-04 * +Number of iterations = 1 +Initial residual = 0.001441 +Final residual = 0.000061 +Average conv. rate = 0.042306 + +* 2 2 1 0.144097E-02 0.609619E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2843 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.06 455 84.4deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.96K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2843 Max w this run +w_max level proc position run w_max level timestep +0.476E+00 81 450 28.1deg E 70.6deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2844 Model time: 1979-03-01 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043073 + +* 1 1 3 0.100000E+01 0.799124E-04 * +Number of iterations = 2 +Initial residual = 0.013947 +Final residual = 0.000046 +Average conv. rate = 0.057614 + +* 1 2 2 0.139470E-01 0.462958E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106382 +Final residual = 0.000014 +Average conv. rate = 0.050460 + +* 2 1 3 0.106382E+00 0.136685E-04 * +Number of iterations = 1 +Initial residual = 0.001468 +Final residual = 0.000061 +Average conv. rate = 0.041418 + +* 2 2 1 0.146760E-02 0.607851E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2844 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.44 455 84.4deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.81K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2844 Max w this run +w_max level proc position run w_max level timestep +0.488E+00 81 450 28.1deg E 70.6deg N 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2845 Model time: 1979-03-01 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043270 + +* 1 1 3 0.100000E+01 0.810165E-04 * +Number of iterations = 2 +Initial residual = 0.013956 +Final residual = 0.000046 +Average conv. rate = 0.057654 + +* 1 2 2 0.139564E-01 0.463917E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107081 +Final residual = 0.000012 +Average conv. rate = 0.047732 + +* 2 1 3 0.107081E+00 0.116448E-04 * +Number of iterations = 1 +Initial residual = 0.001473 +Final residual = 0.000061 +Average conv. rate = 0.041566 + +* 2 2 1 0.147347E-02 0.612458E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2845 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.83 455 84.4deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.66K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2845 Max w this run +w_max level proc position run w_max level timestep +0.518E+00 81 450 28.1deg E 70.6deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2846 Model time: 1979-03-01 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043376 + +* 1 1 3 0.100000E+01 0.816093E-04 * +Number of iterations = 2 +Initial residual = 0.013890 +Final residual = 0.000046 +Average conv. rate = 0.057388 + +* 1 2 2 0.138902E-01 0.457455E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106650 +Final residual = 0.000012 +Average conv. rate = 0.047837 + +* 2 1 3 0.106650E+00 0.116746E-04 * +Number of iterations = 1 +Initial residual = 0.001480 +Final residual = 0.000062 +Average conv. rate = 0.041577 + +* 2 2 1 0.147982E-02 0.615271E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2846 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.20 455 84.4deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.52K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2846 Max w this run +w_max level proc position run w_max level timestep +0.560E+00 81 450 26.3deg E 69.4deg N 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2847 Model time: 1979-03-01 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042466 + +* 1 1 3 0.100000E+01 0.765841E-04 * +Number of iterations = 2 +Initial residual = 0.013914 +Final residual = 0.000045 +Average conv. rate = 0.057176 + +* 1 2 2 0.139137E-01 0.454853E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107000 +Final residual = 0.000012 +Average conv. rate = 0.047712 + +* 2 1 3 0.107000E+00 0.116220E-04 * +Number of iterations = 1 +Initial residual = 0.001472 +Final residual = 0.000062 +Average conv. rate = 0.042265 + +* 2 2 1 0.147246E-02 0.622334E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2847 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.52 455 84.4deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.40K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2847 Max w this run +w_max level proc position run w_max level timestep +0.567E+00 81 450 26.3deg E 69.4deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2848 Model time: 1979-03-01 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043273 + +* 1 1 3 0.100000E+01 0.810324E-04 * +Number of iterations = 2 +Initial residual = 0.013891 +Final residual = 0.000045 +Average conv. rate = 0.056921 + +* 1 2 2 0.138909E-01 0.450057E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106393 +Final residual = 0.000012 +Average conv. rate = 0.048395 + +* 2 1 3 0.106393E+00 0.120589E-04 * +Number of iterations = 1 +Initial residual = 0.001452 +Final residual = 0.000062 +Average conv. rate = 0.042559 + +* 2 2 1 0.145213E-02 0.618007E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2848 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.80 455 84.4deg E 70.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.29K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2848 Max w this run +w_max level proc position run w_max level timestep +0.573E+00 81 450 26.3deg E 69.4deg N 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2849 Model time: 1979-03-01 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043330 + +* 1 1 3 0.100000E+01 0.813522E-04 * +Number of iterations = 2 +Initial residual = 0.013898 +Final residual = 0.000045 +Average conv. rate = 0.056947 + +* 1 2 2 0.138977E-01 0.450705E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106757 +Final residual = 0.000013 +Average conv. rate = 0.050111 + +* 2 1 3 0.106757E+00 0.134341E-04 * +Number of iterations = 1 +Initial residual = 0.001440 +Final residual = 0.000062 +Average conv. rate = 0.042746 + +* 2 2 1 0.143956E-02 0.615349E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2849 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.93 504 88.1deg W 78.7deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.95K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2849 Max w this run +w_max level proc position run w_max level timestep +0.544E+00 81 450 26.3deg E 69.4deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2850 Model time: 1979-03-01 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043112 + +* 1 1 3 0.100000E+01 0.801292E-04 * +Number of iterations = 2 +Initial residual = 0.013768 +Final residual = 0.000045 +Average conv. rate = 0.056875 + +* 1 2 2 0.137683E-01 0.445377E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105646 +Final residual = 0.000012 +Average conv. rate = 0.048749 + +* 2 1 3 0.105646E+00 0.122392E-04 * +Number of iterations = 1 +Initial residual = 0.001431 +Final residual = 0.000061 +Average conv. rate = 0.042688 + +* 2 2 1 0.143137E-02 0.611022E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2850 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.90 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.00K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2850 Max w this run +w_max level proc position run w_max level timestep +0.522E+00 41 270 161.3deg E 0.6deg N 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2851 Model time: 1979-03-01 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042570 + +* 1 1 3 0.100000E+01 0.771436E-04 * +Number of iterations = 2 +Initial residual = 0.013707 +Final residual = 0.000047 +Average conv. rate = 0.058406 + +* 1 2 2 0.137071E-01 0.467586E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106893 +Final residual = 0.000012 +Average conv. rate = 0.048541 + +* 2 1 3 0.106893E+00 0.122257E-04 * +Number of iterations = 1 +Initial residual = 0.001392 +Final residual = 0.000060 +Average conv. rate = 0.043434 + +* 2 2 1 0.139165E-02 0.604446E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2851 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.71 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.05K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2851 Max w this run +w_max level proc position run w_max level timestep +0.539E+00 39 270 159.4deg E 1.9deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2852 Model time: 1979-03-01 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042905 + +* 1 1 3 0.100000E+01 0.789830E-04 * +Number of iterations = 2 +Initial residual = 0.013616 +Final residual = 0.000046 +Average conv. rate = 0.057970 + +* 1 2 2 0.136164E-01 0.457584E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105922 +Final residual = 0.000013 +Average conv. rate = 0.049542 + +* 2 1 3 0.105922E+00 0.128795E-04 * +Number of iterations = 1 +Initial residual = 0.001386 +Final residual = 0.000059 +Average conv. rate = 0.042839 + +* 2 2 1 0.138591E-02 0.593714E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2852 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.52 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.11K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2852 Max w this run +w_max level proc position run w_max level timestep +0.603E+00 39 270 159.4deg E 1.9deg N 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2853 Model time: 1979-03-01 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043089 + +* 1 1 3 0.100000E+01 0.800039E-04 * +Number of iterations = 2 +Initial residual = 0.013687 +Final residual = 0.000046 +Average conv. rate = 0.058129 + +* 1 2 2 0.136866E-01 0.462472E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107474 +Final residual = 0.000012 +Average conv. rate = 0.048647 + +* 2 1 3 0.107474E+00 0.123733E-04 * +Number of iterations = 1 +Initial residual = 0.001382 +Final residual = 0.000059 +Average conv. rate = 0.042796 + +* 2 2 1 0.138183E-02 0.591366E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2853 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.32 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.16K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2853 Max w this run +w_max level proc position run w_max level timestep +0.570E+00 38 270 159.4deg E 1.9deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2854 Model time: 1979-03-01 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042776 + +* 1 1 3 0.100000E+01 0.782688E-04 * +Number of iterations = 2 +Initial residual = 0.013687 +Final residual = 0.000046 +Average conv. rate = 0.058039 + +* 1 2 2 0.136867E-01 0.461035E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107982 +Final residual = 0.000012 +Average conv. rate = 0.048037 + +* 2 1 3 0.107982E+00 0.119700E-04 * +Number of iterations = 1 +Initial residual = 0.001392 +Final residual = 0.000059 +Average conv. rate = 0.042600 + +* 2 2 1 0.139186E-02 0.592930E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2854 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.12 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.21K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2854 Max w this run +w_max level proc position run w_max level timestep +0.525E+00 27 270 161.3deg E 0.6deg N 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2855 Model time: 1979-03-01 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043891 + +* 1 1 3 0.100000E+01 0.845501E-04 * +Number of iterations = 2 +Initial residual = 0.013742 +Final residual = 0.000047 +Average conv. rate = 0.058552 + +* 1 2 2 0.137420E-01 0.471119E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108639 +Final residual = 0.000012 +Average conv. rate = 0.048101 + +* 2 1 3 0.108639E+00 0.120904E-04 * +Number of iterations = 1 +Initial residual = 0.001396 +Final residual = 0.000061 +Average conv. rate = 0.043718 + +* 2 2 1 0.139617E-02 0.610382E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2855 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.92 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.26K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2855 Max w this run +w_max level proc position run w_max level timestep +0.544E+00 29 270 161.3deg E 0.6deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2856 Model time: 1979-03-01 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043537 + +* 1 1 3 0.100000E+01 0.825242E-04 * +Number of iterations = 2 +Initial residual = 0.013737 +Final residual = 0.000047 +Average conv. rate = 0.058622 + +* 1 2 2 0.137373E-01 0.472095E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108824 +Final residual = 0.000013 +Average conv. rate = 0.049218 + +* 2 1 3 0.108824E+00 0.129743E-04 * +Number of iterations = 1 +Initial residual = 0.001418 +Final residual = 0.000063 +Average conv. rate = 0.044517 + +* 2 2 1 0.141794E-02 0.631226E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2856 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.73 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.40K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2856 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 30 270 161.3deg E 0.6deg N 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2857 Model time: 1979-03-01 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043120 + +* 1 1 3 0.100000E+01 0.801723E-04 * +Number of iterations = 2 +Initial residual = 0.013875 +Final residual = 0.000044 +Average conv. rate = 0.056530 + +* 1 2 2 0.138755E-01 0.443413E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109565 +Final residual = 0.000013 +Average conv. rate = 0.049690 + +* 2 1 3 0.109565E+00 0.134423E-04 * +Number of iterations = 1 +Initial residual = 0.001420 +Final residual = 0.000064 +Average conv. rate = 0.045417 + +* 2 2 1 0.142013E-02 0.644976E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2857 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.54 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.40K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2857 Max w this run +w_max level proc position run w_max level timestep +0.572E+00 30 270 161.3deg E 0.6deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2858 Model time: 1979-03-01 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043043 + +* 1 1 3 0.100000E+01 0.797463E-04 * +Number of iterations = 2 +Initial residual = 0.013910 +Final residual = 0.000043 +Average conv. rate = 0.055867 + +* 1 2 2 0.139099E-01 0.434142E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110508 +Final residual = 0.000013 +Average conv. rate = 0.049430 + +* 2 1 3 0.110508E+00 0.133468E-04 * +Number of iterations = 1 +Initial residual = 0.001419 +Final residual = 0.000065 +Average conv. rate = 0.045544 + +* 2 2 1 0.141852E-02 0.646049E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2858 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.36 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.41K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2858 Max w this run +w_max level proc position run w_max level timestep +0.561E+00 30 270 161.3deg E 0.6deg N 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2859 Model time: 1979-03-01 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043145 + +* 1 1 3 0.100000E+01 0.803133E-04 * +Number of iterations = 2 +Initial residual = 0.013941 +Final residual = 0.000043 +Average conv. rate = 0.055621 + +* 1 2 2 0.139406E-01 0.431274E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111133 +Final residual = 0.000013 +Average conv. rate = 0.048455 + +* 2 1 3 0.111133E+00 0.126434E-04 * +Number of iterations = 1 +Initial residual = 0.001423 +Final residual = 0.000067 +Average conv. rate = 0.047021 + +* 2 2 1 0.142296E-02 0.669095E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2859 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.19 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.53K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2859 Max w this run +w_max level proc position run w_max level timestep +0.515E+00 30 270 161.3deg E 0.6deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2860 Model time: 1979-03-01 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042648 + +* 1 1 3 0.100000E+01 0.775703E-04 * +Number of iterations = 2 +Initial residual = 0.013824 +Final residual = 0.000043 +Average conv. rate = 0.055593 + +* 1 2 2 0.138244E-01 0.427251E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.112392 +Final residual = 0.000014 +Average conv. rate = 0.049936 + +* 2 1 3 0.112392E+00 0.139951E-04 * +Number of iterations = 1 +Initial residual = 0.001437 +Final residual = 0.000069 +Average conv. rate = 0.048178 + +* 2 2 1 0.143662E-02 0.692141E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2860 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.03 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.51K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2860 Max w this run +w_max level proc position run w_max level timestep +0.463E+00 33 270 161.3deg E 1.9deg N 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2861 Model time: 1979-03-01 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042982 + +* 1 1 3 0.100000E+01 0.794075E-04 * +Number of iterations = 2 +Initial residual = 0.013752 +Final residual = 0.000043 +Average conv. rate = 0.056073 + +* 1 2 2 0.137515E-01 0.432372E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.113462 +Final residual = 0.000014 +Average conv. rate = 0.049475 + +* 2 1 3 0.113462E+00 0.137408E-04 * +Number of iterations = 1 +Initial residual = 0.001451 +Final residual = 0.000072 +Average conv. rate = 0.049426 + +* 2 2 1 0.145084E-02 0.717086E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2861 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.87 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.47K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2861 Max w this run +w_max level proc position run w_max level timestep +0.473E+00 30 270 161.3deg E 1.9deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2862 Model time: 1979-03-01 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043238 + +* 1 1 3 0.100000E+01 0.808327E-04 * +Number of iterations = 2 +Initial residual = 0.013615 +Final residual = 0.000043 +Average conv. rate = 0.056311 + +* 1 2 2 0.136154E-01 0.431735E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.113533 +Final residual = 0.000014 +Average conv. rate = 0.049924 + +* 2 1 3 0.113533E+00 0.141266E-04 * +Number of iterations = 1 +Initial residual = 0.001468 +Final residual = 0.000074 +Average conv. rate = 0.050461 + +* 2 2 1 0.146758E-02 0.740556E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2862 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.72 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.58K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2862 Max w this run +w_max level proc position run w_max level timestep +0.516E+00 30 270 161.3deg E 1.9deg N 0.605E+00 28 2835 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2863 Model time: 1979-03-01 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043731 + +* 1 1 3 0.100000E+01 0.836338E-04 * +Number of iterations = 2 +Initial residual = 0.013644 +Final residual = 0.000044 +Average conv. rate = 0.056501 + +* 1 2 2 0.136442E-01 0.435576E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.115150 +Final residual = 0.000014 +Average conv. rate = 0.049973 + +* 2 1 3 0.115150E+00 0.143702E-04 * +Number of iterations = 1 +Initial residual = 0.001498 +Final residual = 0.000076 +Average conv. rate = 0.050464 + +* 2 2 1 0.149762E-02 0.755757E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2863 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.57 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.53K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2863 Max w this run +w_max level proc position run w_max level timestep +0.602E+00 27 270 161.3deg E 1.9deg N 0.605E+00 28 2835 + +******************************************************************************** + +Atm_Step: Timestep 2864 Model time: 1979-03-01 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044488 + +* 1 1 3 0.100000E+01 0.880480E-04 * +Number of iterations = 2 +Initial residual = 0.013622 +Final residual = 0.000046 +Average conv. rate = 0.057930 + +* 1 2 2 0.136218E-01 0.457127E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.118862 +Final residual = 0.000014 +Average conv. rate = 0.048609 + +* 2 1 3 0.118862E+00 0.136518E-04 * +Number of iterations = 1 +Initial residual = 0.001570 +Final residual = 0.000075 +Average conv. rate = 0.048074 + +* 2 2 1 0.156967E-02 0.754600E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2864 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.43 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.64K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2864 Max w this run +w_max level proc position run w_max level timestep +0.637E+00 27 270 161.3deg E 1.9deg N 0.637E+00 27 2864 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2865 Model time: 1979-03-01 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043922 + +* 1 1 3 0.100000E+01 0.847306E-04 * +Number of iterations = 2 +Initial residual = 0.013716 +Final residual = 0.000046 +Average conv. rate = 0.057745 + +* 1 2 2 0.137161E-01 0.457357E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.118010 +Final residual = 0.000013 +Average conv. rate = 0.047634 + +* 2 1 3 0.118010E+00 0.127546E-04 * +Number of iterations = 1 +Initial residual = 0.001533 +Final residual = 0.000077 +Average conv. rate = 0.049929 + +* 2 2 1 0.153273E-02 0.765284E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2865 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.29 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.55K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2865 Max w this run +w_max level proc position run w_max level timestep +0.608E+00 27 270 161.3deg E 1.9deg N 0.637E+00 27 2864 + +******************************************************************************** + +Atm_Step: Timestep 2866 Model time: 1979-03-01 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043698 + +* 1 1 3 0.100000E+01 0.834439E-04 * +Number of iterations = 2 +Initial residual = 0.013745 +Final residual = 0.000045 +Average conv. rate = 0.057166 + +* 1 2 2 0.137446E-01 0.449168E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.116233 +Final residual = 0.000012 +Average conv. rate = 0.047323 + +* 2 1 3 0.116233E+00 0.123179E-04 * +Number of iterations = 1 +Initial residual = 0.001535 +Final residual = 0.000077 +Average conv. rate = 0.050232 + +* 2 2 1 0.153523E-02 0.771175E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2866 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.15 457 110.6deg E 75.0deg N 226.09 2838 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.66K. At min for run = -3.27K + +Maximum vertical velocity at timestep 2866 Max w this run +w_max level proc position run w_max level timestep +0.638E+00 27 270 161.3deg E 1.9deg N 0.638E+00 27 2866 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2867 Model time: 1979-03-01 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043862 + +* 1 1 3 0.100000E+01 0.843834E-04 * +Number of iterations = 2 +Initial residual = 0.013834 +Final residual = 0.000043 +Average conv. rate = 0.055893 + +* 1 2 2 0.138336E-01 0.432166E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.117586 +Final residual = 0.000013 +Average conv. rate = 0.047720 + +* 2 1 3 0.117586E+00 0.127776E-04 * +Number of iterations = 1 +Initial residual = 0.001560 +Final residual = 0.000078 +Average conv. rate = 0.049683 + +* 2 2 1 0.156000E-02 0.775058E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2867 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.02 457 110.6deg E 75.0deg N 226.02 2867 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.53K. At min for run = -7.53K + +Maximum vertical velocity at timestep 2867 Max w this run +w_max level proc position run w_max level timestep +0.751E+00 29 270 161.3deg E 1.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2868 Model time: 1979-03-01 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043082 + +* 1 1 3 0.100000E+01 0.799631E-04 * +Number of iterations = 2 +Initial residual = 0.013760 +Final residual = 0.000042 +Average conv. rate = 0.055425 + +* 1 2 2 0.137600E-01 0.422693E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.120273 +Final residual = 0.000013 +Average conv. rate = 0.047062 + +* 2 1 3 0.120273E+00 0.125369E-04 * +Number of iterations = 1 +Initial residual = 0.001634 +Final residual = 0.000077 +Average conv. rate = 0.047047 + +* 2 2 1 0.163379E-02 0.768651E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2868 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.90 457 110.6deg E 75.0deg N 225.90 2868 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.64K. At min for run = -7.64K + +Maximum vertical velocity at timestep 2868 Max w this run +w_max level proc position run w_max level timestep +0.717E+00 29 270 161.3deg E 1.9deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2869 Model time: 1979-03-01 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043342 + +* 1 1 3 0.100000E+01 0.814175E-04 * +Number of iterations = 2 +Initial residual = 0.013801 +Final residual = 0.000042 +Average conv. rate = 0.055396 + +* 1 2 2 0.138014E-01 0.423526E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.120377 +Final residual = 0.000014 +Average conv. rate = 0.048864 + +* 2 1 3 0.120377E+00 0.140447E-04 * +Number of iterations = 1 +Initial residual = 0.001628 +Final residual = 0.000077 +Average conv. rate = 0.047212 + +* 2 2 1 0.162796E-02 0.768593E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2869 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.78 457 110.6deg E 75.0deg N 225.78 2869 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.52K. At min for run = -7.52K + +Maximum vertical velocity at timestep 2869 Max w this run +w_max level proc position run w_max level timestep +0.694E+00 29 270 161.3deg E 1.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2870 Model time: 1979-03-01 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043423 + +* 1 1 3 0.100000E+01 0.818753E-04 * +Number of iterations = 2 +Initial residual = 0.013798 +Final residual = 0.000042 +Average conv. rate = 0.054864 + +* 1 2 2 0.137977E-01 0.415319E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.121033 +Final residual = 0.000014 +Average conv. rate = 0.048401 + +* 2 1 3 0.121033E+00 0.137234E-04 * +Number of iterations = 1 +Initial residual = 0.001623 +Final residual = 0.000075 +Average conv. rate = 0.046196 + +* 2 2 1 0.162350E-02 0.749988E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2870 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.67 457 110.6deg E 75.0deg N 225.67 2870 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.64K. At min for run = -7.64K + +Maximum vertical velocity at timestep 2870 Max w this run +w_max level proc position run w_max level timestep +0.650E+00 29 270 161.3deg E 1.9deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2871 Model time: 1979-03-01 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043422 + +* 1 1 3 0.100000E+01 0.818717E-04 * +Number of iterations = 2 +Initial residual = 0.013794 +Final residual = 0.000043 +Average conv. rate = 0.055908 + +* 1 2 2 0.137942E-01 0.431167E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.120235 +Final residual = 0.000012 +Average conv. rate = 0.045981 + +* 2 1 3 0.120235E+00 0.116889E-04 * +Number of iterations = 1 +Initial residual = 0.001661 +Final residual = 0.000074 +Average conv. rate = 0.044441 + +* 2 2 1 0.166109E-02 0.738208E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2871 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.56 457 110.6deg E 75.0deg N 225.56 2871 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.68K. At min for run = -7.68K + +Maximum vertical velocity at timestep 2871 Max w this run +w_max level proc position run w_max level timestep +0.635E+00 33 270 161.3deg E 1.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2872 Model time: 1979-03-01 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043471 + +* 1 1 3 0.100000E+01 0.821504E-04 * +Number of iterations = 2 +Initial residual = 0.013684 +Final residual = 0.000042 +Average conv. rate = 0.055559 + +* 1 2 2 0.136836E-01 0.422381E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.118534 +Final residual = 0.000012 +Average conv. rate = 0.046781 + +* 2 1 3 0.118534E+00 0.121352E-04 * +Number of iterations = 1 +Initial residual = 0.001728 +Final residual = 0.000074 +Average conv. rate = 0.042677 + +* 2 2 1 0.172845E-02 0.737645E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2872 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.46 457 110.6deg E 75.0deg N 225.46 2872 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.49K. At min for run = -7.49K + +Maximum vertical velocity at timestep 2872 Max w this run +w_max level proc position run w_max level timestep +0.666E+00 33 270 161.3deg E 1.9deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2873 Model time: 1979-03-01 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043706 + +* 1 1 3 0.100000E+01 0.834889E-04 * +Number of iterations = 2 +Initial residual = 0.013753 +Final residual = 0.000043 +Average conv. rate = 0.055758 + +* 1 2 2 0.137531E-01 0.427570E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.116820 +Final residual = 0.000012 +Average conv. rate = 0.046348 + +* 2 1 3 0.116820E+00 0.116309E-04 * +Number of iterations = 1 +Initial residual = 0.001766 +Final residual = 0.000073 +Average conv. rate = 0.041517 + +* 2 2 1 0.176623E-02 0.733289E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2873 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.37 457 110.6deg E 75.0deg N 225.37 2873 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.58K. At min for run = -7.58K + +Maximum vertical velocity at timestep 2873 Max w this run +w_max level proc position run w_max level timestep +0.580E+00 33 270 161.3deg E 1.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2874 Model time: 1979-03-01 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044170 + +* 1 1 3 0.100000E+01 0.861732E-04 * +Number of iterations = 2 +Initial residual = 0.013734 +Final residual = 0.000044 +Average conv. rate = 0.056675 + +* 1 2 2 0.137339E-01 0.441147E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.116642 +Final residual = 0.000014 +Average conv. rate = 0.048838 + +* 2 1 3 0.116642E+00 0.135873E-04 * +Number of iterations = 1 +Initial residual = 0.001808 +Final residual = 0.000072 +Average conv. rate = 0.039760 + +* 2 2 1 0.180811E-02 0.718902E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2874 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.28 457 110.6deg E 75.0deg N 225.28 2874 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.61K. At min for run = -7.61K + +Maximum vertical velocity at timestep 2874 Max w this run +w_max level proc position run w_max level timestep +0.586E+00 32 270 161.3deg E 1.9deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2875 Model time: 1979-03-01 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043841 + +* 1 1 3 0.100000E+01 0.842620E-04 * +Number of iterations = 2 +Initial residual = 0.013754 +Final residual = 0.000041 +Average conv. rate = 0.054398 + +* 1 2 2 0.137536E-01 0.406989E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.115425 +Final residual = 0.000013 +Average conv. rate = 0.048400 + +* 2 1 3 0.115425E+00 0.130866E-04 * +Number of iterations = 1 +Initial residual = 0.001790 +Final residual = 0.000070 +Average conv. rate = 0.038879 + +* 2 2 1 0.178976E-02 0.695840E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2875 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.20 457 110.6deg E 75.0deg N 225.20 2875 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.36K. At min for run = -7.36K + +Maximum vertical velocity at timestep 2875 Max w this run +w_max level proc position run w_max level timestep +0.564E+00 81 417 13.1deg E 66.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2876 Model time: 1979-03-01 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044618 + +* 1 1 3 0.100000E+01 0.888254E-04 * +Number of iterations = 2 +Initial residual = 0.013703 +Final residual = 0.000040 +Average conv. rate = 0.054346 + +* 1 2 2 0.137025E-01 0.404705E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111720 +Final residual = 0.000011 +Average conv. rate = 0.046759 + +* 2 1 3 0.111720E+00 0.114213E-04 * +Number of iterations = 1 +Initial residual = 0.001693 +Final residual = 0.000065 +Average conv. rate = 0.038520 + +* 2 2 1 0.169285E-02 0.652090E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2876 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.14 457 110.6deg E 75.0deg N 225.14 2876 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.41K. At min for run = -7.41K + +Maximum vertical velocity at timestep 2876 Max w this run +w_max level proc position run w_max level timestep +0.550E+00 81 416 7.5deg E 64.4deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2877 Model time: 1979-03-01 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044869 + +* 1 1 3 0.100000E+01 0.903316E-04 * +Number of iterations = 2 +Initial residual = 0.013743 +Final residual = 0.000045 +Average conv. rate = 0.057260 + +* 1 2 2 0.137432E-01 0.450599E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111022 +Final residual = 0.000014 +Average conv. rate = 0.050109 + +* 2 1 3 0.111022E+00 0.139687E-04 * +Number of iterations = 1 +Initial residual = 0.001604 +Final residual = 0.000063 +Average conv. rate = 0.039068 + +* 2 2 1 0.160378E-02 0.626567E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2877 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.08 457 110.6deg E 75.0deg N 225.08 2877 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.43K. At min for run = -7.43K + +Maximum vertical velocity at timestep 2877 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 81 416 7.5deg E 64.4deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2878 Model time: 1979-03-01 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043723 + +* 1 1 3 0.100000E+01 0.835841E-04 * +Number of iterations = 2 +Initial residual = 0.013684 +Final residual = 0.000043 +Average conv. rate = 0.056214 + +* 1 2 2 0.136836E-01 0.432397E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108557 +Final residual = 0.000012 +Average conv. rate = 0.047408 + +* 2 1 3 0.108557E+00 0.115664E-04 * +Number of iterations = 1 +Initial residual = 0.001504 +Final residual = 0.000060 +Average conv. rate = 0.039887 + +* 2 2 1 0.150435E-02 0.600039E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2878 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.02 457 110.6deg E 75.0deg N 225.02 2878 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.44K. At min for run = -7.44K + +Maximum vertical velocity at timestep 2878 Max w this run +w_max level proc position run w_max level timestep +0.499E+00 81 416 7.5deg E 64.4deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2879 Model time: 1979-03-01 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044440 + +* 1 1 3 0.100000E+01 0.877642E-04 * +Number of iterations = 2 +Initial residual = 0.013762 +Final residual = 0.000042 +Average conv. rate = 0.055326 + +* 1 2 2 0.137623E-01 0.421260E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108129 +Final residual = 0.000012 +Average conv. rate = 0.047739 + +* 2 1 3 0.108129E+00 0.117641E-04 * +Number of iterations = 1 +Initial residual = 0.001433 +Final residual = 0.000058 +Average conv. rate = 0.040365 + +* 2 2 1 0.143328E-02 0.578540E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2879 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.98 457 110.6deg E 75.0deg N 224.98 2879 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.49K. At min for run = -7.49K + +Maximum vertical velocity at timestep 2879 Max w this run +w_max level proc position run w_max level timestep +0.465E+00 41 270 163.1deg E 1.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2880 Model time: 1979-03-02 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044208 + +* 1 1 3 0.100000E+01 0.864003E-04 * +Number of iterations = 2 +Initial residual = 0.013725 +Final residual = 0.000042 +Average conv. rate = 0.055262 + +* 1 2 2 0.137246E-01 0.419138E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104779 +Final residual = 0.000014 +Average conv. rate = 0.051368 + +* 2 1 3 0.104779E+00 0.142025E-04 * +Number of iterations = 1 +Initial residual = 0.001342 +Final residual = 0.000056 +Average conv. rate = 0.041995 + +* 2 2 1 0.134214E-02 0.563632E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13058E+25 +tot dry energy 0.13059E+25 +gr( rho cal) 0.38112E+24 +KE( rho cal) 0.82830E+21 +KEu(rho cal) 0.66389E+21 +KEv(rho cal) 0.16441E+21 +KEw(rho cal) 0.11467E+16 +cvT( rho cal) 0.92393E+24 +lq ( rho cal) 0.30709E+23 +lqcf( rho cal) 0.64427E+20 +lqcl( rho cal) 0.43600E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12320E+17 KG +Initial moisture = 0.12360E+17 KG +change in moisture = -0.40332E+14 KG +Moisture added E-P in period = -0.40819E+14 KG +Error in moisture = 0.48706E+12 KG +Error as % of change = -0.12076E+01 +q ( rho cal) 0.12279E+17 +qcf( rho cal) 0.25761E+14 +qcl( rho cal) 0.15379E+14 +FINAL TOTAL ENERGY = 0.13058E+25 J/ +INITIAL TOTAL ENERGY = 0.13058E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.70867E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.62199E+20 J/ +ERROR IN ENERGY BUDGET = 0.86680E+19 J/ +TEMP CORRECTION OVER A DAY = 0.23537E-02 K +TEMPERATURE CORRECTION RATE = 0.27241E-07 K/S +FLUX CORRECTION (ATM) = 0.19667E+00 W/M2 + +Minimum theta level 1 for timestep 2880 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.94 457 110.6deg E 75.0deg N 224.94 2880 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.53K. At min for run = -7.53K + +Maximum vertical velocity at timestep 2880 Max w this run +w_max level proc position run w_max level timestep +0.506E+00 41 270 163.1deg E 1.9deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6564.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6564.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6564.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6564.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6564.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6564.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 2881 Model time: 1979-03-02 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044350 + +* 1 1 3 0.100000E+01 0.872325E-04 * +Number of iterations = 2 +Initial residual = 0.013708 +Final residual = 0.000043 +Average conv. rate = 0.056146 + +* 1 2 2 0.137077E-01 0.432120E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104222 +Final residual = 0.000015 +Average conv. rate = 0.052052 + +* 2 1 3 0.104222E+00 0.146982E-04 * +Number of iterations = 1 +Initial residual = 0.001283 +Final residual = 0.000055 +Average conv. rate = 0.043237 + +* 2 2 1 0.128253E-02 0.554523E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2881 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.72 458 112.5deg E 70.0deg N 224.72 2881 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.11K. At min for run = -3.11K + +Maximum vertical velocity at timestep 2881 Max w this run +w_max level proc position run w_max level timestep +0.448E+00 39 270 163.1deg E 1.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2882 Model time: 1979-03-02 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043723 + +* 1 1 3 0.100000E+01 0.835869E-04 * +Number of iterations = 2 +Initial residual = 0.013563 +Final residual = 0.000040 +Average conv. rate = 0.054578 + +* 1 2 2 0.135626E-01 0.403993E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102695 +Final residual = 0.000011 +Average conv. rate = 0.048141 + +* 2 1 3 0.102695E+00 0.114578E-04 * +Number of iterations = 1 +Initial residual = 0.001243 +Final residual = 0.000054 +Average conv. rate = 0.043511 + +* 2 2 1 0.124265E-02 0.540687E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2882 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.58 458 112.5deg E 70.0deg N 224.58 2882 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.28K. At min for run = -3.28K + +Maximum vertical velocity at timestep 2882 Max w this run +w_max level proc position run w_max level timestep +0.464E+00 37 251 50.6deg W -9.4deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2883 Model time: 1979-03-02 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044060 + +* 1 1 3 0.100000E+01 0.855353E-04 * +Number of iterations = 2 +Initial residual = 0.013569 +Final residual = 0.000040 +Average conv. rate = 0.054623 + +* 1 2 2 0.135695E-01 0.404867E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103096 +Final residual = 0.000012 +Average conv. rate = 0.048195 + +* 2 1 3 0.103096E+00 0.115413E-04 * +Number of iterations = 1 +Initial residual = 0.001234 +Final residual = 0.000054 +Average conv. rate = 0.044110 + +* 2 2 1 0.123447E-02 0.544518E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2883 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.90 457 110.6deg E 75.0deg N 224.58 2882 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.56K. At min for run = -3.28K + +Maximum vertical velocity at timestep 2883 Max w this run +w_max level proc position run w_max level timestep +0.434E+00 37 251 50.6deg W -9.4deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2884 Model time: 1979-03-02 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043999 + +* 1 1 3 0.100000E+01 0.851780E-04 * +Number of iterations = 2 +Initial residual = 0.013535 +Final residual = 0.000041 +Average conv. rate = 0.054758 + +* 1 2 2 0.135351E-01 0.405847E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100715 +Final residual = 0.000011 +Average conv. rate = 0.047146 + +* 2 1 3 0.100715E+00 0.105541E-04 * +Number of iterations = 1 +Initial residual = 0.001217 +Final residual = 0.000054 +Average conv. rate = 0.044335 + +* 2 2 1 0.121653E-02 0.539350E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2884 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.79 457 101.2deg E 76.2deg N 224.58 2882 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.27K. At min for run = -3.28K + +Maximum vertical velocity at timestep 2884 Max w this run +w_max level proc position run w_max level timestep +0.439E+00 40 270 163.1deg E 1.9deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2885 Model time: 1979-03-02 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044052 + +* 1 1 3 0.100000E+01 0.854883E-04 * +Number of iterations = 2 +Initial residual = 0.013562 +Final residual = 0.000042 +Average conv. rate = 0.055461 + +* 1 2 2 0.135619E-01 0.417148E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101453 +Final residual = 0.000012 +Average conv. rate = 0.049456 + +* 2 1 3 0.101453E+00 0.122721E-04 * +Number of iterations = 1 +Initial residual = 0.001212 +Final residual = 0.000054 +Average conv. rate = 0.044837 + +* 2 2 1 0.121190E-02 0.543378E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2885 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.65 457 101.2deg E 76.2deg N 224.58 2882 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.39K. At min for run = -3.28K + +Maximum vertical velocity at timestep 2885 Max w this run +w_max level proc position run w_max level timestep +0.481E+00 41 270 161.3deg E 4.4deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2886 Model time: 1979-03-02 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043577 + +* 1 1 3 0.100000E+01 0.827531E-04 * +Number of iterations = 2 +Initial residual = 0.013512 +Final residual = 0.000042 +Average conv. rate = 0.055922 + +* 1 2 2 0.135118E-01 0.422558E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099711 +Final residual = 0.000011 +Average conv. rate = 0.047489 + +* 2 1 3 0.997106E-01 0.106788E-04 * +Number of iterations = 1 +Initial residual = 0.001196 +Final residual = 0.000054 +Average conv. rate = 0.044868 + +* 2 2 1 0.119634E-02 0.536777E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2886 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.51 457 101.2deg E 76.2deg N 224.51 2886 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.50K. At min for run = -12.50K + +Maximum vertical velocity at timestep 2886 Max w this run +w_max level proc position run w_max level timestep +0.507E+00 41 270 161.3deg E 4.4deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2887 Model time: 1979-03-02 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043124 + +* 1 1 3 0.100000E+01 0.801986E-04 * +Number of iterations = 2 +Initial residual = 0.013624 +Final residual = 0.000043 +Average conv. rate = 0.055982 + +* 1 2 2 0.136244E-01 0.426982E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100441 +Final residual = 0.000011 +Average conv. rate = 0.047762 + +* 2 1 3 0.100441E+00 0.109438E-04 * +Number of iterations = 1 +Initial residual = 0.001194 +Final residual = 0.000054 +Average conv. rate = 0.045075 + +* 2 2 1 0.119442E-02 0.538386E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2887 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.44 457 101.2deg E 76.2deg N 224.44 2887 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.53K. At min for run = -12.53K + +Maximum vertical velocity at timestep 2887 Max w this run +w_max level proc position run w_max level timestep +0.544E+00 41 270 161.3deg E 4.4deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2888 Model time: 1979-03-02 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043674 + +* 1 1 3 0.100000E+01 0.833028E-04 * +Number of iterations = 2 +Initial residual = 0.013707 +Final residual = 0.000045 +Average conv. rate = 0.057599 + +* 1 2 2 0.137066E-01 0.454739E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099475 +Final residual = 0.000012 +Average conv. rate = 0.049826 + +* 2 1 3 0.994752E-01 0.123053E-04 * +Number of iterations = 1 +Initial residual = 0.001186 +Final residual = 0.000053 +Average conv. rate = 0.045046 + +* 2 2 1 0.118615E-02 0.534309E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2888 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.40 457 101.2deg E 76.2deg N 224.40 2888 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.52K. At min for run = -12.52K + +Maximum vertical velocity at timestep 2888 Max w this run +w_max level proc position run w_max level timestep +0.510E+00 41 270 161.3deg E 4.4deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2889 Model time: 1979-03-02 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043886 + +* 1 1 3 0.100000E+01 0.845230E-04 * +Number of iterations = 2 +Initial residual = 0.013898 +Final residual = 0.000045 +Average conv. rate = 0.057108 + +* 1 2 2 0.138982E-01 0.453264E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098983 +Final residual = 0.000011 +Average conv. rate = 0.048554 + +* 2 1 3 0.989827E-01 0.113304E-04 * +Number of iterations = 1 +Initial residual = 0.001191 +Final residual = 0.000054 +Average conv. rate = 0.045244 + +* 2 2 1 0.119093E-02 0.538827E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2889 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.38 457 101.2deg E 76.2deg N 224.38 2889 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.49K. At min for run = -12.49K + +Maximum vertical velocity at timestep 2889 Max w this run +w_max level proc position run w_max level timestep +0.508E+00 41 270 161.3deg E 4.4deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2890 Model time: 1979-03-02 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043675 + +* 1 1 3 0.100000E+01 0.833124E-04 * +Number of iterations = 2 +Initial residual = 0.013949 +Final residual = 0.000044 +Average conv. rate = 0.056192 + +* 1 2 2 0.139488E-01 0.440436E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098691 +Final residual = 0.000011 +Average conv. rate = 0.048437 + +* 2 1 3 0.986914E-01 0.112156E-04 * +Number of iterations = 1 +Initial residual = 0.001187 +Final residual = 0.000054 +Average conv. rate = 0.045340 + +* 2 2 1 0.118737E-02 0.538350E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2890 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.38 457 101.2deg E 76.2deg N 224.38 2890 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.44K. At min for run = -12.44K + +Maximum vertical velocity at timestep 2890 Max w this run +w_max level proc position run w_max level timestep +0.535E+00 40 270 161.3deg E 4.4deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2891 Model time: 1979-03-02 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044080 + +* 1 1 3 0.100000E+01 0.856474E-04 * +Number of iterations = 2 +Initial residual = 0.014027 +Final residual = 0.000045 +Average conv. rate = 0.056656 + +* 1 2 2 0.140267E-01 0.450236E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100117 +Final residual = 0.000011 +Average conv. rate = 0.048210 + +* 2 1 3 0.100117E+00 0.112181E-04 * +Number of iterations = 1 +Initial residual = 0.001211 +Final residual = 0.000054 +Average conv. rate = 0.044616 + +* 2 2 1 0.121109E-02 0.540335E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2891 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.38 457 101.2deg E 76.2deg N 224.38 2891 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.40K. At min for run = -12.40K + +Maximum vertical velocity at timestep 2891 Max w this run +w_max level proc position run w_max level timestep +0.506E+00 40 270 161.3deg E 4.4deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2892 Model time: 1979-03-02 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044398 + +* 1 1 3 0.100000E+01 0.875183E-04 * +Number of iterations = 2 +Initial residual = 0.013964 +Final residual = 0.000040 +Average conv. rate = 0.053492 + +* 1 2 2 0.139635E-01 0.399556E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098285 +Final residual = 0.000011 +Average conv. rate = 0.048557 + +* 2 1 3 0.982849E-01 0.112526E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000054 +Average conv. rate = 0.045741 + +* 2 2 1 0.118772E-02 0.543279E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2892 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.38 457 101.2deg E 76.2deg N 224.38 2891 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.35K. At min for run = -12.40K + +Maximum vertical velocity at timestep 2892 Max w this run +w_max level proc position run w_max level timestep +0.532E+00 24 220 45.0deg W -15.6deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2893 Model time: 1979-03-02 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043339 + +* 1 1 3 0.100000E+01 0.814002E-04 * +Number of iterations = 2 +Initial residual = 0.013968 +Final residual = 0.000044 +Average conv. rate = 0.055985 + +* 1 2 2 0.139680E-01 0.437808E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098306 +Final residual = 0.000012 +Average conv. rate = 0.049144 + +* 2 1 3 0.983056E-01 0.116676E-04 * +Number of iterations = 1 +Initial residual = 0.001179 +Final residual = 0.000055 +Average conv. rate = 0.046426 + +* 2 2 1 0.117919E-02 0.547444E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2893 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.40 457 101.2deg E 76.2deg N 224.38 2891 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.31K. At min for run = -12.40K + +Maximum vertical velocity at timestep 2893 Max w this run +w_max level proc position run w_max level timestep +0.530E+00 25 220 45.0deg W -15.6deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2894 Model time: 1979-03-02 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043115 + +* 1 1 3 0.100000E+01 0.801482E-04 * +Number of iterations = 2 +Initial residual = 0.013894 +Final residual = 0.000043 +Average conv. rate = 0.055662 + +* 1 2 2 0.138945E-01 0.430489E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096763 +Final residual = 0.000011 +Average conv. rate = 0.049049 + +* 2 1 3 0.967626E-01 0.114180E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000056 +Average conv. rate = 0.047000 + +* 2 2 1 0.118482E-02 0.556866E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2894 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.40 457 101.2deg E 76.2deg N 224.38 2891 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.28K. At min for run = -12.40K + +Maximum vertical velocity at timestep 2894 Max w this run +w_max level proc position run w_max level timestep +0.546E+00 27 220 45.0deg W -15.6deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2895 Model time: 1979-03-02 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043431 + +* 1 1 3 0.100000E+01 0.819201E-04 * +Number of iterations = 2 +Initial residual = 0.013856 +Final residual = 0.000043 +Average conv. rate = 0.055456 + +* 1 2 2 0.138563E-01 0.426130E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097900 +Final residual = 0.000012 +Average conv. rate = 0.049218 + +* 2 1 3 0.978997E-01 0.116724E-04 * +Number of iterations = 1 +Initial residual = 0.001184 +Final residual = 0.000056 +Average conv. rate = 0.047723 + +* 2 2 1 0.118388E-02 0.564984E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2895 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.37 457 101.2deg E 76.2deg N 224.37 2895 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.30K. At min for run = -12.30K + +Maximum vertical velocity at timestep 2895 Max w this run +w_max level proc position run w_max level timestep +0.535E+00 28 220 45.0deg W -15.6deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2896 Model time: 1979-03-02 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043359 + +* 1 1 3 0.100000E+01 0.815129E-04 * +Number of iterations = 2 +Initial residual = 0.013788 +Final residual = 0.000042 +Average conv. rate = 0.055469 + +* 1 2 2 0.137885E-01 0.424240E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099241 +Final residual = 0.000012 +Average conv. rate = 0.049127 + +* 2 1 3 0.992415E-01 0.117666E-04 * +Number of iterations = 1 +Initial residual = 0.001223 +Final residual = 0.000057 +Average conv. rate = 0.046208 + +* 2 2 1 0.122344E-02 0.565331E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2896 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.32 457 101.2deg E 76.2deg N 224.32 2896 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.35K. At min for run = -12.35K + +Maximum vertical velocity at timestep 2896 Max w this run +w_max level proc position run w_max level timestep +0.516E+00 28 220 45.0deg W -15.6deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2897 Model time: 1979-03-02 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043142 + +* 1 1 3 0.100000E+01 0.802948E-04 * +Number of iterations = 2 +Initial residual = 0.013845 +Final residual = 0.000042 +Average conv. rate = 0.055150 + +* 1 2 2 0.138451E-01 0.421099E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098941 +Final residual = 0.000013 +Average conv. rate = 0.051266 + +* 2 1 3 0.989414E-01 0.133307E-04 * +Number of iterations = 1 +Initial residual = 0.001221 +Final residual = 0.000058 +Average conv. rate = 0.047260 + +* 2 2 1 0.122052E-02 0.576820E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2897 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.23 457 101.2deg E 76.2deg N 224.23 2897 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.40K. At min for run = -12.40K + +Maximum vertical velocity at timestep 2897 Max w this run +w_max level proc position run w_max level timestep +0.462E+00 28 220 45.0deg W -15.6deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2898 Model time: 1979-03-02 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042917 + +* 1 1 3 0.100000E+01 0.790455E-04 * +Number of iterations = 2 +Initial residual = 0.013823 +Final residual = 0.000042 +Average conv. rate = 0.055340 + +* 1 2 2 0.138233E-01 0.423340E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097577 +Final residual = 0.000012 +Average conv. rate = 0.050084 + +* 2 1 3 0.975772E-01 0.122589E-04 * +Number of iterations = 1 +Initial residual = 0.001224 +Final residual = 0.000057 +Average conv. rate = 0.046596 + +* 2 2 1 0.122426E-02 0.570459E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2898 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.11 457 101.2deg E 76.2deg N 224.11 2898 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.46K. At min for run = -12.46K + +Maximum vertical velocity at timestep 2898 Max w this run +w_max level proc position run w_max level timestep +0.432E+00 31 166 73.1deg E -25.6deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2899 Model time: 1979-03-02 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043009 + +* 1 1 3 0.100000E+01 0.795589E-04 * +Number of iterations = 2 +Initial residual = 0.013941 +Final residual = 0.000043 +Average conv. rate = 0.055722 + +* 1 2 2 0.139407E-01 0.432847E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099112 +Final residual = 0.000013 +Average conv. rate = 0.050308 + +* 2 1 3 0.991123E-01 0.126193E-04 * +Number of iterations = 1 +Initial residual = 0.001207 +Final residual = 0.000056 +Average conv. rate = 0.046477 + +* 2 2 1 0.120722E-02 0.561077E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2899 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.97 457 101.2deg E 76.2deg N 223.97 2899 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.59K. At min for run = -12.59K + +Maximum vertical velocity at timestep 2899 Max w this run +w_max level proc position run w_max level timestep +0.409E+00 32 166 73.1deg E -25.6deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2900 Model time: 1979-03-02 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042960 + +* 1 1 3 0.100000E+01 0.792863E-04 * +Number of iterations = 2 +Initial residual = 0.013965 +Final residual = 0.000044 +Average conv. rate = 0.055908 + +* 1 2 2 0.139652E-01 0.436516E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097277 +Final residual = 0.000011 +Average conv. rate = 0.047680 + +* 2 1 3 0.972771E-01 0.105444E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000056 +Average conv. rate = 0.046000 + +* 2 2 1 0.120771E-02 0.555545E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2900 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.84 457 101.2deg E 76.2deg N 223.84 2900 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.69K. At min for run = -12.69K + +Maximum vertical velocity at timestep 2900 Max w this run +w_max level proc position run w_max level timestep +0.413E+00 33 166 73.1deg E -25.6deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2901 Model time: 1979-03-02 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043492 + +* 1 1 3 0.100000E+01 0.822697E-04 * +Number of iterations = 2 +Initial residual = 0.014030 +Final residual = 0.000041 +Average conv. rate = 0.053832 + +* 1 2 2 0.140299E-01 0.406571E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097328 +Final residual = 0.000014 +Average conv. rate = 0.052508 + +* 2 1 3 0.973278E-01 0.140897E-04 * +Number of iterations = 1 +Initial residual = 0.001205 +Final residual = 0.000056 +Average conv. rate = 0.046590 + +* 2 2 1 0.120461E-02 0.561230E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2901 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.70 457 101.2deg E 76.2deg N 223.70 2901 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.81K. At min for run = -12.81K + +Maximum vertical velocity at timestep 2901 Max w this run +w_max level proc position run w_max level timestep +0.487E+00 32 166 73.1deg E -25.6deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2902 Model time: 1979-03-02 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043056 + +* 1 1 3 0.100000E+01 0.798183E-04 * +Number of iterations = 2 +Initial residual = 0.013958 +Final residual = 0.000041 +Average conv. rate = 0.054053 + +* 1 2 2 0.139582E-01 0.407817E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096988 +Final residual = 0.000012 +Average conv. rate = 0.050458 + +* 2 1 3 0.969882E-01 0.124595E-04 * +Number of iterations = 1 +Initial residual = 0.001213 +Final residual = 0.000056 +Average conv. rate = 0.045989 + +* 2 2 1 0.121288E-02 0.557797E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2902 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.58 457 101.2deg E 76.2deg N 223.58 2902 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.91K. At min for run = -12.91K + +Maximum vertical velocity at timestep 2902 Max w this run +w_max level proc position run w_max level timestep +0.526E+00 32 166 73.1deg E -25.6deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2903 Model time: 1979-03-02 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042761 + +* 1 1 3 0.100000E+01 0.781861E-04 * +Number of iterations = 2 +Initial residual = 0.013985 +Final residual = 0.000046 +Average conv. rate = 0.057268 + +* 1 2 2 0.139852E-01 0.458663E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098212 +Final residual = 0.000013 +Average conv. rate = 0.050369 + +* 2 1 3 0.982118E-01 0.125504E-04 * +Number of iterations = 1 +Initial residual = 0.001229 +Final residual = 0.000057 +Average conv. rate = 0.046333 + +* 2 2 1 0.122932E-02 0.569583E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2903 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.47 457 101.2deg E 76.2deg N 223.47 2903 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.99K. At min for run = -12.99K + +Maximum vertical velocity at timestep 2903 Max w this run +w_max level proc position run w_max level timestep +0.474E+00 32 166 73.1deg E -25.6deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2904 Model time: 1979-03-02 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042818 + +* 1 1 3 0.100000E+01 0.785042E-04 * +Number of iterations = 2 +Initial residual = 0.013991 +Final residual = 0.000040 +Average conv. rate = 0.053475 + +* 1 2 2 0.139914E-01 0.400096E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098734 +Final residual = 0.000014 +Average conv. rate = 0.052125 + +* 2 1 3 0.987341E-01 0.139828E-04 * +Number of iterations = 1 +Initial residual = 0.001220 +Final residual = 0.000057 +Average conv. rate = 0.046368 + +* 2 2 1 0.122026E-02 0.565817E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2904 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.38 457 101.2deg E 76.2deg N 223.38 2904 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.05K. At min for run = -13.05K + +Maximum vertical velocity at timestep 2904 Max w this run +w_max level proc position run w_max level timestep +0.453E+00 33 166 73.1deg E -25.6deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2905 Model time: 1979-03-02 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043290 + +* 1 1 3 0.100000E+01 0.811262E-04 * +Number of iterations = 2 +Initial residual = 0.014140 +Final residual = 0.000046 +Average conv. rate = 0.056788 + +* 1 2 2 0.141399E-01 0.455994E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098873 +Final residual = 0.000013 +Average conv. rate = 0.050307 + +* 2 1 3 0.988728E-01 0.125879E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000056 +Average conv. rate = 0.046316 + +* 2 2 1 0.120360E-02 0.557456E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2905 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.31 457 101.2deg E 76.2deg N 223.31 2905 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.09K. At min for run = -13.09K + +Maximum vertical velocity at timestep 2905 Max w this run +w_max level proc position run w_max level timestep +0.399E+00 38 236 140.6deg E -8.1deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2906 Model time: 1979-03-02 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000076 +Average conv. rate = 0.042438 + +* 1 1 3 0.100000E+01 0.764305E-04 * +Number of iterations = 2 +Initial residual = 0.014153 +Final residual = 0.000044 +Average conv. rate = 0.056039 + +* 1 2 2 0.141533E-01 0.444472E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097888 +Final residual = 0.000012 +Average conv. rate = 0.050357 + +* 2 1 3 0.978884E-01 0.124999E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000056 +Average conv. rate = 0.046779 + +* 2 2 1 0.118802E-02 0.555739E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2906 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.25 457 101.2deg E 76.2deg N 223.25 2906 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.12K. At min for run = -13.12K + +Maximum vertical velocity at timestep 2906 Max w this run +w_max level proc position run w_max level timestep +0.389E+00 34 297 103.1deg E 20.6deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2907 Model time: 1979-03-02 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043167 + +* 1 1 3 0.100000E+01 0.804353E-04 * +Number of iterations = 2 +Initial residual = 0.014168 +Final residual = 0.000040 +Average conv. rate = 0.053342 + +* 1 2 2 0.141676E-01 0.403124E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098947 +Final residual = 0.000014 +Average conv. rate = 0.052506 + +* 2 1 3 0.989466E-01 0.143230E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000057 +Average conv. rate = 0.046985 + +* 2 2 1 0.120575E-02 0.566522E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2907 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.21 457 101.2deg E 76.2deg N 223.21 2907 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.13K. At min for run = -13.13K + +Maximum vertical velocity at timestep 2907 Max w this run +w_max level proc position run w_max level timestep +0.380E+00 39 219 46.9deg W -13.1deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2908 Model time: 1979-03-02 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043219 + +* 1 1 3 0.100000E+01 0.807291E-04 * +Number of iterations = 2 +Initial residual = 0.014111 +Final residual = 0.000040 +Average conv. rate = 0.053368 + +* 1 2 2 0.141114E-01 0.401909E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099001 +Final residual = 0.000014 +Average conv. rate = 0.052237 + +* 2 1 3 0.990013E-01 0.141118E-04 * +Number of iterations = 1 +Initial residual = 0.001216 +Final residual = 0.000057 +Average conv. rate = 0.047146 + +* 2 2 1 0.121628E-02 0.573430E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2908 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.18 457 101.2deg E 76.2deg N 223.18 2908 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.12K. At min for run = -13.12K + +Maximum vertical velocity at timestep 2908 Max w this run +w_max level proc position run w_max level timestep +0.373E+00 39 219 46.9deg W -13.1deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2909 Model time: 1979-03-02 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042682 + +* 1 1 3 0.100000E+01 0.777547E-04 * +Number of iterations = 2 +Initial residual = 0.014130 +Final residual = 0.000041 +Average conv. rate = 0.053942 + +* 1 2 2 0.141295E-01 0.411130E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100439 +Final residual = 0.000014 +Average conv. rate = 0.052182 + +* 2 1 3 0.100439E+00 0.142716E-04 * +Number of iterations = 1 +Initial residual = 0.001229 +Final residual = 0.000058 +Average conv. rate = 0.047348 + +* 2 2 1 0.122936E-02 0.582078E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2909 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.17 457 101.2deg E 76.2deg N 223.17 2909 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.09K. At min for run = -13.09K + +Maximum vertical velocity at timestep 2909 Max w this run +w_max level proc position run w_max level timestep +0.362E+00 39 219 46.9deg W -13.1deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2910 Model time: 1979-03-02 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042734 + +* 1 1 3 0.100000E+01 0.780413E-04 * +Number of iterations = 2 +Initial residual = 0.014100 +Final residual = 0.000040 +Average conv. rate = 0.053507 + +* 1 2 2 0.140999E-01 0.403688E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100976 +Final residual = 0.000015 +Average conv. rate = 0.052495 + +* 2 1 3 0.100976E+00 0.146078E-04 * +Number of iterations = 1 +Initial residual = 0.001242 +Final residual = 0.000059 +Average conv. rate = 0.047479 + +* 2 2 1 0.124167E-02 0.589538E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2910 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.16 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.06K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2910 Max w this run +w_max level proc position run w_max level timestep +0.359E+00 35 234 112.5deg E -1.9deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2911 Model time: 1979-03-02 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042653 + +* 1 1 3 0.100000E+01 0.775983E-04 * +Number of iterations = 2 +Initial residual = 0.014119 +Final residual = 0.000040 +Average conv. rate = 0.053510 + +* 1 2 2 0.141195E-01 0.404286E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101746 +Final residual = 0.000015 +Average conv. rate = 0.052769 + +* 2 1 3 0.101746E+00 0.149504E-04 * +Number of iterations = 1 +Initial residual = 0.001254 +Final residual = 0.000061 +Average conv. rate = 0.048291 + +* 2 2 1 0.125438E-02 0.605754E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2911 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.18 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2911 Max w this run +w_max level proc position run w_max level timestep +0.385E+00 24 236 142.5deg E -6.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2912 Model time: 1979-03-02 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042491 + +* 1 1 3 0.100000E+01 0.767187E-04 * +Number of iterations = 2 +Initial residual = 0.014053 +Final residual = 0.000040 +Average conv. rate = 0.053540 + +* 1 2 2 0.140529E-01 0.402830E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102102 +Final residual = 0.000012 +Average conv. rate = 0.049187 + +* 2 1 3 0.102102E+00 0.121504E-04 * +Number of iterations = 1 +Initial residual = 0.001267 +Final residual = 0.000061 +Average conv. rate = 0.048374 + +* 2 2 1 0.126662E-02 0.612711E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2912 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.19 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2912 Max w this run +w_max level proc position run w_max level timestep +0.397E+00 24 236 142.5deg E -6.9deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2913 Model time: 1979-03-02 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043087 + +* 1 1 3 0.100000E+01 0.799925E-04 * +Number of iterations = 2 +Initial residual = 0.014121 +Final residual = 0.000041 +Average conv. rate = 0.053953 + +* 1 2 2 0.141214E-01 0.411056E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102992 +Final residual = 0.000016 +Average conv. rate = 0.053294 + +* 2 1 3 0.102992E+00 0.155898E-04 * +Number of iterations = 1 +Initial residual = 0.001272 +Final residual = 0.000062 +Average conv. rate = 0.049093 + +* 2 2 1 0.127172E-02 0.624329E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2913 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.23 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2913 Max w this run +w_max level proc position run w_max level timestep +0.448E+00 25 236 142.5deg E -6.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2914 Model time: 1979-03-02 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042898 + +* 1 1 3 0.100000E+01 0.789431E-04 * +Number of iterations = 2 +Initial residual = 0.014111 +Final residual = 0.000041 +Average conv. rate = 0.054057 + +* 1 2 2 0.141106E-01 0.412331E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102945 +Final residual = 0.000012 +Average conv. rate = 0.049455 + +* 2 1 3 0.102945E+00 0.124517E-04 * +Number of iterations = 1 +Initial residual = 0.001271 +Final residual = 0.000062 +Average conv. rate = 0.049107 + +* 2 2 1 0.127117E-02 0.624228E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2914 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.27 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2914 Max w this run +w_max level proc position run w_max level timestep +0.450E+00 25 236 142.5deg E -6.9deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2915 Model time: 1979-03-02 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042871 + +* 1 1 3 0.100000E+01 0.787949E-04 * +Number of iterations = 2 +Initial residual = 0.014171 +Final residual = 0.000042 +Average conv. rate = 0.054282 + +* 1 2 2 0.141705E-01 0.417542E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104094 +Final residual = 0.000013 +Average conv. rate = 0.049796 + +* 2 1 3 0.104094E+00 0.128528E-04 * +Number of iterations = 1 +Initial residual = 0.001278 +Final residual = 0.000065 +Average conv. rate = 0.050579 + +* 2 2 1 0.127848E-02 0.646640E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2915 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.33 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.08K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2915 Max w this run +w_max level proc position run w_max level timestep +0.477E+00 35 234 112.5deg E -0.6deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2916 Model time: 1979-03-02 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043188 + +* 1 1 3 0.100000E+01 0.805559E-04 * +Number of iterations = 2 +Initial residual = 0.014082 +Final residual = 0.000042 +Average conv. rate = 0.054491 + +* 1 2 2 0.140824E-01 0.418138E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104342 +Final residual = 0.000013 +Average conv. rate = 0.050401 + +* 2 1 3 0.104342E+00 0.133593E-04 * +Number of iterations = 1 +Initial residual = 0.001287 +Final residual = 0.000066 +Average conv. rate = 0.050957 + +* 2 2 1 0.128689E-02 0.655764E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2916 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.40 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2916 Max w this run +w_max level proc position run w_max level timestep +0.468E+00 35 234 112.5deg E -0.6deg S 0.751E+00 29 2867 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2917 Model time: 1979-03-02 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044203 + +* 1 1 3 0.100000E+01 0.863707E-04 * +Number of iterations = 2 +Initial residual = 0.014059 +Final residual = 0.000042 +Average conv. rate = 0.054906 + +* 1 2 2 0.140590E-01 0.423827E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105385 +Final residual = 0.000014 +Average conv. rate = 0.050542 + +* 2 1 3 0.105385E+00 0.136060E-04 * +Number of iterations = 1 +Initial residual = 0.001289 +Final residual = 0.000066 +Average conv. rate = 0.050972 + +* 2 2 1 0.128890E-02 0.656977E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2917 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.46 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2917 Max w this run +w_max level proc position run w_max level timestep +0.412E+00 26 236 142.5deg E -6.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2918 Model time: 1979-03-02 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043810 + +* 1 1 3 0.100000E+01 0.840834E-04 * +Number of iterations = 2 +Initial residual = 0.013973 +Final residual = 0.000043 +Average conv. rate = 0.055285 + +* 1 2 2 0.139727E-01 0.427066E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103935 +Final residual = 0.000014 +Average conv. rate = 0.050853 + +* 2 1 3 0.103935E+00 0.136684E-04 * +Number of iterations = 1 +Initial residual = 0.001273 +Final residual = 0.000064 +Average conv. rate = 0.050653 + +* 2 2 1 0.127273E-02 0.644678E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2918 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.57 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2918 Max w this run +w_max level proc position run w_max level timestep +0.403E+00 82 166 69.4deg E -30.6deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2919 Model time: 1979-03-02 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043331 + +* 1 1 3 0.100000E+01 0.813569E-04 * +Number of iterations = 2 +Initial residual = 0.014033 +Final residual = 0.000040 +Average conv. rate = 0.053363 + +* 1 2 2 0.140329E-01 0.399603E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103629 +Final residual = 0.000014 +Average conv. rate = 0.051300 + +* 2 1 3 0.103629E+00 0.139904E-04 * +Number of iterations = 1 +Initial residual = 0.001281 +Final residual = 0.000064 +Average conv. rate = 0.050031 + +* 2 2 1 0.128109E-02 0.640945E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2919 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.68 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.75K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2919 Max w this run +w_max level proc position run w_max level timestep +0.419E+00 82 166 69.4deg E -31.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2920 Model time: 1979-03-02 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044024 + +* 1 1 3 0.100000E+01 0.853227E-04 * +Number of iterations = 2 +Initial residual = 0.014012 +Final residual = 0.000040 +Average conv. rate = 0.053308 + +* 1 2 2 0.140121E-01 0.398194E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103054 +Final residual = 0.000012 +Average conv. rate = 0.048729 + +* 2 1 3 0.103054E+00 0.119240E-04 * +Number of iterations = 1 +Initial residual = 0.001275 +Final residual = 0.000063 +Average conv. rate = 0.049457 + +* 2 2 1 0.127479E-02 0.630476E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2920 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.78 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.70K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2920 Max w this run +w_max level proc position run w_max level timestep +0.426E+00 81 418 22.5deg E 64.4deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2921 Model time: 1979-03-02 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043865 + +* 1 1 3 0.100000E+01 0.844021E-04 * +Number of iterations = 2 +Initial residual = 0.014114 +Final residual = 0.000041 +Average conv. rate = 0.053823 + +* 1 2 2 0.141142E-01 0.408881E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103667 +Final residual = 0.000013 +Average conv. rate = 0.050678 + +* 2 1 3 0.103667E+00 0.134928E-04 * +Number of iterations = 1 +Initial residual = 0.001285 +Final residual = 0.000063 +Average conv. rate = 0.049117 + +* 2 2 1 0.128452E-02 0.630915E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2921 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.94 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2921 Max w this run +w_max level proc position run w_max level timestep +0.426E+00 81 418 22.5deg E 64.4deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2922 Model time: 1979-03-02 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044351 + +* 1 1 3 0.100000E+01 0.872361E-04 * +Number of iterations = 2 +Initial residual = 0.014119 +Final residual = 0.000040 +Average conv. rate = 0.053442 + +* 1 2 2 0.141192E-01 0.403245E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102938 +Final residual = 0.000014 +Average conv. rate = 0.051492 + +* 2 1 3 0.102938E+00 0.140542E-04 * +Number of iterations = 1 +Initial residual = 0.001286 +Final residual = 0.000063 +Average conv. rate = 0.049316 + +* 2 2 1 0.128557E-02 0.633995E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2922 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.11 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2922 Max w this run +w_max level proc position run w_max level timestep +0.405E+00 81 418 22.5deg E 64.4deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2923 Model time: 1979-03-02 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000091 +Average conv. rate = 0.044942 + +* 1 1 3 0.100000E+01 0.907756E-04 * +Number of iterations = 2 +Initial residual = 0.014159 +Final residual = 0.000041 +Average conv. rate = 0.053590 + +* 1 2 2 0.141588E-01 0.406628E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102358 +Final residual = 0.000015 +Average conv. rate = 0.052486 + +* 2 1 3 0.102358E+00 0.147999E-04 * +Number of iterations = 1 +Initial residual = 0.001276 +Final residual = 0.000063 +Average conv. rate = 0.049693 + +* 2 2 1 0.127649E-02 0.634321E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2923 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.29 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.37K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2923 Max w this run +w_max level proc position run w_max level timestep +0.427E+00 38 178 153.8deg W -26.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2924 Model time: 1979-03-02 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000093 +Average conv. rate = 0.045363 + +* 1 1 3 0.100000E+01 0.933508E-04 * +Number of iterations = 2 +Initial residual = 0.014085 +Final residual = 0.000041 +Average conv. rate = 0.053832 + +* 1 2 2 0.140852E-01 0.408172E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101780 +Final residual = 0.000016 +Average conv. rate = 0.053515 + +* 2 1 3 0.101780E+00 0.155986E-04 * +Number of iterations = 1 +Initial residual = 0.001255 +Final residual = 0.000063 +Average conv. rate = 0.050029 + +* 2 2 1 0.125541E-02 0.628072E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2924 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.47 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2924 Max w this run +w_max level proc position run w_max level timestep +0.417E+00 22 178 153.8deg W -26.9deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2925 Model time: 1979-03-02 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043952 + +* 1 1 3 0.100000E+01 0.849039E-04 * +Number of iterations = 2 +Initial residual = 0.014133 +Final residual = 0.000042 +Average conv. rate = 0.054300 + +* 1 2 2 0.141325E-01 0.416698E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102170 +Final residual = 0.000015 +Average conv. rate = 0.052982 + +* 2 1 3 0.102170E+00 0.151952E-04 * +Number of iterations = 1 +Initial residual = 0.001258 +Final residual = 0.000063 +Average conv. rate = 0.049864 + +* 2 2 1 0.125798E-02 0.627282E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2925 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.75 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.15K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2925 Max w this run +w_max level proc position run w_max level timestep +0.485E+00 39 178 153.8deg W -26.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2926 Model time: 1979-03-02 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044792 + +* 1 1 3 0.100000E+01 0.898692E-04 * +Number of iterations = 2 +Initial residual = 0.014061 +Final residual = 0.000043 +Average conv. rate = 0.055408 + +* 1 2 2 0.140612E-01 0.431691E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102310 +Final residual = 0.000017 +Average conv. rate = 0.055155 + +* 2 1 3 0.102310E+00 0.171663E-04 * +Number of iterations = 1 +Initial residual = 0.001255 +Final residual = 0.000062 +Average conv. rate = 0.049551 + +* 2 2 1 0.125532E-02 0.622023E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2926 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.03 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2926 Max w this run +w_max level proc position run w_max level timestep +0.517E+00 24 178 153.8deg W -26.9deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2927 Model time: 1979-03-02 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044615 + +* 1 1 3 0.100000E+01 0.888070E-04 * +Number of iterations = 2 +Initial residual = 0.014077 +Final residual = 0.000042 +Average conv. rate = 0.054449 + +* 1 2 2 0.140772E-01 0.417347E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102494 +Final residual = 0.000015 +Average conv. rate = 0.052332 + +* 2 1 3 0.102494E+00 0.146890E-04 * +Number of iterations = 1 +Initial residual = 0.001249 +Final residual = 0.000062 +Average conv. rate = 0.049235 + +* 2 2 1 0.124924E-02 0.615070E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2927 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.40 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.82K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2927 Max w this run +w_max level proc position run w_max level timestep +0.527E+00 25 178 153.8deg W -26.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2928 Model time: 1979-03-03 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Copying rp2 to dump headers +update_dpsidt: updating based on existing values +stph_skeb2: Copying SKEB2 data to dump headers +update_pattern: updating coeffc and coeffs +Copying SPT parameters to dump headers +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043773 + +* 1 1 3 0.100000E+01 0.838727E-04 * +Number of iterations = 2 +Initial residual = 0.013973 +Final residual = 0.000041 +Average conv. rate = 0.054409 + +* 1 2 2 0.139731E-01 0.413644E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102535 +Final residual = 0.000017 +Average conv. rate = 0.054503 + +* 2 1 3 0.102535E+00 0.166006E-04 * +Number of iterations = 1 +Initial residual = 0.001250 +Final residual = 0.000062 +Average conv. rate = 0.049690 + +* 2 2 1 0.125036E-02 0.621310E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13056E+25 +tot dry energy 0.13057E+25 +gr( rho cal) 0.38108E+24 +KE( rho cal) 0.81708E+21 +KEu(rho cal) 0.65022E+21 +KEv(rho cal) 0.16686E+21 +KEw(rho cal) 0.10471E+16 +cvT( rho cal) 0.92382E+24 +lq ( rho cal) 0.30667E+23 +lqcf( rho cal) 0.59939E+20 +lqcl( rho cal) 0.42111E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12301E+17 KG +Initial moisture = 0.12320E+17 KG +change in moisture = -0.19290E+14 KG +Moisture added E-P in period = -0.18872E+14 KG +Error in moisture = -0.41799E+12 KG +Error as % of change = 0.21669E+01 +q ( rho cal) 0.12262E+17 +qcf( rho cal) 0.23966E+14 +qcl( rho cal) 0.14854E+14 +FINAL TOTAL ENERGY = 0.13056E+25 J/ +INITIAL TOTAL ENERGY = 0.13058E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.16021E+21 J/ +FLUXES INTO ATM OVER PERIOD = -0.16193E+21 J/ +ERROR IN ENERGY BUDGET = -0.17207E+19 J/ +TEMP CORRECTION OVER A DAY = -0.46724E-03 K +TEMPERATURE CORRECTION RATE = -0.54079E-08 K/S +FLUX CORRECTION (ATM) = -0.39043E-01 W/M2 + +Minimum theta level 1 for timestep 2928 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.75 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.65K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2928 Max w this run +w_max level proc position run w_max level timestep +0.517E+00 24 178 153.8deg W -26.9deg S 0.751E+00 29 2867 +Value of iranseed copied to the dump headers 230085598312233 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790303_00 +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.d%z%C +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790303_00 +FILE_MANAGER: : Unit : 45 (portio) +DUMPCTL: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790303_00 on unit 45 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790303_00 to be Opened on Unit 45 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790303_00 Created on Unit 45 +OPEN: Claimed 4194304 Bytes for Buffering +OPEN: Buffer Address is 0x267fdc00 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790303_00 on unit 45 + +WRITING UNIFIED MODEL DUMP ON UNIT 45 +##################################### + +Data successfully written +794416694 words written to unit 45 +(Model data) +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790303_00 Closed on Unit 45 +FILE_MANAGER: Released : Unit : 45 (portio) +MPPIO: file op: mkdir::history_archive: +file_op: Create Directory: "history_archive" +file_op: Create Directory: Directory Created +MPPIO: file op completed +FILE_MANAGER: Assigned : history_archive/temp_hist.0001 +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +MPPIO: file op: cp::history_archive/temp_hist.0001:thist +file_op: Copy: "history_archive/temp_hist.0001" to "thist" +file_op: Copy: Complete, 12893 bytes +MPPIO: file op completed +FILE_MANAGER: Assigned : history_archive/temp_hist.0002 +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +MPPIO: file op: cp::history_archive/temp_hist.0002:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.xhist +file_op: Copy: "history_archive/temp_hist.0002" to "/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.xhist" +file_op: Copy: Complete, 12893 bytes +MPPIO: file op completed +MPPIO: file op: rm::thist: +file_op: Delete: "thist" +file_op: Delete: File deleted +MPPIO: file op completed +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6540.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6540.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6540.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6540.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6540.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6540.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 2929 Model time: 1979-03-03 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044321 + +* 1 1 3 0.100000E+01 0.870625E-04 * +Number of iterations = 2 +Initial residual = 0.014018 +Final residual = 0.000042 +Average conv. rate = 0.054810 + +* 1 2 2 0.140182E-01 0.421123E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103577 +Final residual = 0.000014 +Average conv. rate = 0.051527 + +* 2 1 3 0.103577E+00 0.141701E-04 * +Number of iterations = 1 +Initial residual = 0.001261 +Final residual = 0.000062 +Average conv. rate = 0.049222 + +* 2 2 1 0.126148E-02 0.620926E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2929 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.69 457 101.2deg E 76.2deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.88K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2929 Max w this run +w_max level proc position run w_max level timestep +0.514E+00 25 178 153.8deg W -26.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2930 Model time: 1979-03-03 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044516 + +* 1 1 3 0.100000E+01 0.882152E-04 * +Number of iterations = 2 +Initial residual = 0.014033 +Final residual = 0.000043 +Average conv. rate = 0.055289 + +* 1 2 2 0.140328E-01 0.428969E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101994 +Final residual = 0.000016 +Average conv. rate = 0.053503 + +* 2 1 3 0.101994E+00 0.156215E-04 * +Number of iterations = 1 +Initial residual = 0.001262 +Final residual = 0.000062 +Average conv. rate = 0.049111 + +* 2 2 1 0.126153E-02 0.619546E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2930 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.43 457 110.6deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.45K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2930 Max w this run +w_max level proc position run w_max level timestep +0.507E+00 25 178 153.8deg W -26.9deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2931 Model time: 1979-03-03 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044366 + +* 1 1 3 0.100000E+01 0.873256E-04 * +Number of iterations = 2 +Initial residual = 0.014121 +Final residual = 0.000044 +Average conv. rate = 0.056137 + +* 1 2 2 0.141207E-01 0.444993E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101941 +Final residual = 0.000016 +Average conv. rate = 0.054164 + +* 2 1 3 0.101941E+00 0.161986E-04 * +Number of iterations = 1 +Initial residual = 0.001258 +Final residual = 0.000063 +Average conv. rate = 0.050078 + +* 2 2 1 0.125808E-02 0.630022E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2931 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.49 457 110.6deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.46K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2931 Max w this run +w_max level proc position run w_max level timestep +0.529E+00 26 178 153.8deg W -26.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2932 Model time: 1979-03-03 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044186 + +* 1 1 3 0.100000E+01 0.862688E-04 * +Number of iterations = 2 +Initial residual = 0.014081 +Final residual = 0.000043 +Average conv. rate = 0.055067 + +* 1 2 2 0.140808E-01 0.426976E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101694 +Final residual = 0.000017 +Average conv. rate = 0.054708 + +* 2 1 3 0.101694E+00 0.166516E-04 * +Number of iterations = 1 +Initial residual = 0.001250 +Final residual = 0.000062 +Average conv. rate = 0.049466 + +* 2 2 1 0.125010E-02 0.618379E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2932 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.57 457 110.6deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2932 Max w this run +w_max level proc position run w_max level timestep +0.509E+00 26 178 153.8deg W -26.9deg S 0.751E+00 29 2867 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2933 Model time: 1979-03-03 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044475 + +* 1 1 3 0.100000E+01 0.879711E-04 * +Number of iterations = 2 +Initial residual = 0.014140 +Final residual = 0.000041 +Average conv. rate = 0.054092 + +* 1 2 2 0.141396E-01 0.413717E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101287 +Final residual = 0.000017 +Average conv. rate = 0.054724 + +* 2 1 3 0.101287E+00 0.165995E-04 * +Number of iterations = 1 +Initial residual = 0.001248 +Final residual = 0.000062 +Average conv. rate = 0.049748 + +* 2 2 1 0.124800E-02 0.620859E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2933 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.68 457 110.6deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.45K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2933 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 26 178 153.8deg W -26.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2934 Model time: 1979-03-03 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044584 + +* 1 1 3 0.100000E+01 0.886184E-04 * +Number of iterations = 2 +Initial residual = 0.014119 +Final residual = 0.000041 +Average conv. rate = 0.053990 + +* 1 2 2 0.141194E-01 0.411563E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100511 +Final residual = 0.000016 +Average conv. rate = 0.054028 + +* 2 1 3 0.100511E+00 0.158520E-04 * +Number of iterations = 1 +Initial residual = 0.001229 +Final residual = 0.000062 +Average conv. rate = 0.050216 + +* 2 2 1 0.122902E-02 0.617161E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2934 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.82 457 110.6deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.42K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2934 Max w this run +w_max level proc position run w_max level timestep +0.440E+00 26 178 153.8deg W -26.9deg S 0.751E+00 29 2867 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2935 Model time: 1979-03-03 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043657 + +* 1 1 3 0.100000E+01 0.832101E-04 * +Number of iterations = 2 +Initial residual = 0.014185 +Final residual = 0.000041 +Average conv. rate = 0.053813 + +* 1 2 2 0.141846E-01 0.410770E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102022 +Final residual = 0.000016 +Average conv. rate = 0.053429 + +* 2 1 3 0.102022E+00 0.155609E-04 * +Number of iterations = 1 +Initial residual = 0.001242 +Final residual = 0.000062 +Average conv. rate = 0.050108 + +* 2 2 1 0.124243E-02 0.622556E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2935 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.01 457 110.6deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.40K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2935 Max w this run +w_max level proc position run w_max level timestep +0.443E+00 82 452 48.7deg E 71.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2936 Model time: 1979-03-03 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043852 + +* 1 1 3 0.100000E+01 0.843298E-04 * +Number of iterations = 2 +Initial residual = 0.014087 +Final residual = 0.000041 +Average conv. rate = 0.053757 + +* 1 2 2 0.140867E-01 0.407076E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100194 +Final residual = 0.000016 +Average conv. rate = 0.053734 + +* 2 1 3 0.100194E+00 0.155452E-04 * +Number of iterations = 1 +Initial residual = 0.001209 +Final residual = 0.000062 +Average conv. rate = 0.051394 + +* 2 2 1 0.120860E-02 0.621153E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2936 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.45 457 110.6deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2936 Max w this run +w_max level proc position run w_max level timestep +0.451E+00 82 452 46.9deg E 71.9deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2937 Model time: 1979-03-03 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044271 + +* 1 1 3 0.100000E+01 0.867663E-04 * +Number of iterations = 2 +Initial residual = 0.014087 +Final residual = 0.000041 +Average conv. rate = 0.053941 + +* 1 2 2 0.140874E-01 0.409895E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099911 +Final residual = 0.000015 +Average conv. rate = 0.053329 + +* 2 1 3 0.999107E-01 0.151534E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000062 +Average conv. rate = 0.051337 + +* 2 2 1 0.120425E-02 0.618229E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2937 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.93 457 110.6deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2937 Max w this run +w_max level proc position run w_max level timestep +0.454E+00 82 452 48.7deg E 73.1deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2938 Model time: 1979-03-03 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043847 + +* 1 1 3 0.100000E+01 0.842961E-04 * +Number of iterations = 2 +Initial residual = 0.013990 +Final residual = 0.000041 +Average conv. rate = 0.054155 + +* 1 2 2 0.139901E-01 0.410300E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097916 +Final residual = 0.000016 +Average conv. rate = 0.054996 + +* 2 1 3 0.979165E-01 0.162872E-04 * +Number of iterations = 1 +Initial residual = 0.001199 +Final residual = 0.000062 +Average conv. rate = 0.051943 + +* 2 2 1 0.119867E-02 0.622633E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2938 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.41 457 110.6deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.53K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2938 Max w this run +w_max level proc position run w_max level timestep +0.469E+00 24 178 151.9deg W -26.9deg S 0.751E+00 29 2867 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2939 Model time: 1979-03-03 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043866 + +* 1 1 3 0.100000E+01 0.844053E-04 * +Number of iterations = 2 +Initial residual = 0.013998 +Final residual = 0.000041 +Average conv. rate = 0.054303 + +* 1 2 2 0.139984E-01 0.412780E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098659 +Final residual = 0.000016 +Average conv. rate = 0.054555 + +* 2 1 3 0.986590E-01 0.160191E-04 * +Number of iterations = 1 +Initial residual = 0.001193 +Final residual = 0.000061 +Average conv. rate = 0.051202 + +* 2 2 1 0.119289E-02 0.610779E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2939 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.92 457 110.6deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2939 Max w this run +w_max level proc position run w_max level timestep +0.453E+00 24 178 151.9deg W -26.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2940 Model time: 1979-03-03 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043740 + +* 1 1 3 0.100000E+01 0.836820E-04 * +Number of iterations = 2 +Initial residual = 0.014010 +Final residual = 0.000041 +Average conv. rate = 0.054323 + +* 1 2 2 0.140105E-01 0.413450E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097422 +Final residual = 0.000015 +Average conv. rate = 0.053575 + +* 2 1 3 0.974222E-01 0.149815E-04 * +Number of iterations = 1 +Initial residual = 0.001173 +Final residual = 0.000060 +Average conv. rate = 0.051313 + +* 2 2 1 0.117260E-02 0.601695E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2940 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.11 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2940 Max w this run +w_max level proc position run w_max level timestep +0.412E+00 23 178 151.9deg W -26.9deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2941 Model time: 1979-03-03 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043942 + +* 1 1 3 0.100000E+01 0.848477E-04 * +Number of iterations = 2 +Initial residual = 0.014156 +Final residual = 0.000042 +Average conv. rate = 0.054465 + +* 1 2 2 0.141561E-01 0.419932E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096213 +Final residual = 0.000015 +Average conv. rate = 0.054008 + +* 2 1 3 0.962135E-01 0.151569E-04 * +Number of iterations = 1 +Initial residual = 0.001158 +Final residual = 0.000060 +Average conv. rate = 0.051568 + +* 2 2 1 0.115776E-02 0.597037E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2941 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.86 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2941 Max w this run +w_max level proc position run w_max level timestep +0.397E+00 22 178 151.9deg W -26.9deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2942 Model time: 1979-03-03 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043595 + +* 1 1 3 0.100000E+01 0.828551E-04 * +Number of iterations = 2 +Initial residual = 0.014166 +Final residual = 0.000042 +Average conv. rate = 0.054361 + +* 1 2 2 0.141655E-01 0.418604E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095285 +Final residual = 0.000015 +Average conv. rate = 0.054458 + +* 2 1 3 0.952854E-01 0.153889E-04 * +Number of iterations = 1 +Initial residual = 0.001166 +Final residual = 0.000060 +Average conv. rate = 0.051268 + +* 2 2 1 0.116600E-02 0.597788E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2942 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.60 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.79K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2942 Max w this run +w_max level proc position run w_max level timestep +0.390E+00 22 178 151.9deg W -26.9deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2943 Model time: 1979-03-03 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043532 + +* 1 1 3 0.100000E+01 0.824955E-04 * +Number of iterations = 2 +Initial residual = 0.014183 +Final residual = 0.000042 +Average conv. rate = 0.054417 + +* 1 2 2 0.141827E-01 0.419975E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096116 +Final residual = 0.000015 +Average conv. rate = 0.054051 + +* 2 1 3 0.961163E-01 0.151776E-04 * +Number of iterations = 1 +Initial residual = 0.001174 +Final residual = 0.000060 +Average conv. rate = 0.051103 + +* 2 2 1 0.117379E-02 0.599842E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2943 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.38 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.86K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2943 Max w this run +w_max level proc position run w_max level timestep +0.395E+00 82 417 20.6deg E 66.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2944 Model time: 1979-03-03 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043742 + +* 1 1 3 0.100000E+01 0.836962E-04 * +Number of iterations = 2 +Initial residual = 0.014100 +Final residual = 0.000042 +Average conv. rate = 0.054648 + +* 1 2 2 0.141001E-01 0.421088E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095357 +Final residual = 0.000015 +Average conv. rate = 0.054340 + +* 2 1 3 0.953569E-01 0.153008E-04 * +Number of iterations = 1 +Initial residual = 0.001168 +Final residual = 0.000059 +Average conv. rate = 0.050899 + +* 2 2 1 0.116782E-02 0.594407E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2944 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.18 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.97K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2944 Max w this run +w_max level proc position run w_max level timestep +0.404E+00 82 417 18.7deg E 66.9deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2945 Model time: 1979-03-03 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043685 + +* 1 1 3 0.100000E+01 0.833670E-04 * +Number of iterations = 2 +Initial residual = 0.014128 +Final residual = 0.000043 +Average conv. rate = 0.054995 + +* 1 2 2 0.141283E-01 0.427310E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097096 +Final residual = 0.000015 +Average conv. rate = 0.054213 + +* 2 1 3 0.970962E-01 0.154711E-04 * +Number of iterations = 1 +Initial residual = 0.001164 +Final residual = 0.000059 +Average conv. rate = 0.051060 + +* 2 2 1 0.116418E-02 0.594434E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2945 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.98 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.00K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2945 Max w this run +w_max level proc position run w_max level timestep +0.388E+00 82 417 18.7deg E 66.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2946 Model time: 1979-03-03 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043518 + +* 1 1 3 0.100000E+01 0.824167E-04 * +Number of iterations = 2 +Initial residual = 0.014030 +Final residual = 0.000042 +Average conv. rate = 0.054733 + +* 1 2 2 0.140304E-01 0.420310E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096755 +Final residual = 0.000015 +Average conv. rate = 0.054227 + +* 2 1 3 0.967550E-01 0.154284E-04 * +Number of iterations = 1 +Initial residual = 0.001168 +Final residual = 0.000059 +Average conv. rate = 0.050897 + +* 2 2 1 0.116808E-02 0.594517E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2946 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.80 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.07K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2946 Max w this run +w_max level proc position run w_max level timestep +0.403E+00 81 419 39.4deg E 61.9deg N 0.751E+00 29 2867 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2947 Model time: 1979-03-03 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043109 + +* 1 1 3 0.100000E+01 0.801139E-04 * +Number of iterations = 2 +Initial residual = 0.014003 +Final residual = 0.000042 +Average conv. rate = 0.054753 + +* 1 2 2 0.140029E-01 0.419793E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096655 +Final residual = 0.000015 +Average conv. rate = 0.054258 + +* 2 1 3 0.966552E-01 0.154390E-04 * +Number of iterations = 1 +Initial residual = 0.001177 +Final residual = 0.000060 +Average conv. rate = 0.050843 + +* 2 2 1 0.117723E-02 0.598540E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2947 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.66 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2947 Max w this run +w_max level proc position run w_max level timestep +0.427E+00 81 419 39.4deg E 61.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2948 Model time: 1979-03-03 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043377 + +* 1 1 3 0.100000E+01 0.816180E-04 * +Number of iterations = 2 +Initial residual = 0.013969 +Final residual = 0.000042 +Average conv. rate = 0.054513 + +* 1 2 2 0.139685E-01 0.415092E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096184 +Final residual = 0.000016 +Average conv. rate = 0.054485 + +* 2 1 3 0.961841E-01 0.155572E-04 * +Number of iterations = 1 +Initial residual = 0.001184 +Final residual = 0.000060 +Average conv. rate = 0.050636 + +* 2 2 1 0.118417E-02 0.599612E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2948 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.55 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2948 Max w this run +w_max level proc position run w_max level timestep +0.453E+00 21 331 125.6deg E 25.6deg N 0.751E+00 29 2867 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2949 Model time: 1979-03-03 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043610 + +* 1 1 3 0.100000E+01 0.829403E-04 * +Number of iterations = 2 +Initial residual = 0.014056 +Final residual = 0.000042 +Average conv. rate = 0.054478 + +* 1 2 2 0.140563E-01 0.417168E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097360 +Final residual = 0.000015 +Average conv. rate = 0.053945 + +* 2 1 3 0.973597E-01 0.152842E-04 * +Number of iterations = 1 +Initial residual = 0.001198 +Final residual = 0.000061 +Average conv. rate = 0.050493 + +* 2 2 1 0.119827E-02 0.605045E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2949 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.46 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.06K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2949 Max w this run +w_max level proc position run w_max level timestep +0.457E+00 20 331 125.6deg E 25.6deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2950 Model time: 1979-03-03 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043733 + +* 1 1 3 0.100000E+01 0.836432E-04 * +Number of iterations = 2 +Initial residual = 0.014080 +Final residual = 0.000046 +Average conv. rate = 0.057088 + +* 1 2 2 0.140799E-01 0.458878E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096166 +Final residual = 0.000015 +Average conv. rate = 0.053820 + +* 2 1 3 0.961664E-01 0.149914E-04 * +Number of iterations = 1 +Initial residual = 0.001195 +Final residual = 0.000061 +Average conv. rate = 0.050747 + +* 2 2 1 0.119523E-02 0.606543E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2950 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.40 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2950 Max w this run +w_max level proc position run w_max level timestep +0.470E+00 21 331 125.6deg E 25.6deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2951 Model time: 1979-03-03 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043953 + +* 1 1 3 0.100000E+01 0.849132E-04 * +Number of iterations = 2 +Initial residual = 0.014184 +Final residual = 0.000046 +Average conv. rate = 0.056894 + +* 1 2 2 0.141839E-01 0.459126E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097990 +Final residual = 0.000016 +Average conv. rate = 0.054710 + +* 2 1 3 0.979897E-01 0.160467E-04 * +Number of iterations = 1 +Initial residual = 0.001207 +Final residual = 0.000062 +Average conv. rate = 0.051199 + +* 2 2 1 0.120710E-02 0.618026E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2951 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.34 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.90K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2951 Max w this run +w_max level proc position run w_max level timestep +0.438E+00 20 331 125.6deg E 25.6deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2952 Model time: 1979-03-03 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043610 + +* 1 1 3 0.100000E+01 0.829364E-04 * +Number of iterations = 2 +Initial residual = 0.014134 +Final residual = 0.000045 +Average conv. rate = 0.056518 + +* 1 2 2 0.141343E-01 0.451493E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096896 +Final residual = 0.000015 +Average conv. rate = 0.053712 + +* 2 1 3 0.968961E-01 0.150145E-04 * +Number of iterations = 1 +Initial residual = 0.001209 +Final residual = 0.000062 +Average conv. rate = 0.051539 + +* 2 2 1 0.120924E-02 0.623230E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2952 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.29 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2952 Max w this run +w_max level proc position run w_max level timestep +0.462E+00 21 331 125.6deg E 25.6deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2953 Model time: 1979-03-03 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044120 + +* 1 1 3 0.100000E+01 0.858816E-04 * +Number of iterations = 2 +Initial residual = 0.014172 +Final residual = 0.000045 +Average conv. rate = 0.056320 + +* 1 2 2 0.141716E-01 0.449521E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097744 +Final residual = 0.000016 +Average conv. rate = 0.054850 + +* 2 1 3 0.977443E-01 0.161299E-04 * +Number of iterations = 1 +Initial residual = 0.001215 +Final residual = 0.000063 +Average conv. rate = 0.051885 + +* 2 2 1 0.121496E-02 0.630387E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2953 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.20 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.69K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2953 Max w this run +w_max level proc position run w_max level timestep +0.454E+00 21 331 125.6deg E 25.6deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2954 Model time: 1979-03-03 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044060 + +* 1 1 3 0.100000E+01 0.855346E-04 * +Number of iterations = 2 +Initial residual = 0.014122 +Final residual = 0.000044 +Average conv. rate = 0.055768 + +* 1 2 2 0.141219E-01 0.439204E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096587 +Final residual = 0.000016 +Average conv. rate = 0.055159 + +* 2 1 3 0.965874E-01 0.162093E-04 * +Number of iterations = 1 +Initial residual = 0.001211 +Final residual = 0.000064 +Average conv. rate = 0.052602 + +* 2 2 1 0.121066E-02 0.636833E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2954 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.14 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.59K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2954 Max w this run +w_max level proc position run w_max level timestep +0.475E+00 83 450 26.3deg E 70.6deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2955 Model time: 1979-03-03 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043733 + +* 1 1 3 0.100000E+01 0.836425E-04 * +Number of iterations = 2 +Initial residual = 0.014156 +Final residual = 0.000044 +Average conv. rate = 0.055581 + +* 1 2 2 0.141559E-01 0.437317E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098669 +Final residual = 0.000016 +Average conv. rate = 0.054858 + +* 2 1 3 0.986688E-01 0.162890E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000064 +Average conv. rate = 0.052581 + +* 2 2 1 0.122201E-02 0.642546E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2955 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.14 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2955 Max w this run +w_max level proc position run w_max level timestep +0.529E+00 83 450 26.3deg E 70.6deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2956 Model time: 1979-03-03 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043432 + +* 1 1 3 0.100000E+01 0.819300E-04 * +Number of iterations = 2 +Initial residual = 0.014075 +Final residual = 0.000044 +Average conv. rate = 0.055743 + +* 1 2 2 0.140754E-01 0.437365E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098624 +Final residual = 0.000016 +Average conv. rate = 0.054623 + +* 2 1 3 0.986243E-01 0.160737E-04 * +Number of iterations = 1 +Initial residual = 0.001230 +Final residual = 0.000064 +Average conv. rate = 0.051811 + +* 2 2 1 0.123014E-02 0.637342E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2956 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.11 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.31K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2956 Max w this run +w_max level proc position run w_max level timestep +0.577E+00 83 450 28.1deg E 71.9deg N 0.751E+00 29 2867 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2957 Model time: 1979-03-03 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043810 + +* 1 1 3 0.100000E+01 0.840857E-04 * +Number of iterations = 2 +Initial residual = 0.014083 +Final residual = 0.000045 +Average conv. rate = 0.056712 + +* 1 2 2 0.140831E-01 0.452948E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100627 +Final residual = 0.000017 +Average conv. rate = 0.055062 + +* 2 1 3 0.100627E+00 0.167983E-04 * +Number of iterations = 1 +Initial residual = 0.001272 +Final residual = 0.000064 +Average conv. rate = 0.049962 + +* 2 2 1 0.127241E-02 0.635715E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2957 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.08 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2957 Max w this run +w_max level proc position run w_max level timestep +0.570E+00 83 450 26.3deg E 71.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2958 Model time: 1979-03-03 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044043 + +* 1 1 3 0.100000E+01 0.854367E-04 * +Number of iterations = 2 +Initial residual = 0.014062 +Final residual = 0.000046 +Average conv. rate = 0.057039 + +* 1 2 2 0.140625E-01 0.457523E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101436 +Final residual = 0.000016 +Average conv. rate = 0.054270 + +* 2 1 3 0.101436E+00 0.162137E-04 * +Number of iterations = 1 +Initial residual = 0.001284 +Final residual = 0.000064 +Average conv. rate = 0.049729 + +* 2 2 1 0.128417E-02 0.638601E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2958 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.10 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2958 Max w this run +w_max level proc position run w_max level timestep +0.525E+00 83 450 26.3deg E 71.9deg N 0.751E+00 29 2867 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2959 Model time: 1979-03-03 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044103 + +* 1 1 3 0.100000E+01 0.857856E-04 * +Number of iterations = 2 +Initial residual = 0.014198 +Final residual = 0.000045 +Average conv. rate = 0.056478 + +* 1 2 2 0.141979E-01 0.452878E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102120 +Final residual = 0.000016 +Average conv. rate = 0.053920 + +* 2 1 3 0.102120E+00 0.160093E-04 * +Number of iterations = 1 +Initial residual = 0.001288 +Final residual = 0.000064 +Average conv. rate = 0.050038 + +* 2 2 1 0.128751E-02 0.644241E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2959 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.24 472 86.3deg W 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.67K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2959 Max w this run +w_max level proc position run w_max level timestep +0.457E+00 83 450 24.4deg E 71.9deg N 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2960 Model time: 1979-03-03 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043663 + +* 1 1 3 0.100000E+01 0.832418E-04 * +Number of iterations = 2 +Initial residual = 0.014277 +Final residual = 0.000045 +Average conv. rate = 0.056330 + +* 1 2 2 0.142769E-01 0.453009E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101164 +Final residual = 0.000016 +Average conv. rate = 0.054363 + +* 2 1 3 0.101164E+00 0.162533E-04 * +Number of iterations = 1 +Initial residual = 0.001269 +Final residual = 0.000064 +Average conv. rate = 0.050669 + +* 2 2 1 0.126903E-02 0.643009E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2960 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.48 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2960 Max w this run +w_max level proc position run w_max level timestep +0.438E+00 81 419 33.8deg E 65.6deg N 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2961 Model time: 1979-03-03 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043809 + +* 1 1 3 0.100000E+01 0.840788E-04 * +Number of iterations = 2 +Initial residual = 0.014386 +Final residual = 0.000046 +Average conv. rate = 0.056584 + +* 1 2 2 0.143865E-01 0.460615E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101361 +Final residual = 0.000016 +Average conv. rate = 0.054298 + +* 2 1 3 0.101361E+00 0.162262E-04 * +Number of iterations = 1 +Initial residual = 0.001260 +Final residual = 0.000064 +Average conv. rate = 0.050960 + +* 2 2 1 0.125994E-02 0.642071E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2961 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.48 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.46K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2961 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 39 234 121.9deg E -3.1deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2962 Model time: 1979-03-03 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043603 + +* 1 1 3 0.100000E+01 0.828990E-04 * +Number of iterations = 2 +Initial residual = 0.014280 +Final residual = 0.000046 +Average conv. rate = 0.056847 + +* 1 2 2 0.142804E-01 0.461480E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101215 +Final residual = 0.000012 +Average conv. rate = 0.049432 + +* 2 1 3 0.101215E+00 0.122252E-04 * +Number of iterations = 1 +Initial residual = 0.001275 +Final residual = 0.000063 +Average conv. rate = 0.049691 + +* 2 2 1 0.127472E-02 0.633421E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2962 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.70 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.24K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2962 Max w this run +w_max level proc position run w_max level timestep +0.492E+00 39 234 121.9deg E -3.1deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2963 Model time: 1979-03-03 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043777 + +* 1 1 3 0.100000E+01 0.838979E-04 * +Number of iterations = 2 +Initial residual = 0.014227 +Final residual = 0.000045 +Average conv. rate = 0.056531 + +* 1 2 2 0.142265E-01 0.454637E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100849 +Final residual = 0.000014 +Average conv. rate = 0.052268 + +* 2 1 3 0.100849E+00 0.144003E-04 * +Number of iterations = 1 +Initial residual = 0.001289 +Final residual = 0.000064 +Average conv. rate = 0.049726 + +* 2 2 1 0.128948E-02 0.641207E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2963 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.75 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.21K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2963 Max w this run +w_max level proc position run w_max level timestep +0.543E+00 25 178 150.0deg W -29.4deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2964 Model time: 1979-03-03 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043734 + +* 1 1 3 0.100000E+01 0.836464E-04 * +Number of iterations = 2 +Initial residual = 0.014073 +Final residual = 0.000046 +Average conv. rate = 0.057245 + +* 1 2 2 0.140727E-01 0.461167E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100210 +Final residual = 0.000015 +Average conv. rate = 0.052735 + +* 2 1 3 0.100210E+00 0.146960E-04 * +Number of iterations = 1 +Initial residual = 0.001311 +Final residual = 0.000065 +Average conv. rate = 0.049745 + +* 2 2 1 0.131054E-02 0.651924E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2964 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.84 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.15K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2964 Max w this run +w_max level proc position run w_max level timestep +0.574E+00 25 178 150.0deg W -29.4deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2965 Model time: 1979-03-03 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043778 + +* 1 1 3 0.100000E+01 0.839010E-04 * +Number of iterations = 2 +Initial residual = 0.014069 +Final residual = 0.000047 +Average conv. rate = 0.057571 + +* 1 2 2 0.140694E-01 0.466313E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100673 +Final residual = 0.000013 +Average conv. rate = 0.051004 + +* 2 1 3 0.100673E+00 0.133577E-04 * +Number of iterations = 1 +Initial residual = 0.001310 +Final residual = 0.000066 +Average conv. rate = 0.050751 + +* 2 2 1 0.130974E-02 0.664701E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2965 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.94 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.09K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2965 Max w this run +w_max level proc position run w_max level timestep +0.637E+00 26 178 150.0deg W -29.4deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2966 Model time: 1979-03-03 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044070 + +* 1 1 3 0.100000E+01 0.855896E-04 * +Number of iterations = 2 +Initial residual = 0.013998 +Final residual = 0.000046 +Average conv. rate = 0.057087 + +* 1 2 2 0.139979E-01 0.456184E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099983 +Final residual = 0.000016 +Average conv. rate = 0.054252 + +* 2 1 3 0.999833E-01 0.159654E-04 * +Number of iterations = 1 +Initial residual = 0.001305 +Final residual = 0.000066 +Average conv. rate = 0.050720 + +* 2 2 1 0.130483E-02 0.661816E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2966 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.05 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2966 Max w this run +w_max level proc position run w_max level timestep +0.647E+00 27 178 150.0deg W -29.4deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2967 Model time: 1979-03-03 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043993 + +* 1 1 3 0.100000E+01 0.851409E-04 * +Number of iterations = 2 +Initial residual = 0.014071 +Final residual = 0.000045 +Average conv. rate = 0.056516 + +* 1 2 2 0.140709E-01 0.449438E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101120 +Final residual = 0.000012 +Average conv. rate = 0.049076 + +* 2 1 3 0.101120E+00 0.119519E-04 * +Number of iterations = 1 +Initial residual = 0.001308 +Final residual = 0.000066 +Average conv. rate = 0.050119 + +* 2 2 1 0.130822E-02 0.655670E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2967 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.14 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2967 Max w this run +w_max level proc position run w_max level timestep +0.675E+00 26 178 150.0deg W -29.4deg S 0.751E+00 29 2867 + +******************************************************************************** + +Atm_Step: Timestep 2968 Model time: 1979-03-03 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044255 + +* 1 1 3 0.100000E+01 0.866734E-04 * +Number of iterations = 2 +Initial residual = 0.014119 +Final residual = 0.000045 +Average conv. rate = 0.056248 + +* 1 2 2 0.141187E-01 0.446694E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099679 +Final residual = 0.000011 +Average conv. rate = 0.048473 + +* 2 1 3 0.996789E-01 0.113529E-04 * +Number of iterations = 1 +Initial residual = 0.001300 +Final residual = 0.000065 +Average conv. rate = 0.050090 + +* 2 2 1 0.130001E-02 0.651171E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2968 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.22 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2968 Max w this run +w_max level proc position run w_max level timestep +0.716E+00 26 178 150.0deg W -29.4deg S 0.751E+00 29 2867 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2969 Model time: 1979-03-03 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000091 +Average conv. rate = 0.044975 + +* 1 1 3 0.100000E+01 0.909757E-04 * +Number of iterations = 2 +Initial residual = 0.014222 +Final residual = 0.000045 +Average conv. rate = 0.055979 + +* 1 2 2 0.142215E-01 0.445648E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099415 +Final residual = 0.000017 +Average conv. rate = 0.055819 + +* 2 1 3 0.994150E-01 0.172899E-04 * +Number of iterations = 1 +Initial residual = 0.001298 +Final residual = 0.000066 +Average conv. rate = 0.050472 + +* 2 2 1 0.129775E-02 0.655002E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2969 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.26 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2969 Max w this run +w_max level proc position run w_max level timestep +0.771E+00 25 178 150.0deg W -29.4deg S 0.771E+00 25 2969 + +******************************************************************************** + +Atm_Step: Timestep 2970 Model time: 1979-03-03 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044635 + +* 1 1 3 0.100000E+01 0.889242E-04 * +Number of iterations = 2 +Initial residual = 0.014226 +Final residual = 0.000044 +Average conv. rate = 0.055655 + +* 1 2 2 0.142262E-01 0.440646E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099704 +Final residual = 0.000017 +Average conv. rate = 0.055864 + +* 2 1 3 0.997036E-01 0.173820E-04 * +Number of iterations = 1 +Initial residual = 0.001279 +Final residual = 0.000064 +Average conv. rate = 0.050206 + +* 2 2 1 0.127866E-02 0.641959E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2970 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.29 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.88K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2970 Max w this run +w_max level proc position run w_max level timestep +0.841E+00 26 178 150.0deg W -29.4deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2971 Model time: 1979-03-03 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044593 + +* 1 1 3 0.100000E+01 0.886721E-04 * +Number of iterations = 2 +Initial residual = 0.014260 +Final residual = 0.000044 +Average conv. rate = 0.055642 + +* 1 2 2 0.142596E-01 0.441487E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101795 +Final residual = 0.000018 +Average conv. rate = 0.055896 + +* 2 1 3 0.101795E+00 0.177775E-04 * +Number of iterations = 1 +Initial residual = 0.001263 +Final residual = 0.000062 +Average conv. rate = 0.049453 + +* 2 2 1 0.126272E-02 0.624453E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2971 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.30 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.86K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2971 Max w this run +w_max level proc position run w_max level timestep +0.817E+00 26 178 150.0deg W -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2972 Model time: 1979-03-03 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045071 + +* 1 1 3 0.100000E+01 0.915555E-04 * +Number of iterations = 2 +Initial residual = 0.014171 +Final residual = 0.000043 +Average conv. rate = 0.055284 + +* 1 2 2 0.141708E-01 0.433107E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100507 +Final residual = 0.000014 +Average conv. rate = 0.052181 + +* 2 1 3 0.100507E+00 0.142805E-04 * +Number of iterations = 1 +Initial residual = 0.001280 +Final residual = 0.000062 +Average conv. rate = 0.048429 + +* 2 2 1 0.127979E-02 0.619788E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2972 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.30 471 91.9deg W 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2972 Max w this run +w_max level proc position run w_max level timestep +0.764E+00 27 178 150.0deg W -29.4deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2973 Model time: 1979-03-03 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044745 + +* 1 1 3 0.100000E+01 0.895822E-04 * +Number of iterations = 2 +Initial residual = 0.014292 +Final residual = 0.000044 +Average conv. rate = 0.055515 + +* 1 2 2 0.142920E-01 0.440463E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101343 +Final residual = 0.000014 +Average conv. rate = 0.051535 + +* 2 1 3 0.101343E+00 0.138705E-04 * +Number of iterations = 1 +Initial residual = 0.001255 +Final residual = 0.000061 +Average conv. rate = 0.048363 + +* 2 2 1 0.125482E-02 0.606865E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2973 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.27 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.62K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2973 Max w this run +w_max level proc position run w_max level timestep +0.745E+00 27 178 150.0deg W -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2974 Model time: 1979-03-03 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044775 + +* 1 1 3 0.100000E+01 0.897666E-04 * +Number of iterations = 2 +Initial residual = 0.014383 +Final residual = 0.000044 +Average conv. rate = 0.055444 + +* 1 2 2 0.143827E-01 0.442128E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104476 +Final residual = 0.000014 +Average conv. rate = 0.051575 + +* 2 1 3 0.104476E+00 0.143325E-04 * +Number of iterations = 1 +Initial residual = 0.001325 +Final residual = 0.000059 +Average conv. rate = 0.044412 + +* 2 2 1 0.132454E-02 0.588257E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2974 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.10 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.53K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2974 Max w this run +w_max level proc position run w_max level timestep +0.706E+00 26 178 150.0deg W -29.4deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2975 Model time: 1979-03-03 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045179 + +* 1 1 3 0.100000E+01 0.922181E-04 * +Number of iterations = 2 +Initial residual = 0.014354 +Final residual = 0.000045 +Average conv. rate = 0.055868 + +* 1 2 2 0.143536E-01 0.448010E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102031 +Final residual = 0.000015 +Average conv. rate = 0.052375 + +* 2 1 3 0.102031E+00 0.146589E-04 * +Number of iterations = 1 +Initial residual = 0.001210 +Final residual = 0.000058 +Average conv. rate = 0.047991 + +* 2 2 1 0.121015E-02 0.580766E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2975 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.90 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2975 Max w this run +w_max level proc position run w_max level timestep +0.692E+00 26 178 150.0deg W -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2976 Model time: 1979-03-04 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044821 + +* 1 1 3 0.100000E+01 0.900411E-04 * +Number of iterations = 2 +Initial residual = 0.014166 +Final residual = 0.000044 +Average conv. rate = 0.055917 + +* 1 2 2 0.141663E-01 0.442945E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099256 +Final residual = 0.000014 +Average conv. rate = 0.052215 + +* 2 1 3 0.992556E-01 0.141300E-04 * +Number of iterations = 1 +Initial residual = 0.001198 +Final residual = 0.000058 +Average conv. rate = 0.048235 + +* 2 2 1 0.119849E-02 0.578096E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13054E+25 +tot dry energy 0.13055E+25 +gr( rho cal) 0.38103E+24 +KE( rho cal) 0.80885E+21 +KEu(rho cal) 0.62710E+21 +KEv(rho cal) 0.18175E+21 +KEw(rho cal) 0.10217E+16 +cvT( rho cal) 0.92369E+24 +lq ( rho cal) 0.30740E+23 +lqcf( rho cal) 0.61330E+20 +lqcl( rho cal) 0.38427E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12329E+17 KG +Initial moisture = 0.12301E+17 KG +change in moisture = 0.28584E+14 KG +Moisture added E-P in period = 0.28564E+14 KG +Error in moisture = 0.20794E+11 KG +Error as % of change = 0.72745E-01 +q ( rho cal) 0.12291E+17 +qcf( rho cal) 0.24522E+14 +qcl( rho cal) 0.13555E+14 +FINAL TOTAL ENERGY = 0.13054E+25 J/ +INITIAL TOTAL ENERGY = 0.13056E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.18396E+21 J/ +FLUXES INTO ATM OVER PERIOD = -0.18950E+21 J/ +ERROR IN ENERGY BUDGET = -0.55355E+19 J/ +TEMP CORRECTION OVER A DAY = -0.15031E-02 K +TEMPERATURE CORRECTION RATE = -0.17397E-07 K/S +FLUX CORRECTION (ATM) = -0.12560E+00 W/M2 + +Minimum theta level 1 for timestep 2976 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.67 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.36K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2976 Max w this run +w_max level proc position run w_max level timestep +0.763E+00 26 178 150.0deg W -29.4deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6516.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6516.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6516.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6516.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6516.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6516.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 2977 Model time: 1979-03-04 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044577 + +* 1 1 3 0.100000E+01 0.885816E-04 * +Number of iterations = 2 +Initial residual = 0.014126 +Final residual = 0.000044 +Average conv. rate = 0.055690 + +* 1 2 2 0.141259E-01 0.438101E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099578 +Final residual = 0.000015 +Average conv. rate = 0.053104 + +* 2 1 3 0.995780E-01 0.149122E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000058 +Average conv. rate = 0.048171 + +* 2 2 1 0.120765E-02 0.581743E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2977 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.43 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2977 Max w this run +w_max level proc position run w_max level timestep +0.769E+00 26 178 150.0deg W -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2978 Model time: 1979-03-04 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044621 + +* 1 1 3 0.100000E+01 0.888437E-04 * +Number of iterations = 2 +Initial residual = 0.014012 +Final residual = 0.000044 +Average conv. rate = 0.055883 + +* 1 2 2 0.140121E-01 0.437582E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099038 +Final residual = 0.000015 +Average conv. rate = 0.053573 + +* 2 1 3 0.990381E-01 0.152275E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000057 +Average conv. rate = 0.048313 + +* 2 2 1 0.118451E-02 0.572274E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2978 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.20 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.23K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2978 Max w this run +w_max level proc position run w_max level timestep +0.748E+00 26 178 150.0deg W -29.4deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2979 Model time: 1979-03-04 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044714 + +* 1 1 3 0.100000E+01 0.893980E-04 * +Number of iterations = 2 +Initial residual = 0.014058 +Final residual = 0.000044 +Average conv. rate = 0.055735 + +* 1 2 2 0.140579E-01 0.436692E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100775 +Final residual = 0.000019 +Average conv. rate = 0.056869 + +* 2 1 3 0.100775E+00 0.185349E-04 * +Number of iterations = 1 +Initial residual = 0.001207 +Final residual = 0.000057 +Average conv. rate = 0.047593 + +* 2 2 1 0.120726E-02 0.574576E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2979 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.98 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.12K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2979 Max w this run +w_max level proc position run w_max level timestep +0.723E+00 27 178 150.0deg W -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2980 Model time: 1979-03-04 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043906 + +* 1 1 3 0.100000E+01 0.846420E-04 * +Number of iterations = 2 +Initial residual = 0.014151 +Final residual = 0.000044 +Average conv. rate = 0.055462 + +* 1 2 2 0.141514E-01 0.435299E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097641 +Final residual = 0.000018 +Average conv. rate = 0.057402 + +* 2 1 3 0.976407E-01 0.184672E-04 * +Number of iterations = 1 +Initial residual = 0.001173 +Final residual = 0.000057 +Average conv. rate = 0.048926 + +* 2 2 1 0.117277E-02 0.573791E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2980 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.75 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2980 Max w this run +w_max level proc position run w_max level timestep +0.649E+00 25 178 150.0deg W -29.4deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2981 Model time: 1979-03-04 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044237 + +* 1 1 3 0.100000E+01 0.865671E-04 * +Number of iterations = 2 +Initial residual = 0.014370 +Final residual = 0.000044 +Average conv. rate = 0.055522 + +* 1 2 2 0.143702E-01 0.442984E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098508 +Final residual = 0.000016 +Average conv. rate = 0.054350 + +* 2 1 3 0.985078E-01 0.158154E-04 * +Number of iterations = 1 +Initial residual = 0.001180 +Final residual = 0.000057 +Average conv. rate = 0.048164 + +* 2 2 1 0.118006E-02 0.568369E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2981 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.53 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2981 Max w this run +w_max level proc position run w_max level timestep +0.546E+00 24 178 150.0deg W -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2982 Model time: 1979-03-04 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043875 + +* 1 1 3 0.100000E+01 0.844597E-04 * +Number of iterations = 2 +Initial residual = 0.014399 +Final residual = 0.000045 +Average conv. rate = 0.055711 + +* 1 2 2 0.143985E-01 0.446883E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097900 +Final residual = 0.000019 +Average conv. rate = 0.057947 + +* 2 1 3 0.978998E-01 0.190486E-04 * +Number of iterations = 1 +Initial residual = 0.001183 +Final residual = 0.000057 +Average conv. rate = 0.048136 + +* 2 2 1 0.118287E-02 0.569393E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2982 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.30 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2982 Max w this run +w_max level proc position run w_max level timestep +0.452E+00 29 178 148.1deg W -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2983 Model time: 1979-03-04 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043686 + +* 1 1 3 0.100000E+01 0.833716E-04 * +Number of iterations = 2 +Initial residual = 0.014358 +Final residual = 0.000046 +Average conv. rate = 0.056593 + +* 1 2 2 0.143578E-01 0.459850E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098571 +Final residual = 0.000019 +Average conv. rate = 0.058017 + +* 2 1 3 0.985705E-01 0.192494E-04 * +Number of iterations = 1 +Initial residual = 0.001176 +Final residual = 0.000057 +Average conv. rate = 0.048479 + +* 2 2 1 0.117618E-02 0.570203E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2983 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.09 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2983 Max w this run +w_max level proc position run w_max level timestep +0.545E+00 28 178 148.1deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2984 Model time: 1979-03-04 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043837 + +* 1 1 3 0.100000E+01 0.842402E-04 * +Number of iterations = 2 +Initial residual = 0.014179 +Final residual = 0.000046 +Average conv. rate = 0.057222 + +* 1 2 2 0.141786E-01 0.464260E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098936 +Final residual = 0.000019 +Average conv. rate = 0.057210 + +* 2 1 3 0.989359E-01 0.185256E-04 * +Number of iterations = 1 +Initial residual = 0.001199 +Final residual = 0.000057 +Average conv. rate = 0.047403 + +* 2 2 1 0.119876E-02 0.568246E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2984 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.87 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2984 Max w this run +w_max level proc position run w_max level timestep +0.604E+00 26 178 148.1deg W -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2985 Model time: 1979-03-04 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043760 + +* 1 1 3 0.100000E+01 0.837996E-04 * +Number of iterations = 2 +Initial residual = 0.014231 +Final residual = 0.000044 +Average conv. rate = 0.055310 + +* 1 2 2 0.142311E-01 0.435365E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098657 +Final residual = 0.000018 +Average conv. rate = 0.056933 + +* 2 1 3 0.986573E-01 0.182061E-04 * +Number of iterations = 1 +Initial residual = 0.001197 +Final residual = 0.000056 +Average conv. rate = 0.047126 + +* 2 2 1 0.119677E-02 0.563987E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2985 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.68 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.46K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2985 Max w this run +w_max level proc position run w_max level timestep +0.653E+00 26 178 148.1deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2986 Model time: 1979-03-04 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043927 + +* 1 1 3 0.100000E+01 0.847629E-04 * +Number of iterations = 2 +Initial residual = 0.014416 +Final residual = 0.000043 +Average conv. rate = 0.054436 + +* 1 2 2 0.144156E-01 0.427180E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098165 +Final residual = 0.000015 +Average conv. rate = 0.053090 + +* 2 1 3 0.981646E-01 0.146887E-04 * +Number of iterations = 1 +Initial residual = 0.001195 +Final residual = 0.000056 +Average conv. rate = 0.046439 + +* 2 2 1 0.119533E-02 0.555093E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2986 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.50 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.36K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2986 Max w this run +w_max level proc position run w_max level timestep +0.746E+00 27 178 148.1deg W -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2987 Model time: 1979-03-04 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044136 + +* 1 1 3 0.100000E+01 0.859755E-04 * +Number of iterations = 2 +Initial residual = 0.014664 +Final residual = 0.000045 +Average conv. rate = 0.055259 + +* 1 2 2 0.146636E-01 0.447753E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098942 +Final residual = 0.000014 +Average conv. rate = 0.052390 + +* 2 1 3 0.989418E-01 0.142274E-04 * +Number of iterations = 1 +Initial residual = 0.001220 +Final residual = 0.000055 +Average conv. rate = 0.045130 + +* 2 2 1 0.122030E-02 0.550727E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2987 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.37 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2987 Max w this run +w_max level proc position run w_max level timestep +0.792E+00 27 178 148.1deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2988 Model time: 1979-03-04 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044047 + +* 1 1 3 0.100000E+01 0.854594E-04 * +Number of iterations = 2 +Initial residual = 0.014719 +Final residual = 0.000044 +Average conv. rate = 0.054597 + +* 1 2 2 0.147185E-01 0.438732E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096689 +Final residual = 0.000018 +Average conv. rate = 0.056655 + +* 2 1 3 0.966891E-01 0.175830E-04 * +Number of iterations = 1 +Initial residual = 0.001160 +Final residual = 0.000055 +Average conv. rate = 0.047638 + +* 2 2 1 0.115984E-02 0.552532E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2988 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.29 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.12K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2988 Max w this run +w_max level proc position run w_max level timestep +0.756E+00 26 178 148.1deg W -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2989 Model time: 1979-03-04 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043547 + +* 1 1 3 0.100000E+01 0.825794E-04 * +Number of iterations = 2 +Initial residual = 0.014719 +Final residual = 0.000043 +Average conv. rate = 0.054139 + +* 1 2 2 0.147189E-01 0.431415E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097861 +Final residual = 0.000016 +Average conv. rate = 0.055046 + +* 2 1 3 0.978605E-01 0.163227E-04 * +Number of iterations = 1 +Initial residual = 0.001159 +Final residual = 0.000055 +Average conv. rate = 0.047608 + +* 2 2 1 0.115890E-02 0.551733E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2989 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.13 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.21K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2989 Max w this run +w_max level proc position run w_max level timestep +0.726E+00 27 178 148.1deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2990 Model time: 1979-03-04 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043724 + +* 1 1 3 0.100000E+01 0.835907E-04 * +Number of iterations = 2 +Initial residual = 0.014498 +Final residual = 0.000043 +Average conv. rate = 0.054204 + +* 1 2 2 0.144980E-01 0.425956E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097307 +Final residual = 0.000017 +Average conv. rate = 0.055512 + +* 2 1 3 0.973072E-01 0.166461E-04 * +Number of iterations = 1 +Initial residual = 0.001162 +Final residual = 0.000056 +Average conv. rate = 0.047783 + +* 2 2 1 0.116207E-02 0.555277E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2990 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.95 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.19K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2990 Max w this run +w_max level proc position run w_max level timestep +0.806E+00 28 178 148.1deg W -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2991 Model time: 1979-03-04 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043581 + +* 1 1 3 0.100000E+01 0.827751E-04 * +Number of iterations = 2 +Initial residual = 0.014427 +Final residual = 0.000042 +Average conv. rate = 0.054211 + +* 1 2 2 0.144275E-01 0.423997E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099191 +Final residual = 0.000016 +Average conv. rate = 0.053921 + +* 2 1 3 0.991914E-01 0.155508E-04 * +Number of iterations = 1 +Initial residual = 0.001192 +Final residual = 0.000056 +Average conv. rate = 0.047075 + +* 2 2 1 0.119237E-02 0.561303E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2991 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.90 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2991 Max w this run +w_max level proc position run w_max level timestep +0.754E+00 28 178 148.1deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2992 Model time: 1979-03-04 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043396 + +* 1 1 3 0.100000E+01 0.817263E-04 * +Number of iterations = 2 +Initial residual = 0.014301 +Final residual = 0.000042 +Average conv. rate = 0.053978 + +* 1 2 2 0.143012E-01 0.416683E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103792 +Final residual = 0.000016 +Average conv. rate = 0.053112 + +* 2 1 3 0.103792E+00 0.155504E-04 * +Number of iterations = 1 +Initial residual = 0.001294 +Final residual = 0.000056 +Average conv. rate = 0.043390 + +* 2 2 1 0.129402E-02 0.561479E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2992 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.87 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2992 Max w this run +w_max level proc position run w_max level timestep +0.597E+00 26 178 148.1deg W -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2993 Model time: 1979-03-04 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043681 + +* 1 1 3 0.100000E+01 0.833445E-04 * +Number of iterations = 2 +Initial residual = 0.014355 +Final residual = 0.000042 +Average conv. rate = 0.053899 + +* 1 2 2 0.143548E-01 0.417028E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098751 +Final residual = 0.000015 +Average conv. rate = 0.053782 + +* 2 1 3 0.987509E-01 0.153622E-04 * +Number of iterations = 1 +Initial residual = 0.001210 +Final residual = 0.000056 +Average conv. rate = 0.046703 + +* 2 2 1 0.120970E-02 0.564968E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2993 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.74 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.75K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2993 Max w this run +w_max level proc position run w_max level timestep +0.488E+00 25 178 148.1deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2994 Model time: 1979-03-04 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043604 + +* 1 1 3 0.100000E+01 0.829034E-04 * +Number of iterations = 2 +Initial residual = 0.014352 +Final residual = 0.000042 +Average conv. rate = 0.053813 + +* 1 2 2 0.143523E-01 0.415624E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099656 +Final residual = 0.000015 +Average conv. rate = 0.053687 + +* 2 1 3 0.996560E-01 0.154212E-04 * +Number of iterations = 1 +Initial residual = 0.001234 +Final residual = 0.000057 +Average conv. rate = 0.046273 + +* 2 2 1 0.123438E-02 0.571183E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2994 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.60 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.69K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2994 Max w this run +w_max level proc position run w_max level timestep +0.468E+00 43 204 140.6deg E -11.9deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2995 Model time: 1979-03-04 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043680 + +* 1 1 3 0.100000E+01 0.833390E-04 * +Number of iterations = 2 +Initial residual = 0.014375 +Final residual = 0.000045 +Average conv. rate = 0.056106 + +* 1 2 2 0.143745E-01 0.452496E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098730 +Final residual = 0.000015 +Average conv. rate = 0.052991 + +* 2 1 3 0.987299E-01 0.146910E-04 * +Number of iterations = 1 +Initial residual = 0.001218 +Final residual = 0.000058 +Average conv. rate = 0.047206 + +* 2 2 1 0.121830E-02 0.575114E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2995 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.45 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2995 Max w this run +w_max level proc position run w_max level timestep +0.512E+00 20 134 76.9deg E -36.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2996 Model time: 1979-03-04 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043500 + +* 1 1 3 0.100000E+01 0.823140E-04 * +Number of iterations = 2 +Initial residual = 0.014284 +Final residual = 0.000042 +Average conv. rate = 0.054134 + +* 1 2 2 0.142844E-01 0.418597E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099701 +Final residual = 0.000013 +Average conv. rate = 0.050559 + +* 2 1 3 0.997011E-01 0.128855E-04 * +Number of iterations = 1 +Initial residual = 0.001240 +Final residual = 0.000057 +Average conv. rate = 0.046174 + +* 2 2 1 0.124049E-02 0.572790E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2996 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.33 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2996 Max w this run +w_max level proc position run w_max level timestep +0.473E+00 81 414 22.5deg W 51.9deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2997 Model time: 1979-03-04 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043339 + +* 1 1 3 0.100000E+01 0.814036E-04 * +Number of iterations = 2 +Initial residual = 0.014332 +Final residual = 0.000042 +Average conv. rate = 0.054277 + +* 1 2 2 0.143318E-01 0.422207E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098871 +Final residual = 0.000016 +Average conv. rate = 0.054432 + +* 2 1 3 0.988706E-01 0.159451E-04 * +Number of iterations = 1 +Initial residual = 0.001231 +Final residual = 0.000058 +Average conv. rate = 0.047023 + +* 2 2 1 0.123134E-02 0.579011E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2997 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.28 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.45K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2997 Max w this run +w_max level proc position run w_max level timestep +0.480E+00 81 414 22.5deg W 51.9deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 2998 Model time: 1979-03-04 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043913 + +* 1 1 3 0.100000E+01 0.846782E-04 * +Number of iterations = 2 +Initial residual = 0.014278 +Final residual = 0.000042 +Average conv. rate = 0.054292 + +* 1 2 2 0.142781E-01 0.420858E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099890 +Final residual = 0.000016 +Average conv. rate = 0.053750 + +* 2 1 3 0.998903E-01 0.155119E-04 * +Number of iterations = 1 +Initial residual = 0.001239 +Final residual = 0.000058 +Average conv. rate = 0.047007 + +* 2 2 1 0.123866E-02 0.582258E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2998 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.27 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.29K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2998 Max w this run +w_max level proc position run w_max level timestep +0.491E+00 24 179 146.3deg W -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 2999 Model time: 1979-03-04 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043657 + +* 1 1 3 0.100000E+01 0.832053E-04 * +Number of iterations = 2 +Initial residual = 0.014419 +Final residual = 0.000042 +Average conv. rate = 0.054122 + +* 1 2 2 0.144192E-01 0.422366E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099191 +Final residual = 0.000015 +Average conv. rate = 0.053673 + +* 2 1 3 0.991906E-01 0.153368E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000059 +Average conv. rate = 0.048033 + +* 2 2 1 0.122186E-02 0.586897E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 2999 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.20 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 2999 Max w this run +w_max level proc position run w_max level timestep +0.494E+00 23 179 146.3deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3000 Model time: 1979-03-04 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043780 + +* 1 1 3 0.100000E+01 0.839132E-04 * +Number of iterations = 2 +Initial residual = 0.014556 +Final residual = 0.000041 +Average conv. rate = 0.053337 + +* 1 2 2 0.145564E-01 0.414108E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099258 +Final residual = 0.000015 +Average conv. rate = 0.053000 + +* 2 1 3 0.992584E-01 0.147769E-04 * +Number of iterations = 1 +Initial residual = 0.001232 +Final residual = 0.000059 +Average conv. rate = 0.047953 + +* 2 2 1 0.123171E-02 0.590641E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3000 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.06 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3000 Max w this run +w_max level proc position run w_max level timestep +0.470E+00 22 179 146.3deg W -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3001 Model time: 1979-03-04 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044120 + +* 1 1 3 0.100000E+01 0.858802E-04 * +Number of iterations = 2 +Initial residual = 0.014839 +Final residual = 0.000041 +Average conv. rate = 0.052847 + +* 1 2 2 0.148394E-01 0.414442E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099651 +Final residual = 0.000015 +Average conv. rate = 0.053178 + +* 2 1 3 0.996507E-01 0.149861E-04 * +Number of iterations = 1 +Initial residual = 0.001226 +Final residual = 0.000059 +Average conv. rate = 0.048152 + +* 2 2 1 0.122625E-02 0.590461E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3001 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.98 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3001 Max w this run +w_max level proc position run w_max level timestep +0.452E+00 22 179 146.3deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3002 Model time: 1979-03-04 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044020 + +* 1 1 3 0.100000E+01 0.852976E-04 * +Number of iterations = 2 +Initial residual = 0.014849 +Final residual = 0.000042 +Average conv. rate = 0.052896 + +* 1 2 2 0.148486E-01 0.415463E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099132 +Final residual = 0.000015 +Average conv. rate = 0.052845 + +* 2 1 3 0.991318E-01 0.146293E-04 * +Number of iterations = 1 +Initial residual = 0.001214 +Final residual = 0.000059 +Average conv. rate = 0.048730 + +* 2 2 1 0.121387E-02 0.591516E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3002 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.94 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.15K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3002 Max w this run +w_max level proc position run w_max level timestep +0.439E+00 22 179 146.3deg W -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3003 Model time: 1979-03-04 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043407 + +* 1 1 3 0.100000E+01 0.817864E-04 * +Number of iterations = 2 +Initial residual = 0.014760 +Final residual = 0.000044 +Average conv. rate = 0.054808 + +* 1 2 2 0.147605E-01 0.443394E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100325 +Final residual = 0.000015 +Average conv. rate = 0.052872 + +* 2 1 3 0.100325E+00 0.148281E-04 * +Number of iterations = 1 +Initial residual = 0.001211 +Final residual = 0.000060 +Average conv. rate = 0.049425 + +* 2 2 1 0.121079E-02 0.598429E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3003 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.90 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3003 Max w this run +w_max level proc position run w_max level timestep +0.424E+00 21 179 146.3deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3004 Model time: 1979-03-04 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043170 + +* 1 1 3 0.100000E+01 0.804523E-04 * +Number of iterations = 2 +Initial residual = 0.014512 +Final residual = 0.000044 +Average conv. rate = 0.055187 + +* 1 2 2 0.145125E-01 0.441989E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100651 +Final residual = 0.000015 +Average conv. rate = 0.052439 + +* 2 1 3 0.100651E+00 0.145136E-04 * +Number of iterations = 1 +Initial residual = 0.001218 +Final residual = 0.000060 +Average conv. rate = 0.049334 + +* 2 2 1 0.121777E-02 0.600772E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3004 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.87 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3004 Max w this run +w_max level proc position run w_max level timestep +0.392E+00 20 179 146.3deg W -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3005 Model time: 1979-03-04 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043569 + +* 1 1 3 0.100000E+01 0.827060E-04 * +Number of iterations = 2 +Initial residual = 0.014456 +Final residual = 0.000045 +Average conv. rate = 0.055668 + +* 1 2 2 0.144561E-01 0.447979E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099859 +Final residual = 0.000012 +Average conv. rate = 0.049810 + +* 2 1 3 0.998590E-01 0.123406E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000060 +Average conv. rate = 0.049456 + +* 2 2 1 0.122198E-02 0.604343E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3005 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.86 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.78K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3005 Max w this run +w_max level proc position run w_max level timestep +0.381E+00 82 453 60.0deg E 70.6deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3006 Model time: 1979-03-04 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043545 + +* 1 1 3 0.100000E+01 0.825695E-04 * +Number of iterations = 2 +Initial residual = 0.014490 +Final residual = 0.000045 +Average conv. rate = 0.055993 + +* 1 2 2 0.144900E-01 0.454293E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099789 +Final residual = 0.000012 +Average conv. rate = 0.048946 + +* 2 1 3 0.997889E-01 0.117011E-04 * +Number of iterations = 1 +Initial residual = 0.001244 +Final residual = 0.000061 +Average conv. rate = 0.048893 + +* 2 2 1 0.124374E-02 0.608103E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3006 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.85 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3006 Max w this run +w_max level proc position run w_max level timestep +0.389E+00 24 338 148.1deg W 29.4deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3007 Model time: 1979-03-04 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043271 + +* 1 1 3 0.100000E+01 0.810180E-04 * +Number of iterations = 2 +Initial residual = 0.014607 +Final residual = 0.000044 +Average conv. rate = 0.054782 + +* 1 2 2 0.146073E-01 0.438378E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100006 +Final residual = 0.000012 +Average conv. rate = 0.048727 + +* 2 1 3 0.100006E+00 0.115700E-04 * +Number of iterations = 1 +Initial residual = 0.001247 +Final residual = 0.000061 +Average conv. rate = 0.049122 + +* 2 2 1 0.124739E-02 0.612740E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3007 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.84 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.69K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3007 Max w this run +w_max level proc position run w_max level timestep +0.398E+00 37 234 114.4deg E -0.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3008 Model time: 1979-03-04 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043555 + +* 1 1 3 0.100000E+01 0.826231E-04 * +Number of iterations = 2 +Initial residual = 0.014624 +Final residual = 0.000044 +Average conv. rate = 0.054820 + +* 1 2 2 0.146236E-01 0.439480E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099888 +Final residual = 0.000012 +Average conv. rate = 0.049087 + +* 2 1 3 0.998877E-01 0.118145E-04 * +Number of iterations = 1 +Initial residual = 0.001247 +Final residual = 0.000061 +Average conv. rate = 0.048727 + +* 2 2 1 0.124705E-02 0.607648E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3008 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.83 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3008 Max w this run +w_max level proc position run w_max level timestep +0.427E+00 38 234 114.4deg E -0.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3009 Model time: 1979-03-04 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043641 + +* 1 1 3 0.100000E+01 0.831156E-04 * +Number of iterations = 2 +Initial residual = 0.014714 +Final residual = 0.000044 +Average conv. rate = 0.054585 + +* 1 2 2 0.147138E-01 0.438397E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100739 +Final residual = 0.000014 +Average conv. rate = 0.051486 + +* 2 1 3 0.100739E+00 0.137491E-04 * +Number of iterations = 1 +Initial residual = 0.001256 +Final residual = 0.000060 +Average conv. rate = 0.047982 + +* 2 2 1 0.125646E-02 0.602876E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3009 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.81 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.46K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3009 Max w this run +w_max level proc position run w_max level timestep +0.397E+00 38 234 114.4deg E -0.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3010 Model time: 1979-03-04 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042974 + +* 1 1 3 0.100000E+01 0.793625E-04 * +Number of iterations = 2 +Initial residual = 0.014659 +Final residual = 0.000044 +Average conv. rate = 0.054750 + +* 1 2 2 0.146586E-01 0.439405E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099965 +Final residual = 0.000014 +Average conv. rate = 0.051902 + +* 2 1 3 0.999645E-01 0.139764E-04 * +Number of iterations = 1 +Initial residual = 0.001270 +Final residual = 0.000060 +Average conv. rate = 0.047417 + +* 2 2 1 0.126980E-02 0.602104E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3010 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.80 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.34K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3010 Max w this run +w_max level proc position run w_max level timestep +0.439E+00 84 396 138.8deg E 51.9deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3011 Model time: 1979-03-04 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044260 + +* 1 1 3 0.100000E+01 0.867054E-04 * +Number of iterations = 2 +Initial residual = 0.014634 +Final residual = 0.000045 +Average conv. rate = 0.055319 + +* 1 2 2 0.146344E-01 0.447841E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100786 +Final residual = 0.000014 +Average conv. rate = 0.051499 + +* 2 1 3 0.100786E+00 0.137655E-04 * +Number of iterations = 1 +Initial residual = 0.001286 +Final residual = 0.000061 +Average conv. rate = 0.047297 + +* 2 2 1 0.128580E-02 0.608145E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3011 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.81 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3011 Max w this run +w_max level proc position run w_max level timestep +0.474E+00 84 396 140.6deg E 53.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3012 Model time: 1979-03-04 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044116 + +* 1 1 3 0.100000E+01 0.858575E-04 * +Number of iterations = 2 +Initial residual = 0.014557 +Final residual = 0.000045 +Average conv. rate = 0.055337 + +* 1 2 2 0.145566E-01 0.445746E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100900 +Final residual = 0.000013 +Average conv. rate = 0.050723 + +* 2 1 3 0.100900E+00 0.131676E-04 * +Number of iterations = 1 +Initial residual = 0.001298 +Final residual = 0.000061 +Average conv. rate = 0.047152 + +* 2 2 1 0.129812E-02 0.612088E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3012 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.83 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.14K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3012 Max w this run +w_max level proc position run w_max level timestep +0.478E+00 84 396 140.6deg E 53.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3013 Model time: 1979-03-04 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044349 + +* 1 1 3 0.100000E+01 0.872274E-04 * +Number of iterations = 2 +Initial residual = 0.014586 +Final residual = 0.000043 +Average conv. rate = 0.054018 + +* 1 2 2 0.145857E-01 0.425594E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102024 +Final residual = 0.000014 +Average conv. rate = 0.052126 + +* 2 1 3 0.102024E+00 0.144501E-04 * +Number of iterations = 1 +Initial residual = 0.001301 +Final residual = 0.000061 +Average conv. rate = 0.046874 + +* 2 2 1 0.130074E-02 0.609711E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3013 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.84 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.06K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3013 Max w this run +w_max level proc position run w_max level timestep +0.469E+00 25 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3014 Model time: 1979-03-04 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043833 + +* 1 1 3 0.100000E+01 0.842197E-04 * +Number of iterations = 2 +Initial residual = 0.014517 +Final residual = 0.000042 +Average conv. rate = 0.053681 + +* 1 2 2 0.145168E-01 0.418332E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102002 +Final residual = 0.000014 +Average conv. rate = 0.051160 + +* 2 1 3 0.102002E+00 0.136583E-04 * +Number of iterations = 1 +Initial residual = 0.001288 +Final residual = 0.000061 +Average conv. rate = 0.047198 + +* 2 2 1 0.128786E-02 0.607849E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3014 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.09 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.67K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3014 Max w this run +w_max level proc position run w_max level timestep +0.551E+00 25 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3015 Model time: 1979-03-04 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043640 + +* 1 1 3 0.100000E+01 0.831077E-04 * +Number of iterations = 2 +Initial residual = 0.014480 +Final residual = 0.000043 +Average conv. rate = 0.054736 + +* 1 2 2 0.144802E-01 0.433825E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103522 +Final residual = 0.000014 +Average conv. rate = 0.051312 + +* 2 1 3 0.103522E+00 0.139862E-04 * +Number of iterations = 1 +Initial residual = 0.001275 +Final residual = 0.000061 +Average conv. rate = 0.047779 + +* 2 2 1 0.127527E-02 0.609306E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3015 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.29 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3015 Max w this run +w_max level proc position run w_max level timestep +0.598E+00 25 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3016 Model time: 1979-03-04 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043684 + +* 1 1 3 0.100000E+01 0.833615E-04 * +Number of iterations = 2 +Initial residual = 0.014287 +Final residual = 0.000042 +Average conv. rate = 0.054036 + +* 1 2 2 0.142873E-01 0.417174E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102421 +Final residual = 0.000014 +Average conv. rate = 0.051645 + +* 2 1 3 0.102421E+00 0.141084E-04 * +Number of iterations = 1 +Initial residual = 0.001264 +Final residual = 0.000061 +Average conv. rate = 0.048244 + +* 2 2 1 0.126417E-02 0.609884E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3016 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.41 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3016 Max w this run +w_max level proc position run w_max level timestep +0.699E+00 26 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3017 Model time: 1979-03-04 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043629 + +* 1 1 3 0.100000E+01 0.830499E-04 * +Number of iterations = 2 +Initial residual = 0.014228 +Final residual = 0.000042 +Average conv. rate = 0.054306 + +* 1 2 2 0.142282E-01 0.419605E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104784 +Final residual = 0.000014 +Average conv. rate = 0.051501 + +* 2 1 3 0.104784E+00 0.143135E-04 * +Number of iterations = 1 +Initial residual = 0.001299 +Final residual = 0.000061 +Average conv. rate = 0.047144 + +* 2 2 1 0.129877E-02 0.612296E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3017 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.38 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3017 Max w this run +w_max level proc position run w_max level timestep +0.723E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3018 Model time: 1979-03-04 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043938 + +* 1 1 3 0.100000E+01 0.848222E-04 * +Number of iterations = 2 +Initial residual = 0.014118 +Final residual = 0.000041 +Average conv. rate = 0.054163 + +* 1 2 2 0.141183E-01 0.414181E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104702 +Final residual = 0.000013 +Average conv. rate = 0.050227 + +* 2 1 3 0.104702E+00 0.132670E-04 * +Number of iterations = 1 +Initial residual = 0.001280 +Final residual = 0.000061 +Average conv. rate = 0.047859 + +* 2 2 1 0.127981E-02 0.612508E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3018 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.33 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.27K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3018 Max w this run +w_max level proc position run w_max level timestep +0.827E+00 28 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3019 Model time: 1979-03-04 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044158 + +* 1 1 3 0.100000E+01 0.861059E-04 * +Number of iterations = 2 +Initial residual = 0.014293 +Final residual = 0.000041 +Average conv. rate = 0.053558 + +* 1 2 2 0.142935E-01 0.410009E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106375 +Final residual = 0.000013 +Average conv. rate = 0.049828 + +* 2 1 3 0.106375E+00 0.131601E-04 * +Number of iterations = 1 +Initial residual = 0.001298 +Final residual = 0.000061 +Average conv. rate = 0.047189 + +* 2 2 1 0.129773E-02 0.612382E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3019 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.29 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.36K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3019 Max w this run +w_max level proc position run w_max level timestep +0.770E+00 28 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3020 Model time: 1979-03-04 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043779 + +* 1 1 3 0.100000E+01 0.839057E-04 * +Number of iterations = 2 +Initial residual = 0.014272 +Final residual = 0.000041 +Average conv. rate = 0.053801 + +* 1 2 2 0.142720E-01 0.413112E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105284 +Final residual = 0.000012 +Average conv. rate = 0.047935 + +* 2 1 3 0.105284E+00 0.115960E-04 * +Number of iterations = 1 +Initial residual = 0.001300 +Final residual = 0.000061 +Average conv. rate = 0.047188 + +* 2 2 1 0.130010E-02 0.613486E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3020 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.24 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.45K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3020 Max w this run +w_max level proc position run w_max level timestep +0.801E+00 29 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3021 Model time: 1979-03-04 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043909 + +* 1 1 3 0.100000E+01 0.846589E-04 * +Number of iterations = 2 +Initial residual = 0.014282 +Final residual = 0.000042 +Average conv. rate = 0.054053 + +* 1 2 2 0.142822E-01 0.417282E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103853 +Final residual = 0.000014 +Average conv. rate = 0.051682 + +* 2 1 3 0.103853E+00 0.143366E-04 * +Number of iterations = 1 +Initial residual = 0.001258 +Final residual = 0.000061 +Average conv. rate = 0.048338 + +* 2 2 1 0.125793E-02 0.608058E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3021 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.18 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3021 Max w this run +w_max level proc position run w_max level timestep +0.725E+00 29 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3022 Model time: 1979-03-04 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043801 + +* 1 1 3 0.100000E+01 0.840333E-04 * +Number of iterations = 2 +Initial residual = 0.014169 +Final residual = 0.000041 +Average conv. rate = 0.053469 + +* 1 2 2 0.141695E-01 0.405102E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104760 +Final residual = 0.000014 +Average conv. rate = 0.050874 + +* 2 1 3 0.104760E+00 0.137938E-04 * +Number of iterations = 1 +Initial residual = 0.001274 +Final residual = 0.000060 +Average conv. rate = 0.046998 + +* 2 2 1 0.127419E-02 0.598843E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3022 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.11 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.21K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3022 Max w this run +w_max level proc position run w_max level timestep +0.672E+00 30 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3023 Model time: 1979-03-04 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044111 + +* 1 1 3 0.100000E+01 0.858309E-04 * +Number of iterations = 2 +Initial residual = 0.014207 +Final residual = 0.000042 +Average conv. rate = 0.054494 + +* 1 2 2 0.142069E-01 0.421888E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104286 +Final residual = 0.000014 +Average conv. rate = 0.050971 + +* 2 1 3 0.104286E+00 0.138103E-04 * +Number of iterations = 1 +Initial residual = 0.001272 +Final residual = 0.000061 +Average conv. rate = 0.047637 + +* 2 2 1 0.127205E-02 0.605970E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3023 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.99 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3023 Max w this run +w_max level proc position run w_max level timestep +0.618E+00 29 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3024 Model time: 1979-03-05 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044492 + +* 1 1 3 0.100000E+01 0.880709E-04 * +Number of iterations = 2 +Initial residual = 0.014150 +Final residual = 0.000042 +Average conv. rate = 0.054343 + +* 1 2 2 0.141499E-01 0.417875E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104514 +Final residual = 0.000013 +Average conv. rate = 0.049774 + +* 2 1 3 0.104514E+00 0.128878E-04 * +Number of iterations = 1 +Initial residual = 0.001294 +Final residual = 0.000061 +Average conv. rate = 0.047035 + +* 2 2 1 0.129425E-02 0.608759E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13053E+25 +tot dry energy 0.13054E+25 +gr( rho cal) 0.38098E+24 +KE( rho cal) 0.81199E+21 +KEu(rho cal) 0.62577E+21 +KEv(rho cal) 0.18621E+21 +KEw(rho cal) 0.11559E+16 +cvT( rho cal) 0.92358E+24 +lq ( rho cal) 0.30801E+23 +lqcf( rho cal) 0.65704E+20 +lqcl( rho cal) 0.39459E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12355E+17 KG +Initial moisture = 0.12329E+17 KG +change in moisture = 0.26232E+14 KG +Moisture added E-P in period = 0.24810E+14 KG +Error in moisture = 0.14227E+13 KG +Error as % of change = 0.54233E+01 +q ( rho cal) 0.12315E+17 +qcf( rho cal) 0.26271E+14 +qcl( rho cal) 0.13918E+14 +FINAL TOTAL ENERGY = 0.13053E+25 J/ +INITIAL TOTAL ENERGY = 0.13054E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.15819E+21 J/ +FLUXES INTO ATM OVER PERIOD = -0.15551E+21 J/ +ERROR IN ENERGY BUDGET = 0.26820E+19 J/ +TEMP CORRECTION OVER A DAY = 0.72825E-03 K +TEMPERATURE CORRECTION RATE = 0.84288E-08 K/S +FLUX CORRECTION (ATM) = 0.60854E-01 W/M2 + +Minimum theta level 1 for timestep 3024 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.88 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3024 Max w this run +w_max level proc position run w_max level timestep +0.558E+00 29 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6492.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6492.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6492.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6492.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6492.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6492.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3025 Model time: 1979-03-05 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044021 + +* 1 1 3 0.100000E+01 0.853045E-04 * +Number of iterations = 2 +Initial residual = 0.014135 +Final residual = 0.000041 +Average conv. rate = 0.053697 + +* 1 2 2 0.141348E-01 0.407563E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103738 +Final residual = 0.000013 +Average conv. rate = 0.049968 + +* 2 1 3 0.103738E+00 0.129425E-04 * +Number of iterations = 1 +Initial residual = 0.001248 +Final residual = 0.000061 +Average conv. rate = 0.049079 + +* 2 2 1 0.124777E-02 0.612393E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3025 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.76 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.46K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3025 Max w this run +w_max level proc position run w_max level timestep +0.507E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3026 Model time: 1979-03-05 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044119 + +* 1 1 3 0.100000E+01 0.858760E-04 * +Number of iterations = 2 +Initial residual = 0.014070 +Final residual = 0.000044 +Average conv. rate = 0.055905 + +* 1 2 2 0.140698E-01 0.439733E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102367 +Final residual = 0.000013 +Average conv. rate = 0.050463 + +* 2 1 3 0.102367E+00 0.131543E-04 * +Number of iterations = 1 +Initial residual = 0.001226 +Final residual = 0.000060 +Average conv. rate = 0.049169 + +* 2 2 1 0.122572E-02 0.602675E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3026 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.65 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.41K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3026 Max w this run +w_max level proc position run w_max level timestep +0.543E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3027 Model time: 1979-03-05 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044331 + +* 1 1 3 0.100000E+01 0.871220E-04 * +Number of iterations = 2 +Initial residual = 0.014174 +Final residual = 0.000042 +Average conv. rate = 0.054339 + +* 1 2 2 0.141741E-01 0.418528E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102459 +Final residual = 0.000013 +Average conv. rate = 0.050426 + +* 2 1 3 0.102459E+00 0.131374E-04 * +Number of iterations = 1 +Initial residual = 0.001216 +Final residual = 0.000060 +Average conv. rate = 0.049414 + +* 2 2 1 0.121561E-02 0.600684E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3027 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.56 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.37K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3027 Max w this run +w_max level proc position run w_max level timestep +0.567E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3028 Model time: 1979-03-05 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043901 + +* 1 1 3 0.100000E+01 0.846109E-04 * +Number of iterations = 2 +Initial residual = 0.014143 +Final residual = 0.000043 +Average conv. rate = 0.055119 + +* 1 2 2 0.141434E-01 0.429689E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100890 +Final residual = 0.000012 +Average conv. rate = 0.049358 + +* 2 1 3 0.100890E+00 0.121314E-04 * +Number of iterations = 1 +Initial residual = 0.001191 +Final residual = 0.000059 +Average conv. rate = 0.049727 + +* 2 2 1 0.119106E-02 0.592273E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3028 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.48 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3028 Max w this run +w_max level proc position run w_max level timestep +0.583E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3029 Model time: 1979-03-05 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043784 + +* 1 1 3 0.100000E+01 0.839372E-04 * +Number of iterations = 2 +Initial residual = 0.014193 +Final residual = 0.000043 +Average conv. rate = 0.054906 + +* 1 2 2 0.141929E-01 0.427874E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102815 +Final residual = 0.000012 +Average conv. rate = 0.049102 + +* 2 1 3 0.102815E+00 0.121719E-04 * +Number of iterations = 1 +Initial residual = 0.001232 +Final residual = 0.000059 +Average conv. rate = 0.048156 + +* 2 2 1 0.123177E-02 0.593165E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3029 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.40 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.42K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3029 Max w this run +w_max level proc position run w_max level timestep +0.551E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3030 Model time: 1979-03-05 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043648 + +* 1 1 3 0.100000E+01 0.831561E-04 * +Number of iterations = 2 +Initial residual = 0.014196 +Final residual = 0.000042 +Average conv. rate = 0.054376 + +* 1 2 2 0.141956E-01 0.419736E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100842 +Final residual = 0.000012 +Average conv. rate = 0.049292 + +* 2 1 3 0.100842E+00 0.120776E-04 * +Number of iterations = 1 +Initial residual = 0.001193 +Final residual = 0.000060 +Average conv. rate = 0.050318 + +* 2 2 1 0.119306E-02 0.600323E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3030 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.32 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3030 Max w this run +w_max level proc position run w_max level timestep +0.558E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3031 Model time: 1979-03-05 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044391 + +* 1 1 3 0.100000E+01 0.874779E-04 * +Number of iterations = 2 +Initial residual = 0.014352 +Final residual = 0.000043 +Average conv. rate = 0.054733 + +* 1 2 2 0.143519E-01 0.429946E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100775 +Final residual = 0.000013 +Average conv. rate = 0.050453 + +* 2 1 3 0.100775E+00 0.129425E-04 * +Number of iterations = 1 +Initial residual = 0.001200 +Final residual = 0.000061 +Average conv. rate = 0.050521 + +* 2 2 1 0.120026E-02 0.606380E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3031 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.25 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.65K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3031 Max w this run +w_max level proc position run w_max level timestep +0.567E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3032 Model time: 1979-03-05 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043451 + +* 1 1 3 0.100000E+01 0.820343E-04 * +Number of iterations = 2 +Initial residual = 0.014396 +Final residual = 0.000042 +Average conv. rate = 0.054328 + +* 1 2 2 0.143959E-01 0.424895E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099894 +Final residual = 0.000015 +Average conv. rate = 0.052577 + +* 2 1 3 0.998939E-01 0.145186E-04 * +Number of iterations = 1 +Initial residual = 0.001184 +Final residual = 0.000060 +Average conv. rate = 0.050764 + +* 2 2 1 0.118441E-02 0.601252E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3032 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.19 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.65K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3032 Max w this run +w_max level proc position run w_max level timestep +0.572E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3033 Model time: 1979-03-05 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043929 + +* 1 1 3 0.100000E+01 0.847736E-04 * +Number of iterations = 2 +Initial residual = 0.014516 +Final residual = 0.000045 +Average conv. rate = 0.055404 + +* 1 2 2 0.145162E-01 0.445592E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099738 +Final residual = 0.000013 +Average conv. rate = 0.050962 + +* 2 1 3 0.997382E-01 0.132010E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000060 +Average conv. rate = 0.050412 + +* 2 2 1 0.118772E-02 0.598750E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3033 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.14 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3033 Max w this run +w_max level proc position run w_max level timestep +0.519E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3034 Model time: 1979-03-05 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043662 + +* 1 1 3 0.100000E+01 0.832338E-04 * +Number of iterations = 2 +Initial residual = 0.014480 +Final residual = 0.000043 +Average conv. rate = 0.054296 + +* 1 2 2 0.144801E-01 0.426888E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097972 +Final residual = 0.000013 +Average conv. rate = 0.050942 + +* 2 1 3 0.979716E-01 0.129517E-04 * +Number of iterations = 1 +Initial residual = 0.001159 +Final residual = 0.000059 +Average conv. rate = 0.050598 + +* 2 2 1 0.115878E-02 0.586314E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3034 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.10 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.63K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3034 Max w this run +w_max level proc position run w_max level timestep +0.489E+00 38 249 71.3deg W -4.4deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3035 Model time: 1979-03-05 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043228 + +* 1 1 3 0.100000E+01 0.807795E-04 * +Number of iterations = 2 +Initial residual = 0.014544 +Final residual = 0.000043 +Average conv. rate = 0.054256 + +* 1 2 2 0.145440E-01 0.428128E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097464 +Final residual = 0.000013 +Average conv. rate = 0.051249 + +* 2 1 3 0.974638E-01 0.131191E-04 * +Number of iterations = 1 +Initial residual = 0.001164 +Final residual = 0.000058 +Average conv. rate = 0.050079 + +* 2 2 1 0.116405E-02 0.582942E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3035 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.07 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3035 Max w this run +w_max level proc position run w_max level timestep +0.462E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3036 Model time: 1979-03-05 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043152 + +* 1 1 3 0.100000E+01 0.803528E-04 * +Number of iterations = 2 +Initial residual = 0.014449 +Final residual = 0.000043 +Average conv. rate = 0.054596 + +* 1 2 2 0.144493E-01 0.430693E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097211 +Final residual = 0.000012 +Average conv. rate = 0.050313 + +* 2 1 3 0.972113E-01 0.123811E-04 * +Number of iterations = 1 +Initial residual = 0.001171 +Final residual = 0.000058 +Average conv. rate = 0.049753 + +* 2 2 1 0.117119E-02 0.582702E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3036 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.05 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3036 Max w this run +w_max level proc position run w_max level timestep +0.490E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3037 Model time: 1979-03-05 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043349 + +* 1 1 3 0.100000E+01 0.814572E-04 * +Number of iterations = 2 +Initial residual = 0.014446 +Final residual = 0.000043 +Average conv. rate = 0.054524 + +* 1 2 2 0.144459E-01 0.429455E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097552 +Final residual = 0.000012 +Average conv. rate = 0.049238 + +* 2 1 3 0.975524E-01 0.116448E-04 * +Number of iterations = 1 +Initial residual = 0.001161 +Final residual = 0.000059 +Average conv. rate = 0.050745 + +* 2 2 1 0.116119E-02 0.589244E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3037 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.02 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3037 Max w this run +w_max level proc position run w_max level timestep +0.460E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3038 Model time: 1979-03-05 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043568 + +* 1 1 3 0.100000E+01 0.826982E-04 * +Number of iterations = 2 +Initial residual = 0.014440 +Final residual = 0.000044 +Average conv. rate = 0.055044 + +* 1 2 2 0.144404E-01 0.437523E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097168 +Final residual = 0.000012 +Average conv. rate = 0.049645 + +* 2 1 3 0.971678E-01 0.118890E-04 * +Number of iterations = 1 +Initial residual = 0.001160 +Final residual = 0.000059 +Average conv. rate = 0.051249 + +* 2 2 1 0.115962E-02 0.594288E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3038 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.00 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.51K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3038 Max w this run +w_max level proc position run w_max level timestep +0.449E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3039 Model time: 1979-03-05 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043302 + +* 1 1 3 0.100000E+01 0.811927E-04 * +Number of iterations = 2 +Initial residual = 0.014498 +Final residual = 0.000045 +Average conv. rate = 0.055802 + +* 1 2 2 0.144978E-01 0.451443E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096824 +Final residual = 0.000012 +Average conv. rate = 0.049639 + +* 2 1 3 0.968244E-01 0.118430E-04 * +Number of iterations = 1 +Initial residual = 0.001170 +Final residual = 0.000060 +Average conv. rate = 0.051439 + +* 2 2 1 0.116980E-02 0.601730E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3039 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.97 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.49K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3039 Max w this run +w_max level proc position run w_max level timestep +0.433E+00 27 176 170.6deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3040 Model time: 1979-03-05 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043319 + +* 1 1 3 0.100000E+01 0.812877E-04 * +Number of iterations = 2 +Initial residual = 0.014383 +Final residual = 0.000045 +Average conv. rate = 0.056222 + +* 1 2 2 0.143830E-01 0.454636E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097019 +Final residual = 0.000012 +Average conv. rate = 0.050032 + +* 2 1 3 0.970191E-01 0.121508E-04 * +Number of iterations = 1 +Initial residual = 0.001179 +Final residual = 0.000060 +Average conv. rate = 0.051120 + +* 2 2 1 0.117949E-02 0.602952E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3040 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.95 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3040 Max w this run +w_max level proc position run w_max level timestep +0.370E+00 30 147 138.8deg W -34.4deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3041 Model time: 1979-03-05 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043508 + +* 1 1 3 0.100000E+01 0.823607E-04 * +Number of iterations = 2 +Initial residual = 0.014314 +Final residual = 0.000044 +Average conv. rate = 0.055428 + +* 1 2 2 0.143138E-01 0.439757E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099028 +Final residual = 0.000013 +Average conv. rate = 0.051014 + +* 2 1 3 0.990279E-01 0.131472E-04 * +Number of iterations = 1 +Initial residual = 0.001182 +Final residual = 0.000061 +Average conv. rate = 0.051320 + +* 2 2 1 0.118191E-02 0.606558E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3041 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.92 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3041 Max w this run +w_max level proc position run w_max level timestep +0.364E+00 32 176 170.6deg W -24.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3042 Model time: 1979-03-05 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043331 + +* 1 1 3 0.100000E+01 0.813567E-04 * +Number of iterations = 2 +Initial residual = 0.014268 +Final residual = 0.000048 +Average conv. rate = 0.057728 + +* 1 2 2 0.142678E-01 0.475486E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098489 +Final residual = 0.000013 +Average conv. rate = 0.051102 + +* 2 1 3 0.984886E-01 0.131432E-04 * +Number of iterations = 1 +Initial residual = 0.001182 +Final residual = 0.000061 +Average conv. rate = 0.051535 + +* 2 2 1 0.118180E-02 0.609039E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3042 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.89 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3042 Max w this run +w_max level proc position run w_max level timestep +0.376E+00 34 249 69.4deg W -5.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3043 Model time: 1979-03-05 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043110 + +* 1 1 3 0.100000E+01 0.801182E-04 * +Number of iterations = 2 +Initial residual = 0.014373 +Final residual = 0.000046 +Average conv. rate = 0.056445 + +* 1 2 2 0.143734E-01 0.457938E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099657 +Final residual = 0.000013 +Average conv. rate = 0.050868 + +* 2 1 3 0.996573E-01 0.131171E-04 * +Number of iterations = 1 +Initial residual = 0.001182 +Final residual = 0.000060 +Average conv. rate = 0.051114 + +* 2 2 1 0.118200E-02 0.604175E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3043 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.88 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3043 Max w this run +w_max level proc position run w_max level timestep +0.410E+00 35 249 76.9deg W -1.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3044 Model time: 1979-03-05 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043437 + +* 1 1 3 0.100000E+01 0.819533E-04 * +Number of iterations = 2 +Initial residual = 0.014385 +Final residual = 0.000044 +Average conv. rate = 0.055040 + +* 1 2 2 0.143847E-01 0.435769E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098097 +Final residual = 0.000013 +Average conv. rate = 0.050611 + +* 2 1 3 0.980972E-01 0.127176E-04 * +Number of iterations = 1 +Initial residual = 0.001174 +Final residual = 0.000060 +Average conv. rate = 0.050781 + +* 2 2 1 0.117362E-02 0.595973E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3044 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.87 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3044 Max w this run +w_max level proc position run w_max level timestep +0.369E+00 36 233 110.6deg E -1.9deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3045 Model time: 1979-03-05 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043506 + +* 1 1 3 0.100000E+01 0.823448E-04 * +Number of iterations = 2 +Initial residual = 0.014526 +Final residual = 0.000043 +Average conv. rate = 0.054327 + +* 1 2 2 0.145264E-01 0.428741E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099059 +Final residual = 0.000015 +Average conv. rate = 0.052895 + +* 2 1 3 0.990587E-01 0.146597E-04 * +Number of iterations = 1 +Initial residual = 0.001177 +Final residual = 0.000060 +Average conv. rate = 0.051085 + +* 2 2 1 0.117706E-02 0.601303E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3045 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.85 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.49K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3045 Max w this run +w_max level proc position run w_max level timestep +0.411E+00 33 188 43.1deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3046 Model time: 1979-03-05 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043938 + +* 1 1 3 0.100000E+01 0.848242E-04 * +Number of iterations = 2 +Initial residual = 0.014613 +Final residual = 0.000044 +Average conv. rate = 0.055041 + +* 1 2 2 0.146134E-01 0.442711E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098872 +Final residual = 0.000014 +Average conv. rate = 0.051637 + +* 2 1 3 0.988719E-01 0.136132E-04 * +Number of iterations = 1 +Initial residual = 0.001183 +Final residual = 0.000060 +Average conv. rate = 0.050660 + +* 2 2 1 0.118256E-02 0.599085E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3046 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.83 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.50K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3046 Max w this run +w_max level proc position run w_max level timestep +0.434E+00 33 188 43.1deg W -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3047 Model time: 1979-03-05 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043838 + +* 1 1 3 0.100000E+01 0.842456E-04 * +Number of iterations = 2 +Initial residual = 0.014665 +Final residual = 0.000044 +Average conv. rate = 0.054932 + +* 1 2 2 0.146653E-01 0.442529E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100044 +Final residual = 0.000014 +Average conv. rate = 0.051449 + +* 2 1 3 0.100044E+00 0.136247E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000061 +Average conv. rate = 0.051038 + +* 2 2 1 0.118780E-02 0.606226E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3047 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.81 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3047 Max w this run +w_max level proc position run w_max level timestep +0.423E+00 33 188 43.1deg W -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3048 Model time: 1979-03-05 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044266 + +* 1 1 3 0.100000E+01 0.867406E-04 * +Number of iterations = 2 +Initial residual = 0.014522 +Final residual = 0.000045 +Average conv. rate = 0.055556 + +* 1 2 2 0.145219E-01 0.448219E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100545 +Final residual = 0.000014 +Average conv. rate = 0.051598 + +* 2 1 3 0.100545E+00 0.138118E-04 * +Number of iterations = 1 +Initial residual = 0.001197 +Final residual = 0.000061 +Average conv. rate = 0.051000 + +* 2 2 1 0.119687E-02 0.610401E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3048 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.78 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3048 Max w this run +w_max level proc position run w_max level timestep +0.425E+00 32 147 136.9deg W -34.4deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3049 Model time: 1979-03-05 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043874 + +* 1 1 3 0.100000E+01 0.844552E-04 * +Number of iterations = 2 +Initial residual = 0.014461 +Final residual = 0.000046 +Average conv. rate = 0.056669 + +* 1 2 2 0.144615E-01 0.464413E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101566 +Final residual = 0.000015 +Average conv. rate = 0.052518 + +* 2 1 3 0.101566E+00 0.147120E-04 * +Number of iterations = 1 +Initial residual = 0.001196 +Final residual = 0.000062 +Average conv. rate = 0.051468 + +* 2 2 1 0.119612E-02 0.615613E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3049 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.75 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.60K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3049 Max w this run +w_max level proc position run w_max level timestep +0.446E+00 36 249 75.0deg W -1.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3050 Model time: 1979-03-05 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044124 + +* 1 1 3 0.100000E+01 0.859044E-04 * +Number of iterations = 2 +Initial residual = 0.014338 +Final residual = 0.000045 +Average conv. rate = 0.055892 + +* 1 2 2 0.143379E-01 0.447903E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100654 +Final residual = 0.000015 +Average conv. rate = 0.052607 + +* 2 1 3 0.100654E+00 0.146544E-04 * +Number of iterations = 1 +Initial residual = 0.001199 +Final residual = 0.000062 +Average conv. rate = 0.051804 + +* 2 2 1 0.119903E-02 0.621143E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3050 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.71 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3050 Max w this run +w_max level proc position run w_max level timestep +0.471E+00 37 249 73.1deg W -10.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3051 Model time: 1979-03-05 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044101 + +* 1 1 3 0.100000E+01 0.857736E-04 * +Number of iterations = 2 +Initial residual = 0.014392 +Final residual = 0.000046 +Average conv. rate = 0.056243 + +* 1 2 2 0.143925E-01 0.455276E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101510 +Final residual = 0.000014 +Average conv. rate = 0.052230 + +* 2 1 3 0.101510E+00 0.144633E-04 * +Number of iterations = 1 +Initial residual = 0.001202 +Final residual = 0.000062 +Average conv. rate = 0.051238 + +* 2 2 1 0.120221E-02 0.615988E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3051 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.68 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.68K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3051 Max w this run +w_max level proc position run w_max level timestep +0.514E+00 38 249 73.1deg W -10.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3052 Model time: 1979-03-05 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044167 + +* 1 1 3 0.100000E+01 0.861563E-04 * +Number of iterations = 2 +Initial residual = 0.014387 +Final residual = 0.000046 +Average conv. rate = 0.056430 + +* 1 2 2 0.143868E-01 0.458125E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101772 +Final residual = 0.000015 +Average conv. rate = 0.052747 + +* 2 1 3 0.101772E+00 0.149359E-04 * +Number of iterations = 1 +Initial residual = 0.001202 +Final residual = 0.000061 +Average conv. rate = 0.051041 + +* 2 2 1 0.120194E-02 0.613480E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3052 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.64 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.73K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3052 Max w this run +w_max level proc position run w_max level timestep +0.433E+00 39 249 73.1deg W -10.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3053 Model time: 1979-03-05 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044649 + +* 1 1 3 0.100000E+01 0.890099E-04 * +Number of iterations = 2 +Initial residual = 0.014491 +Final residual = 0.000048 +Average conv. rate = 0.057479 + +* 1 2 2 0.144907E-01 0.478744E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103503 +Final residual = 0.000012 +Average conv. rate = 0.048868 + +* 2 1 3 0.103503E+00 0.120792E-04 * +Number of iterations = 1 +Initial residual = 0.001205 +Final residual = 0.000061 +Average conv. rate = 0.050327 + +* 2 2 1 0.120525E-02 0.606570E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3053 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.61 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3053 Max w this run +w_max level proc position run w_max level timestep +0.421E+00 30 180 133.1deg W -33.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3054 Model time: 1979-03-05 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044413 + +* 1 1 3 0.100000E+01 0.876043E-04 * +Number of iterations = 2 +Initial residual = 0.014511 +Final residual = 0.000047 +Average conv. rate = 0.057092 + +* 1 2 2 0.145111E-01 0.472995E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103506 +Final residual = 0.000016 +Average conv. rate = 0.053325 + +* 2 1 3 0.103506E+00 0.156950E-04 * +Number of iterations = 1 +Initial residual = 0.001202 +Final residual = 0.000061 +Average conv. rate = 0.050849 + +* 2 2 1 0.120240E-02 0.611405E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3054 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.58 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.79K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3054 Max w this run +w_max level proc position run w_max level timestep +0.446E+00 31 180 133.1deg W -33.1deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3055 Model time: 1979-03-05 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044153 + +* 1 1 3 0.100000E+01 0.860776E-04 * +Number of iterations = 2 +Initial residual = 0.014582 +Final residual = 0.000048 +Average conv. rate = 0.057670 + +* 1 2 2 0.145825E-01 0.484981E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104895 +Final residual = 0.000015 +Average conv. rate = 0.052571 + +* 2 1 3 0.104895E+00 0.152401E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000061 +Average conv. rate = 0.050429 + +* 2 2 1 0.120391E-02 0.607117E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3055 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.56 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.81K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3055 Max w this run +w_max level proc position run w_max level timestep +0.463E+00 19 344 88.1deg W 28.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3056 Model time: 1979-03-05 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043524 + +* 1 1 3 0.100000E+01 0.824496E-04 * +Number of iterations = 2 +Initial residual = 0.014611 +Final residual = 0.000049 +Average conv. rate = 0.057941 + +* 1 2 2 0.146115E-01 0.490533E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104495 +Final residual = 0.000011 +Average conv. rate = 0.047683 + +* 2 1 3 0.104495E+00 0.113292E-04 * +Number of iterations = 1 +Initial residual = 0.001203 +Final residual = 0.000060 +Average conv. rate = 0.049768 + +* 2 2 1 0.120316E-02 0.598796E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3056 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.54 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3056 Max w this run +w_max level proc position run w_max level timestep +0.531E+00 19 344 88.1deg W 28.1deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3057 Model time: 1979-03-05 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043474 + +* 1 1 3 0.100000E+01 0.821664E-04 * +Number of iterations = 2 +Initial residual = 0.014699 +Final residual = 0.000051 +Average conv. rate = 0.058766 + +* 1 2 2 0.146992E-01 0.507623E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105005 +Final residual = 0.000013 +Average conv. rate = 0.049306 + +* 2 1 3 0.105005E+00 0.125868E-04 * +Number of iterations = 1 +Initial residual = 0.001196 +Final residual = 0.000059 +Average conv. rate = 0.049582 + +* 2 2 1 0.119645E-02 0.593221E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3057 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.54 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3057 Max w this run +w_max level proc position run w_max level timestep +0.575E+00 19 344 88.1deg W 28.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3058 Model time: 1979-03-05 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043737 + +* 1 1 3 0.100000E+01 0.836645E-04 * +Number of iterations = 2 +Initial residual = 0.014603 +Final residual = 0.000051 +Average conv. rate = 0.059297 + +* 1 2 2 0.146028E-01 0.513454E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105257 +Final residual = 0.000012 +Average conv. rate = 0.048756 + +* 2 1 3 0.105257E+00 0.121994E-04 * +Number of iterations = 1 +Initial residual = 0.001211 +Final residual = 0.000059 +Average conv. rate = 0.048334 + +* 2 2 1 0.121147E-02 0.585553E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3058 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.54 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3058 Max w this run +w_max level proc position run w_max level timestep +0.579E+00 19 344 88.1deg W 28.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3059 Model time: 1979-03-05 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043508 + +* 1 1 3 0.100000E+01 0.823584E-04 * +Number of iterations = 2 +Initial residual = 0.014521 +Final residual = 0.000047 +Average conv. rate = 0.056803 + +* 1 2 2 0.145207E-01 0.468527E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104583 +Final residual = 0.000014 +Average conv. rate = 0.050788 + +* 2 1 3 0.104583E+00 0.137007E-04 * +Number of iterations = 1 +Initial residual = 0.001207 +Final residual = 0.000059 +Average conv. rate = 0.048575 + +* 2 2 1 0.120684E-02 0.586227E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3059 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.57 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.90K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3059 Max w this run +w_max level proc position run w_max level timestep +0.576E+00 21 344 86.3deg W 28.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3060 Model time: 1979-03-05 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043481 + +* 1 1 3 0.100000E+01 0.822047E-04 * +Number of iterations = 2 +Initial residual = 0.014371 +Final residual = 0.000047 +Average conv. rate = 0.056919 + +* 1 2 2 0.143712E-01 0.465595E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105355 +Final residual = 0.000014 +Average conv. rate = 0.051476 + +* 2 1 3 0.105355E+00 0.143703E-04 * +Number of iterations = 1 +Initial residual = 0.001247 +Final residual = 0.000058 +Average conv. rate = 0.046859 + +* 2 2 1 0.124742E-02 0.584525E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3060 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.60 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3060 Max w this run +w_max level proc position run w_max level timestep +0.653E+00 22 344 86.3deg W 28.1deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3061 Model time: 1979-03-05 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043764 + +* 1 1 3 0.100000E+01 0.838224E-04 * +Number of iterations = 2 +Initial residual = 0.014330 +Final residual = 0.000047 +Average conv. rate = 0.056992 + +* 1 2 2 0.143300E-01 0.465456E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103298 +Final residual = 0.000014 +Average conv. rate = 0.051717 + +* 2 1 3 0.103298E+00 0.142883E-04 * +Number of iterations = 1 +Initial residual = 0.001198 +Final residual = 0.000058 +Average conv. rate = 0.048534 + +* 2 2 1 0.119828E-02 0.581578E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3061 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.64 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3061 Max w this run +w_max level proc position run w_max level timestep +0.661E+00 23 344 86.3deg W 28.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3062 Model time: 1979-03-05 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043683 + +* 1 1 3 0.100000E+01 0.833537E-04 * +Number of iterations = 2 +Initial residual = 0.014197 +Final residual = 0.000046 +Average conv. rate = 0.056944 + +* 1 2 2 0.141968E-01 0.460346E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102358 +Final residual = 0.000013 +Average conv. rate = 0.050427 + +* 2 1 3 0.102358E+00 0.131256E-04 * +Number of iterations = 1 +Initial residual = 0.001200 +Final residual = 0.000057 +Average conv. rate = 0.047633 + +* 2 2 1 0.119979E-02 0.571496E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3062 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.68 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3062 Max w this run +w_max level proc position run w_max level timestep +0.623E+00 24 344 86.3deg W 28.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3063 Model time: 1979-03-05 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043799 + +* 1 1 3 0.100000E+01 0.840221E-04 * +Number of iterations = 2 +Initial residual = 0.014211 +Final residual = 0.000046 +Average conv. rate = 0.056905 + +* 1 2 2 0.142105E-01 0.460164E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104769 +Final residual = 0.000013 +Average conv. rate = 0.049639 + +* 2 1 3 0.104769E+00 0.128144E-04 * +Number of iterations = 1 +Initial residual = 0.001225 +Final residual = 0.000058 +Average conv. rate = 0.047166 + +* 2 2 1 0.122490E-02 0.577737E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3063 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.72 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3063 Max w this run +w_max level proc position run w_max level timestep +0.631E+00 25 344 86.3deg W 28.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3064 Model time: 1979-03-05 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043556 + +* 1 1 3 0.100000E+01 0.826304E-04 * +Number of iterations = 2 +Initial residual = 0.014127 +Final residual = 0.000045 +Average conv. rate = 0.056470 + +* 1 2 2 0.141269E-01 0.450487E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102594 +Final residual = 0.000013 +Average conv. rate = 0.049670 + +* 2 1 3 0.102594E+00 0.125717E-04 * +Number of iterations = 1 +Initial residual = 0.001205 +Final residual = 0.000058 +Average conv. rate = 0.047881 + +* 2 2 1 0.120526E-02 0.577096E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3064 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.76 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3064 Max w this run +w_max level proc position run w_max level timestep +0.606E+00 25 344 86.3deg W 28.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3065 Model time: 1979-03-05 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044237 + +* 1 1 3 0.100000E+01 0.865679E-04 * +Number of iterations = 2 +Initial residual = 0.014159 +Final residual = 0.000045 +Average conv. rate = 0.056399 + +* 1 2 2 0.141593E-01 0.450391E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104305 +Final residual = 0.000015 +Average conv. rate = 0.052300 + +* 2 1 3 0.104305E+00 0.149217E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000058 +Average conv. rate = 0.047355 + +* 2 2 1 0.122163E-02 0.578497E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3065 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.80 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3065 Max w this run +w_max level proc position run w_max level timestep +0.517E+00 25 344 86.3deg W 28.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3066 Model time: 1979-03-05 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043431 + +* 1 1 3 0.100000E+01 0.819220E-04 * +Number of iterations = 2 +Initial residual = 0.014167 +Final residual = 0.000045 +Average conv. rate = 0.056116 + +* 1 2 2 0.141675E-01 0.446135E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103593 +Final residual = 0.000015 +Average conv. rate = 0.052137 + +* 2 1 3 0.103593E+00 0.146813E-04 * +Number of iterations = 1 +Initial residual = 0.001207 +Final residual = 0.000057 +Average conv. rate = 0.047029 + +* 2 2 1 0.120683E-02 0.567564E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3066 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.83 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3066 Max w this run +w_max level proc position run w_max level timestep +0.466E+00 38 257 20.6deg E 1.9deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3067 Model time: 1979-03-05 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043633 + +* 1 1 3 0.100000E+01 0.830704E-04 * +Number of iterations = 2 +Initial residual = 0.014283 +Final residual = 0.000045 +Average conv. rate = 0.056237 + +* 1 2 2 0.142825E-01 0.451698E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105345 +Final residual = 0.000014 +Average conv. rate = 0.051351 + +* 2 1 3 0.105345E+00 0.142648E-04 * +Number of iterations = 1 +Initial residual = 0.001226 +Final residual = 0.000057 +Average conv. rate = 0.046451 + +* 2 2 1 0.122573E-02 0.569364E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3067 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.86 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3067 Max w this run +w_max level proc position run w_max level timestep +0.579E+00 38 258 22.5deg E 0.6deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3068 Model time: 1979-03-05 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043443 + +* 1 1 3 0.100000E+01 0.819915E-04 * +Number of iterations = 2 +Initial residual = 0.014215 +Final residual = 0.000045 +Average conv. rate = 0.056464 + +* 1 2 2 0.142148E-01 0.453199E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105144 +Final residual = 0.000014 +Average conv. rate = 0.051011 + +* 2 1 3 0.105144E+00 0.139564E-04 * +Number of iterations = 1 +Initial residual = 0.001226 +Final residual = 0.000058 +Average conv. rate = 0.047015 + +* 2 2 1 0.122593E-02 0.576368E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3068 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.88 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3068 Max w this run +w_max level proc position run w_max level timestep +0.594E+00 38 258 22.5deg E 0.6deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3069 Model time: 1979-03-05 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044061 + +* 1 1 3 0.100000E+01 0.855371E-04 * +Number of iterations = 2 +Initial residual = 0.014217 +Final residual = 0.000046 +Average conv. rate = 0.056647 + +* 1 2 2 0.142173E-01 0.456210E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106954 +Final residual = 0.000012 +Average conv. rate = 0.048751 + +* 2 1 3 0.106954E+00 0.123923E-04 * +Number of iterations = 1 +Initial residual = 0.001241 +Final residual = 0.000058 +Average conv. rate = 0.046345 + +* 2 2 1 0.124146E-02 0.575359E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3069 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.90 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.24K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3069 Max w this run +w_max level proc position run w_max level timestep +0.457E+00 34 258 22.5deg E 0.6deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3070 Model time: 1979-03-05 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044228 + +* 1 1 3 0.100000E+01 0.865143E-04 * +Number of iterations = 2 +Initial residual = 0.014119 +Final residual = 0.000044 +Average conv. rate = 0.055658 + +* 1 2 2 0.141193E-01 0.437391E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107312 +Final residual = 0.000013 +Average conv. rate = 0.050024 + +* 2 1 3 0.107312E+00 0.134337E-04 * +Number of iterations = 1 +Initial residual = 0.001245 +Final residual = 0.000057 +Average conv. rate = 0.045927 + +* 2 2 1 0.124477E-02 0.571689E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3070 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.93 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.31K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3070 Max w this run +w_max level proc position run w_max level timestep +0.411E+00 80 385 20.6deg E 55.6deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3071 Model time: 1979-03-05 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044209 + +* 1 1 3 0.100000E+01 0.864010E-04 * +Number of iterations = 2 +Initial residual = 0.014170 +Final residual = 0.000045 +Average conv. rate = 0.056248 + +* 1 2 2 0.141701E-01 0.448321E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108341 +Final residual = 0.000015 +Average conv. rate = 0.051983 + +* 2 1 3 0.108341E+00 0.152190E-04 * +Number of iterations = 1 +Initial residual = 0.001253 +Final residual = 0.000057 +Average conv. rate = 0.045781 + +* 2 2 1 0.125268E-02 0.573486E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3071 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.96 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3071 Max w this run +w_max level proc position run w_max level timestep +0.462E+00 40 197 61.9deg E -16.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3072 Model time: 1979-03-06 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044264 + +* 1 1 3 0.100000E+01 0.867240E-04 * +Number of iterations = 2 +Initial residual = 0.014075 +Final residual = 0.000045 +Average conv. rate = 0.056524 + +* 1 2 2 0.140746E-01 0.449677E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108885 +Final residual = 0.000015 +Average conv. rate = 0.051380 + +* 2 1 3 0.108885E+00 0.147687E-04 * +Number of iterations = 1 +Initial residual = 0.001258 +Final residual = 0.000058 +Average conv. rate = 0.045766 + +* 2 2 1 0.125818E-02 0.575819E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13053E+25 +tot dry energy 0.13054E+25 +gr( rho cal) 0.38099E+24 +KE( rho cal) 0.82439E+21 +KEu(rho cal) 0.63253E+21 +KEv(rho cal) 0.19186E+21 +KEw(rho cal) 0.12028E+16 +cvT( rho cal) 0.92363E+24 +lq ( rho cal) 0.30663E+23 +lqcf( rho cal) 0.68724E+20 +lqcl( rho cal) 0.41873E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12302E+17 KG +Initial moisture = 0.12355E+17 KG +change in moisture = -0.53149E+14 KG +Moisture added E-P in period = -0.52220E+14 KG +Error in moisture = -0.92906E+12 KG +Error as % of change = 0.17480E+01 +q ( rho cal) 0.12260E+17 +qcf( rho cal) 0.27479E+14 +qcl( rho cal) 0.14770E+14 +FINAL TOTAL ENERGY = 0.13053E+25 J/ +INITIAL TOTAL ENERGY = 0.13053E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.56518E+20 J/ +FLUXES INTO ATM OVER PERIOD = 0.61774E+20 J/ +ERROR IN ENERGY BUDGET = 0.52564E+19 J/ +TEMP CORRECTION OVER A DAY = 0.14273E-02 K +TEMPERATURE CORRECTION RATE = 0.16520E-07 K/S +FLUX CORRECTION (ATM) = 0.11927E+00 W/M2 + +Minimum theta level 1 for timestep 3072 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.00 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.45K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3072 Max w this run +w_max level proc position run w_max level timestep +0.451E+00 27 226 22.5deg E -0.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6468.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6468.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD5 +REPLANCA - time interpolation for ancillary field, stashcode 216 +targ_time,time1,time2 -6420.00000 -12396.00000 -3636.00000 +hours,int,period -32768 12 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1162 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 9 Number of steps129 +STASH code in dataset 216 STASH code requested 216 +'start' position of lookup tables for dataset 4in overall lookup array 182173 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6468.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6468.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6468.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6468.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3073 Model time: 1979-03-06 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044583 + +* 1 1 3 0.100000E+01 0.886141E-04 * +Number of iterations = 2 +Initial residual = 0.014100 +Final residual = 0.000045 +Average conv. rate = 0.056744 + +* 1 2 2 0.140998E-01 0.453994E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109875 +Final residual = 0.000013 +Average conv. rate = 0.049571 + +* 2 1 3 0.109875E+00 0.133841E-04 * +Number of iterations = 1 +Initial residual = 0.001274 +Final residual = 0.000058 +Average conv. rate = 0.045575 + +* 2 2 1 0.127427E-02 0.580753E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3073 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.05 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.51K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3073 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 38 226 24.4deg E -4.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3074 Model time: 1979-03-06 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044088 + +* 1 1 3 0.100000E+01 0.856977E-04 * +Number of iterations = 2 +Initial residual = 0.014048 +Final residual = 0.000045 +Average conv. rate = 0.056291 + +* 1 2 2 0.140482E-01 0.445142E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109853 +Final residual = 0.000015 +Average conv. rate = 0.051426 + +* 2 1 3 0.109853E+00 0.149406E-04 * +Number of iterations = 1 +Initial residual = 0.001283 +Final residual = 0.000058 +Average conv. rate = 0.045311 + +* 2 2 1 0.128315E-02 0.581404E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3074 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.09 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3074 Max w this run +w_max level proc position run w_max level timestep +0.522E+00 38 226 24.4deg E -4.4deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3075 Model time: 1979-03-06 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044224 + +* 1 1 3 0.100000E+01 0.864912E-04 * +Number of iterations = 2 +Initial residual = 0.014167 +Final residual = 0.000048 +Average conv. rate = 0.057923 + +* 1 2 2 0.141674E-01 0.475331E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110153 +Final residual = 0.000015 +Average conv. rate = 0.050924 + +* 2 1 3 0.110153E+00 0.145467E-04 * +Number of iterations = 1 +Initial residual = 0.001294 +Final residual = 0.000059 +Average conv. rate = 0.045254 + +* 2 2 1 0.129440E-02 0.585771E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3075 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.14 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3075 Max w this run +w_max level proc position run w_max level timestep +0.543E+00 36 249 69.4deg W -3.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3076 Model time: 1979-03-06 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044679 + +* 1 1 3 0.100000E+01 0.891907E-04 * +Number of iterations = 2 +Initial residual = 0.014228 +Final residual = 0.000047 +Average conv. rate = 0.057598 + +* 1 2 2 0.142275E-01 0.472010E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109317 +Final residual = 0.000014 +Average conv. rate = 0.050274 + +* 2 1 3 0.109317E+00 0.138904E-04 * +Number of iterations = 1 +Initial residual = 0.001286 +Final residual = 0.000058 +Average conv. rate = 0.045294 + +* 2 2 1 0.128636E-02 0.582641E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3076 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.19 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.59K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3076 Max w this run +w_max level proc position run w_max level timestep +0.652E+00 37 249 69.4deg W -3.1deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3077 Model time: 1979-03-06 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043704 + +* 1 1 3 0.100000E+01 0.834789E-04 * +Number of iterations = 2 +Initial residual = 0.014298 +Final residual = 0.000048 +Average conv. rate = 0.058228 + +* 1 2 2 0.142982E-01 0.484786E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109144 +Final residual = 0.000013 +Average conv. rate = 0.048977 + +* 2 1 3 0.109144E+00 0.128227E-04 * +Number of iterations = 1 +Initial residual = 0.001282 +Final residual = 0.000058 +Average conv. rate = 0.045045 + +* 2 2 1 0.128233E-02 0.577634E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3077 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.25 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.59K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3077 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 37 249 69.4deg W -3.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3078 Model time: 1979-03-06 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043663 + +* 1 1 3 0.100000E+01 0.832412E-04 * +Number of iterations = 2 +Initial residual = 0.014314 +Final residual = 0.000047 +Average conv. rate = 0.057423 + +* 1 2 2 0.143139E-01 0.471993E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107595 +Final residual = 0.000013 +Average conv. rate = 0.048929 + +* 2 1 3 0.107595E+00 0.126036E-04 * +Number of iterations = 1 +Initial residual = 0.001250 +Final residual = 0.000057 +Average conv. rate = 0.045424 + +* 2 2 1 0.124996E-02 0.567780E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3078 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.30 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3078 Max w this run +w_max level proc position run w_max level timestep +0.481E+00 82 418 31.9deg E 60.6deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3079 Model time: 1979-03-06 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043839 + +* 1 1 3 0.100000E+01 0.842543E-04 * +Number of iterations = 2 +Initial residual = 0.014416 +Final residual = 0.000046 +Average conv. rate = 0.056260 + +* 1 2 2 0.144156E-01 0.456277E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106445 +Final residual = 0.000014 +Average conv. rate = 0.051121 + +* 2 1 3 0.106445E+00 0.142204E-04 * +Number of iterations = 1 +Initial residual = 0.001237 +Final residual = 0.000057 +Average conv. rate = 0.046415 + +* 2 2 1 0.123677E-02 0.574043E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3079 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.36 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3079 Max w this run +w_max level proc position run w_max level timestep +0.449E+00 82 418 30.0deg E 60.6deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3080 Model time: 1979-03-06 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043870 + +* 1 1 3 0.100000E+01 0.844291E-04 * +Number of iterations = 2 +Initial residual = 0.014442 +Final residual = 0.000045 +Average conv. rate = 0.056073 + +* 1 2 2 0.144419E-01 0.454075E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104452 +Final residual = 0.000014 +Average conv. rate = 0.050789 + +* 2 1 3 0.104452E+00 0.136842E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000057 +Average conv. rate = 0.046580 + +* 2 2 1 0.122176E-02 0.569090E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3080 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.41 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.49K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3080 Max w this run +w_max level proc position run w_max level timestep +0.454E+00 81 419 41.3deg E 60.6deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3081 Model time: 1979-03-06 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043236 + +* 1 1 3 0.100000E+01 0.808249E-04 * +Number of iterations = 2 +Initial residual = 0.014526 +Final residual = 0.000045 +Average conv. rate = 0.055711 + +* 1 2 2 0.145261E-01 0.450847E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103515 +Final residual = 0.000013 +Average conv. rate = 0.050560 + +* 2 1 3 0.103515E+00 0.133792E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000057 +Average conv. rate = 0.047639 + +* 2 2 1 0.120621E-02 0.574631E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3081 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.46 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.42K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3081 Max w this run +w_max level proc position run w_max level timestep +0.460E+00 81 419 39.4deg E 60.6deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3082 Model time: 1979-03-06 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043924 + +* 1 1 3 0.100000E+01 0.847457E-04 * +Number of iterations = 2 +Initial residual = 0.014445 +Final residual = 0.000045 +Average conv. rate = 0.055510 + +* 1 2 2 0.144449E-01 0.445103E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102258 +Final residual = 0.000012 +Average conv. rate = 0.048780 + +* 2 1 3 0.102258E+00 0.118694E-04 * +Number of iterations = 1 +Initial residual = 0.001193 +Final residual = 0.000058 +Average conv. rate = 0.048536 + +* 2 2 1 0.119313E-02 0.579105E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3082 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.52 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3082 Max w this run +w_max level proc position run w_max level timestep +0.474E+00 81 419 39.4deg E 60.6deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3083 Model time: 1979-03-06 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044612 + +* 1 1 3 0.100000E+01 0.887900E-04 * +Number of iterations = 2 +Initial residual = 0.014454 +Final residual = 0.000045 +Average conv. rate = 0.055753 + +* 1 2 2 0.144544E-01 0.449301E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102154 +Final residual = 0.000013 +Average conv. rate = 0.049810 + +* 2 1 3 0.102154E+00 0.126246E-04 * +Number of iterations = 1 +Initial residual = 0.001180 +Final residual = 0.000058 +Average conv. rate = 0.049425 + +* 2 2 1 0.118011E-02 0.583274E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3083 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.57 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.28K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3083 Max w this run +w_max level proc position run w_max level timestep +0.495E+00 82 418 28.1deg E 61.9deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3084 Model time: 1979-03-06 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043643 + +* 1 1 3 0.100000E+01 0.831283E-04 * +Number of iterations = 2 +Initial residual = 0.014469 +Final residual = 0.000044 +Average conv. rate = 0.055023 + +* 1 2 2 0.144688E-01 0.438049E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101297 +Final residual = 0.000013 +Average conv. rate = 0.049927 + +* 2 1 3 0.101297E+00 0.126064E-04 * +Number of iterations = 1 +Initial residual = 0.001187 +Final residual = 0.000059 +Average conv. rate = 0.049766 + +* 2 2 1 0.118677E-02 0.590604E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3084 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.62 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3084 Max w this run +w_max level proc position run w_max level timestep +0.510E+00 82 418 26.3deg E 61.9deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3085 Model time: 1979-03-06 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043628 + +* 1 1 3 0.100000E+01 0.830406E-04 * +Number of iterations = 2 +Initial residual = 0.014520 +Final residual = 0.000047 +Average conv. rate = 0.056842 + +* 1 2 2 0.145195E-01 0.469134E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100720 +Final residual = 0.000013 +Average conv. rate = 0.050551 + +* 2 1 3 0.100720E+00 0.130108E-04 * +Number of iterations = 1 +Initial residual = 0.001178 +Final residual = 0.000060 +Average conv. rate = 0.050949 + +* 2 2 1 0.117761E-02 0.599982E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3085 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.67 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3085 Max w this run +w_max level proc position run w_max level timestep +0.501E+00 82 418 24.4deg E 61.9deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3086 Model time: 1979-03-06 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043285 + +* 1 1 3 0.100000E+01 0.810973E-04 * +Number of iterations = 2 +Initial residual = 0.014415 +Final residual = 0.000045 +Average conv. rate = 0.055962 + +* 1 2 2 0.144147E-01 0.451425E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100180 +Final residual = 0.000012 +Average conv. rate = 0.049798 + +* 2 1 3 0.100180E+00 0.123717E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000061 +Average conv. rate = 0.051406 + +* 2 2 1 0.118789E-02 0.610642E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3086 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.72 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.07K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3086 Max w this run +w_max level proc position run w_max level timestep +0.491E+00 82 418 22.5deg E 61.9deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3087 Model time: 1979-03-06 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042891 + +* 1 1 3 0.100000E+01 0.789022E-04 * +Number of iterations = 2 +Initial residual = 0.014412 +Final residual = 0.000046 +Average conv. rate = 0.056224 + +* 1 2 2 0.144121E-01 0.455582E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099855 +Final residual = 0.000012 +Average conv. rate = 0.049820 + +* 2 1 3 0.998547E-01 0.123473E-04 * +Number of iterations = 1 +Initial residual = 0.001198 +Final residual = 0.000062 +Average conv. rate = 0.051486 + +* 2 2 1 0.119752E-02 0.616559E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3087 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.77 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3087 Max w this run +w_max level proc position run w_max level timestep +0.461E+00 28 164 45.0deg E -26.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3088 Model time: 1979-03-06 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043037 + +* 1 1 3 0.100000E+01 0.797103E-04 * +Number of iterations = 2 +Initial residual = 0.014349 +Final residual = 0.000047 +Average conv. rate = 0.057068 + +* 1 2 2 0.143494E-01 0.467331E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099170 +Final residual = 0.000012 +Average conv. rate = 0.049840 + +* 2 1 3 0.991703E-01 0.122778E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000062 +Average conv. rate = 0.051279 + +* 2 2 1 0.120753E-02 0.619211E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3088 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.82 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3088 Max w this run +w_max level proc position run w_max level timestep +0.439E+00 81 419 33.8deg E 61.9deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3089 Model time: 1979-03-06 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043148 + +* 1 1 3 0.100000E+01 0.803301E-04 * +Number of iterations = 2 +Initial residual = 0.014357 +Final residual = 0.000047 +Average conv. rate = 0.057341 + +* 1 2 2 0.143570E-01 0.472064E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099568 +Final residual = 0.000013 +Average conv. rate = 0.050251 + +* 2 1 3 0.995684E-01 0.126342E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000063 +Average conv. rate = 0.051906 + +* 2 2 1 0.120596E-02 0.625963E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3089 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.87 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3089 Max w this run +w_max level proc position run w_max level timestep +0.431E+00 40 197 61.9deg E -16.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3090 Model time: 1979-03-06 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043005 + +* 1 1 3 0.100000E+01 0.795367E-04 * +Number of iterations = 2 +Initial residual = 0.014382 +Final residual = 0.000046 +Average conv. rate = 0.056669 + +* 1 2 2 0.143817E-01 0.461847E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098713 +Final residual = 0.000013 +Average conv. rate = 0.050566 + +* 2 1 3 0.987128E-01 0.127632E-04 * +Number of iterations = 1 +Initial residual = 0.001199 +Final residual = 0.000063 +Average conv. rate = 0.052560 + +* 2 2 1 0.119887E-02 0.630120E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3090 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.92 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3090 Max w this run +w_max level proc position run w_max level timestep +0.447E+00 38 268 138.8deg E 8.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3091 Model time: 1979-03-06 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043366 + +* 1 1 3 0.100000E+01 0.815519E-04 * +Number of iterations = 2 +Initial residual = 0.014579 +Final residual = 0.000046 +Average conv. rate = 0.056314 + +* 1 2 2 0.145789E-01 0.462330E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098032 +Final residual = 0.000012 +Average conv. rate = 0.050308 + +* 2 1 3 0.980320E-01 0.124822E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000064 +Average conv. rate = 0.053679 + +* 2 2 1 0.118527E-02 0.636235E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3091 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.96 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.78K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3091 Max w this run +w_max level proc position run w_max level timestep +0.488E+00 39 268 138.8deg E 8.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3092 Model time: 1979-03-06 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043514 + +* 1 1 3 0.100000E+01 0.823933E-04 * +Number of iterations = 2 +Initial residual = 0.014653 +Final residual = 0.000046 +Average conv. rate = 0.055964 + +* 1 2 2 0.146527E-01 0.458916E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097534 +Final residual = 0.000013 +Average conv. rate = 0.050849 + +* 2 1 3 0.975342E-01 0.128233E-04 * +Number of iterations = 1 +Initial residual = 0.001186 +Final residual = 0.000064 +Average conv. rate = 0.054117 + +* 2 2 1 0.118635E-02 0.642014E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3092 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.01 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.72K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3092 Max w this run +w_max level proc position run w_max level timestep +0.438E+00 40 268 138.8deg E 8.1deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3093 Model time: 1979-03-06 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043355 + +* 1 1 3 0.100000E+01 0.814923E-04 * +Number of iterations = 2 +Initial residual = 0.014797 +Final residual = 0.000047 +Average conv. rate = 0.056236 + +* 1 2 2 0.147966E-01 0.467936E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098385 +Final residual = 0.000012 +Average conv. rate = 0.050046 + +* 2 1 3 0.983853E-01 0.123321E-04 * +Number of iterations = 1 +Initial residual = 0.001190 +Final residual = 0.000065 +Average conv. rate = 0.054859 + +* 2 2 1 0.119041E-02 0.653043E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3093 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.05 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.67K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3093 Max w this run +w_max level proc position run w_max level timestep +0.433E+00 36 250 67.5deg W -6.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3094 Model time: 1979-03-06 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043366 + +* 1 1 3 0.100000E+01 0.815517E-04 * +Number of iterations = 2 +Initial residual = 0.014811 +Final residual = 0.000044 +Average conv. rate = 0.054504 + +* 1 2 2 0.148107E-01 0.439977E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098602 +Final residual = 0.000013 +Average conv. rate = 0.051156 + +* 2 1 3 0.986024E-01 0.132003E-04 * +Number of iterations = 1 +Initial residual = 0.001205 +Final residual = 0.000067 +Average conv. rate = 0.055840 + +* 2 2 1 0.120455E-02 0.672618E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3094 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.08 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3094 Max w this run +w_max level proc position run w_max level timestep +0.405E+00 36 250 67.5deg W -6.9deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3095 Model time: 1979-03-06 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044007 + +* 1 1 3 0.100000E+01 0.852229E-04 * +Number of iterations = 2 +Initial residual = 0.014773 +Final residual = 0.000047 +Average conv. rate = 0.056339 + +* 1 2 2 0.147732E-01 0.468909E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099891 +Final residual = 0.000013 +Average conv. rate = 0.050296 + +* 2 1 3 0.998914E-01 0.127094E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000069 +Average conv. rate = 0.056875 + +* 2 2 1 0.120775E-02 0.686910E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3095 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.11 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3095 Max w this run +w_max level proc position run w_max level timestep +0.464E+00 82 419 39.4deg E 60.6deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3096 Model time: 1979-03-06 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043367 + +* 1 1 3 0.100000E+01 0.815587E-04 * +Number of iterations = 2 +Initial residual = 0.014616 +Final residual = 0.000046 +Average conv. rate = 0.056292 + +* 1 2 2 0.146160E-01 0.463154E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099087 +Final residual = 0.000013 +Average conv. rate = 0.050414 + +* 2 1 3 0.990873E-01 0.126963E-04 * +Number of iterations = 1 +Initial residual = 0.001212 +Final residual = 0.000069 +Average conv. rate = 0.056966 + +* 2 2 1 0.121187E-02 0.690358E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3096 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.14 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.52K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3096 Max w this run +w_max level proc position run w_max level timestep +0.480E+00 29 268 138.8deg E 8.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3097 Model time: 1979-03-06 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043286 + +* 1 1 3 0.100000E+01 0.811026E-04 * +Number of iterations = 2 +Initial residual = 0.014659 +Final residual = 0.000049 +Average conv. rate = 0.058040 + +* 1 2 2 0.146594E-01 0.493827E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099121 +Final residual = 0.000014 +Average conv. rate = 0.051665 + +* 2 1 3 0.991208E-01 0.136694E-04 * +Number of iterations = 1 +Initial residual = 0.001218 +Final residual = 0.000070 +Average conv. rate = 0.057573 + +* 2 2 1 0.121836E-02 0.701449E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3097 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.16 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3097 Max w this run +w_max level proc position run w_max level timestep +0.532E+00 30 268 138.8deg E 8.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3098 Model time: 1979-03-06 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043054 + +* 1 1 3 0.100000E+01 0.798092E-04 * +Number of iterations = 2 +Initial residual = 0.014604 +Final residual = 0.000045 +Average conv. rate = 0.055548 + +* 1 2 2 0.146043E-01 0.450623E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099277 +Final residual = 0.000013 +Average conv. rate = 0.051263 + +* 2 1 3 0.992766E-01 0.133741E-04 * +Number of iterations = 1 +Initial residual = 0.001215 +Final residual = 0.000070 +Average conv. rate = 0.057764 + +* 2 2 1 0.121459E-02 0.701591E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3098 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.18 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3098 Max w this run +w_max level proc position run w_max level timestep +0.539E+00 30 268 138.8deg E 8.1deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3099 Model time: 1979-03-06 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043418 + +* 1 1 3 0.100000E+01 0.818501E-04 * +Number of iterations = 2 +Initial residual = 0.014575 +Final residual = 0.000045 +Average conv. rate = 0.055695 + +* 1 2 2 0.145752E-01 0.452119E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100295 +Final residual = 0.000013 +Average conv. rate = 0.051205 + +* 2 1 3 0.100295E+00 0.134655E-04 * +Number of iterations = 1 +Initial residual = 0.001218 +Final residual = 0.000071 +Average conv. rate = 0.057959 + +* 2 2 1 0.121797E-02 0.705923E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3099 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.20 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.42K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3099 Max w this run +w_max level proc position run w_max level timestep +0.561E+00 27 268 138.8deg E 8.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3100 Model time: 1979-03-06 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042947 + +* 1 1 3 0.100000E+01 0.792116E-04 * +Number of iterations = 2 +Initial residual = 0.014513 +Final residual = 0.000045 +Average conv. rate = 0.055919 + +* 1 2 2 0.145127E-01 0.453808E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099810 +Final residual = 0.000014 +Average conv. rate = 0.051383 + +* 2 1 3 0.998095E-01 0.135403E-04 * +Number of iterations = 1 +Initial residual = 0.001202 +Final residual = 0.000070 +Average conv. rate = 0.058334 + +* 2 2 1 0.120200E-02 0.701173E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3100 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.21 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.40K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3100 Max w this run +w_max level proc position run w_max level timestep +0.571E+00 27 268 138.8deg E 8.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3101 Model time: 1979-03-06 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043970 + +* 1 1 3 0.100000E+01 0.850124E-04 * +Number of iterations = 2 +Initial residual = 0.014537 +Final residual = 0.000046 +Average conv. rate = 0.056478 + +* 1 2 2 0.145365E-01 0.463680E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100678 +Final residual = 0.000013 +Average conv. rate = 0.050925 + +* 2 1 3 0.100678E+00 0.132958E-04 * +Number of iterations = 1 +Initial residual = 0.001201 +Final residual = 0.000070 +Average conv. rate = 0.058169 + +* 2 2 1 0.120110E-02 0.698670E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3101 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.23 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3101 Max w this run +w_max level proc position run w_max level timestep +0.584E+00 30 268 138.8deg E 8.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3102 Model time: 1979-03-06 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043300 + +* 1 1 3 0.100000E+01 0.811807E-04 * +Number of iterations = 2 +Initial residual = 0.014458 +Final residual = 0.000043 +Average conv. rate = 0.054675 + +* 1 2 2 0.144583E-01 0.432203E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100247 +Final residual = 0.000013 +Average conv. rate = 0.051163 + +* 2 1 3 0.100247E+00 0.134258E-04 * +Number of iterations = 1 +Initial residual = 0.001195 +Final residual = 0.000068 +Average conv. rate = 0.057099 + +* 2 2 1 0.119456E-02 0.682086E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3102 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.26 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.36K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3102 Max w this run +w_max level proc position run w_max level timestep +0.461E+00 28 268 138.8deg E 8.1deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3103 Model time: 1979-03-06 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043836 + +* 1 1 3 0.100000E+01 0.842345E-04 * +Number of iterations = 2 +Initial residual = 0.014478 +Final residual = 0.000045 +Average conv. rate = 0.055874 + +* 1 2 2 0.144782E-01 0.452002E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099811 +Final residual = 0.000014 +Average conv. rate = 0.052272 + +* 2 1 3 0.998112E-01 0.142558E-04 * +Number of iterations = 1 +Initial residual = 0.001187 +Final residual = 0.000068 +Average conv. rate = 0.057176 + +* 2 2 1 0.118743E-02 0.678922E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3103 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.29 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.34K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3103 Max w this run +w_max level proc position run w_max level timestep +0.497E+00 38 249 71.3deg W -5.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3104 Model time: 1979-03-06 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043979 + +* 1 1 3 0.100000E+01 0.850633E-04 * +Number of iterations = 2 +Initial residual = 0.014390 +Final residual = 0.000044 +Average conv. rate = 0.055106 + +* 1 2 2 0.143899E-01 0.436972E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099883 +Final residual = 0.000014 +Average conv. rate = 0.051986 + +* 2 1 3 0.998831E-01 0.140334E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000067 +Average conv. rate = 0.056209 + +* 2 2 1 0.118825E-02 0.667904E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3104 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.31 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3104 Max w this run +w_max level proc position run w_max level timestep +0.449E+00 29 268 138.8deg E 8.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3105 Model time: 1979-03-06 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043755 + +* 1 1 3 0.100000E+01 0.837679E-04 * +Number of iterations = 2 +Initial residual = 0.014390 +Final residual = 0.000044 +Average conv. rate = 0.055226 + +* 1 2 2 0.143901E-01 0.438891E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099427 +Final residual = 0.000013 +Average conv. rate = 0.051332 + +* 2 1 3 0.994274E-01 0.134481E-04 * +Number of iterations = 1 +Initial residual = 0.001187 +Final residual = 0.000066 +Average conv. rate = 0.055896 + +* 2 2 1 0.118651E-02 0.663209E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3105 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.35 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3105 Max w this run +w_max level proc position run w_max level timestep +0.452E+00 30 268 138.8deg E 8.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3106 Model time: 1979-03-06 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043177 + +* 1 1 3 0.100000E+01 0.804916E-04 * +Number of iterations = 2 +Initial residual = 0.014318 +Final residual = 0.000044 +Average conv. rate = 0.055249 + +* 1 2 2 0.143182E-01 0.437053E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098535 +Final residual = 0.000014 +Average conv. rate = 0.051670 + +* 2 1 3 0.985351E-01 0.135931E-04 * +Number of iterations = 1 +Initial residual = 0.001179 +Final residual = 0.000065 +Average conv. rate = 0.055380 + +* 2 2 1 0.117947E-02 0.653188E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3106 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.39 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.42K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3106 Max w this run +w_max level proc position run w_max level timestep +0.488E+00 36 250 67.5deg W -9.4deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3107 Model time: 1979-03-06 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043235 + +* 1 1 3 0.100000E+01 0.808198E-04 * +Number of iterations = 2 +Initial residual = 0.014394 +Final residual = 0.000044 +Average conv. rate = 0.055097 + +* 1 2 2 0.143943E-01 0.436959E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099339 +Final residual = 0.000013 +Average conv. rate = 0.051277 + +* 2 1 3 0.993393E-01 0.133931E-04 * +Number of iterations = 1 +Initial residual = 0.001173 +Final residual = 0.000063 +Average conv. rate = 0.053978 + +* 2 2 1 0.117312E-02 0.633221E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3107 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.47 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3107 Max w this run +w_max level proc position run w_max level timestep +0.520E+00 33 268 138.8deg E 8.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3108 Model time: 1979-03-06 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043616 + +* 1 1 3 0.100000E+01 0.829728E-04 * +Number of iterations = 2 +Initial residual = 0.014411 +Final residual = 0.000043 +Average conv. rate = 0.054881 + +* 1 2 2 0.144109E-01 0.434052E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098513 +Final residual = 0.000013 +Average conv. rate = 0.050480 + +* 2 1 3 0.985127E-01 0.126721E-04 * +Number of iterations = 1 +Initial residual = 0.001162 +Final residual = 0.000062 +Average conv. rate = 0.053077 + +* 2 2 1 0.116204E-02 0.616779E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3108 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.58 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3108 Max w this run +w_max level proc position run w_max level timestep +0.485E+00 33 268 138.8deg E 8.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3109 Model time: 1979-03-06 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043947 + +* 1 1 3 0.100000E+01 0.848739E-04 * +Number of iterations = 2 +Initial residual = 0.014425 +Final residual = 0.000044 +Average conv. rate = 0.055016 + +* 1 2 2 0.144255E-01 0.436628E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100567 +Final residual = 0.000012 +Average conv. rate = 0.049738 + +* 2 1 3 0.100567E+00 0.123746E-04 * +Number of iterations = 1 +Initial residual = 0.001175 +Final residual = 0.000062 +Average conv. rate = 0.052472 + +* 2 2 1 0.117475E-02 0.616411E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3109 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.70 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.63K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3109 Max w this run +w_max level proc position run w_max level timestep +0.479E+00 39 268 140.6deg E 8.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3110 Model time: 1979-03-06 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043944 + +* 1 1 3 0.100000E+01 0.848612E-04 * +Number of iterations = 2 +Initial residual = 0.014344 +Final residual = 0.000043 +Average conv. rate = 0.054764 + +* 1 2 2 0.143439E-01 0.430191E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099936 +Final residual = 0.000012 +Average conv. rate = 0.049744 + +* 2 1 3 0.999364E-01 0.123009E-04 * +Number of iterations = 1 +Initial residual = 0.001179 +Final residual = 0.000061 +Average conv. rate = 0.051600 + +* 2 2 1 0.117921E-02 0.608474E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3110 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.84 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.51K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3110 Max w this run +w_max level proc position run w_max level timestep +0.523E+00 37 268 140.6deg E 8.1deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3111 Model time: 1979-03-06 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043651 + +* 1 1 3 0.100000E+01 0.831744E-04 * +Number of iterations = 2 +Initial residual = 0.014364 +Final residual = 0.000045 +Average conv. rate = 0.056224 + +* 1 2 2 0.143641E-01 0.454063E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101371 +Final residual = 0.000013 +Average conv. rate = 0.050768 + +* 2 1 3 0.101371E+00 0.132647E-04 * +Number of iterations = 1 +Initial residual = 0.001194 +Final residual = 0.000061 +Average conv. rate = 0.051225 + +* 2 2 1 0.119426E-02 0.611765E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3111 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.00 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.65K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3111 Max w this run +w_max level proc position run w_max level timestep +0.535E+00 38 268 140.6deg E 8.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3112 Model time: 1979-03-06 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043975 + +* 1 1 3 0.100000E+01 0.850381E-04 * +Number of iterations = 2 +Initial residual = 0.014290 +Final residual = 0.000046 +Average conv. rate = 0.056666 + +* 1 2 2 0.142895E-01 0.458841E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101628 +Final residual = 0.000013 +Average conv. rate = 0.050615 + +* 2 1 3 0.101628E+00 0.131780E-04 * +Number of iterations = 1 +Initial residual = 0.001191 +Final residual = 0.000060 +Average conv. rate = 0.050748 + +* 2 2 1 0.119101E-02 0.604411E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3112 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.17 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.75K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3112 Max w this run +w_max level proc position run w_max level timestep +0.466E+00 38 268 140.6deg E 8.1deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3113 Model time: 1979-03-06 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044368 + +* 1 1 3 0.100000E+01 0.873422E-04 * +Number of iterations = 2 +Initial residual = 0.014316 +Final residual = 0.000045 +Average conv. rate = 0.055919 + +* 1 2 2 0.143159E-01 0.447653E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101757 +Final residual = 0.000013 +Average conv. rate = 0.050424 + +* 2 1 3 0.101757E+00 0.130456E-04 * +Number of iterations = 1 +Initial residual = 0.001200 +Final residual = 0.000061 +Average conv. rate = 0.050530 + +* 2 2 1 0.120004E-02 0.606377E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3113 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.35 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.46K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3113 Max w this run +w_max level proc position run w_max level timestep +0.485E+00 37 268 140.6deg E 8.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3114 Model time: 1979-03-06 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043313 + +* 1 1 3 0.100000E+01 0.812572E-04 * +Number of iterations = 2 +Initial residual = 0.014241 +Final residual = 0.000043 +Average conv. rate = 0.054979 + +* 1 2 2 0.142411E-01 0.430463E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104065 +Final residual = 0.000012 +Average conv. rate = 0.049059 + +* 2 1 3 0.104065E+00 0.122875E-04 * +Number of iterations = 1 +Initial residual = 0.001213 +Final residual = 0.000060 +Average conv. rate = 0.049673 + +* 2 2 1 0.121250E-02 0.602291E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3114 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.54 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.53K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3114 Max w this run +w_max level proc position run w_max level timestep +0.405E+00 36 287 5.6deg W 8.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3115 Model time: 1979-03-06 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044179 + +* 1 1 3 0.100000E+01 0.862298E-04 * +Number of iterations = 2 +Initial residual = 0.014234 +Final residual = 0.000044 +Average conv. rate = 0.055595 + +* 1 2 2 0.142342E-01 0.439956E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104150 +Final residual = 0.000013 +Average conv. rate = 0.049768 + +* 2 1 3 0.104150E+00 0.128382E-04 * +Number of iterations = 1 +Initial residual = 0.001223 +Final residual = 0.000061 +Average conv. rate = 0.050053 + +* 2 2 1 0.122321E-02 0.612257E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3115 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.73 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3115 Max w this run +w_max level proc position run w_max level timestep +0.420E+00 39 268 140.6deg E 8.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3116 Model time: 1979-03-06 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044315 + +* 1 1 3 0.100000E+01 0.870275E-04 * +Number of iterations = 2 +Initial residual = 0.014141 +Final residual = 0.000044 +Average conv. rate = 0.055702 + +* 1 2 2 0.141407E-01 0.438750E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104826 +Final residual = 0.000013 +Average conv. rate = 0.049445 + +* 2 1 3 0.104826E+00 0.126721E-04 * +Number of iterations = 1 +Initial residual = 0.001224 +Final residual = 0.000060 +Average conv. rate = 0.048703 + +* 2 2 1 0.122437E-02 0.596302E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3116 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.92 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.17K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3116 Max w this run +w_max level proc position run w_max level timestep +0.397E+00 39 226 28.1deg E -8.1deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3117 Model time: 1979-03-06 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044254 + +* 1 1 3 0.100000E+01 0.866678E-04 * +Number of iterations = 2 +Initial residual = 0.014217 +Final residual = 0.000045 +Average conv. rate = 0.056031 + +* 1 2 2 0.142171E-01 0.446342E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106588 +Final residual = 0.000013 +Average conv. rate = 0.049015 + +* 2 1 3 0.106588E+00 0.125516E-04 * +Number of iterations = 1 +Initial residual = 0.001232 +Final residual = 0.000059 +Average conv. rate = 0.048216 + +* 2 2 1 0.123181E-02 0.593929E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3117 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.10 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.22K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3117 Max w this run +w_max level proc position run w_max level timestep +0.463E+00 40 226 28.1deg E -8.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3118 Model time: 1979-03-06 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043827 + +* 1 1 3 0.100000E+01 0.841852E-04 * +Number of iterations = 2 +Initial residual = 0.014180 +Final residual = 0.000044 +Average conv. rate = 0.055758 + +* 1 2 2 0.141798E-01 0.440845E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107436 +Final residual = 0.000012 +Average conv. rate = 0.048566 + +* 2 1 3 0.107436E+00 0.123071E-04 * +Number of iterations = 1 +Initial residual = 0.001239 +Final residual = 0.000060 +Average conv. rate = 0.048104 + +* 2 2 1 0.123863E-02 0.595824E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3118 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.30 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.19K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3118 Max w this run +w_max level proc position run w_max level timestep +0.476E+00 40 226 28.1deg E -8.1deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3119 Model time: 1979-03-06 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043890 + +* 1 1 3 0.100000E+01 0.845454E-04 * +Number of iterations = 2 +Initial residual = 0.014245 +Final residual = 0.000045 +Average conv. rate = 0.055953 + +* 1 2 2 0.142451E-01 0.445973E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107933 +Final residual = 0.000012 +Average conv. rate = 0.047540 + +* 2 1 3 0.107933E+00 0.115968E-04 * +Number of iterations = 1 +Initial residual = 0.001246 +Final residual = 0.000059 +Average conv. rate = 0.047444 + +* 2 2 1 0.124647E-02 0.591370E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3119 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.49 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3119 Max w this run +w_max level proc position run w_max level timestep +0.453E+00 33 226 26.3deg E -0.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3120 Model time: 1979-03-07 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044465 + +* 1 1 3 0.100000E+01 0.879138E-04 * +Number of iterations = 2 +Initial residual = 0.014223 +Final residual = 0.000045 +Average conv. rate = 0.056217 + +* 1 2 2 0.142232E-01 0.449504E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107401 +Final residual = 0.000011 +Average conv. rate = 0.047332 + +* 2 1 3 0.107401E+00 0.113883E-04 * +Number of iterations = 1 +Initial residual = 0.001221 +Final residual = 0.000058 +Average conv. rate = 0.047706 + +* 2 2 1 0.122139E-02 0.582674E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51418E+19 +Tot energy 0.13053E+25 +tot dry energy 0.13054E+25 +gr( rho cal) 0.38097E+24 +KE( rho cal) 0.81779E+21 +KEu(rho cal) 0.63556E+21 +KEv(rho cal) 0.18223E+21 +KEw(rho cal) 0.12232E+16 +cvT( rho cal) 0.92359E+24 +lq ( rho cal) 0.30612E+23 +lqcf( rho cal) 0.64302E+20 +lqcl( rho cal) 0.41614E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12280E+17 KG +Initial moisture = 0.12302E+17 KG +change in moisture = -0.22214E+14 KG +Moisture added E-P in period = -0.22789E+14 KG +Error in moisture = 0.57421E+12 KG +Error as % of change = -0.25849E+01 +q ( rho cal) 0.12240E+17 +qcf( rho cal) 0.25711E+14 +qcl( rho cal) 0.14679E+14 +FINAL TOTAL ENERGY = 0.13053E+25 J/ +INITIAL TOTAL ENERGY = 0.13053E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.61177E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.57799E+20 J/ +ERROR IN ENERGY BUDGET = 0.33785E+19 J/ +TEMP CORRECTION OVER A DAY = 0.91737E-03 K +TEMPERATURE CORRECTION RATE = 0.10618E-07 K/S +FLUX CORRECTION (ATM) = 0.76657E-01 W/M2 + +Minimum theta level 1 for timestep 3120 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.68 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.08K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3120 Max w this run +w_max level proc position run w_max level timestep +0.501E+00 34 226 26.3deg E -0.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6444.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6444.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6444.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6444.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6444.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6444.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3121 Model time: 1979-03-07 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044552 + +* 1 1 3 0.100000E+01 0.884322E-04 * +Number of iterations = 2 +Initial residual = 0.014281 +Final residual = 0.000046 +Average conv. rate = 0.056524 + +* 1 2 2 0.142806E-01 0.456258E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107905 +Final residual = 0.000012 +Average conv. rate = 0.048488 + +* 2 1 3 0.107905E+00 0.123010E-04 * +Number of iterations = 1 +Initial residual = 0.001215 +Final residual = 0.000058 +Average conv. rate = 0.047655 + +* 2 2 1 0.121525E-02 0.579127E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3121 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.88 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3121 Max w this run +w_max level proc position run w_max level timestep +0.500E+00 35 226 26.3deg E -0.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3122 Model time: 1979-03-07 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043935 + +* 1 1 3 0.100000E+01 0.848044E-04 * +Number of iterations = 2 +Initial residual = 0.014199 +Final residual = 0.000045 +Average conv. rate = 0.056505 + +* 1 2 2 0.141989E-01 0.453337E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108198 +Final residual = 0.000012 +Average conv. rate = 0.048478 + +* 2 1 3 0.108198E+00 0.123270E-04 * +Number of iterations = 1 +Initial residual = 0.001203 +Final residual = 0.000057 +Average conv. rate = 0.047610 + +* 2 2 1 0.120287E-02 0.572685E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3122 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.07 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3122 Max w this run +w_max level proc position run w_max level timestep +0.468E+00 34 178 148.1deg W -25.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3123 Model time: 1979-03-07 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044444 + +* 1 1 3 0.100000E+01 0.877893E-04 * +Number of iterations = 2 +Initial residual = 0.014289 +Final residual = 0.000045 +Average conv. rate = 0.055998 + +* 1 2 2 0.142890E-01 0.448065E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107432 +Final residual = 0.000013 +Average conv. rate = 0.049060 + +* 2 1 3 0.107432E+00 0.126856E-04 * +Number of iterations = 1 +Initial residual = 0.001193 +Final residual = 0.000056 +Average conv. rate = 0.047154 + +* 2 2 1 0.119252E-02 0.562322E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3123 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.34 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3123 Max w this run +w_max level proc position run w_max level timestep +0.507E+00 34 178 148.1deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3124 Model time: 1979-03-07 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044097 + +* 1 1 3 0.100000E+01 0.857514E-04 * +Number of iterations = 2 +Initial residual = 0.014316 +Final residual = 0.000045 +Average conv. rate = 0.055991 + +* 1 2 2 0.143158E-01 0.448794E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106290 +Final residual = 0.000012 +Average conv. rate = 0.048276 + +* 2 1 3 0.106290E+00 0.119589E-04 * +Number of iterations = 1 +Initial residual = 0.001189 +Final residual = 0.000055 +Average conv. rate = 0.046256 + +* 2 2 1 0.118910E-02 0.550028E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3124 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.62 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.62K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3124 Max w this run +w_max level proc position run w_max level timestep +0.537E+00 34 178 148.1deg W -25.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3125 Model time: 1979-03-07 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044369 + +* 1 1 3 0.100000E+01 0.873459E-04 * +Number of iterations = 2 +Initial residual = 0.014394 +Final residual = 0.000046 +Average conv. rate = 0.056446 + +* 1 2 2 0.143939E-01 0.458606E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106454 +Final residual = 0.000013 +Average conv. rate = 0.049786 + +* 2 1 3 0.106454E+00 0.131371E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000054 +Average conv. rate = 0.045350 + +* 2 2 1 0.118835E-02 0.538909E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3125 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.89 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.49K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3125 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 33 178 148.1deg W -25.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3126 Model time: 1979-03-07 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043671 + +* 1 1 3 0.100000E+01 0.832892E-04 * +Number of iterations = 2 +Initial residual = 0.014320 +Final residual = 0.000045 +Average conv. rate = 0.055974 + +* 1 2 2 0.143195E-01 0.448641E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104836 +Final residual = 0.000011 +Average conv. rate = 0.047853 + +* 2 1 3 0.104836E+00 0.114881E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000053 +Average conv. rate = 0.045146 + +* 2 2 1 0.118456E-02 0.534785E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3126 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.14 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3126 Max w this run +w_max level proc position run w_max level timestep +0.511E+00 24 143 176.2deg E -36.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3127 Model time: 1979-03-07 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043849 + +* 1 1 3 0.100000E+01 0.843087E-04 * +Number of iterations = 2 +Initial residual = 0.014404 +Final residual = 0.000045 +Average conv. rate = 0.055954 + +* 1 2 2 0.144039E-01 0.450966E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104181 +Final residual = 0.000012 +Average conv. rate = 0.048631 + +* 2 1 3 0.104181E+00 0.119822E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000055 +Average conv. rate = 0.045540 + +* 2 2 1 0.120371E-02 0.548169E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3127 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.40 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.23K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3127 Max w this run +w_max level proc position run w_max level timestep +0.524E+00 24 143 176.2deg E -36.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3128 Model time: 1979-03-07 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044015 + +* 1 1 3 0.100000E+01 0.852686E-04 * +Number of iterations = 2 +Initial residual = 0.014409 +Final residual = 0.000045 +Average conv. rate = 0.055746 + +* 1 2 2 0.144095E-01 0.447786E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103589 +Final residual = 0.000012 +Average conv. rate = 0.049208 + +* 2 1 3 0.103589E+00 0.123430E-04 * +Number of iterations = 1 +Initial residual = 0.001238 +Final residual = 0.000056 +Average conv. rate = 0.045024 + +* 2 2 1 0.123751E-02 0.557184E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3128 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.61 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3128 Max w this run +w_max level proc position run w_max level timestep +0.490E+00 24 143 176.2deg E -36.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3129 Model time: 1979-03-07 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043157 + +* 1 1 3 0.100000E+01 0.803795E-04 * +Number of iterations = 2 +Initial residual = 0.014541 +Final residual = 0.000045 +Average conv. rate = 0.055677 + +* 1 2 2 0.145413E-01 0.450778E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102538 +Final residual = 0.000012 +Average conv. rate = 0.049488 + +* 2 1 3 0.102538E+00 0.124274E-04 * +Number of iterations = 1 +Initial residual = 0.001229 +Final residual = 0.000056 +Average conv. rate = 0.045369 + +* 2 2 1 0.122910E-02 0.557634E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3129 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.41 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.74K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3129 Max w this run +w_max level proc position run w_max level timestep +0.467E+00 24 143 176.2deg E -36.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3130 Model time: 1979-03-07 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043255 + +* 1 1 3 0.100000E+01 0.809298E-04 * +Number of iterations = 2 +Initial residual = 0.014437 +Final residual = 0.000045 +Average conv. rate = 0.055598 + +* 1 2 2 0.144369E-01 0.446271E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099813 +Final residual = 0.000011 +Average conv. rate = 0.048436 + +* 2 1 3 0.998132E-01 0.113423E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000055 +Average conv. rate = 0.045711 + +* 2 2 1 0.120650E-02 0.551503E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3130 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.20 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3130 Max w this run +w_max level proc position run w_max level timestep +0.489E+00 26 143 176.2deg E -36.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3131 Model time: 1979-03-07 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043492 + +* 1 1 3 0.100000E+01 0.822675E-04 * +Number of iterations = 2 +Initial residual = 0.014433 +Final residual = 0.000045 +Average conv. rate = 0.055948 + +* 1 2 2 0.144335E-01 0.451799E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099490 +Final residual = 0.000011 +Average conv. rate = 0.048137 + +* 2 1 3 0.994904E-01 0.110975E-04 * +Number of iterations = 1 +Initial residual = 0.001196 +Final residual = 0.000055 +Average conv. rate = 0.045790 + +* 2 2 1 0.119565E-02 0.547495E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3131 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.99 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.15K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3131 Max w this run +w_max level proc position run w_max level timestep +0.528E+00 27 143 176.2deg E -36.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3132 Model time: 1979-03-07 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043374 + +* 1 1 3 0.100000E+01 0.815976E-04 * +Number of iterations = 2 +Initial residual = 0.014507 +Final residual = 0.000045 +Average conv. rate = 0.055663 + +* 1 2 2 0.145066E-01 0.449467E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098359 +Final residual = 0.000011 +Average conv. rate = 0.048138 + +* 2 1 3 0.983594E-01 0.109719E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000054 +Average conv. rate = 0.045638 + +* 2 2 1 0.118507E-02 0.540846E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3132 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.79 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3132 Max w this run +w_max level proc position run w_max level timestep +0.529E+00 28 143 176.2deg E -36.9deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3133 Model time: 1979-03-07 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043300 + +* 1 1 3 0.100000E+01 0.811840E-04 * +Number of iterations = 2 +Initial residual = 0.014568 +Final residual = 0.000046 +Average conv. rate = 0.056149 + +* 1 2 2 0.145680E-01 0.459293E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100141 +Final residual = 0.000011 +Average conv. rate = 0.048213 + +* 2 1 3 0.100141E+00 0.112230E-04 * +Number of iterations = 1 +Initial residual = 0.001187 +Final residual = 0.000054 +Average conv. rate = 0.045422 + +* 2 2 1 0.118693E-02 0.539126E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3133 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.59 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.53K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3133 Max w this run +w_max level proc position run w_max level timestep +0.457E+00 28 143 176.2deg E -36.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3134 Model time: 1979-03-07 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043502 + +* 1 1 3 0.100000E+01 0.823267E-04 * +Number of iterations = 2 +Initial residual = 0.014539 +Final residual = 0.000046 +Average conv. rate = 0.056368 + +* 1 2 2 0.145390E-01 0.461952E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098161 +Final residual = 0.000011 +Average conv. rate = 0.048332 + +* 2 1 3 0.981611E-01 0.110825E-04 * +Number of iterations = 1 +Initial residual = 0.001176 +Final residual = 0.000053 +Average conv. rate = 0.044837 + +* 2 2 1 0.117643E-02 0.527474E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3134 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.40 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.70K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3134 Max w this run +w_max level proc position run w_max level timestep +0.443E+00 80 414 16.9deg W 46.9deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3135 Model time: 1979-03-07 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043512 + +* 1 1 3 0.100000E+01 0.823829E-04 * +Number of iterations = 2 +Initial residual = 0.014506 +Final residual = 0.000046 +Average conv. rate = 0.056475 + +* 1 2 2 0.145064E-01 0.462669E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098209 +Final residual = 0.000011 +Average conv. rate = 0.048252 + +* 2 1 3 0.982092E-01 0.110333E-04 * +Number of iterations = 1 +Initial residual = 0.001184 +Final residual = 0.000053 +Average conv. rate = 0.044648 + +* 2 2 1 0.118434E-02 0.528778E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3135 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.22 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3135 Max w this run +w_max level proc position run w_max level timestep +0.426E+00 80 414 16.9deg W 46.9deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3136 Model time: 1979-03-07 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043126 + +* 1 1 3 0.100000E+01 0.802064E-04 * +Number of iterations = 2 +Initial residual = 0.014371 +Final residual = 0.000047 +Average conv. rate = 0.056909 + +* 1 2 2 0.143708E-01 0.465413E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097113 +Final residual = 0.000011 +Average conv. rate = 0.048491 + +* 2 1 3 0.971125E-01 0.110727E-04 * +Number of iterations = 1 +Initial residual = 0.001187 +Final residual = 0.000054 +Average conv. rate = 0.045637 + +* 2 2 1 0.118716E-02 0.541785E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3136 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.05 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3136 Max w this run +w_max level proc position run w_max level timestep +0.420E+00 80 414 18.8deg W 46.9deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3137 Model time: 1979-03-07 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043424 + +* 1 1 3 0.100000E+01 0.818836E-04 * +Number of iterations = 2 +Initial residual = 0.014337 +Final residual = 0.000045 +Average conv. rate = 0.055725 + +* 1 2 2 0.143373E-01 0.445215E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098129 +Final residual = 0.000012 +Average conv. rate = 0.049812 + +* 2 1 3 0.981285E-01 0.121280E-04 * +Number of iterations = 1 +Initial residual = 0.001190 +Final residual = 0.000054 +Average conv. rate = 0.045719 + +* 2 2 1 0.119021E-02 0.544154E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3137 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.90 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3137 Max w this run +w_max level proc position run w_max level timestep +0.437E+00 80 414 18.8deg W 46.9deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3138 Model time: 1979-03-07 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043648 + +* 1 1 3 0.100000E+01 0.831537E-04 * +Number of iterations = 2 +Initial residual = 0.014235 +Final residual = 0.000044 +Average conv. rate = 0.055896 + +* 1 2 2 0.142351E-01 0.444753E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098081 +Final residual = 0.000013 +Average conv. rate = 0.050441 + +* 2 1 3 0.980805E-01 0.125871E-04 * +Number of iterations = 1 +Initial residual = 0.001195 +Final residual = 0.000055 +Average conv. rate = 0.045788 + +* 2 2 1 0.119547E-02 0.547384E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3138 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.75 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.52K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3138 Max w this run +w_max level proc position run w_max level timestep +0.444E+00 80 414 20.6deg W 46.9deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3139 Model time: 1979-03-07 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044053 + +* 1 1 3 0.100000E+01 0.854910E-04 * +Number of iterations = 2 +Initial residual = 0.014286 +Final residual = 0.000045 +Average conv. rate = 0.055961 + +* 1 2 2 0.142860E-01 0.447385E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098806 +Final residual = 0.000011 +Average conv. rate = 0.047943 + +* 2 1 3 0.988063E-01 0.108886E-04 * +Number of iterations = 1 +Initial residual = 0.001200 +Final residual = 0.000055 +Average conv. rate = 0.045681 + +* 2 2 1 0.119955E-02 0.547965E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3139 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.61 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3139 Max w this run +w_max level proc position run w_max level timestep +0.442E+00 80 414 16.9deg W 48.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3140 Model time: 1979-03-07 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043876 + +* 1 1 3 0.100000E+01 0.844632E-04 * +Number of iterations = 2 +Initial residual = 0.014257 +Final residual = 0.000044 +Average conv. rate = 0.055672 + +* 1 2 2 0.142574E-01 0.441889E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098746 +Final residual = 0.000011 +Average conv. rate = 0.048366 + +* 2 1 3 0.987464E-01 0.111724E-04 * +Number of iterations = 1 +Initial residual = 0.001203 +Final residual = 0.000056 +Average conv. rate = 0.046174 + +* 2 2 1 0.120322E-02 0.555571E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3140 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.47 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3140 Max w this run +w_max level proc position run w_max level timestep +0.459E+00 80 414 18.8deg W 48.1deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3141 Model time: 1979-03-07 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043675 + +* 1 1 3 0.100000E+01 0.833092E-04 * +Number of iterations = 2 +Initial residual = 0.014360 +Final residual = 0.000045 +Average conv. rate = 0.055720 + +* 1 2 2 0.143597E-01 0.445820E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099899 +Final residual = 0.000012 +Average conv. rate = 0.048946 + +* 2 1 3 0.998990E-01 0.117139E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000056 +Average conv. rate = 0.046181 + +* 2 2 1 0.120790E-02 0.557823E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3141 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.35 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3141 Max w this run +w_max level proc position run w_max level timestep +0.458E+00 80 414 18.8deg W 48.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3142 Model time: 1979-03-07 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043842 + +* 1 1 3 0.100000E+01 0.842669E-04 * +Number of iterations = 2 +Initial residual = 0.014416 +Final residual = 0.000045 +Average conv. rate = 0.055915 + +* 1 2 2 0.144156E-01 0.450703E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099262 +Final residual = 0.000013 +Average conv. rate = 0.050196 + +* 2 1 3 0.992621E-01 0.125545E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000055 +Average conv. rate = 0.045730 + +* 2 2 1 0.120833E-02 0.552565E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3142 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.22 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.71K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3142 Max w this run +w_max level proc position run w_max level timestep +0.456E+00 80 414 18.8deg W 48.1deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3143 Model time: 1979-03-07 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043442 + +* 1 1 3 0.100000E+01 0.819816E-04 * +Number of iterations = 2 +Initial residual = 0.014578 +Final residual = 0.000045 +Average conv. rate = 0.055796 + +* 1 2 2 0.145782E-01 0.453844E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100651 +Final residual = 0.000013 +Average conv. rate = 0.050151 + +* 2 1 3 0.100651E+00 0.126955E-04 * +Number of iterations = 1 +Initial residual = 0.001210 +Final residual = 0.000055 +Average conv. rate = 0.045411 + +* 2 2 1 0.121006E-02 0.549497E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3143 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.11 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3143 Max w this run +w_max level proc position run w_max level timestep +0.456E+00 80 414 16.9deg W 49.4deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3144 Model time: 1979-03-07 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043002 + +* 1 1 3 0.100000E+01 0.795160E-04 * +Number of iterations = 2 +Initial residual = 0.014566 +Final residual = 0.000045 +Average conv. rate = 0.055695 + +* 1 2 2 0.145664E-01 0.451837E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100569 +Final residual = 0.000013 +Average conv. rate = 0.050128 + +* 2 1 3 0.100569E+00 0.126678E-04 * +Number of iterations = 1 +Initial residual = 0.001200 +Final residual = 0.000055 +Average conv. rate = 0.045672 + +* 2 2 1 0.120025E-02 0.548173E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3144 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.00 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3144 Max w this run +w_max level proc position run w_max level timestep +0.438E+00 80 414 16.9deg W 49.4deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3145 Model time: 1979-03-07 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043935 + +* 1 1 3 0.100000E+01 0.848081E-04 * +Number of iterations = 2 +Initial residual = 0.014582 +Final residual = 0.000045 +Average conv. rate = 0.055755 + +* 1 2 2 0.145818E-01 0.453300E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102523 +Final residual = 0.000013 +Average conv. rate = 0.050363 + +* 2 1 3 0.102523E+00 0.130963E-04 * +Number of iterations = 1 +Initial residual = 0.001216 +Final residual = 0.000055 +Average conv. rate = 0.045066 + +* 2 2 1 0.121580E-02 0.547906E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3145 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.91 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3145 Max w this run +w_max level proc position run w_max level timestep +0.448E+00 33 188 39.4deg W -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3146 Model time: 1979-03-07 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043249 + +* 1 1 3 0.100000E+01 0.808983E-04 * +Number of iterations = 2 +Initial residual = 0.014486 +Final residual = 0.000045 +Average conv. rate = 0.055835 + +* 1 2 2 0.144859E-01 0.451611E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101885 +Final residual = 0.000012 +Average conv. rate = 0.049157 + +* 2 1 3 0.101885E+00 0.121020E-04 * +Number of iterations = 1 +Initial residual = 0.001216 +Final residual = 0.000054 +Average conv. rate = 0.044543 + +* 2 2 1 0.121584E-02 0.541575E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3146 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.82 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.12K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3146 Max w this run +w_max level proc position run w_max level timestep +0.464E+00 84 350 18.8deg W 33.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3147 Model time: 1979-03-07 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043253 + +* 1 1 3 0.100000E+01 0.809172E-04 * +Number of iterations = 2 +Initial residual = 0.014553 +Final residual = 0.000045 +Average conv. rate = 0.055681 + +* 1 2 2 0.145527E-01 0.451183E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104095 +Final residual = 0.000012 +Average conv. rate = 0.049227 + +* 2 1 3 0.104095E+00 0.124181E-04 * +Number of iterations = 1 +Initial residual = 0.001226 +Final residual = 0.000054 +Average conv. rate = 0.044093 + +* 2 2 1 0.122569E-02 0.540441E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3147 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.74 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3147 Max w this run +w_max level proc position run w_max level timestep +0.481E+00 84 382 18.8deg W 34.4deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3148 Model time: 1979-03-07 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043482 + +* 1 1 3 0.100000E+01 0.822084E-04 * +Number of iterations = 2 +Initial residual = 0.014479 +Final residual = 0.000045 +Average conv. rate = 0.055672 + +* 1 2 2 0.144792E-01 0.448761E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102216 +Final residual = 0.000013 +Average conv. rate = 0.050872 + +* 2 1 3 0.102216E+00 0.134572E-04 * +Number of iterations = 1 +Initial residual = 0.001229 +Final residual = 0.000055 +Average conv. rate = 0.044941 + +* 2 2 1 0.122913E-02 0.552391E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3148 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.66 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.23K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3148 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 38 227 35.6deg E -5.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3149 Model time: 1979-03-07 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043903 + +* 1 1 3 0.100000E+01 0.846219E-04 * +Number of iterations = 2 +Initial residual = 0.014448 +Final residual = 0.000045 +Average conv. rate = 0.055903 + +* 1 2 2 0.144479E-01 0.451515E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104173 +Final residual = 0.000012 +Average conv. rate = 0.048612 + +* 2 1 3 0.104173E+00 0.119673E-04 * +Number of iterations = 1 +Initial residual = 0.001231 +Final residual = 0.000055 +Average conv. rate = 0.044587 + +* 2 2 1 0.123120E-02 0.548954E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3149 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.60 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.28K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3149 Max w this run +w_max level proc position run w_max level timestep +0.503E+00 35 227 35.6deg E -5.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3150 Model time: 1979-03-07 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043330 + +* 1 1 3 0.100000E+01 0.813516E-04 * +Number of iterations = 2 +Initial residual = 0.014304 +Final residual = 0.000045 +Average conv. rate = 0.056261 + +* 1 2 2 0.143039E-01 0.452756E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103570 +Final residual = 0.000013 +Average conv. rate = 0.050190 + +* 2 1 3 0.103570E+00 0.130945E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000055 +Average conv. rate = 0.044681 + +* 2 2 1 0.122188E-02 0.545950E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3150 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.53 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.42K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3150 Max w this run +w_max level proc position run w_max level timestep +0.536E+00 35 227 35.6deg E -5.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3151 Model time: 1979-03-07 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043789 + +* 1 1 3 0.100000E+01 0.839629E-04 * +Number of iterations = 2 +Initial residual = 0.014331 +Final residual = 0.000046 +Average conv. rate = 0.056540 + +* 1 2 2 0.143307E-01 0.458113E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104616 +Final residual = 0.000013 +Average conv. rate = 0.049984 + +* 2 1 3 0.104616E+00 0.130645E-04 * +Number of iterations = 1 +Initial residual = 0.001238 +Final residual = 0.000054 +Average conv. rate = 0.044003 + +* 2 2 1 0.123819E-02 0.544848E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3151 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.48 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3151 Max w this run +w_max level proc position run w_max level timestep +0.532E+00 36 227 35.6deg E -5.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3152 Model time: 1979-03-07 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044091 + +* 1 1 3 0.100000E+01 0.857118E-04 * +Number of iterations = 2 +Initial residual = 0.014345 +Final residual = 0.000046 +Average conv. rate = 0.056442 + +* 1 2 2 0.143450E-01 0.456985E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103739 +Final residual = 0.000013 +Average conv. rate = 0.050250 + +* 2 1 3 0.103739E+00 0.131631E-04 * +Number of iterations = 1 +Initial residual = 0.001239 +Final residual = 0.000055 +Average conv. rate = 0.044123 + +* 2 2 1 0.123912E-02 0.546733E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3152 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.45 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.49K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3152 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 37 227 35.6deg E -5.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3153 Model time: 1979-03-07 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044008 + +* 1 1 3 0.100000E+01 0.852315E-04 * +Number of iterations = 2 +Initial residual = 0.014480 +Final residual = 0.000046 +Average conv. rate = 0.056328 + +* 1 2 2 0.144799E-01 0.459419E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103461 +Final residual = 0.000013 +Average conv. rate = 0.050198 + +* 2 1 3 0.103461E+00 0.130866E-04 * +Number of iterations = 1 +Initial residual = 0.001239 +Final residual = 0.000055 +Average conv. rate = 0.044385 + +* 2 2 1 0.123907E-02 0.549962E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3153 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.46 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3153 Max w this run +w_max level proc position run w_max level timestep +0.483E+00 37 227 35.6deg E -5.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3154 Model time: 1979-03-07 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043624 + +* 1 1 3 0.100000E+01 0.830207E-04 * +Number of iterations = 2 +Initial residual = 0.014526 +Final residual = 0.000046 +Average conv. rate = 0.056280 + +* 1 2 2 0.145259E-01 0.460092E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101753 +Final residual = 0.000012 +Average conv. rate = 0.048610 + +* 2 1 3 0.101753E+00 0.116874E-04 * +Number of iterations = 1 +Initial residual = 0.001236 +Final residual = 0.000055 +Average conv. rate = 0.044215 + +* 2 2 1 0.123602E-02 0.546510E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3154 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.52 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3154 Max w this run +w_max level proc position run w_max level timestep +0.479E+00 84 381 24.4deg W 38.1deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3155 Model time: 1979-03-07 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044353 + +* 1 1 3 0.100000E+01 0.872479E-04 * +Number of iterations = 2 +Initial residual = 0.014544 +Final residual = 0.000046 +Average conv. rate = 0.056432 + +* 1 2 2 0.145443E-01 0.463181E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102679 +Final residual = 0.000013 +Average conv. rate = 0.050224 + +* 2 1 3 0.102679E+00 0.130081E-04 * +Number of iterations = 1 +Initial residual = 0.001248 +Final residual = 0.000054 +Average conv. rate = 0.043376 + +* 2 2 1 0.124823E-02 0.541438E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3155 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.66 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3155 Max w this run +w_max level proc position run w_max level timestep +0.474E+00 84 381 26.3deg W 38.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3156 Model time: 1979-03-07 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044607 + +* 1 1 3 0.100000E+01 0.887558E-04 * +Number of iterations = 2 +Initial residual = 0.014459 +Final residual = 0.000047 +Average conv. rate = 0.056815 + +* 1 2 2 0.144591E-01 0.466732E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102955 +Final residual = 0.000012 +Average conv. rate = 0.048885 + +* 2 1 3 0.102955E+00 0.120275E-04 * +Number of iterations = 1 +Initial residual = 0.001256 +Final residual = 0.000054 +Average conv. rate = 0.043108 + +* 2 2 1 0.125647E-02 0.541643E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3156 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.17 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.06K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3156 Max w this run +w_max level proc position run w_max level timestep +0.464E+00 80 407 99.4deg W 50.6deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3157 Model time: 1979-03-07 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043866 + +* 1 1 3 0.100000E+01 0.844079E-04 * +Number of iterations = 2 +Initial residual = 0.014417 +Final residual = 0.000047 +Average conv. rate = 0.057379 + +* 1 2 2 0.144165E-01 0.474646E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104078 +Final residual = 0.000012 +Average conv. rate = 0.048791 + +* 2 1 3 0.104078E+00 0.120886E-04 * +Number of iterations = 1 +Initial residual = 0.001263 +Final residual = 0.000054 +Average conv. rate = 0.042904 + +* 2 2 1 0.126254E-02 0.541684E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3157 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.86 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.52K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3157 Max w this run +w_max level proc position run w_max level timestep +0.429E+00 80 407 99.4deg W 50.6deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3158 Model time: 1979-03-07 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044844 + +* 1 1 3 0.100000E+01 0.901831E-04 * +Number of iterations = 2 +Initial residual = 0.014285 +Final residual = 0.000047 +Average conv. rate = 0.057465 + +* 1 2 2 0.142850E-01 0.471717E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104203 +Final residual = 0.000012 +Average conv. rate = 0.049096 + +* 2 1 3 0.104203E+00 0.123316E-04 * +Number of iterations = 1 +Initial residual = 0.001273 +Final residual = 0.000054 +Average conv. rate = 0.042812 + +* 2 2 1 0.127269E-02 0.544868E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3158 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.64 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.90K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3158 Max w this run +w_max level proc position run w_max level timestep +0.438E+00 80 407 101.3deg W 50.6deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3159 Model time: 1979-03-07 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044333 + +* 1 1 3 0.100000E+01 0.871306E-04 * +Number of iterations = 2 +Initial residual = 0.014328 +Final residual = 0.000048 +Average conv. rate = 0.057600 + +* 1 2 2 0.143283E-01 0.475369E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104952 +Final residual = 0.000014 +Average conv. rate = 0.051519 + +* 2 1 3 0.104952E+00 0.143514E-04 * +Number of iterations = 1 +Initial residual = 0.001283 +Final residual = 0.000055 +Average conv. rate = 0.042532 + +* 2 2 1 0.128325E-02 0.545793E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3159 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.47 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.23K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3159 Max w this run +w_max level proc position run w_max level timestep +0.433E+00 80 407 99.4deg W 51.9deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3160 Model time: 1979-03-07 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044002 + +* 1 1 3 0.100000E+01 0.851938E-04 * +Number of iterations = 2 +Initial residual = 0.014344 +Final residual = 0.000047 +Average conv. rate = 0.057505 + +* 1 2 2 0.143438E-01 0.474317E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105111 +Final residual = 0.000014 +Average conv. rate = 0.051286 + +* 2 1 3 0.105111E+00 0.141793E-04 * +Number of iterations = 1 +Initial residual = 0.001292 +Final residual = 0.000055 +Average conv. rate = 0.042236 + +* 2 2 1 0.129209E-02 0.545725E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3160 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.29 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.70K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3160 Max w this run +w_max level proc position run w_max level timestep +0.444E+00 32 179 142.5deg W -31.9deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3161 Model time: 1979-03-07 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043903 + +* 1 1 3 0.100000E+01 0.846233E-04 * +Number of iterations = 2 +Initial residual = 0.014372 +Final residual = 0.000048 +Average conv. rate = 0.057602 + +* 1 2 2 0.143719E-01 0.476867E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107104 +Final residual = 0.000011 +Average conv. rate = 0.047110 + +* 2 1 3 0.107104E+00 0.111982E-04 * +Number of iterations = 1 +Initial residual = 0.001312 +Final residual = 0.000056 +Average conv. rate = 0.042523 + +* 2 2 1 0.131224E-02 0.558005E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3161 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.06 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.07K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3161 Max w this run +w_max level proc position run w_max level timestep +0.474E+00 81 415 9.4deg W 53.1deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3162 Model time: 1979-03-07 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044244 + +* 1 1 3 0.100000E+01 0.866090E-04 * +Number of iterations = 2 +Initial residual = 0.014264 +Final residual = 0.000047 +Average conv. rate = 0.057519 + +* 1 2 2 0.142642E-01 0.471914E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106323 +Final residual = 0.000014 +Average conv. rate = 0.050675 + +* 2 1 3 0.106323E+00 0.138358E-04 * +Number of iterations = 1 +Initial residual = 0.001296 +Final residual = 0.000056 +Average conv. rate = 0.043297 + +* 2 2 1 0.129551E-02 0.560913E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3162 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.20 502 106.9deg W 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.28K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3162 Max w this run +w_max level proc position run w_max level timestep +0.472E+00 35 226 31.9deg E -0.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3163 Model time: 1979-03-07 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044611 + +* 1 1 3 0.100000E+01 0.887794E-04 * +Number of iterations = 2 +Initial residual = 0.014277 +Final residual = 0.000047 +Average conv. rate = 0.057648 + +* 1 2 2 0.142771E-01 0.474472E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108496 +Final residual = 0.000014 +Average conv. rate = 0.050530 + +* 2 1 3 0.108496E+00 0.139980E-04 * +Number of iterations = 1 +Initial residual = 0.001292 +Final residual = 0.000056 +Average conv. rate = 0.043606 + +* 2 2 1 0.129231E-02 0.563518E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3163 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.23 505 75.0deg W 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3163 Max w this run +w_max level proc position run w_max level timestep +0.480E+00 81 415 7.5deg W 54.4deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3164 Model time: 1979-03-07 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044275 + +* 1 1 3 0.100000E+01 0.867891E-04 * +Number of iterations = 2 +Initial residual = 0.014144 +Final residual = 0.000047 +Average conv. rate = 0.057828 + +* 1 2 2 0.141437E-01 0.472981E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107388 +Final residual = 0.000014 +Average conv. rate = 0.050412 + +* 2 1 3 0.107388E+00 0.137581E-04 * +Number of iterations = 1 +Initial residual = 0.001285 +Final residual = 0.000056 +Average conv. rate = 0.043675 + +* 2 2 1 0.128514E-02 0.561291E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3164 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.20 505 75.0deg W 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3164 Max w this run +w_max level proc position run w_max level timestep +0.490E+00 81 415 7.5deg W 54.4deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3165 Model time: 1979-03-07 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044708 + +* 1 1 3 0.100000E+01 0.893615E-04 * +Number of iterations = 2 +Initial residual = 0.014186 +Final residual = 0.000048 +Average conv. rate = 0.058167 + +* 1 2 2 0.141865E-01 0.479992E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109057 +Final residual = 0.000013 +Average conv. rate = 0.049334 + +* 2 1 3 0.109057E+00 0.130943E-04 * +Number of iterations = 1 +Initial residual = 0.001318 +Final residual = 0.000056 +Average conv. rate = 0.042673 + +* 2 2 1 0.131766E-02 0.562281E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3165 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.18 505 75.0deg W 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3165 Max w this run +w_max level proc position run w_max level timestep +0.482E+00 22 209 168.8deg W -18.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3166 Model time: 1979-03-07 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043934 + +* 1 1 3 0.100000E+01 0.847999E-04 * +Number of iterations = 2 +Initial residual = 0.014162 +Final residual = 0.000048 +Average conv. rate = 0.058311 + +* 1 2 2 0.141624E-01 0.481549E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108652 +Final residual = 0.000015 +Average conv. rate = 0.051870 + +* 2 1 3 0.108652E+00 0.151629E-04 * +Number of iterations = 1 +Initial residual = 0.001329 +Final residual = 0.000057 +Average conv. rate = 0.042950 + +* 2 2 1 0.132869E-02 0.570669E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3166 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.17 505 73.1deg W 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3166 Max w this run +w_max level proc position run w_max level timestep +0.509E+00 23 209 168.8deg W -18.1deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3167 Model time: 1979-03-07 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044046 + +* 1 1 3 0.100000E+01 0.854540E-04 * +Number of iterations = 2 +Initial residual = 0.014205 +Final residual = 0.000048 +Average conv. rate = 0.058084 + +* 1 2 2 0.142046E-01 0.479225E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109429 +Final residual = 0.000013 +Average conv. rate = 0.049609 + +* 2 1 3 0.109429E+00 0.133599E-04 * +Number of iterations = 1 +Initial residual = 0.001348 +Final residual = 0.000058 +Average conv. rate = 0.042812 + +* 2 2 1 0.134816E-02 0.577174E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3167 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.17 505 75.0deg W 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3167 Max w this run +w_max level proc position run w_max level timestep +0.550E+00 24 209 168.8deg W -18.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3168 Model time: 1979-03-08 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043493 + +* 1 1 3 0.100000E+01 0.822739E-04 * +Number of iterations = 2 +Initial residual = 0.014117 +Final residual = 0.000047 +Average conv. rate = 0.057909 + +* 1 2 2 0.141173E-01 0.473417E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109131 +Final residual = 0.000014 +Average conv. rate = 0.050064 + +* 2 1 3 0.109131E+00 0.136940E-04 * +Number of iterations = 1 +Initial residual = 0.001345 +Final residual = 0.000057 +Average conv. rate = 0.042699 + +* 2 2 1 0.134515E-02 0.574372E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13050E+25 +tot dry energy 0.13051E+25 +gr( rho cal) 0.38090E+24 +KE( rho cal) 0.79638E+21 +KEu(rho cal) 0.62094E+21 +KEv(rho cal) 0.17544E+21 +KEw(rho cal) 0.11651E+16 +cvT( rho cal) 0.92343E+24 +lq ( rho cal) 0.30667E+23 +lqcf( rho cal) 0.65971E+20 +lqcl( rho cal) 0.40837E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12303E+17 KG +Initial moisture = 0.12280E+17 KG +change in moisture = 0.22381E+14 KG +Moisture added E-P in period = 0.21804E+14 KG +Error in moisture = 0.57705E+12 KG +Error as % of change = 0.25783E+01 +q ( rho cal) 0.12262E+17 +qcf( rho cal) 0.26378E+14 +qcl( rho cal) 0.14405E+14 +FINAL TOTAL ENERGY = 0.13050E+25 J/ +INITIAL TOTAL ENERGY = 0.13053E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.23985E+21 J/ +FLUXES INTO ATM OVER PERIOD = -0.24293E+21 J/ +ERROR IN ENERGY BUDGET = -0.30872E+19 J/ +TEMP CORRECTION OVER A DAY = -0.83829E-03 K +TEMPERATURE CORRECTION RATE = -0.97025E-08 K/S +FLUX CORRECTION (ATM) = -0.70049E-01 W/M2 + +Minimum theta level 1 for timestep 3168 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.19 505 76.9deg W 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3168 Max w this run +w_max level proc position run w_max level timestep +0.568E+00 24 209 168.8deg W -18.1deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6420.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6420.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6420.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6420.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6420.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6420.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3169 Model time: 1979-03-08 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043480 + +* 1 1 3 0.100000E+01 0.821989E-04 * +Number of iterations = 2 +Initial residual = 0.014099 +Final residual = 0.000047 +Average conv. rate = 0.057860 + +* 1 2 2 0.140990E-01 0.472000E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110127 +Final residual = 0.000015 +Average conv. rate = 0.050973 + +* 2 1 3 0.110127E+00 0.145854E-04 * +Number of iterations = 1 +Initial residual = 0.001342 +Final residual = 0.000058 +Average conv. rate = 0.042978 + +* 2 2 1 0.134200E-02 0.576765E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3169 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.23 505 76.9deg W 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.59K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3169 Max w this run +w_max level proc position run w_max level timestep +0.593E+00 25 209 168.8deg W -18.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3170 Model time: 1979-03-08 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043391 + +* 1 1 3 0.100000E+01 0.816942E-04 * +Number of iterations = 2 +Initial residual = 0.014027 +Final residual = 0.000047 +Average conv. rate = 0.057701 + +* 1 2 2 0.140270E-01 0.467009E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108570 +Final residual = 0.000014 +Average conv. rate = 0.049993 + +* 2 1 3 0.108570E+00 0.135654E-04 * +Number of iterations = 1 +Initial residual = 0.001343 +Final residual = 0.000057 +Average conv. rate = 0.042261 + +* 2 2 1 0.134331E-02 0.567696E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3170 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.26 456 90.0deg E 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3170 Max w this run +w_max level proc position run w_max level timestep +0.588E+00 25 209 168.8deg W -18.1deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3171 Model time: 1979-03-08 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042787 + +* 1 1 3 0.100000E+01 0.783292E-04 * +Number of iterations = 2 +Initial residual = 0.014105 +Final residual = 0.000046 +Average conv. rate = 0.057124 + +* 1 2 2 0.141053E-01 0.460283E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108571 +Final residual = 0.000015 +Average conv. rate = 0.051426 + +* 2 1 3 0.108571E+00 0.147660E-04 * +Number of iterations = 1 +Initial residual = 0.001335 +Final residual = 0.000056 +Average conv. rate = 0.041932 + +* 2 2 1 0.133450E-02 0.559587E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3171 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.14 456 93.8deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.49K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3171 Max w this run +w_max level proc position run w_max level timestep +0.567E+00 27 209 168.8deg W -18.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3172 Model time: 1979-03-08 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043034 + +* 1 1 3 0.100000E+01 0.796959E-04 * +Number of iterations = 2 +Initial residual = 0.014126 +Final residual = 0.000046 +Average conv. rate = 0.056797 + +* 1 2 2 0.141260E-01 0.455691E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106670 +Final residual = 0.000013 +Average conv. rate = 0.050092 + +* 2 1 3 0.106670E+00 0.134072E-04 * +Number of iterations = 1 +Initial residual = 0.001311 +Final residual = 0.000056 +Average conv. rate = 0.042882 + +* 2 2 1 0.131080E-02 0.562102E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3172 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.99 456 93.8deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3172 Max w this run +w_max level proc position run w_max level timestep +0.617E+00 29 209 168.8deg W -18.1deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3173 Model time: 1979-03-08 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042778 + +* 1 1 3 0.100000E+01 0.782799E-04 * +Number of iterations = 2 +Initial residual = 0.014231 +Final residual = 0.000046 +Average conv. rate = 0.056607 + +* 1 2 2 0.142307E-01 0.455998E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109183 +Final residual = 0.000013 +Average conv. rate = 0.049199 + +* 2 1 3 0.109183E+00 0.130024E-04 * +Number of iterations = 1 +Initial residual = 0.001363 +Final residual = 0.000056 +Average conv. rate = 0.041223 + +* 2 2 1 0.136271E-02 0.561750E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3173 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.89 456 93.8deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.68K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3173 Max w this run +w_max level proc position run w_max level timestep +0.705E+00 31 209 168.8deg W -18.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3174 Model time: 1979-03-08 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043046 + +* 1 1 3 0.100000E+01 0.797607E-04 * +Number of iterations = 2 +Initial residual = 0.014235 +Final residual = 0.000044 +Average conv. rate = 0.055764 + +* 1 2 2 0.142353E-01 0.442670E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109005 +Final residual = 0.000015 +Average conv. rate = 0.051277 + +* 2 1 3 0.109005E+00 0.146969E-04 * +Number of iterations = 1 +Initial residual = 0.001345 +Final residual = 0.000055 +Average conv. rate = 0.041114 + +* 2 2 1 0.134518E-02 0.553056E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3174 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.81 456 93.8deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3174 Max w this run +w_max level proc position run w_max level timestep +0.607E+00 30 209 168.8deg W -18.1deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3175 Model time: 1979-03-08 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042708 + +* 1 1 3 0.100000E+01 0.778988E-04 * +Number of iterations = 2 +Initial residual = 0.014337 +Final residual = 0.000047 +Average conv. rate = 0.057398 + +* 1 2 2 0.143367E-01 0.472323E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107118 +Final residual = 0.000011 +Average conv. rate = 0.047316 + +* 2 1 3 0.107118E+00 0.113469E-04 * +Number of iterations = 1 +Initial residual = 0.001303 +Final residual = 0.000056 +Average conv. rate = 0.042830 + +* 2 2 1 0.130327E-02 0.558191E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3175 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.78 456 93.8deg E 75.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.82K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3175 Max w this run +w_max level proc position run w_max level timestep +0.605E+00 25 182 108.8deg W -28.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3176 Model time: 1979-03-08 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042922 + +* 1 1 3 0.100000E+01 0.790729E-04 * +Number of iterations = 2 +Initial residual = 0.014308 +Final residual = 0.000046 +Average conv. rate = 0.056915 + +* 1 2 2 0.143077E-01 0.463475E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103306 +Final residual = 0.000011 +Average conv. rate = 0.046923 + +* 2 1 3 0.103306E+00 0.106729E-04 * +Number of iterations = 1 +Initial residual = 0.001285 +Final residual = 0.000056 +Average conv. rate = 0.043503 + +* 2 2 1 0.128511E-02 0.559060E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3176 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.64 469 120.0deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.49K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3176 Max w this run +w_max level proc position run w_max level timestep +0.646E+00 25 182 108.8deg W -28.1deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3177 Model time: 1979-03-08 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043539 + +* 1 1 3 0.100000E+01 0.825366E-04 * +Number of iterations = 2 +Initial residual = 0.014373 +Final residual = 0.000045 +Average conv. rate = 0.055840 + +* 1 2 2 0.143727E-01 0.448156E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102744 +Final residual = 0.000012 +Average conv. rate = 0.048517 + +* 2 1 3 0.102744E+00 0.117337E-04 * +Number of iterations = 1 +Initial residual = 0.001290 +Final residual = 0.000057 +Average conv. rate = 0.043933 + +* 2 2 1 0.129047E-02 0.566948E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3177 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.43 469 120.0deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.63K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3177 Max w this run +w_max level proc position run w_max level timestep +0.579E+00 26 182 108.8deg W -28.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3178 Model time: 1979-03-08 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043126 + +* 1 1 3 0.100000E+01 0.802103E-04 * +Number of iterations = 2 +Initial residual = 0.014516 +Final residual = 0.000044 +Average conv. rate = 0.055146 + +* 1 2 2 0.145161E-01 0.441449E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100112 +Final residual = 0.000013 +Average conv. rate = 0.050283 + +* 2 1 3 0.100112E+00 0.127275E-04 * +Number of iterations = 1 +Initial residual = 0.001312 +Final residual = 0.000057 +Average conv. rate = 0.043749 + +* 2 2 1 0.131160E-02 0.573808E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3178 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.26 469 120.0deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.73K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3178 Max w this run +w_max level proc position run w_max level timestep +0.496E+00 27 182 108.8deg W -28.1deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3179 Model time: 1979-03-08 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043291 + +* 1 1 3 0.100000E+01 0.811302E-04 * +Number of iterations = 2 +Initial residual = 0.014818 +Final residual = 0.000044 +Average conv. rate = 0.054582 + +* 1 2 2 0.148181E-01 0.441468E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098656 +Final residual = 0.000012 +Average conv. rate = 0.049316 + +* 2 1 3 0.986562E-01 0.118329E-04 * +Number of iterations = 1 +Initial residual = 0.001225 +Final residual = 0.000055 +Average conv. rate = 0.044562 + +* 2 2 1 0.122540E-02 0.546066E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3179 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.08 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.08K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3179 Max w this run +w_max level proc position run w_max level timestep +0.470E+00 27 164 50.6deg E -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3180 Model time: 1979-03-08 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044108 + +* 1 1 3 0.100000E+01 0.858103E-04 * +Number of iterations = 2 +Initial residual = 0.014591 +Final residual = 0.000044 +Average conv. rate = 0.054886 + +* 1 2 2 0.145911E-01 0.439555E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096270 +Final residual = 0.000010 +Average conv. rate = 0.047411 + +* 2 1 3 0.962699E-01 0.102597E-04 * +Number of iterations = 1 +Initial residual = 0.001207 +Final residual = 0.000053 +Average conv. rate = 0.044240 + +* 2 2 1 0.120683E-02 0.533894E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3180 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.86 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.33K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3180 Max w this run +w_max level proc position run w_max level timestep +0.535E+00 26 164 50.6deg E -29.4deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3181 Model time: 1979-03-08 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043584 + +* 1 1 3 0.100000E+01 0.827906E-04 * +Number of iterations = 2 +Initial residual = 0.014351 +Final residual = 0.000046 +Average conv. rate = 0.056481 + +* 1 2 2 0.143515E-01 0.457824E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096803 +Final residual = 0.000013 +Average conv. rate = 0.051083 + +* 2 1 3 0.968030E-01 0.129037E-04 * +Number of iterations = 1 +Initial residual = 0.001216 +Final residual = 0.000054 +Average conv. rate = 0.044043 + +* 2 2 1 0.121583E-02 0.535491E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3181 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.66 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3181 Max w this run +w_max level proc position run w_max level timestep +0.546E+00 26 164 50.6deg E -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3182 Model time: 1979-03-08 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043745 + +* 1 1 3 0.100000E+01 0.837112E-04 * +Number of iterations = 2 +Initial residual = 0.014147 +Final residual = 0.000042 +Average conv. rate = 0.054716 + +* 1 2 2 0.141466E-01 0.423525E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096153 +Final residual = 0.000012 +Average conv. rate = 0.049404 + +* 2 1 3 0.961527E-01 0.115946E-04 * +Number of iterations = 1 +Initial residual = 0.001216 +Final residual = 0.000053 +Average conv. rate = 0.043981 + +* 2 2 1 0.121604E-02 0.534832E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3182 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.47 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3182 Max w this run +w_max level proc position run w_max level timestep +0.537E+00 25 164 50.6deg E -29.4deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3183 Model time: 1979-03-08 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043158 + +* 1 1 3 0.100000E+01 0.803848E-04 * +Number of iterations = 2 +Initial residual = 0.014079 +Final residual = 0.000044 +Average conv. rate = 0.055695 + +* 1 2 2 0.140786E-01 0.436713E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095881 +Final residual = 0.000012 +Average conv. rate = 0.050135 + +* 2 1 3 0.958812E-01 0.120828E-04 * +Number of iterations = 1 +Initial residual = 0.001203 +Final residual = 0.000054 +Average conv. rate = 0.044649 + +* 2 2 1 0.120333E-02 0.537277E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3183 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.29 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3183 Max w this run +w_max level proc position run w_max level timestep +0.514E+00 24 164 50.6deg E -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3184 Model time: 1979-03-08 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042839 + +* 1 1 3 0.100000E+01 0.786186E-04 * +Number of iterations = 2 +Initial residual = 0.014061 +Final residual = 0.000047 +Average conv. rate = 0.058006 + +* 1 2 2 0.140607E-01 0.473100E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094792 +Final residual = 0.000013 +Average conv. rate = 0.050924 + +* 2 1 3 0.947924E-01 0.125181E-04 * +Number of iterations = 1 +Initial residual = 0.001192 +Final residual = 0.000054 +Average conv. rate = 0.045214 + +* 2 2 1 0.119221E-02 0.539042E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3184 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.13 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3184 Max w this run +w_max level proc position run w_max level timestep +0.515E+00 25 164 50.6deg E -29.4deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3185 Model time: 1979-03-08 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043696 + +* 1 1 3 0.100000E+01 0.834284E-04 * +Number of iterations = 2 +Initial residual = 0.014210 +Final residual = 0.000046 +Average conv. rate = 0.056911 + +* 1 2 2 0.142101E-01 0.460242E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096117 +Final residual = 0.000013 +Average conv. rate = 0.051089 + +* 2 1 3 0.961169E-01 0.128169E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000054 +Average conv. rate = 0.044461 + +* 2 2 1 0.120778E-02 0.536991E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3185 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.99 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.15K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3185 Max w this run +w_max level proc position run w_max level timestep +0.520E+00 38 269 151.9deg E 0.6deg N 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3186 Model time: 1979-03-08 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042897 + +* 1 1 3 0.100000E+01 0.789384E-04 * +Number of iterations = 2 +Initial residual = 0.014280 +Final residual = 0.000046 +Average conv. rate = 0.056620 + +* 1 2 2 0.142804E-01 0.457803E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096452 +Final residual = 0.000011 +Average conv. rate = 0.048624 + +* 2 1 3 0.964515E-01 0.110882E-04 * +Number of iterations = 1 +Initial residual = 0.001209 +Final residual = 0.000054 +Average conv. rate = 0.044408 + +* 2 2 1 0.120864E-02 0.536730E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3186 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.86 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3186 Max w this run +w_max level proc position run w_max level timestep +0.494E+00 38 269 151.9deg E 0.6deg N 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3187 Model time: 1979-03-08 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044169 + +* 1 1 3 0.100000E+01 0.861685E-04 * +Number of iterations = 2 +Initial residual = 0.014372 +Final residual = 0.000046 +Average conv. rate = 0.056329 + +* 1 2 2 0.143717E-01 0.456005E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097207 +Final residual = 0.000014 +Average conv. rate = 0.052730 + +* 2 1 3 0.972069E-01 0.142517E-04 * +Number of iterations = 1 +Initial residual = 0.001233 +Final residual = 0.000055 +Average conv. rate = 0.044378 + +* 2 2 1 0.123326E-02 0.547297E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3187 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.75 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3187 Max w this run +w_max level proc position run w_max level timestep +0.469E+00 23 164 50.6deg E -29.4deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3188 Model time: 1979-03-08 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043246 + +* 1 1 3 0.100000E+01 0.808772E-04 * +Number of iterations = 2 +Initial residual = 0.014318 +Final residual = 0.000047 +Average conv. rate = 0.057322 + +* 1 2 2 0.143176E-01 0.470442E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096861 +Final residual = 0.000012 +Average conv. rate = 0.050128 + +* 2 1 3 0.968608E-01 0.122009E-04 * +Number of iterations = 1 +Initial residual = 0.001231 +Final residual = 0.000054 +Average conv. rate = 0.044007 + +* 2 2 1 0.123085E-02 0.541660E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3188 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.65 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3188 Max w this run +w_max level proc position run w_max level timestep +0.508E+00 32 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3189 Model time: 1979-03-08 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043709 + +* 1 1 3 0.100000E+01 0.835059E-04 * +Number of iterations = 2 +Initial residual = 0.014383 +Final residual = 0.000044 +Average conv. rate = 0.055605 + +* 1 2 2 0.143829E-01 0.444705E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097598 +Final residual = 0.000013 +Average conv. rate = 0.051050 + +* 2 1 3 0.975979E-01 0.129844E-04 * +Number of iterations = 1 +Initial residual = 0.001229 +Final residual = 0.000054 +Average conv. rate = 0.044162 + +* 2 2 1 0.122877E-02 0.542647E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3189 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.57 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3189 Max w this run +w_max level proc position run w_max level timestep +0.480E+00 30 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3190 Model time: 1979-03-08 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043312 + +* 1 1 3 0.100000E+01 0.812526E-04 * +Number of iterations = 2 +Initial residual = 0.014350 +Final residual = 0.000044 +Average conv. rate = 0.055663 + +* 1 2 2 0.143500E-01 0.444624E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095983 +Final residual = 0.000013 +Average conv. rate = 0.051067 + +* 2 1 3 0.959834E-01 0.127824E-04 * +Number of iterations = 1 +Initial residual = 0.001211 +Final residual = 0.000055 +Average conv. rate = 0.045389 + +* 2 2 1 0.121135E-02 0.549816E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3190 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.50 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3190 Max w this run +w_max level proc position run w_max level timestep +0.463E+00 30 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3191 Model time: 1979-03-08 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043424 + +* 1 1 3 0.100000E+01 0.818795E-04 * +Number of iterations = 2 +Initial residual = 0.014410 +Final residual = 0.000047 +Average conv. rate = 0.056915 + +* 1 2 2 0.144104E-01 0.466804E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096675 +Final residual = 0.000013 +Average conv. rate = 0.051368 + +* 2 1 3 0.966745E-01 0.131038E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000055 +Average conv. rate = 0.045929 + +* 2 2 1 0.120577E-02 0.553803E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3191 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.44 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3191 Max w this run +w_max level proc position run w_max level timestep +0.437E+00 32 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3192 Model time: 1979-03-08 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043358 + +* 1 1 3 0.100000E+01 0.815095E-04 * +Number of iterations = 2 +Initial residual = 0.014375 +Final residual = 0.000046 +Average conv. rate = 0.056673 + +* 1 2 2 0.143748E-01 0.461696E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095988 +Final residual = 0.000014 +Average conv. rate = 0.052350 + +* 2 1 3 0.959882E-01 0.137710E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000055 +Average conv. rate = 0.045706 + +* 2 2 1 0.120601E-02 0.551216E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3192 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.41 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.90K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3192 Max w this run +w_max level proc position run w_max level timestep +0.467E+00 29 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3193 Model time: 1979-03-08 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042891 + +* 1 1 3 0.100000E+01 0.789040E-04 * +Number of iterations = 2 +Initial residual = 0.014309 +Final residual = 0.000047 +Average conv. rate = 0.057505 + +* 1 2 2 0.143094E-01 0.473191E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097989 +Final residual = 0.000012 +Average conv. rate = 0.049322 + +* 2 1 3 0.979887E-01 0.117567E-04 * +Number of iterations = 1 +Initial residual = 0.001201 +Final residual = 0.000054 +Average conv. rate = 0.045169 + +* 2 2 1 0.120073E-02 0.542362E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3193 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.37 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3193 Max w this run +w_max level proc position run w_max level timestep +0.461E+00 29 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3194 Model time: 1979-03-08 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042997 + +* 1 1 3 0.100000E+01 0.794881E-04 * +Number of iterations = 2 +Initial residual = 0.014181 +Final residual = 0.000047 +Average conv. rate = 0.057459 + +* 1 2 2 0.141807E-01 0.468184E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098089 +Final residual = 0.000012 +Average conv. rate = 0.049525 + +* 2 1 3 0.980887E-01 0.119146E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000054 +Average conv. rate = 0.045144 + +* 2 2 1 0.120386E-02 0.543469E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3194 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.35 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3194 Max w this run +w_max level proc position run w_max level timestep +0.517E+00 29 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3195 Model time: 1979-03-08 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042942 + +* 1 1 3 0.100000E+01 0.791843E-04 * +Number of iterations = 2 +Initial residual = 0.014144 +Final residual = 0.000046 +Average conv. rate = 0.057318 + +* 1 2 2 0.141441E-01 0.464681E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097576 +Final residual = 0.000012 +Average conv. rate = 0.049677 + +* 2 1 3 0.975760E-01 0.119623E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000054 +Average conv. rate = 0.045776 + +* 2 2 1 0.118512E-02 0.542502E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3195 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.33 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.07K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3195 Max w this run +w_max level proc position run w_max level timestep +0.509E+00 29 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3196 Model time: 1979-03-08 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042674 + +* 1 1 3 0.100000E+01 0.777103E-04 * +Number of iterations = 2 +Initial residual = 0.014053 +Final residual = 0.000046 +Average conv. rate = 0.057147 + +* 1 2 2 0.140528E-01 0.458934E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096791 +Final residual = 0.000012 +Average conv. rate = 0.050361 + +* 2 1 3 0.967912E-01 0.123626E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000055 +Average conv. rate = 0.046393 + +* 2 2 1 0.118457E-02 0.549559E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3196 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.31 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.11K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3196 Max w this run +w_max level proc position run w_max level timestep +0.512E+00 26 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3197 Model time: 1979-03-08 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043076 + +* 1 1 3 0.100000E+01 0.799297E-04 * +Number of iterations = 2 +Initial residual = 0.014107 +Final residual = 0.000046 +Average conv. rate = 0.057097 + +* 1 2 2 0.141066E-01 0.459878E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097316 +Final residual = 0.000012 +Average conv. rate = 0.049511 + +* 2 1 3 0.973162E-01 0.118111E-04 * +Number of iterations = 1 +Initial residual = 0.001170 +Final residual = 0.000055 +Average conv. rate = 0.046942 + +* 2 2 1 0.117017E-02 0.549305E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3197 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.31 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3197 Max w this run +w_max level proc position run w_max level timestep +0.551E+00 26 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3198 Model time: 1979-03-08 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042940 + +* 1 1 3 0.100000E+01 0.791762E-04 * +Number of iterations = 2 +Initial residual = 0.014071 +Final residual = 0.000045 +Average conv. rate = 0.056309 + +* 1 2 2 0.140710E-01 0.446146E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097096 +Final residual = 0.000013 +Average conv. rate = 0.051282 + +* 2 1 3 0.970964E-01 0.130950E-04 * +Number of iterations = 1 +Initial residual = 0.001170 +Final residual = 0.000055 +Average conv. rate = 0.046940 + +* 2 2 1 0.116988E-02 0.549143E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3198 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.30 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.23K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3198 Max w this run +w_max level proc position run w_max level timestep +0.555E+00 27 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3199 Model time: 1979-03-08 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043003 + +* 1 1 3 0.100000E+01 0.795231E-04 * +Number of iterations = 2 +Initial residual = 0.014232 +Final residual = 0.000043 +Average conv. rate = 0.055115 + +* 1 2 2 0.142322E-01 0.432321E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097540 +Final residual = 0.000013 +Average conv. rate = 0.050605 + +* 2 1 3 0.975402E-01 0.126408E-04 * +Number of iterations = 1 +Initial residual = 0.001151 +Final residual = 0.000054 +Average conv. rate = 0.046839 + +* 2 2 1 0.115143E-02 0.539323E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3199 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.28 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.28K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3199 Max w this run +w_max level proc position run w_max level timestep +0.604E+00 37 236 140.6deg E -8.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3200 Model time: 1979-03-08 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042697 + +* 1 1 3 0.100000E+01 0.778372E-04 * +Number of iterations = 2 +Initial residual = 0.014288 +Final residual = 0.000042 +Average conv. rate = 0.054333 + +* 1 2 2 0.142884E-01 0.421807E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096881 +Final residual = 0.000013 +Average conv. rate = 0.050793 + +* 2 1 3 0.968810E-01 0.126957E-04 * +Number of iterations = 1 +Initial residual = 0.001143 +Final residual = 0.000054 +Average conv. rate = 0.047070 + +* 2 2 1 0.114296E-02 0.537991E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3200 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.29 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.31K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3200 Max w this run +w_max level proc position run w_max level timestep +0.633E+00 25 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3201 Model time: 1979-03-08 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043125 + +* 1 1 3 0.100000E+01 0.802001E-04 * +Number of iterations = 2 +Initial residual = 0.014381 +Final residual = 0.000047 +Average conv. rate = 0.056933 + +* 1 2 2 0.143813E-01 0.466153E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096185 +Final residual = 0.000011 +Average conv. rate = 0.048717 + +* 2 1 3 0.961853E-01 0.111210E-04 * +Number of iterations = 1 +Initial residual = 0.001135 +Final residual = 0.000054 +Average conv. rate = 0.047274 + +* 2 2 1 0.113498E-02 0.536549E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3201 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.35 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3201 Max w this run +w_max level proc position run w_max level timestep +0.695E+00 25 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3202 Model time: 1979-03-08 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000076 +Average conv. rate = 0.042436 + +* 1 1 3 0.100000E+01 0.764191E-04 * +Number of iterations = 2 +Initial residual = 0.014374 +Final residual = 0.000042 +Average conv. rate = 0.053965 + +* 1 2 2 0.143739E-01 0.418605E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096329 +Final residual = 0.000013 +Average conv. rate = 0.051571 + +* 2 1 3 0.963287E-01 0.132117E-04 * +Number of iterations = 1 +Initial residual = 0.001128 +Final residual = 0.000052 +Average conv. rate = 0.046360 + +* 2 2 1 0.112808E-02 0.522979E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3202 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.60 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.15K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3202 Max w this run +w_max level proc position run w_max level timestep +0.704E+00 25 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3203 Model time: 1979-03-08 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043330 + +* 1 1 3 0.100000E+01 0.813542E-04 * +Number of iterations = 2 +Initial residual = 0.014383 +Final residual = 0.000046 +Average conv. rate = 0.056767 + +* 1 2 2 0.143835E-01 0.463510E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096644 +Final residual = 0.000011 +Average conv. rate = 0.048655 + +* 2 1 3 0.966442E-01 0.111315E-04 * +Number of iterations = 1 +Initial residual = 0.001136 +Final residual = 0.000052 +Average conv. rate = 0.045949 + +* 2 2 1 0.113583E-02 0.521898E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3203 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.02 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3203 Max w this run +w_max level proc position run w_max level timestep +0.722E+00 25 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3204 Model time: 1979-03-08 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042781 + +* 1 1 3 0.100000E+01 0.782957E-04 * +Number of iterations = 2 +Initial residual = 0.014294 +Final residual = 0.000045 +Average conv. rate = 0.056049 + +* 1 2 2 0.142943E-01 0.449047E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096081 +Final residual = 0.000012 +Average conv. rate = 0.049585 + +* 2 1 3 0.960813E-01 0.117138E-04 * +Number of iterations = 1 +Initial residual = 0.001133 +Final residual = 0.000052 +Average conv. rate = 0.046124 + +* 2 2 1 0.113292E-02 0.522551E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3204 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.56 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3204 Max w this run +w_max level proc position run w_max level timestep +0.752E+00 25 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3205 Model time: 1979-03-08 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043170 + +* 1 1 3 0.100000E+01 0.804552E-04 * +Number of iterations = 2 +Initial residual = 0.014308 +Final residual = 0.000044 +Average conv. rate = 0.055586 + +* 1 2 2 0.143075E-01 0.442079E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097631 +Final residual = 0.000011 +Average conv. rate = 0.048911 + +* 2 1 3 0.976307E-01 0.114234E-04 * +Number of iterations = 1 +Initial residual = 0.001172 +Final residual = 0.000053 +Average conv. rate = 0.045282 + +* 2 2 1 0.117193E-02 0.530673E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3205 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.18 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.00K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3205 Max w this run +w_max level proc position run w_max level timestep +0.722E+00 24 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3206 Model time: 1979-03-08 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042952 + +* 1 1 3 0.100000E+01 0.792409E-04 * +Number of iterations = 2 +Initial residual = 0.014204 +Final residual = 0.000043 +Average conv. rate = 0.055153 + +* 1 2 2 0.142038E-01 0.432065E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098892 +Final residual = 0.000012 +Average conv. rate = 0.049957 + +* 2 1 3 0.988919E-01 0.123297E-04 * +Number of iterations = 1 +Initial residual = 0.001166 +Final residual = 0.000053 +Average conv. rate = 0.045633 + +* 2 2 1 0.116650E-02 0.532304E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3206 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.84 469 118.1deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.49K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3206 Max w this run +w_max level proc position run w_max level timestep +0.684E+00 25 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3207 Model time: 1979-03-08 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043926 + +* 1 1 3 0.100000E+01 0.847558E-04 * +Number of iterations = 2 +Initial residual = 0.014214 +Final residual = 0.000043 +Average conv. rate = 0.054902 + +* 1 2 2 0.142142E-01 0.428449E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096644 +Final residual = 0.000011 +Average conv. rate = 0.048258 + +* 2 1 3 0.966439E-01 0.108612E-04 * +Number of iterations = 1 +Initial residual = 0.001164 +Final residual = 0.000054 +Average conv. rate = 0.046027 + +* 2 2 1 0.116394E-02 0.535730E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3207 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.52 455 88.1deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3207 Max w this run +w_max level proc position run w_max level timestep +0.709E+00 25 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3208 Model time: 1979-03-08 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043575 + +* 1 1 3 0.100000E+01 0.827376E-04 * +Number of iterations = 2 +Initial residual = 0.014151 +Final residual = 0.000042 +Average conv. rate = 0.054546 + +* 1 2 2 0.141514E-01 0.421039E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098579 +Final residual = 0.000012 +Average conv. rate = 0.049700 + +* 2 1 3 0.985794E-01 0.121019E-04 * +Number of iterations = 1 +Initial residual = 0.001202 +Final residual = 0.000054 +Average conv. rate = 0.044592 + +* 2 2 1 0.120244E-02 0.536191E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3208 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.51 42 121.9deg E -77.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3208 Max w this run +w_max level proc position run w_max level timestep +0.671E+00 26 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3209 Model time: 1979-03-08 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043709 + +* 1 1 3 0.100000E+01 0.835047E-04 * +Number of iterations = 2 +Initial residual = 0.014154 +Final residual = 0.000043 +Average conv. rate = 0.055362 + +* 1 2 2 0.141540E-01 0.433817E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097582 +Final residual = 0.000012 +Average conv. rate = 0.050000 + +* 2 1 3 0.975817E-01 0.121977E-04 * +Number of iterations = 1 +Initial residual = 0.001162 +Final residual = 0.000054 +Average conv. rate = 0.046154 + +* 2 2 1 0.116195E-02 0.536284E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3209 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.27 42 121.9deg E -77.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.69K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3209 Max w this run +w_max level proc position run w_max level timestep +0.617E+00 25 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3210 Model time: 1979-03-08 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043187 + +* 1 1 3 0.100000E+01 0.805467E-04 * +Number of iterations = 2 +Initial residual = 0.014067 +Final residual = 0.000042 +Average conv. rate = 0.054497 + +* 1 2 2 0.140671E-01 0.417778E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097577 +Final residual = 0.000012 +Average conv. rate = 0.049551 + +* 2 1 3 0.975767E-01 0.118715E-04 * +Number of iterations = 1 +Initial residual = 0.001158 +Final residual = 0.000054 +Average conv. rate = 0.046804 + +* 2 2 1 0.115850E-02 0.542228E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3210 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.05 42 120.0deg E -77.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.82K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3210 Max w this run +w_max level proc position run w_max level timestep +0.561E+00 24 164 50.6deg E -30.6deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3211 Model time: 1979-03-08 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044042 + +* 1 1 3 0.100000E+01 0.854302E-04 * +Number of iterations = 2 +Initial residual = 0.014077 +Final residual = 0.000042 +Average conv. rate = 0.054313 + +* 1 2 2 0.140774E-01 0.415265E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099543 +Final residual = 0.000012 +Average conv. rate = 0.049128 + +* 2 1 3 0.995429E-01 0.118029E-04 * +Number of iterations = 1 +Initial residual = 0.001175 +Final residual = 0.000055 +Average conv. rate = 0.047060 + +* 2 2 1 0.117513E-02 0.553021E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3211 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.85 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.21K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3211 Max w this run +w_max level proc position run w_max level timestep +0.537E+00 23 164 50.6deg E -30.6deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3212 Model time: 1979-03-08 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043838 + +* 1 1 3 0.100000E+01 0.842469E-04 * +Number of iterations = 2 +Initial residual = 0.013986 +Final residual = 0.000043 +Average conv. rate = 0.055356 + +* 1 2 2 0.139864E-01 0.428588E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099873 +Final residual = 0.000012 +Average conv. rate = 0.049339 + +* 2 1 3 0.998727E-01 0.119958E-04 * +Number of iterations = 1 +Initial residual = 0.001184 +Final residual = 0.000055 +Average conv. rate = 0.046164 + +* 2 2 1 0.118356E-02 0.546384E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3212 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.75 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.08K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3212 Max w this run +w_max level proc position run w_max level timestep +0.540E+00 22 377 69.4deg W 34.4deg N 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3213 Model time: 1979-03-08 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043574 + +* 1 1 3 0.100000E+01 0.827309E-04 * +Number of iterations = 2 +Initial residual = 0.013983 +Final residual = 0.000043 +Average conv. rate = 0.055284 + +* 1 2 2 0.139826E-01 0.427355E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101435 +Final residual = 0.000012 +Average conv. rate = 0.049117 + +* 2 1 3 0.101435E+00 0.120197E-04 * +Number of iterations = 1 +Initial residual = 0.001194 +Final residual = 0.000054 +Average conv. rate = 0.045384 + +* 2 2 1 0.119361E-02 0.541712E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3213 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.79 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3213 Max w this run +w_max level proc position run w_max level timestep +0.541E+00 25 164 52.5deg E -31.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3214 Model time: 1979-03-08 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043181 + +* 1 1 3 0.100000E+01 0.805163E-04 * +Number of iterations = 2 +Initial residual = 0.013870 +Final residual = 0.000042 +Average conv. rate = 0.055330 + +* 1 2 2 0.138697E-01 0.424609E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102339 +Final residual = 0.000012 +Average conv. rate = 0.048499 + +* 2 1 3 0.102339E+00 0.116747E-04 * +Number of iterations = 1 +Initial residual = 0.001232 +Final residual = 0.000054 +Average conv. rate = 0.044065 + +* 2 2 1 0.123214E-02 0.542940E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3214 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.99 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.60K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3214 Max w this run +w_max level proc position run w_max level timestep +0.577E+00 24 164 52.5deg E -31.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3215 Model time: 1979-03-08 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044006 + +* 1 1 3 0.100000E+01 0.852181E-04 * +Number of iterations = 2 +Initial residual = 0.013924 +Final residual = 0.000042 +Average conv. rate = 0.055207 + +* 1 2 2 0.139235E-01 0.424358E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102763 +Final residual = 0.000014 +Average conv. rate = 0.051360 + +* 2 1 3 0.102763E+00 0.139225E-04 * +Number of iterations = 1 +Initial residual = 0.001220 +Final residual = 0.000055 +Average conv. rate = 0.044748 + +* 2 2 1 0.121991E-02 0.545890E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3215 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.39 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.19K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3215 Max w this run +w_max level proc position run w_max level timestep +0.632E+00 25 164 52.5deg E -31.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3216 Model time: 1979-03-09 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043617 + +* 1 1 3 0.100000E+01 0.829810E-04 * +Number of iterations = 2 +Initial residual = 0.013928 +Final residual = 0.000043 +Average conv. rate = 0.055653 + +* 1 2 2 0.139281E-01 0.431396E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102962 +Final residual = 0.000014 +Average conv. rate = 0.051475 + +* 2 1 3 0.102962E+00 0.140436E-04 * +Number of iterations = 1 +Initial residual = 0.001192 +Final residual = 0.000054 +Average conv. rate = 0.045436 + +* 2 2 1 0.119175E-02 0.541485E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13048E+25 +tot dry energy 0.13049E+25 +gr( rho cal) 0.38085E+24 +KE( rho cal) 0.79482E+21 +KEu(rho cal) 0.62075E+21 +KEv(rho cal) 0.17406E+21 +KEw(rho cal) 0.11238E+16 +cvT( rho cal) 0.92328E+24 +lq ( rho cal) 0.30716E+23 +lqcf( rho cal) 0.65578E+20 +lqcl( rho cal) 0.41308E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12322E+17 KG +Initial moisture = 0.12303E+17 KG +change in moisture = 0.19846E+14 KG +Moisture added E-P in period = 0.20413E+14 KG +Error in moisture = -0.56763E+12 KG +Error as % of change = -0.28602E+01 +q ( rho cal) 0.12282E+17 +qcf( rho cal) 0.26221E+14 +qcl( rho cal) 0.14571E+14 +FINAL TOTAL ENERGY = 0.13048E+25 J/ +INITIAL TOTAL ENERGY = 0.13050E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.19969E+21 J/ +FLUXES INTO ATM OVER PERIOD = -0.20538E+21 J/ +ERROR IN ENERGY BUDGET = -0.56930E+19 J/ +TEMP CORRECTION OVER A DAY = -0.15459E-02 K +TEMPERATURE CORRECTION RATE = -0.17892E-07 K/S +FLUX CORRECTION (ATM) = -0.12917E+00 W/M2 + +Minimum theta level 1 for timestep 3216 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.92 42 120.0deg E -77.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3216 Max w this run +w_max level proc position run w_max level timestep +0.670E+00 25 164 52.5deg E -31.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6396.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6396.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6396.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6396.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6396.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6396.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3217 Model time: 1979-03-09 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043874 + +* 1 1 3 0.100000E+01 0.844517E-04 * +Number of iterations = 2 +Initial residual = 0.013964 +Final residual = 0.000044 +Average conv. rate = 0.055964 + +* 1 2 2 0.139641E-01 0.437350E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103855 +Final residual = 0.000011 +Average conv. rate = 0.047751 + +* 2 1 3 0.103855E+00 0.113074E-04 * +Number of iterations = 1 +Initial residual = 0.001200 +Final residual = 0.000053 +Average conv. rate = 0.044387 + +* 2 2 1 0.119968E-02 0.532498E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3217 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.06 455 88.1deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3217 Max w this run +w_max level proc position run w_max level timestep +0.718E+00 26 164 52.5deg E -31.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3218 Model time: 1979-03-09 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044197 + +* 1 1 3 0.100000E+01 0.863331E-04 * +Number of iterations = 2 +Initial residual = 0.013873 +Final residual = 0.000043 +Average conv. rate = 0.055992 + +* 1 2 2 0.138725E-01 0.434910E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102301 +Final residual = 0.000015 +Average conv. rate = 0.053008 + +* 2 1 3 0.102301E+00 0.152368E-04 * +Number of iterations = 1 +Initial residual = 0.001178 +Final residual = 0.000053 +Average conv. rate = 0.044895 + +* 2 2 1 0.117827E-02 0.528989E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3218 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.15 455 88.1deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3218 Max w this run +w_max level proc position run w_max level timestep +0.697E+00 26 164 52.5deg E -31.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3219 Model time: 1979-03-09 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043448 + +* 1 1 3 0.100000E+01 0.820160E-04 * +Number of iterations = 2 +Initial residual = 0.013899 +Final residual = 0.000044 +Average conv. rate = 0.056046 + +* 1 2 2 0.138993E-01 0.436596E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102215 +Final residual = 0.000014 +Average conv. rate = 0.051609 + +* 2 1 3 0.102215E+00 0.140505E-04 * +Number of iterations = 1 +Initial residual = 0.001165 +Final residual = 0.000054 +Average conv. rate = 0.046051 + +* 2 2 1 0.116525E-02 0.536614E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3219 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.25 455 88.1deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.69K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3219 Max w this run +w_max level proc position run w_max level timestep +0.777E+00 26 164 52.5deg E -31.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3220 Model time: 1979-03-09 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043642 + +* 1 1 3 0.100000E+01 0.831196E-04 * +Number of iterations = 2 +Initial residual = 0.013861 +Final residual = 0.000044 +Average conv. rate = 0.056090 + +* 1 2 2 0.138614E-01 0.436098E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106952 +Final residual = 0.000011 +Average conv. rate = 0.047403 + +* 2 1 3 0.106952E+00 0.113922E-04 * +Number of iterations = 1 +Initial residual = 0.001425 +Final residual = 0.000054 +Average conv. rate = 0.037713 + +* 2 2 1 0.142520E-02 0.537484E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3220 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.36 455 88.1deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.74K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3220 Max w this run +w_max level proc position run w_max level timestep +0.684E+00 25 164 52.5deg E -31.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3221 Model time: 1979-03-09 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043581 + +* 1 1 3 0.100000E+01 0.827722E-04 * +Number of iterations = 2 +Initial residual = 0.013885 +Final residual = 0.000046 +Average conv. rate = 0.057368 + +* 1 2 2 0.138845E-01 0.456944E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102579 +Final residual = 0.000013 +Average conv. rate = 0.049815 + +* 2 1 3 0.102579E+00 0.126809E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000054 +Average conv. rate = 0.045912 + +* 2 2 1 0.118490E-02 0.544008E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3221 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.51 455 88.1deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3221 Max w this run +w_max level proc position run w_max level timestep +0.688E+00 25 164 52.5deg E -31.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3222 Model time: 1979-03-09 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042752 + +* 1 1 3 0.100000E+01 0.781415E-04 * +Number of iterations = 2 +Initial residual = 0.013840 +Final residual = 0.000046 +Average conv. rate = 0.057790 + +* 1 2 2 0.138397E-01 0.462205E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100484 +Final residual = 0.000012 +Average conv. rate = 0.049637 + +* 2 1 3 0.100484E+00 0.122890E-04 * +Number of iterations = 1 +Initial residual = 0.001163 +Final residual = 0.000054 +Average conv. rate = 0.046652 + +* 2 2 1 0.116309E-02 0.542608E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3222 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.69 455 88.1deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3222 Max w this run +w_max level proc position run w_max level timestep +0.699E+00 24 164 52.5deg E -31.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3223 Model time: 1979-03-09 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043409 + +* 1 1 3 0.100000E+01 0.817997E-04 * +Number of iterations = 2 +Initial residual = 0.013928 +Final residual = 0.000041 +Average conv. rate = 0.054111 + +* 1 2 2 0.139281E-01 0.407817E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099906 +Final residual = 0.000013 +Average conv. rate = 0.050375 + +* 2 1 3 0.999056E-01 0.127715E-04 * +Number of iterations = 1 +Initial residual = 0.001170 +Final residual = 0.000055 +Average conv. rate = 0.047374 + +* 2 2 1 0.117000E-02 0.554278E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3223 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.83 456 90.0deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3223 Max w this run +w_max level proc position run w_max level timestep +0.751E+00 24 164 52.5deg E -31.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3224 Model time: 1979-03-09 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043392 + +* 1 1 3 0.100000E+01 0.817019E-04 * +Number of iterations = 2 +Initial residual = 0.014002 +Final residual = 0.000043 +Average conv. rate = 0.055659 + +* 1 2 2 0.140017E-01 0.433763E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101588 +Final residual = 0.000013 +Average conv. rate = 0.050598 + +* 2 1 3 0.101588E+00 0.131593E-04 * +Number of iterations = 1 +Initial residual = 0.001242 +Final residual = 0.000056 +Average conv. rate = 0.045417 + +* 2 2 1 0.124161E-02 0.563904E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3224 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.98 456 90.0deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.33K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3224 Max w this run +w_max level proc position run w_max level timestep +0.767E+00 24 164 52.5deg E -31.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3225 Model time: 1979-03-09 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043285 + +* 1 1 3 0.100000E+01 0.810986E-04 * +Number of iterations = 2 +Initial residual = 0.014210 +Final residual = 0.000043 +Average conv. rate = 0.055132 + +* 1 2 2 0.142097E-01 0.431902E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102431 +Final residual = 0.000011 +Average conv. rate = 0.048046 + +* 2 1 3 0.102431E+00 0.113609E-04 * +Number of iterations = 1 +Initial residual = 0.001249 +Final residual = 0.000057 +Average conv. rate = 0.045434 + +* 2 2 1 0.124906E-02 0.567502E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3225 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.96 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3225 Max w this run +w_max level proc position run w_max level timestep +0.839E+00 25 164 52.5deg E -31.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3226 Model time: 1979-03-09 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043361 + +* 1 1 3 0.100000E+01 0.815279E-04 * +Number of iterations = 2 +Initial residual = 0.014370 +Final residual = 0.000045 +Average conv. rate = 0.055653 + +* 1 2 2 0.143699E-01 0.445065E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102338 +Final residual = 0.000012 +Average conv. rate = 0.049560 + +* 2 1 3 0.102338E+00 0.124574E-04 * +Number of iterations = 1 +Initial residual = 0.001326 +Final residual = 0.000056 +Average conv. rate = 0.041986 + +* 2 2 1 0.132628E-02 0.556848E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3226 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.70 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3226 Max w this run +w_max level proc position run w_max level timestep +0.780E+00 24 164 52.5deg E -31.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3227 Model time: 1979-03-09 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043159 + +* 1 1 3 0.100000E+01 0.803912E-04 * +Number of iterations = 2 +Initial residual = 0.014477 +Final residual = 0.000042 +Average conv. rate = 0.054021 + +* 1 2 2 0.144767E-01 0.422464E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100679 +Final residual = 0.000012 +Average conv. rate = 0.049575 + +* 2 1 3 0.100679E+00 0.122669E-04 * +Number of iterations = 1 +Initial residual = 0.001179 +Final residual = 0.000054 +Average conv. rate = 0.045401 + +* 2 2 1 0.117923E-02 0.535382E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3227 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.44 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.80K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3227 Max w this run +w_max level proc position run w_max level timestep +0.690E+00 24 164 52.5deg E -31.9deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3228 Model time: 1979-03-09 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043092 + +* 1 1 3 0.100000E+01 0.800157E-04 * +Number of iterations = 2 +Initial residual = 0.014292 +Final residual = 0.000044 +Average conv. rate = 0.055459 + +* 1 2 2 0.142924E-01 0.439593E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098868 +Final residual = 0.000012 +Average conv. rate = 0.050099 + +* 2 1 3 0.988682E-01 0.124322E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000053 +Average conv. rate = 0.045734 + +* 2 2 1 0.115669E-02 0.529004E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3228 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.17 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.81K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3228 Max w this run +w_max level proc position run w_max level timestep +0.622E+00 24 164 52.5deg E -31.9deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3229 Model time: 1979-03-09 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042781 + +* 1 1 3 0.100000E+01 0.782974E-04 * +Number of iterations = 2 +Initial residual = 0.014032 +Final residual = 0.000044 +Average conv. rate = 0.055895 + +* 1 2 2 0.140318E-01 0.438393E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101034 +Final residual = 0.000011 +Average conv. rate = 0.047088 + +* 2 1 3 0.101034E+00 0.105490E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000054 +Average conv. rate = 0.045059 + +* 2 2 1 0.120624E-02 0.543518E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3229 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.91 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.88K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3229 Max w this run +w_max level proc position run w_max level timestep +0.636E+00 25 164 54.4deg E -33.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3230 Model time: 1979-03-09 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042933 + +* 1 1 3 0.100000E+01 0.791345E-04 * +Number of iterations = 2 +Initial residual = 0.013811 +Final residual = 0.000043 +Average conv. rate = 0.056000 + +* 1 2 2 0.138106E-01 0.433107E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097950 +Final residual = 0.000011 +Average conv. rate = 0.048361 + +* 2 1 3 0.979505E-01 0.110789E-04 * +Number of iterations = 1 +Initial residual = 0.001162 +Final residual = 0.000054 +Average conv. rate = 0.046501 + +* 2 2 1 0.116203E-02 0.540358E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3230 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.64 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3230 Max w this run +w_max level proc position run w_max level timestep +0.707E+00 26 164 54.4deg E -33.1deg S 0.841E+00 26 2970 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3231 Model time: 1979-03-09 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043041 + +* 1 1 3 0.100000E+01 0.797326E-04 * +Number of iterations = 2 +Initial residual = 0.013792 +Final residual = 0.000044 +Average conv. rate = 0.056500 + +* 1 2 2 0.137920E-01 0.440281E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098480 +Final residual = 0.000013 +Average conv. rate = 0.051049 + +* 2 1 3 0.984799E-01 0.131012E-04 * +Number of iterations = 1 +Initial residual = 0.001154 +Final residual = 0.000054 +Average conv. rate = 0.046695 + +* 2 2 1 0.115439E-02 0.539046E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3231 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.39 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3231 Max w this run +w_max level proc position run w_max level timestep +0.778E+00 26 164 54.4deg E -33.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3232 Model time: 1979-03-09 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042884 + +* 1 1 3 0.100000E+01 0.788625E-04 * +Number of iterations = 2 +Initial residual = 0.013762 +Final residual = 0.000043 +Average conv. rate = 0.056046 + +* 1 2 2 0.137616E-01 0.432266E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100026 +Final residual = 0.000013 +Average conv. rate = 0.050626 + +* 2 1 3 0.100026E+00 0.129787E-04 * +Number of iterations = 1 +Initial residual = 0.001178 +Final residual = 0.000054 +Average conv. rate = 0.045523 + +* 2 2 1 0.117763E-02 0.536093E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3232 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.15 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3232 Max w this run +w_max level proc position run w_max level timestep +0.818E+00 26 164 54.4deg E -33.1deg S 0.841E+00 26 2970 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3233 Model time: 1979-03-09 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042817 + +* 1 1 3 0.100000E+01 0.784978E-04 * +Number of iterations = 2 +Initial residual = 0.013808 +Final residual = 0.000046 +Average conv. rate = 0.057517 + +* 1 2 2 0.138079E-01 0.456794E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103076 +Final residual = 0.000014 +Average conv. rate = 0.051562 + +* 2 1 3 0.103076E+00 0.141297E-04 * +Number of iterations = 1 +Initial residual = 0.001225 +Final residual = 0.000054 +Average conv. rate = 0.044044 + +* 2 2 1 0.122485E-02 0.539472E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3233 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.96 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3233 Max w this run +w_max level proc position run w_max level timestep +0.826E+00 26 164 54.4deg E -33.1deg S 0.841E+00 26 2970 + +******************************************************************************** + +Atm_Step: Timestep 3234 Model time: 1979-03-09 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042735 + +* 1 1 3 0.100000E+01 0.780476E-04 * +Number of iterations = 2 +Initial residual = 0.013777 +Final residual = 0.000046 +Average conv. rate = 0.057798 + +* 1 2 2 0.137772E-01 0.460236E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102805 +Final residual = 0.000011 +Average conv. rate = 0.047510 + +* 2 1 3 0.102805E+00 0.110248E-04 * +Number of iterations = 1 +Initial residual = 0.001214 +Final residual = 0.000053 +Average conv. rate = 0.044016 + +* 2 2 1 0.121400E-02 0.534354E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3234 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.81 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.68K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3234 Max w this run +w_max level proc position run w_max level timestep +0.886E+00 26 164 54.4deg E -33.1deg S 0.886E+00 26 3234 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3235 Model time: 1979-03-09 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000076 +Average conv. rate = 0.042394 + +* 1 1 3 0.100000E+01 0.761944E-04 * +Number of iterations = 2 +Initial residual = 0.013886 +Final residual = 0.000046 +Average conv. rate = 0.057353 + +* 1 2 2 0.138857E-01 0.456745E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103060 +Final residual = 0.000013 +Average conv. rate = 0.049893 + +* 2 1 3 0.103060E+00 0.127996E-04 * +Number of iterations = 1 +Initial residual = 0.001214 +Final residual = 0.000054 +Average conv. rate = 0.044484 + +* 2 2 1 0.121391E-02 0.539990E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3235 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.73 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3235 Max w this run +w_max level proc position run w_max level timestep +0.932E+00 27 164 54.4deg E -33.1deg S 0.932E+00 27 3235 + +******************************************************************************** + +Atm_Step: Timestep 3236 Model time: 1979-03-09 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000076 +Average conv. rate = 0.042420 + +* 1 1 3 0.100000E+01 0.763332E-04 * +Number of iterations = 2 +Initial residual = 0.013944 +Final residual = 0.000046 +Average conv. rate = 0.057522 + +* 1 2 2 0.139445E-01 0.461396E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100828 +Final residual = 0.000013 +Average conv. rate = 0.050404 + +* 2 1 3 0.100828E+00 0.129116E-04 * +Number of iterations = 1 +Initial residual = 0.001171 +Final residual = 0.000053 +Average conv. rate = 0.045694 + +* 2 2 1 0.117059E-02 0.534884E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3236 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.73 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3236 Max w this run +w_max level proc position run w_max level timestep +0.986E+00 27 164 54.4deg E -33.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3237 Model time: 1979-03-09 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042827 + +* 1 1 3 0.100000E+01 0.785534E-04 * +Number of iterations = 2 +Initial residual = 0.014073 +Final residual = 0.000042 +Average conv. rate = 0.054516 + +* 1 2 2 0.140728E-01 0.418238E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103843 +Final residual = 0.000012 +Average conv. rate = 0.049216 + +* 2 1 3 0.103843E+00 0.123793E-04 * +Number of iterations = 1 +Initial residual = 0.001277 +Final residual = 0.000053 +Average conv. rate = 0.041786 + +* 2 2 1 0.127672E-02 0.533485E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3237 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.80 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3237 Max w this run +w_max level proc position run w_max level timestep +0.945E+00 26 164 54.4deg E -33.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3238 Model time: 1979-03-09 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043323 + +* 1 1 3 0.100000E+01 0.813119E-04 * +Number of iterations = 2 +Initial residual = 0.014092 +Final residual = 0.000047 +Average conv. rate = 0.057614 + +* 1 2 2 0.140915E-01 0.467757E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103558 +Final residual = 0.000013 +Average conv. rate = 0.050011 + +* 2 1 3 0.103558E+00 0.129536E-04 * +Number of iterations = 1 +Initial residual = 0.001369 +Final residual = 0.000053 +Average conv. rate = 0.039006 + +* 2 2 1 0.136946E-02 0.534177E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3238 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.95 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3238 Max w this run +w_max level proc position run w_max level timestep +0.880E+00 26 164 54.4deg E -33.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3239 Model time: 1979-03-09 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043284 + +* 1 1 3 0.100000E+01 0.810915E-04 * +Number of iterations = 2 +Initial residual = 0.014119 +Final residual = 0.000043 +Average conv. rate = 0.054951 + +* 1 2 2 0.141191E-01 0.426342E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104764 +Final residual = 0.000012 +Average conv. rate = 0.049141 + +* 2 1 3 0.104764E+00 0.124318E-04 * +Number of iterations = 1 +Initial residual = 0.001283 +Final residual = 0.000053 +Average conv. rate = 0.041341 + +* 2 2 1 0.128262E-02 0.530246E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3239 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.19 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.74K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3239 Max w this run +w_max level proc position run w_max level timestep +0.794E+00 26 164 54.4deg E -33.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3240 Model time: 1979-03-09 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043168 + +* 1 1 3 0.100000E+01 0.804438E-04 * +Number of iterations = 2 +Initial residual = 0.014012 +Final residual = 0.000043 +Average conv. rate = 0.055300 + +* 1 2 2 0.140123E-01 0.428506E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100116 +Final residual = 0.000011 +Average conv. rate = 0.047798 + +* 2 1 3 0.100116E+00 0.109329E-04 * +Number of iterations = 1 +Initial residual = 0.001152 +Final residual = 0.000053 +Average conv. rate = 0.045600 + +* 2 2 1 0.115231E-02 0.525453E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3240 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.99 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3240 Max w this run +w_max level proc position run w_max level timestep +0.721E+00 25 164 54.4deg E -33.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3241 Model time: 1979-03-09 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042789 + +* 1 1 3 0.100000E+01 0.783401E-04 * +Number of iterations = 2 +Initial residual = 0.014032 +Final residual = 0.000042 +Average conv. rate = 0.054898 + +* 1 2 2 0.140319E-01 0.422892E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098818 +Final residual = 0.000011 +Average conv. rate = 0.047840 + +* 2 1 3 0.988180E-01 0.108197E-04 * +Number of iterations = 1 +Initial residual = 0.001151 +Final residual = 0.000052 +Average conv. rate = 0.044779 + +* 2 2 1 0.115101E-02 0.515403E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3241 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.85 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3241 Max w this run +w_max level proc position run w_max level timestep +0.706E+00 25 164 54.4deg E -33.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3242 Model time: 1979-03-09 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043121 + +* 1 1 3 0.100000E+01 0.801787E-04 * +Number of iterations = 2 +Initial residual = 0.014015 +Final residual = 0.000042 +Average conv. rate = 0.054997 + +* 1 2 2 0.140149E-01 0.423897E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102708 +Final residual = 0.000011 +Average conv. rate = 0.047545 + +* 2 1 3 0.102708E+00 0.110390E-04 * +Number of iterations = 1 +Initial residual = 0.001228 +Final residual = 0.000052 +Average conv. rate = 0.042533 + +* 2 2 1 0.122802E-02 0.522310E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3242 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.72 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3242 Max w this run +w_max level proc position run w_max level timestep +0.626E+00 24 164 54.4deg E -33.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3243 Model time: 1979-03-09 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043208 + +* 1 1 3 0.100000E+01 0.806671E-04 * +Number of iterations = 2 +Initial residual = 0.014032 +Final residual = 0.000043 +Average conv. rate = 0.055305 + +* 1 2 2 0.140322E-01 0.429192E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102638 +Final residual = 0.000011 +Average conv. rate = 0.047537 + +* 2 1 3 0.102638E+00 0.110257E-04 * +Number of iterations = 1 +Initial residual = 0.001177 +Final residual = 0.000052 +Average conv. rate = 0.044489 + +* 2 2 1 0.117745E-02 0.523834E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3243 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.69 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3243 Max w this run +w_max level proc position run w_max level timestep +0.662E+00 26 133 56.2deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3244 Model time: 1979-03-09 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042990 + +* 1 1 3 0.100000E+01 0.794535E-04 * +Number of iterations = 2 +Initial residual = 0.014059 +Final residual = 0.000043 +Average conv. rate = 0.055347 + +* 1 2 2 0.140589E-01 0.430668E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098656 +Final residual = 0.000014 +Average conv. rate = 0.052227 + +* 2 1 3 0.986558E-01 0.140543E-04 * +Number of iterations = 1 +Initial residual = 0.001162 +Final residual = 0.000053 +Average conv. rate = 0.045649 + +* 2 2 1 0.116170E-02 0.530305E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3244 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.71 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3244 Max w this run +w_max level proc position run w_max level timestep +0.690E+00 26 133 56.2deg E -34.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3245 Model time: 1979-03-09 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043593 + +* 1 1 3 0.100000E+01 0.828395E-04 * +Number of iterations = 2 +Initial residual = 0.014346 +Final residual = 0.000043 +Average conv. rate = 0.054815 + +* 1 2 2 0.143459E-01 0.431050E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099487 +Final residual = 0.000014 +Average conv. rate = 0.052136 + +* 2 1 3 0.994872E-01 0.140985E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000052 +Average conv. rate = 0.043672 + +* 2 2 1 0.118798E-02 0.518811E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3245 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.61 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3245 Max w this run +w_max level proc position run w_max level timestep +0.644E+00 26 133 56.2deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3246 Model time: 1979-03-09 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043383 + +* 1 1 3 0.100000E+01 0.816531E-04 * +Number of iterations = 2 +Initial residual = 0.014396 +Final residual = 0.000043 +Average conv. rate = 0.054928 + +* 1 2 2 0.143964E-01 0.434346E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100731 +Final residual = 0.000011 +Average conv. rate = 0.048109 + +* 2 1 3 0.100731E+00 0.112164E-04 * +Number of iterations = 1 +Initial residual = 0.001142 +Final residual = 0.000051 +Average conv. rate = 0.044633 + +* 2 2 1 0.114222E-02 0.509803E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3246 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.55 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3246 Max w this run +w_max level proc position run w_max level timestep +0.574E+00 29 204 136.9deg E -13.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3247 Model time: 1979-03-09 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043341 + +* 1 1 3 0.100000E+01 0.814157E-04 * +Number of iterations = 2 +Initial residual = 0.014393 +Final residual = 0.000047 +Average conv. rate = 0.057072 + +* 1 2 2 0.143935E-01 0.468824E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099225 +Final residual = 0.000011 +Average conv. rate = 0.048049 + +* 2 1 3 0.992252E-01 0.110069E-04 * +Number of iterations = 1 +Initial residual = 0.001127 +Final residual = 0.000051 +Average conv. rate = 0.045509 + +* 2 2 1 0.112714E-02 0.512952E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3247 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.15 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.65K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3247 Max w this run +w_max level proc position run w_max level timestep +0.636E+00 24 133 58.1deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3248 Model time: 1979-03-09 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043264 + +* 1 1 3 0.100000E+01 0.809801E-04 * +Number of iterations = 2 +Initial residual = 0.014239 +Final residual = 0.000043 +Average conv. rate = 0.054690 + +* 1 2 2 0.142391E-01 0.425891E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099575 +Final residual = 0.000011 +Average conv. rate = 0.048425 + +* 2 1 3 0.995753E-01 0.113070E-04 * +Number of iterations = 1 +Initial residual = 0.001171 +Final residual = 0.000051 +Average conv. rate = 0.043683 + +* 2 2 1 0.117146E-02 0.511727E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3248 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.58 439 99.4deg W 63.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3248 Max w this run +w_max level proc position run w_max level timestep +0.711E+00 24 133 58.1deg E -34.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3249 Model time: 1979-03-09 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043370 + +* 1 1 3 0.100000E+01 0.815761E-04 * +Number of iterations = 2 +Initial residual = 0.014126 +Final residual = 0.000044 +Average conv. rate = 0.055587 + +* 1 2 2 0.141263E-01 0.436485E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098845 +Final residual = 0.000011 +Average conv. rate = 0.048806 + +* 2 1 3 0.988453E-01 0.114914E-04 * +Number of iterations = 1 +Initial residual = 0.001136 +Final residual = 0.000050 +Average conv. rate = 0.044309 + +* 2 2 1 0.113582E-02 0.503273E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3249 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.80 470 105.0deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3249 Max w this run +w_max level proc position run w_max level timestep +0.832E+00 25 133 58.1deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3250 Model time: 1979-03-09 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043105 + +* 1 1 3 0.100000E+01 0.800918E-04 * +Number of iterations = 2 +Initial residual = 0.013978 +Final residual = 0.000043 +Average conv. rate = 0.055611 + +* 1 2 2 0.139779E-01 0.432284E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101323 +Final residual = 0.000011 +Average conv. rate = 0.047615 + +* 2 1 3 0.101323E+00 0.109380E-04 * +Number of iterations = 1 +Initial residual = 0.001228 +Final residual = 0.000050 +Average conv. rate = 0.040932 + +* 2 2 1 0.122756E-02 0.502470E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3250 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.17 470 105.0deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3250 Max w this run +w_max level proc position run w_max level timestep +0.814E+00 24 133 58.1deg E -34.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3251 Model time: 1979-03-09 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043751 + +* 1 1 3 0.100000E+01 0.837480E-04 * +Number of iterations = 2 +Initial residual = 0.014002 +Final residual = 0.000043 +Average conv. rate = 0.055692 + +* 1 2 2 0.140016E-01 0.434271E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098719 +Final residual = 0.000012 +Average conv. rate = 0.048917 + +* 2 1 3 0.987186E-01 0.115551E-04 * +Number of iterations = 1 +Initial residual = 0.001148 +Final residual = 0.000051 +Average conv. rate = 0.044508 + +* 2 2 1 0.114753E-02 0.510741E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3251 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.00 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3251 Max w this run +w_max level proc position run w_max level timestep +0.928E+00 26 133 58.1deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3252 Model time: 1979-03-09 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043108 + +* 1 1 3 0.100000E+01 0.801053E-04 * +Number of iterations = 2 +Initial residual = 0.013999 +Final residual = 0.000043 +Average conv. rate = 0.055694 + +* 1 2 2 0.139995E-01 0.434242E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102229 +Final residual = 0.000011 +Average conv. rate = 0.047956 + +* 2 1 3 0.102229E+00 0.112745E-04 * +Number of iterations = 1 +Initial residual = 0.001403 +Final residual = 0.000052 +Average conv. rate = 0.036825 + +* 2 2 1 0.140269E-02 0.516538E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3252 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.59 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3252 Max w this run +w_max level proc position run w_max level timestep +0.921E+00 25 133 58.1deg E -34.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3253 Model time: 1979-03-09 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043145 + +* 1 1 3 0.100000E+01 0.803150E-04 * +Number of iterations = 2 +Initial residual = 0.014089 +Final residual = 0.000044 +Average conv. rate = 0.055717 + +* 1 2 2 0.140889E-01 0.437373E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097421 +Final residual = 0.000013 +Average conv. rate = 0.050497 + +* 2 1 3 0.974207E-01 0.125444E-04 * +Number of iterations = 1 +Initial residual = 0.001160 +Final residual = 0.000052 +Average conv. rate = 0.044917 + +* 2 2 1 0.115998E-02 0.521026E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3253 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.18 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.67K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3253 Max w this run +w_max level proc position run w_max level timestep +0.910E+00 25 133 58.1deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3254 Model time: 1979-03-09 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043528 + +* 1 1 3 0.100000E+01 0.824735E-04 * +Number of iterations = 2 +Initial residual = 0.014083 +Final residual = 0.000044 +Average conv. rate = 0.055577 + +* 1 2 2 0.140834E-01 0.435002E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099083 +Final residual = 0.000013 +Average conv. rate = 0.050285 + +* 2 1 3 0.990829E-01 0.125984E-04 * +Number of iterations = 1 +Initial residual = 0.001223 +Final residual = 0.000052 +Average conv. rate = 0.042604 + +* 2 2 1 0.122346E-02 0.521249E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3254 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.78 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.34K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3254 Max w this run +w_max level proc position run w_max level timestep +0.881E+00 25 133 58.1deg E -34.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3255 Model time: 1979-03-09 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042997 + +* 1 1 3 0.100000E+01 0.794879E-04 * +Number of iterations = 2 +Initial residual = 0.014098 +Final residual = 0.000046 +Average conv. rate = 0.057298 + +* 1 2 2 0.140980E-01 0.462847E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097199 +Final residual = 0.000014 +Average conv. rate = 0.052459 + +* 2 1 3 0.971987E-01 0.140322E-04 * +Number of iterations = 1 +Initial residual = 0.001164 +Final residual = 0.000052 +Average conv. rate = 0.045033 + +* 2 2 1 0.116432E-02 0.524328E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3255 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.38 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3255 Max w this run +w_max level proc position run w_max level timestep +0.899E+00 25 133 58.1deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3256 Model time: 1979-03-09 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043545 + +* 1 1 3 0.100000E+01 0.825666E-04 * +Number of iterations = 2 +Initial residual = 0.014024 +Final residual = 0.000044 +Average conv. rate = 0.056050 + +* 1 2 2 0.140243E-01 0.440582E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097386 +Final residual = 0.000013 +Average conv. rate = 0.051436 + +* 2 1 3 0.973857E-01 0.132523E-04 * +Number of iterations = 1 +Initial residual = 0.001144 +Final residual = 0.000051 +Average conv. rate = 0.045013 + +* 2 2 1 0.114357E-02 0.514757E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3256 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.99 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3256 Max w this run +w_max level proc position run w_max level timestep +0.871E+00 25 133 58.1deg E -34.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3257 Model time: 1979-03-09 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043213 + +* 1 1 3 0.100000E+01 0.806939E-04 * +Number of iterations = 2 +Initial residual = 0.014075 +Final residual = 0.000044 +Average conv. rate = 0.055979 + +* 1 2 2 0.140753E-01 0.441073E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101205 +Final residual = 0.000015 +Average conv. rate = 0.052509 + +* 2 1 3 0.101205E+00 0.146522E-04 * +Number of iterations = 1 +Initial residual = 0.001368 +Final residual = 0.000051 +Average conv. rate = 0.037385 + +* 2 2 1 0.136814E-02 0.511484E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3257 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.61 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3257 Max w this run +w_max level proc position run w_max level timestep +0.846E+00 26 133 58.1deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3258 Model time: 1979-03-09 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043358 + +* 1 1 3 0.100000E+01 0.815070E-04 * +Number of iterations = 2 +Initial residual = 0.013971 +Final residual = 0.000044 +Average conv. rate = 0.056114 + +* 1 2 2 0.139715E-01 0.439934E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102999 +Final residual = 0.000013 +Average conv. rate = 0.050229 + +* 2 1 3 0.102999E+00 0.130530E-04 * +Number of iterations = 1 +Initial residual = 0.001251 +Final residual = 0.000051 +Average conv. rate = 0.040623 + +* 2 2 1 0.125064E-02 0.508046E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3258 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.25 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3258 Max w this run +w_max level proc position run w_max level timestep +0.827E+00 24 133 60.0deg E -34.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3259 Model time: 1979-03-09 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043364 + +* 1 1 3 0.100000E+01 0.815405E-04 * +Number of iterations = 2 +Initial residual = 0.013985 +Final residual = 0.000044 +Average conv. rate = 0.056364 + +* 1 2 2 0.139853E-01 0.444297E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104119 +Final residual = 0.000013 +Average conv. rate = 0.050532 + +* 2 1 3 0.104119E+00 0.134350E-04 * +Number of iterations = 1 +Initial residual = 0.001281 +Final residual = 0.000050 +Average conv. rate = 0.038986 + +* 2 2 1 0.128079E-02 0.499329E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3259 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.93 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.50K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3259 Max w this run +w_max level proc position run w_max level timestep +0.925E+00 25 133 60.0deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3260 Model time: 1979-03-09 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043469 + +* 1 1 3 0.100000E+01 0.821366E-04 * +Number of iterations = 2 +Initial residual = 0.013972 +Final residual = 0.000045 +Average conv. rate = 0.056503 + +* 1 2 2 0.139722E-01 0.446076E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105248 +Final residual = 0.000013 +Average conv. rate = 0.049958 + +* 2 1 3 0.105248E+00 0.131227E-04 * +Number of iterations = 1 +Initial residual = 0.001374 +Final residual = 0.000050 +Average conv. rate = 0.036201 + +* 2 2 1 0.137444E-02 0.497555E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3260 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.66 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3260 Max w this run +w_max level proc position run w_max level timestep +0.868E+00 26 133 60.0deg E -34.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3261 Model time: 1979-03-09 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043592 + +* 1 1 3 0.100000E+01 0.828368E-04 * +Number of iterations = 2 +Initial residual = 0.014056 +Final residual = 0.000045 +Average conv. rate = 0.056566 + +* 1 2 2 0.140559E-01 0.449755E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099471 +Final residual = 0.000013 +Average conv. rate = 0.050687 + +* 2 1 3 0.994709E-01 0.129531E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000050 +Average conv. rate = 0.043091 + +* 2 2 1 0.115535E-02 0.497846E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3261 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.48 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3261 Max w this run +w_max level proc position run w_max level timestep +0.825E+00 25 133 60.0deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3262 Model time: 1979-03-09 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044215 + +* 1 1 3 0.100000E+01 0.864369E-04 * +Number of iterations = 2 +Initial residual = 0.014059 +Final residual = 0.000045 +Average conv. rate = 0.056547 + +* 1 2 2 0.140589E-01 0.449543E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098328 +Final residual = 0.000013 +Average conv. rate = 0.050855 + +* 2 1 3 0.983284E-01 0.129325E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000050 +Average conv. rate = 0.043841 + +* 2 2 1 0.113748E-02 0.498678E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3262 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.43 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3262 Max w this run +w_max level proc position run w_max level timestep +0.762E+00 25 133 60.0deg E -34.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3263 Model time: 1979-03-09 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043963 + +* 1 1 3 0.100000E+01 0.849679E-04 * +Number of iterations = 2 +Initial residual = 0.014097 +Final residual = 0.000047 +Average conv. rate = 0.057806 + +* 1 2 2 0.140966E-01 0.471035E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099251 +Final residual = 0.000013 +Average conv. rate = 0.050929 + +* 2 1 3 0.992509E-01 0.131108E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000050 +Average conv. rate = 0.040709 + +* 2 2 1 0.122173E-02 0.497351E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3263 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.55 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3263 Max w this run +w_max level proc position run w_max level timestep +0.722E+00 24 133 60.0deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3264 Model time: 1979-03-10 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043972 + +* 1 1 3 0.100000E+01 0.850218E-04 * +Number of iterations = 2 +Initial residual = 0.013970 +Final residual = 0.000046 +Average conv. rate = 0.057309 + +* 1 2 2 0.139698E-01 0.458809E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100789 +Final residual = 0.000013 +Average conv. rate = 0.051075 + +* 2 1 3 0.100789E+00 0.134287E-04 * +Number of iterations = 1 +Initial residual = 0.001177 +Final residual = 0.000050 +Average conv. rate = 0.042609 + +* 2 2 1 0.117735E-02 0.501661E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13047E+25 +tot dry energy 0.13048E+25 +gr( rho cal) 0.38082E+24 +KE( rho cal) 0.80502E+21 +KEu(rho cal) 0.63060E+21 +KEv(rho cal) 0.17442E+21 +KEw(rho cal) 0.11951E+16 +cvT( rho cal) 0.92318E+24 +lq ( rho cal) 0.30691E+23 +lqcf( rho cal) 0.65924E+20 +lqcl( rho cal) 0.43195E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12313E+17 KG +Initial moisture = 0.12322E+17 KG +change in moisture = -0.92229E+13 KG +Moisture added E-P in period = -0.10076E+14 KG +Error in moisture = 0.85329E+12 KG +Error as % of change = -0.92518E+01 +q ( rho cal) 0.12272E+17 +qcf( rho cal) 0.26359E+14 +qcl( rho cal) 0.15236E+14 +FINAL TOTAL ENERGY = 0.13047E+25 J/ +INITIAL TOTAL ENERGY = 0.13048E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.13618E+21 J/ +FLUXES INTO ATM OVER PERIOD = -0.13298E+21 J/ +ERROR IN ENERGY BUDGET = 0.32055E+19 J/ +TEMP CORRECTION OVER A DAY = 0.87041E-03 K +TEMPERATURE CORRECTION RATE = 0.10074E-07 K/S +FLUX CORRECTION (ATM) = 0.72732E-01 W/M2 + +Minimum theta level 1 for timestep 3264 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.00 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.81K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3264 Max w this run +w_max level proc position run w_max level timestep +0.671E+00 24 133 60.0deg E -34.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6372.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6372.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6372.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6372.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6372.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6372.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3265 Model time: 1979-03-10 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043776 + +* 1 1 3 0.100000E+01 0.838904E-04 * +Number of iterations = 2 +Initial residual = 0.013963 +Final residual = 0.000046 +Average conv. rate = 0.057394 + +* 1 2 2 0.139634E-01 0.459962E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099185 +Final residual = 0.000014 +Average conv. rate = 0.051624 + +* 2 1 3 0.991848E-01 0.136460E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000051 +Average conv. rate = 0.044132 + +* 2 2 1 0.114921E-02 0.507174E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3265 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.69 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.07K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3265 Max w this run +w_max level proc position run w_max level timestep +0.619E+00 24 133 60.0deg E -34.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3266 Model time: 1979-03-10 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043687 + +* 1 1 3 0.100000E+01 0.833772E-04 * +Number of iterations = 2 +Initial residual = 0.013862 +Final residual = 0.000045 +Average conv. rate = 0.057003 + +* 1 2 2 0.138619E-01 0.450415E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099196 +Final residual = 0.000014 +Average conv. rate = 0.051725 + +* 2 1 3 0.991963E-01 0.137274E-04 * +Number of iterations = 1 +Initial residual = 0.001133 +Final residual = 0.000051 +Average conv. rate = 0.044815 + +* 2 2 1 0.113254E-02 0.507548E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3266 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.54 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.69K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3266 Max w this run +w_max level proc position run w_max level timestep +0.637E+00 26 220 41.3deg W -16.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3267 Model time: 1979-03-10 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043449 + +* 1 1 3 0.100000E+01 0.820238E-04 * +Number of iterations = 2 +Initial residual = 0.013915 +Final residual = 0.000045 +Average conv. rate = 0.056668 + +* 1 2 2 0.139153E-01 0.446850E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099039 +Final residual = 0.000013 +Average conv. rate = 0.051368 + +* 2 1 3 0.990389E-01 0.134242E-04 * +Number of iterations = 1 +Initial residual = 0.001140 +Final residual = 0.000051 +Average conv. rate = 0.044930 + +* 2 2 1 0.113973E-02 0.512076E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3267 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.62 456 91.9deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.49K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3267 Max w this run +w_max level proc position run w_max level timestep +0.718E+00 27 220 41.3deg W -16.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3268 Model time: 1979-03-10 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043577 + +* 1 1 3 0.100000E+01 0.827486E-04 * +Number of iterations = 2 +Initial residual = 0.013924 +Final residual = 0.000045 +Average conv. rate = 0.056662 + +* 1 2 2 0.139243E-01 0.447055E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102705 +Final residual = 0.000013 +Average conv. rate = 0.050757 + +* 2 1 3 0.102705E+00 0.134301E-04 * +Number of iterations = 1 +Initial residual = 0.001238 +Final residual = 0.000052 +Average conv. rate = 0.042089 + +* 2 2 1 0.123789E-02 0.521023E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3268 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.54 456 91.9deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3268 Max w this run +w_max level proc position run w_max level timestep +0.710E+00 28 220 41.3deg W -16.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3269 Model time: 1979-03-10 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043175 + +* 1 1 3 0.100000E+01 0.804807E-04 * +Number of iterations = 2 +Initial residual = 0.014003 +Final residual = 0.000045 +Average conv. rate = 0.056632 + +* 1 2 2 0.140031E-01 0.449100E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097744 +Final residual = 0.000012 +Average conv. rate = 0.050317 + +* 2 1 3 0.977435E-01 0.124521E-04 * +Number of iterations = 1 +Initial residual = 0.001131 +Final residual = 0.000052 +Average conv. rate = 0.045906 + +* 2 2 1 0.113085E-02 0.519127E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3269 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.52 456 91.9deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3269 Max w this run +w_max level proc position run w_max level timestep +0.717E+00 29 220 41.3deg W -16.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3270 Model time: 1979-03-10 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043052 + +* 1 1 3 0.100000E+01 0.797983E-04 * +Number of iterations = 2 +Initial residual = 0.014070 +Final residual = 0.000045 +Average conv. rate = 0.056346 + +* 1 2 2 0.140698E-01 0.446693E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095351 +Final residual = 0.000013 +Average conv. rate = 0.051459 + +* 2 1 3 0.953511E-01 0.129930E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000052 +Average conv. rate = 0.045066 + +* 2 2 1 0.115517E-02 0.520586E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3270 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.54 456 91.9deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.69K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3270 Max w this run +w_max level proc position run w_max level timestep +0.667E+00 29 220 41.3deg W -16.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3271 Model time: 1979-03-10 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043796 + +* 1 1 3 0.100000E+01 0.840061E-04 * +Number of iterations = 2 +Initial residual = 0.014311 +Final residual = 0.000045 +Average conv. rate = 0.056135 + +* 1 2 2 0.143107E-01 0.450942E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095100 +Final residual = 0.000013 +Average conv. rate = 0.052123 + +* 2 1 3 0.950998E-01 0.134669E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000053 +Average conv. rate = 0.045994 + +* 2 2 1 0.115003E-02 0.528946E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3271 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.82 456 90.0deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.78K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3271 Max w this run +w_max level proc position run w_max level timestep +0.569E+00 29 220 41.3deg W -16.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3272 Model time: 1979-03-10 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043726 + +* 1 1 3 0.100000E+01 0.836012E-04 * +Number of iterations = 2 +Initial residual = 0.014459 +Final residual = 0.000045 +Average conv. rate = 0.056068 + +* 1 2 2 0.144591E-01 0.454532E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093928 +Final residual = 0.000013 +Average conv. rate = 0.051985 + +* 2 1 3 0.939283E-01 0.131959E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000053 +Average conv. rate = 0.046699 + +* 2 2 1 0.113661E-02 0.530780E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3272 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.18 456 90.0deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.51K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3272 Max w this run +w_max level proc position run w_max level timestep +0.566E+00 34 220 39.4deg W -16.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3273 Model time: 1979-03-10 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043210 + +* 1 1 3 0.100000E+01 0.806773E-04 * +Number of iterations = 2 +Initial residual = 0.014635 +Final residual = 0.000045 +Average conv. rate = 0.055442 + +* 1 2 2 0.146351E-01 0.449853E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093555 +Final residual = 0.000013 +Average conv. rate = 0.052066 + +* 2 1 3 0.935545E-01 0.132049E-04 * +Number of iterations = 1 +Initial residual = 0.001117 +Final residual = 0.000052 +Average conv. rate = 0.046391 + +* 2 2 1 0.111727E-02 0.518316E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3273 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.69 456 90.0deg E 73.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.15K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3273 Max w this run +w_max level proc position run w_max level timestep +0.546E+00 34 220 39.4deg W -16.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3274 Model time: 1979-03-10 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042905 + +* 1 1 3 0.100000E+01 0.789826E-04 * +Number of iterations = 2 +Initial residual = 0.014583 +Final residual = 0.000045 +Average conv. rate = 0.055494 + +* 1 2 2 0.145832E-01 0.449101E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091787 +Final residual = 0.000013 +Average conv. rate = 0.052641 + +* 2 1 3 0.917875E-01 0.133895E-04 * +Number of iterations = 1 +Initial residual = 0.001105 +Final residual = 0.000052 +Average conv. rate = 0.046938 + +* 2 2 1 0.110491E-02 0.518625E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3274 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.65 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3274 Max w this run +w_max level proc position run w_max level timestep +0.517E+00 36 220 39.4deg W -16.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3275 Model time: 1979-03-10 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043509 + +* 1 1 3 0.100000E+01 0.823662E-04 * +Number of iterations = 2 +Initial residual = 0.014433 +Final residual = 0.000045 +Average conv. rate = 0.055979 + +* 1 2 2 0.144326E-01 0.452269E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092697 +Final residual = 0.000013 +Average conv. rate = 0.051754 + +* 2 1 3 0.926966E-01 0.128498E-04 * +Number of iterations = 1 +Initial residual = 0.001115 +Final residual = 0.000052 +Average conv. rate = 0.046853 + +* 2 2 1 0.111513E-02 0.522471E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3275 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.22 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3275 Max w this run +w_max level proc position run w_max level timestep +0.544E+00 23 220 41.3deg W -15.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3276 Model time: 1979-03-10 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042759 + +* 1 1 3 0.100000E+01 0.781759E-04 * +Number of iterations = 2 +Initial residual = 0.014214 +Final residual = 0.000045 +Average conv. rate = 0.056240 + +* 1 2 2 0.142137E-01 0.449568E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092989 +Final residual = 0.000012 +Average conv. rate = 0.050646 + +* 2 1 3 0.929886E-01 0.120801E-04 * +Number of iterations = 1 +Initial residual = 0.001145 +Final residual = 0.000053 +Average conv. rate = 0.046156 + +* 2 2 1 0.114528E-02 0.528613E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3276 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.80 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.62K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3276 Max w this run +w_max level proc position run w_max level timestep +0.635E+00 25 220 41.3deg W -15.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3277 Model time: 1979-03-10 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043172 + +* 1 1 3 0.100000E+01 0.804640E-04 * +Number of iterations = 2 +Initial residual = 0.014159 +Final residual = 0.000045 +Average conv. rate = 0.056497 + +* 1 2 2 0.141592E-01 0.451951E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094566 +Final residual = 0.000013 +Average conv. rate = 0.051989 + +* 2 1 3 0.945659E-01 0.132881E-04 * +Number of iterations = 1 +Initial residual = 0.001141 +Final residual = 0.000054 +Average conv. rate = 0.047418 + +* 2 2 1 0.114092E-02 0.540998E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3277 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.46 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3277 Max w this run +w_max level proc position run w_max level timestep +0.677E+00 25 220 41.3deg W -15.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3278 Model time: 1979-03-10 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042924 + +* 1 1 3 0.100000E+01 0.790860E-04 * +Number of iterations = 2 +Initial residual = 0.014179 +Final residual = 0.000045 +Average conv. rate = 0.056171 + +* 1 2 2 0.141787E-01 0.447370E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093841 +Final residual = 0.000013 +Average conv. rate = 0.051618 + +* 2 1 3 0.938408E-01 0.129059E-04 * +Number of iterations = 1 +Initial residual = 0.001160 +Final residual = 0.000055 +Average conv. rate = 0.047075 + +* 2 2 1 0.115973E-02 0.545945E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3278 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.09 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3278 Max w this run +w_max level proc position run w_max level timestep +0.666E+00 26 220 41.3deg W -15.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3279 Model time: 1979-03-10 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043546 + +* 1 1 3 0.100000E+01 0.825738E-04 * +Number of iterations = 2 +Initial residual = 0.014283 +Final residual = 0.000045 +Average conv. rate = 0.056273 + +* 1 2 2 0.142825E-01 0.452272E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092434 +Final residual = 0.000012 +Average conv. rate = 0.050664 + +* 2 1 3 0.924343E-01 0.120205E-04 * +Number of iterations = 1 +Initial residual = 0.001142 +Final residual = 0.000054 +Average conv. rate = 0.047558 + +* 2 2 1 0.114151E-02 0.542882E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3279 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.81 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3279 Max w this run +w_max level proc position run w_max level timestep +0.638E+00 28 220 41.3deg W -15.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3280 Model time: 1979-03-10 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043121 + +* 1 1 3 0.100000E+01 0.801794E-04 * +Number of iterations = 2 +Initial residual = 0.014195 +Final residual = 0.000044 +Average conv. rate = 0.055465 + +* 1 2 2 0.141950E-01 0.436691E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092091 +Final residual = 0.000013 +Average conv. rate = 0.052395 + +* 2 1 3 0.920910E-01 0.132458E-04 * +Number of iterations = 1 +Initial residual = 0.001125 +Final residual = 0.000055 +Average conv. rate = 0.048586 + +* 2 2 1 0.112525E-02 0.546714E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3280 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.54 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.90K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3280 Max w this run +w_max level proc position run w_max level timestep +0.558E+00 28 220 41.3deg W -15.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3281 Model time: 1979-03-10 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043767 + +* 1 1 3 0.100000E+01 0.838350E-04 * +Number of iterations = 2 +Initial residual = 0.014169 +Final residual = 0.000044 +Average conv. rate = 0.055548 + +* 1 2 2 0.141689E-01 0.437194E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091907 +Final residual = 0.000016 +Average conv. rate = 0.055286 + +* 2 1 3 0.919074E-01 0.155310E-04 * +Number of iterations = 1 +Initial residual = 0.001124 +Final residual = 0.000056 +Average conv. rate = 0.049651 + +* 2 2 1 0.112403E-02 0.558090E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3281 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.31 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.86K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3281 Max w this run +w_max level proc position run w_max level timestep +0.519E+00 34 220 39.4deg W -15.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3282 Model time: 1979-03-10 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043646 + +* 1 1 3 0.100000E+01 0.831452E-04 * +Number of iterations = 2 +Initial residual = 0.014120 +Final residual = 0.000043 +Average conv. rate = 0.055424 + +* 1 2 2 0.141199E-01 0.433734E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092438 +Final residual = 0.000015 +Average conv. rate = 0.054158 + +* 2 1 3 0.924383E-01 0.146839E-04 * +Number of iterations = 1 +Initial residual = 0.001144 +Final residual = 0.000056 +Average conv. rate = 0.049117 + +* 2 2 1 0.114427E-02 0.562035E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3282 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.11 440 88.1deg W 65.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3282 Max w this run +w_max level proc position run w_max level timestep +0.531E+00 28 220 41.3deg W -15.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3283 Model time: 1979-03-10 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043182 + +* 1 1 3 0.100000E+01 0.805185E-04 * +Number of iterations = 2 +Initial residual = 0.014199 +Final residual = 0.000044 +Average conv. rate = 0.055670 + +* 1 2 2 0.141987E-01 0.440043E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091924 +Final residual = 0.000014 +Average conv. rate = 0.052929 + +* 2 1 3 0.919238E-01 0.136300E-04 * +Number of iterations = 1 +Initial residual = 0.001148 +Final residual = 0.000056 +Average conv. rate = 0.048961 + +* 2 2 1 0.114810E-02 0.562117E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3283 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.87 440 88.1deg W 65.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.09K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3283 Max w this run +w_max level proc position run w_max level timestep +0.600E+00 30 220 41.3deg W -15.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3284 Model time: 1979-03-10 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043656 + +* 1 1 3 0.100000E+01 0.832027E-04 * +Number of iterations = 2 +Initial residual = 0.014272 +Final residual = 0.000044 +Average conv. rate = 0.055700 + +* 1 2 2 0.142725E-01 0.442803E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091306 +Final residual = 0.000013 +Average conv. rate = 0.052159 + +* 2 1 3 0.913057E-01 0.129565E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000057 +Average conv. rate = 0.049204 + +* 2 2 1 0.115012E-02 0.565908E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3284 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.64 440 88.1deg W 65.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3284 Max w this run +w_max level proc position run w_max level timestep +0.614E+00 31 220 41.3deg W -15.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3285 Model time: 1979-03-10 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043455 + +* 1 1 3 0.100000E+01 0.820605E-04 * +Number of iterations = 2 +Initial residual = 0.014473 +Final residual = 0.000045 +Average conv. rate = 0.055880 + +* 1 2 2 0.144732E-01 0.451940E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092834 +Final residual = 0.000011 +Average conv. rate = 0.049418 + +* 2 1 3 0.928342E-01 0.112037E-04 * +Number of iterations = 1 +Initial residual = 0.001153 +Final residual = 0.000057 +Average conv. rate = 0.049019 + +* 2 2 1 0.115273E-02 0.565059E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3285 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.42 440 88.1deg W 65.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3285 Max w this run +w_max level proc position run w_max level timestep +0.590E+00 30 220 41.3deg W -15.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3286 Model time: 1979-03-10 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043348 + +* 1 1 3 0.100000E+01 0.814514E-04 * +Number of iterations = 2 +Initial residual = 0.014502 +Final residual = 0.000046 +Average conv. rate = 0.056201 + +* 1 2 2 0.145024E-01 0.458060E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093010 +Final residual = 0.000011 +Average conv. rate = 0.048950 + +* 2 1 3 0.930105E-01 0.109093E-04 * +Number of iterations = 1 +Initial residual = 0.001154 +Final residual = 0.000057 +Average conv. rate = 0.049414 + +* 2 2 1 0.115351E-02 0.569998E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3286 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.21 440 88.1deg W 65.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3286 Max w this run +w_max level proc position run w_max level timestep +0.529E+00 29 220 41.3deg W -15.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3287 Model time: 1979-03-10 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043834 + +* 1 1 3 0.100000E+01 0.842213E-04 * +Number of iterations = 2 +Initial residual = 0.014559 +Final residual = 0.000047 +Average conv. rate = 0.056556 + +* 1 2 2 0.145590E-01 0.465685E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092646 +Final residual = 0.000012 +Average conv. rate = 0.050370 + +* 2 1 3 0.926459E-01 0.118397E-04 * +Number of iterations = 1 +Initial residual = 0.001159 +Final residual = 0.000058 +Average conv. rate = 0.049809 + +* 2 2 1 0.115871E-02 0.577138E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3287 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.02 440 88.1deg W 65.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.65K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3287 Max w this run +w_max level proc position run w_max level timestep +0.531E+00 30 220 41.3deg W -15.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3288 Model time: 1979-03-10 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043254 + +* 1 1 3 0.100000E+01 0.809223E-04 * +Number of iterations = 2 +Initial residual = 0.014550 +Final residual = 0.000046 +Average conv. rate = 0.056513 + +* 1 2 2 0.145497E-01 0.464674E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092029 +Final residual = 0.000014 +Average conv. rate = 0.053601 + +* 2 1 3 0.920291E-01 0.141726E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000058 +Average conv. rate = 0.050036 + +* 2 2 1 0.115682E-02 0.578828E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3288 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.82 440 88.1deg W 65.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3288 Max w this run +w_max level proc position run w_max level timestep +0.520E+00 30 220 41.3deg W -15.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3289 Model time: 1979-03-10 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043463 + +* 1 1 3 0.100000E+01 0.821039E-04 * +Number of iterations = 2 +Initial residual = 0.014594 +Final residual = 0.000047 +Average conv. rate = 0.056597 + +* 1 2 2 0.145938E-01 0.467475E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092887 +Final residual = 0.000015 +Average conv. rate = 0.054079 + +* 2 1 3 0.928870E-01 0.146903E-04 * +Number of iterations = 1 +Initial residual = 0.001147 +Final residual = 0.000057 +Average conv. rate = 0.050014 + +* 2 2 1 0.114734E-02 0.573829E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3289 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.64 440 88.1deg W 65.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3289 Max w this run +w_max level proc position run w_max level timestep +0.501E+00 37 220 39.4deg W -14.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3290 Model time: 1979-03-10 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043448 + +* 1 1 3 0.100000E+01 0.820199E-04 * +Number of iterations = 2 +Initial residual = 0.014426 +Final residual = 0.000047 +Average conv. rate = 0.056848 + +* 1 2 2 0.144264E-01 0.466223E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093456 +Final residual = 0.000013 +Average conv. rate = 0.052016 + +* 2 1 3 0.934562E-01 0.131530E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000057 +Average conv. rate = 0.050399 + +* 2 2 1 0.113660E-02 0.572831E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3290 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.48 440 88.1deg W 65.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.22K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3290 Max w this run +w_max level proc position run w_max level timestep +0.518E+00 37 220 39.4deg W -14.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3291 Model time: 1979-03-10 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043192 + +* 1 1 3 0.100000E+01 0.805769E-04 * +Number of iterations = 2 +Initial residual = 0.014345 +Final residual = 0.000046 +Average conv. rate = 0.056924 + +* 1 2 2 0.143455E-01 0.464836E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094444 +Final residual = 0.000014 +Average conv. rate = 0.052445 + +* 2 1 3 0.944440E-01 0.136234E-04 * +Number of iterations = 1 +Initial residual = 0.001141 +Final residual = 0.000058 +Average conv. rate = 0.050489 + +* 2 2 1 0.114084E-02 0.575999E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3291 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.39 440 88.1deg W 65.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.31K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3291 Max w this run +w_max level proc position run w_max level timestep +0.494E+00 37 220 39.4deg W -14.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3292 Model time: 1979-03-10 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043934 + +* 1 1 3 0.100000E+01 0.848029E-04 * +Number of iterations = 2 +Initial residual = 0.014230 +Final residual = 0.000046 +Average conv. rate = 0.056980 + +* 1 2 2 0.142299E-01 0.462000E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093962 +Final residual = 0.000012 +Average conv. rate = 0.050912 + +* 2 1 3 0.939617E-01 0.123997E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000058 +Average conv. rate = 0.051013 + +* 2 2 1 0.113374E-02 0.578356E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3292 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.26 439 91.9deg W 63.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.41K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3292 Max w this run +w_max level proc position run w_max level timestep +0.450E+00 28 209 163.1deg W -19.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3293 Model time: 1979-03-10 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044020 + +* 1 1 3 0.100000E+01 0.853006E-04 * +Number of iterations = 2 +Initial residual = 0.014228 +Final residual = 0.000047 +Average conv. rate = 0.057236 + +* 1 2 2 0.142276E-01 0.466092E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094842 +Final residual = 0.000012 +Average conv. rate = 0.050773 + +* 2 1 3 0.948420E-01 0.124134E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000058 +Average conv. rate = 0.050687 + +* 2 2 1 0.114622E-02 0.580986E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3293 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.20 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.63K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3293 Max w this run +w_max level proc position run w_max level timestep +0.437E+00 29 209 163.1deg W -19.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3294 Model time: 1979-03-10 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044265 + +* 1 1 3 0.100000E+01 0.867312E-04 * +Number of iterations = 2 +Initial residual = 0.014157 +Final residual = 0.000047 +Average conv. rate = 0.057345 + +* 1 2 2 0.141573E-01 0.465551E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093589 +Final residual = 0.000013 +Average conv. rate = 0.051251 + +* 2 1 3 0.935887E-01 0.125986E-04 * +Number of iterations = 1 +Initial residual = 0.001139 +Final residual = 0.000059 +Average conv. rate = 0.051506 + +* 2 2 1 0.113944E-02 0.586882E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3294 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.25 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3294 Max w this run +w_max level proc position run w_max level timestep +0.410E+00 29 209 163.1deg W -19.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3295 Model time: 1979-03-10 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044195 + +* 1 1 3 0.100000E+01 0.863196E-04 * +Number of iterations = 2 +Initial residual = 0.014281 +Final residual = 0.000047 +Average conv. rate = 0.057232 + +* 1 2 2 0.142812E-01 0.467776E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094234 +Final residual = 0.000013 +Average conv. rate = 0.051659 + +* 2 1 3 0.942342E-01 0.129912E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000059 +Average conv. rate = 0.052042 + +* 2 2 1 0.113364E-02 0.589965E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3295 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.45 439 101.3deg W 66.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3295 Max w this run +w_max level proc position run w_max level timestep +0.397E+00 40 227 33.8deg E -4.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3296 Model time: 1979-03-10 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043917 + +* 1 1 3 0.100000E+01 0.847046E-04 * +Number of iterations = 2 +Initial residual = 0.014306 +Final residual = 0.000047 +Average conv. rate = 0.057495 + +* 1 2 2 0.143057E-01 0.472892E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094338 +Final residual = 0.000015 +Average conv. rate = 0.053727 + +* 2 1 3 0.943381E-01 0.146304E-04 * +Number of iterations = 1 +Initial residual = 0.001128 +Final residual = 0.000060 +Average conv. rate = 0.053293 + +* 2 2 1 0.112759E-02 0.600931E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3296 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.06 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3296 Max w this run +w_max level proc position run w_max level timestep +0.382E+00 36 236 140.6deg E -6.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3297 Model time: 1979-03-10 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044292 + +* 1 1 3 0.100000E+01 0.868886E-04 * +Number of iterations = 2 +Initial residual = 0.014413 +Final residual = 0.000047 +Average conv. rate = 0.057011 + +* 1 2 2 0.144133E-01 0.468471E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094144 +Final residual = 0.000013 +Average conv. rate = 0.052230 + +* 2 1 3 0.941443E-01 0.134139E-04 * +Number of iterations = 1 +Initial residual = 0.001121 +Final residual = 0.000059 +Average conv. rate = 0.052355 + +* 2 2 1 0.112150E-02 0.587154E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3297 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.57 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.42K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3297 Max w this run +w_max level proc position run w_max level timestep +0.442E+00 38 250 67.5deg W -8.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3298 Model time: 1979-03-10 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044443 + +* 1 1 3 0.100000E+01 0.877802E-04 * +Number of iterations = 2 +Initial residual = 0.014411 +Final residual = 0.000047 +Average conv. rate = 0.056937 + +* 1 2 2 0.144107E-01 0.467169E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093751 +Final residual = 0.000014 +Average conv. rate = 0.052971 + +* 2 1 3 0.937514E-01 0.139343E-04 * +Number of iterations = 1 +Initial residual = 0.001128 +Final residual = 0.000058 +Average conv. rate = 0.051378 + +* 2 2 1 0.112838E-02 0.579737E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3298 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.12 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.78K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3298 Max w this run +w_max level proc position run w_max level timestep +0.450E+00 39 250 67.5deg W -8.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3299 Model time: 1979-03-10 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044121 + +* 1 1 3 0.100000E+01 0.858901E-04 * +Number of iterations = 2 +Initial residual = 0.014444 +Final residual = 0.000048 +Average conv. rate = 0.057538 + +* 1 2 2 0.144438E-01 0.478180E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094548 +Final residual = 0.000016 +Average conv. rate = 0.055044 + +* 2 1 3 0.945480E-01 0.157678E-04 * +Number of iterations = 1 +Initial residual = 0.001132 +Final residual = 0.000059 +Average conv. rate = 0.052239 + +* 2 2 1 0.113212E-02 0.591413E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3299 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.67 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.19K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3299 Max w this run +w_max level proc position run w_max level timestep +0.514E+00 36 258 30.0deg E 4.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3300 Model time: 1979-03-10 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044895 + +* 1 1 3 0.100000E+01 0.904864E-04 * +Number of iterations = 2 +Initial residual = 0.014410 +Final residual = 0.000047 +Average conv. rate = 0.057395 + +* 1 2 2 0.144099E-01 0.474687E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094469 +Final residual = 0.000013 +Average conv. rate = 0.052267 + +* 2 1 3 0.944692E-01 0.134887E-04 * +Number of iterations = 1 +Initial residual = 0.001128 +Final residual = 0.000058 +Average conv. rate = 0.051233 + +* 2 2 1 0.112800E-02 0.577911E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3300 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.86 45 148.1deg E -77.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3300 Max w this run +w_max level proc position run w_max level timestep +0.496E+00 36 258 30.0deg E 4.4deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3301 Model time: 1979-03-10 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044455 + +* 1 1 3 0.100000E+01 0.878562E-04 * +Number of iterations = 2 +Initial residual = 0.014391 +Final residual = 0.000048 +Average conv. rate = 0.057607 + +* 1 2 2 0.143913E-01 0.477580E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095008 +Final residual = 0.000015 +Average conv. rate = 0.054278 + +* 2 1 3 0.950081E-01 0.151926E-04 * +Number of iterations = 1 +Initial residual = 0.001136 +Final residual = 0.000058 +Average conv. rate = 0.051036 + +* 2 2 1 0.113594E-02 0.579733E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3301 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.74 45 148.1deg E -77.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3301 Max w this run +w_max level proc position run w_max level timestep +0.482E+00 37 250 67.5deg W -6.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3302 Model time: 1979-03-10 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043872 + +* 1 1 3 0.100000E+01 0.844405E-04 * +Number of iterations = 2 +Initial residual = 0.014275 +Final residual = 0.000047 +Average conv. rate = 0.057586 + +* 1 2 2 0.142755E-01 0.473401E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093007 +Final residual = 0.000016 +Average conv. rate = 0.056055 + +* 2 1 3 0.930066E-01 0.163819E-04 * +Number of iterations = 1 +Initial residual = 0.001121 +Final residual = 0.000058 +Average conv. rate = 0.051533 + +* 2 2 1 0.112139E-02 0.577883E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3302 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.63 45 148.1deg E -77.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3302 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 33 162 24.4deg E -30.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3303 Model time: 1979-03-10 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044472 + +* 1 1 3 0.100000E+01 0.879569E-04 * +Number of iterations = 2 +Initial residual = 0.014320 +Final residual = 0.000048 +Average conv. rate = 0.057796 + +* 1 2 2 0.143196E-01 0.478331E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095724 +Final residual = 0.000014 +Average conv. rate = 0.052880 + +* 2 1 3 0.957240E-01 0.141545E-04 * +Number of iterations = 1 +Initial residual = 0.001140 +Final residual = 0.000058 +Average conv. rate = 0.050878 + +* 2 2 1 0.114048E-02 0.580252E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3303 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.34 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.41K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3303 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 33 162 24.4deg E -30.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3304 Model time: 1979-03-10 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043798 + +* 1 1 3 0.100000E+01 0.840142E-04 * +Number of iterations = 2 +Initial residual = 0.014313 +Final residual = 0.000047 +Average conv. rate = 0.057411 + +* 1 2 2 0.143126E-01 0.471745E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093408 +Final residual = 0.000013 +Average conv. rate = 0.051837 + +* 2 1 3 0.934080E-01 0.130107E-04 * +Number of iterations = 1 +Initial residual = 0.001131 +Final residual = 0.000057 +Average conv. rate = 0.050457 + +* 2 2 1 0.113079E-02 0.570563E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3304 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.03 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.51K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3304 Max w this run +w_max level proc position run w_max level timestep +0.449E+00 33 162 24.4deg E -30.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3305 Model time: 1979-03-10 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044392 + +* 1 1 3 0.100000E+01 0.874815E-04 * +Number of iterations = 2 +Initial residual = 0.014419 +Final residual = 0.000048 +Average conv. rate = 0.057451 + +* 1 2 2 0.144192E-01 0.475925E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093958 +Final residual = 0.000014 +Average conv. rate = 0.052787 + +* 2 1 3 0.939577E-01 0.138206E-04 * +Number of iterations = 1 +Initial residual = 0.001143 +Final residual = 0.000057 +Average conv. rate = 0.049724 + +* 2 2 1 0.114293E-02 0.568317E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3305 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.75 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.60K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3305 Max w this run +w_max level proc position run w_max level timestep +0.392E+00 38 258 26.3deg E 1.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3306 Model time: 1979-03-10 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044458 + +* 1 1 3 0.100000E+01 0.878705E-04 * +Number of iterations = 2 +Initial residual = 0.014432 +Final residual = 0.000049 +Average conv. rate = 0.058527 + +* 1 2 2 0.144323E-01 0.494362E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094100 +Final residual = 0.000016 +Average conv. rate = 0.055759 + +* 2 1 3 0.941001E-01 0.163132E-04 * +Number of iterations = 1 +Initial residual = 0.001151 +Final residual = 0.000057 +Average conv. rate = 0.049218 + +* 2 2 1 0.115093E-02 0.566467E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3306 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.48 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.68K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3306 Max w this run +w_max level proc position run w_max level timestep +0.420E+00 38 249 71.3deg W -8.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3307 Model time: 1979-03-10 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043219 + +* 1 1 3 0.100000E+01 0.807292E-04 * +Number of iterations = 2 +Initial residual = 0.014514 +Final residual = 0.000049 +Average conv. rate = 0.058261 + +* 1 2 2 0.145141E-01 0.492654E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094533 +Final residual = 0.000011 +Average conv. rate = 0.049549 + +* 2 1 3 0.945329E-01 0.114999E-04 * +Number of iterations = 1 +Initial residual = 0.001161 +Final residual = 0.000056 +Average conv. rate = 0.048632 + +* 2 2 1 0.116060E-02 0.564422E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3307 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.22 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3307 Max w this run +w_max level proc position run w_max level timestep +0.411E+00 37 236 136.9deg E -5.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3308 Model time: 1979-03-10 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044671 + +* 1 1 3 0.100000E+01 0.891415E-04 * +Number of iterations = 2 +Initial residual = 0.014510 +Final residual = 0.000047 +Average conv. rate = 0.057117 + +* 1 2 2 0.145102E-01 0.473372E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094180 +Final residual = 0.000015 +Average conv. rate = 0.053951 + +* 2 1 3 0.941803E-01 0.147895E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000055 +Average conv. rate = 0.047736 + +* 2 2 1 0.115494E-02 0.551327E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3308 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.99 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3308 Max w this run +w_max level proc position run w_max level timestep +0.440E+00 39 226 22.5deg E -0.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3309 Model time: 1979-03-10 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044236 + +* 1 1 3 0.100000E+01 0.865645E-04 * +Number of iterations = 2 +Initial residual = 0.014650 +Final residual = 0.000047 +Average conv. rate = 0.056406 + +* 1 2 2 0.146497E-01 0.466093E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094793 +Final residual = 0.000015 +Average conv. rate = 0.053684 + +* 2 1 3 0.947934E-01 0.146660E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000055 +Average conv. rate = 0.047621 + +* 2 2 1 0.114925E-02 0.547285E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3309 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.82 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3309 Max w this run +w_max level proc position run w_max level timestep +0.462E+00 40 226 22.5deg E -0.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3310 Model time: 1979-03-10 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043437 + +* 1 1 3 0.100000E+01 0.819556E-04 * +Number of iterations = 2 +Initial residual = 0.014607 +Final residual = 0.000047 +Average conv. rate = 0.056949 + +* 1 2 2 0.146069E-01 0.473736E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094426 +Final residual = 0.000014 +Average conv. rate = 0.052452 + +* 2 1 3 0.944264E-01 0.136263E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000054 +Average conv. rate = 0.047044 + +* 2 2 1 0.114619E-02 0.539218E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3310 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.75 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3310 Max w this run +w_max level proc position run w_max level timestep +0.416E+00 40 226 22.5deg E -0.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3311 Model time: 1979-03-10 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044149 + +* 1 1 3 0.100000E+01 0.860503E-04 * +Number of iterations = 2 +Initial residual = 0.014463 +Final residual = 0.000049 +Average conv. rate = 0.057936 + +* 1 2 2 0.144633E-01 0.485464E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095491 +Final residual = 0.000016 +Average conv. rate = 0.055469 + +* 2 1 3 0.954911E-01 0.162973E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000054 +Average conv. rate = 0.046948 + +* 2 2 1 0.114888E-02 0.539382E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3311 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.85 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3311 Max w this run +w_max level proc position run w_max level timestep +0.439E+00 40 226 22.5deg E -0.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3312 Model time: 1979-03-11 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044128 + +* 1 1 3 0.100000E+01 0.859289E-04 * +Number of iterations = 2 +Initial residual = 0.014160 +Final residual = 0.000046 +Average conv. rate = 0.057112 + +* 1 2 2 0.141596E-01 0.461854E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094183 +Final residual = 0.000014 +Average conv. rate = 0.052839 + +* 2 1 3 0.941828E-01 0.138944E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000054 +Average conv. rate = 0.047631 + +* 2 2 1 0.113693E-02 0.541531E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13046E+25 +tot dry energy 0.13047E+25 +gr( rho cal) 0.38080E+24 +KE( rho cal) 0.80545E+21 +KEu(rho cal) 0.63085E+21 +KEv(rho cal) 0.17460E+21 +KEw(rho cal) 0.10678E+16 +cvT( rho cal) 0.92312E+24 +lq ( rho cal) 0.30711E+23 +lqcf( rho cal) 0.64651E+20 +lqcl( rho cal) 0.43702E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12321E+17 KG +Initial moisture = 0.12313E+17 KG +change in moisture = 0.76223E+13 KG +Moisture added E-P in period = 0.71309E+13 KG +Error in moisture = 0.49135E+12 KG +Error as % of change = 0.64463E+01 +q ( rho cal) 0.12279E+17 +qcf( rho cal) 0.25850E+14 +qcl( rho cal) 0.15415E+14 +FINAL TOTAL ENERGY = 0.13046E+25 J/ +INITIAL TOTAL ENERGY = 0.13047E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.67890E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.68251E+20 J/ +ERROR IN ENERGY BUDGET = -0.36065E+18 J/ +TEMP CORRECTION OVER A DAY = -0.97929E-04 K +TEMPERATURE CORRECTION RATE = -0.11334E-08 K/S +FLUX CORRECTION (ATM) = -0.81830E-02 W/M2 + +Minimum theta level 1 for timestep 3312 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.14 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3312 Max w this run +w_max level proc position run w_max level timestep +0.384E+00 34 251 50.6deg W -10.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6348.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6348.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD5 +REPLANCA - time interpolation for ancillary field, stashcode 216 +targ_time,time1,time2 -6300.00000 -12396.00000 -3636.00000 +hours,int,period -32768 12 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1162 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 9 Number of steps129 +STASH code in dataset 216 STASH code requested 216 +'start' position of lookup tables for dataset 4in overall lookup array 182173 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6348.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6348.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6348.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6348.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3313 Model time: 1979-03-11 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044423 + +* 1 1 3 0.100000E+01 0.876672E-04 * +Number of iterations = 2 +Initial residual = 0.014111 +Final residual = 0.000046 +Average conv. rate = 0.057402 + +* 1 2 2 0.141113E-01 0.464959E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094429 +Final residual = 0.000015 +Average conv. rate = 0.053897 + +* 2 1 3 0.944291E-01 0.147846E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000054 +Average conv. rate = 0.047488 + +* 2 2 1 0.113440E-02 0.538703E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3313 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.72 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3313 Max w this run +w_max level proc position run w_max level timestep +0.416E+00 35 251 50.6deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3314 Model time: 1979-03-11 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043493 + +* 1 1 3 0.100000E+01 0.822719E-04 * +Number of iterations = 2 +Initial residual = 0.014081 +Final residual = 0.000047 +Average conv. rate = 0.057532 + +* 1 2 2 0.140810E-01 0.466080E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094118 +Final residual = 0.000013 +Average conv. rate = 0.052096 + +* 2 1 3 0.941176E-01 0.133072E-04 * +Number of iterations = 1 +Initial residual = 0.001131 +Final residual = 0.000053 +Average conv. rate = 0.047180 + +* 2 2 1 0.113067E-02 0.533446E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3314 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.49 42 114.4deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3314 Max w this run +w_max level proc position run w_max level timestep +0.447E+00 36 251 50.6deg W -10.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3315 Model time: 1979-03-11 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043658 + +* 1 1 3 0.100000E+01 0.832136E-04 * +Number of iterations = 2 +Initial residual = 0.014163 +Final residual = 0.000045 +Average conv. rate = 0.056106 + +* 1 2 2 0.141628E-01 0.445826E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095536 +Final residual = 0.000014 +Average conv. rate = 0.052168 + +* 2 1 3 0.955365E-01 0.135641E-04 * +Number of iterations = 1 +Initial residual = 0.001141 +Final residual = 0.000053 +Average conv. rate = 0.046769 + +* 2 2 1 0.114113E-02 0.533696E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3315 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.75 454 75.0deg E 71.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3315 Max w this run +w_max level proc position run w_max level timestep +0.476E+00 37 251 50.6deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3316 Model time: 1979-03-11 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043599 + +* 1 1 3 0.100000E+01 0.828774E-04 * +Number of iterations = 2 +Initial residual = 0.014166 +Final residual = 0.000045 +Average conv. rate = 0.056268 + +* 1 2 2 0.141660E-01 0.448512E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094308 +Final residual = 0.000014 +Average conv. rate = 0.052664 + +* 2 1 3 0.943078E-01 0.137750E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000053 +Average conv. rate = 0.046534 + +* 2 2 1 0.114636E-02 0.533443E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3316 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.62 454 75.0deg E 71.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.12K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3316 Max w this run +w_max level proc position run w_max level timestep +0.458E+00 38 251 50.6deg W -10.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3317 Model time: 1979-03-11 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043008 + +* 1 1 3 0.100000E+01 0.795503E-04 * +Number of iterations = 2 +Initial residual = 0.014267 +Final residual = 0.000044 +Average conv. rate = 0.055629 + +* 1 2 2 0.142670E-01 0.441497E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094812 +Final residual = 0.000014 +Average conv. rate = 0.053402 + +* 2 1 3 0.948123E-01 0.144390E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000053 +Average conv. rate = 0.045987 + +* 2 2 1 0.114619E-02 0.527095E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3317 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.50 454 75.0deg E 71.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3317 Max w this run +w_max level proc position run w_max level timestep +0.494E+00 38 251 50.6deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3318 Model time: 1979-03-11 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043009 + +* 1 1 3 0.100000E+01 0.795581E-04 * +Number of iterations = 2 +Initial residual = 0.014312 +Final residual = 0.000046 +Average conv. rate = 0.056899 + +* 1 2 2 0.143123E-01 0.463354E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095430 +Final residual = 0.000014 +Average conv. rate = 0.052837 + +* 2 1 3 0.954304E-01 0.140766E-04 * +Number of iterations = 1 +Initial residual = 0.001168 +Final residual = 0.000053 +Average conv. rate = 0.045771 + +* 2 2 1 0.116819E-02 0.534697E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3318 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.31 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3318 Max w this run +w_max level proc position run w_max level timestep +0.463E+00 18 104 97.5deg E -45.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3319 Model time: 1979-03-11 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043155 + +* 1 1 3 0.100000E+01 0.803716E-04 * +Number of iterations = 2 +Initial residual = 0.014416 +Final residual = 0.000048 +Average conv. rate = 0.057489 + +* 1 2 2 0.144158E-01 0.476448E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095256 +Final residual = 0.000013 +Average conv. rate = 0.050823 + +* 2 1 3 0.952563E-01 0.125045E-04 * +Number of iterations = 1 +Initial residual = 0.001161 +Final residual = 0.000054 +Average conv. rate = 0.046707 + +* 2 2 1 0.116051E-02 0.542036E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3319 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.10 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.63K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3319 Max w this run +w_max level proc position run w_max level timestep +0.504E+00 38 251 52.5deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3320 Model time: 1979-03-11 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042874 + +* 1 1 3 0.100000E+01 0.788103E-04 * +Number of iterations = 2 +Initial residual = 0.014425 +Final residual = 0.000047 +Average conv. rate = 0.057377 + +* 1 2 2 0.144248E-01 0.474886E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094173 +Final residual = 0.000012 +Average conv. rate = 0.050108 + +* 2 1 3 0.941726E-01 0.118482E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000054 +Average conv. rate = 0.046847 + +* 2 2 1 0.115516E-02 0.541160E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3320 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.91 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.73K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3320 Max w this run +w_max level proc position run w_max level timestep +0.484E+00 38 251 52.5deg W -10.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3321 Model time: 1979-03-11 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043187 + +* 1 1 3 0.100000E+01 0.805492E-04 * +Number of iterations = 2 +Initial residual = 0.014507 +Final residual = 0.000046 +Average conv. rate = 0.056095 + +* 1 2 2 0.145066E-01 0.456479E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094586 +Final residual = 0.000011 +Average conv. rate = 0.048255 + +* 2 1 3 0.945863E-01 0.106284E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000054 +Average conv. rate = 0.046950 + +* 2 2 1 0.114868E-02 0.539306E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3321 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.79 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3321 Max w this run +w_max level proc position run w_max level timestep +0.423E+00 41 220 45.0deg W -14.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3322 Model time: 1979-03-11 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042945 + +* 1 1 3 0.100000E+01 0.792044E-04 * +Number of iterations = 2 +Initial residual = 0.014558 +Final residual = 0.000045 +Average conv. rate = 0.055764 + +* 1 2 2 0.145577E-01 0.452692E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093257 +Final residual = 0.000012 +Average conv. rate = 0.050070 + +* 2 1 3 0.932567E-01 0.117062E-04 * +Number of iterations = 1 +Initial residual = 0.001142 +Final residual = 0.000054 +Average conv. rate = 0.047320 + +* 2 2 1 0.114208E-02 0.540436E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3322 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.66 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.78K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3322 Max w this run +w_max level proc position run w_max level timestep +0.385E+00 84 224 0.0deg E -3.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3323 Model time: 1979-03-11 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042893 + +* 1 1 3 0.100000E+01 0.789155E-04 * +Number of iterations = 2 +Initial residual = 0.014592 +Final residual = 0.000046 +Average conv. rate = 0.055996 + +* 1 2 2 0.145917E-01 0.457525E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092244 +Final residual = 0.000012 +Average conv. rate = 0.050803 + +* 2 1 3 0.922436E-01 0.120947E-04 * +Number of iterations = 1 +Initial residual = 0.001136 +Final residual = 0.000054 +Average conv. rate = 0.047390 + +* 2 2 1 0.113608E-02 0.538394E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3323 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.56 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.79K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3323 Max w this run +w_max level proc position run w_max level timestep +0.383E+00 84 224 1.9deg E -3.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3324 Model time: 1979-03-11 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043091 + +* 1 1 3 0.100000E+01 0.800149E-04 * +Number of iterations = 2 +Initial residual = 0.014459 +Final residual = 0.000045 +Average conv. rate = 0.056082 + +* 1 2 2 0.144591E-01 0.454774E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091321 +Final residual = 0.000012 +Average conv. rate = 0.051000 + +* 2 1 3 0.913214E-01 0.121138E-04 * +Number of iterations = 1 +Initial residual = 0.001124 +Final residual = 0.000054 +Average conv. rate = 0.047932 + +* 2 2 1 0.112354E-02 0.538532E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3324 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.46 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.79K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3324 Max w this run +w_max level proc position run w_max level timestep +0.417E+00 35 218 63.8deg W -18.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3325 Model time: 1979-03-11 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043545 + +* 1 1 3 0.100000E+01 0.825706E-04 * +Number of iterations = 2 +Initial residual = 0.014386 +Final residual = 0.000046 +Average conv. rate = 0.056377 + +* 1 2 2 0.143865E-01 0.457262E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091240 +Final residual = 0.000012 +Average conv. rate = 0.051427 + +* 2 1 3 0.912404E-01 0.124094E-04 * +Number of iterations = 1 +Initial residual = 0.001118 +Final residual = 0.000054 +Average conv. rate = 0.047915 + +* 2 2 1 0.111836E-02 0.535862E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3325 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.36 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3325 Max w this run +w_max level proc position run w_max level timestep +0.404E+00 35 218 63.8deg W -18.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3326 Model time: 1979-03-11 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043783 + +* 1 1 3 0.100000E+01 0.839285E-04 * +Number of iterations = 2 +Initial residual = 0.014296 +Final residual = 0.000046 +Average conv. rate = 0.056580 + +* 1 2 2 0.142960E-01 0.457657E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090759 +Final residual = 0.000014 +Average conv. rate = 0.053606 + +* 2 1 3 0.907588E-01 0.139803E-04 * +Number of iterations = 1 +Initial residual = 0.001124 +Final residual = 0.000054 +Average conv. rate = 0.048303 + +* 2 2 1 0.112363E-02 0.542754E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3326 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.28 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.80K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3326 Max w this run +w_max level proc position run w_max level timestep +0.429E+00 41 219 52.5deg W -11.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3327 Model time: 1979-03-11 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043757 + +* 1 1 3 0.100000E+01 0.837809E-04 * +Number of iterations = 2 +Initial residual = 0.014309 +Final residual = 0.000046 +Average conv. rate = 0.056971 + +* 1 2 2 0.143092E-01 0.464440E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090538 +Final residual = 0.000013 +Average conv. rate = 0.051804 + +* 2 1 3 0.905381E-01 0.125873E-04 * +Number of iterations = 1 +Initial residual = 0.001117 +Final residual = 0.000054 +Average conv. rate = 0.048632 + +* 2 2 1 0.111730E-02 0.543361E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3327 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.23 471 97.5deg W 68.8deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3327 Max w this run +w_max level proc position run w_max level timestep +0.447E+00 19 105 101.2deg E -49.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3328 Model time: 1979-03-11 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043613 + +* 1 1 3 0.100000E+01 0.829533E-04 * +Number of iterations = 2 +Initial residual = 0.014302 +Final residual = 0.000047 +Average conv. rate = 0.057036 + +* 1 2 2 0.143018E-01 0.465247E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090069 +Final residual = 0.000014 +Average conv. rate = 0.053678 + +* 2 1 3 0.900693E-01 0.139301E-04 * +Number of iterations = 1 +Initial residual = 0.001095 +Final residual = 0.000055 +Average conv. rate = 0.049902 + +* 2 2 1 0.109539E-02 0.546619E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3328 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.00 471 97.5deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3328 Max w this run +w_max level proc position run w_max level timestep +0.511E+00 18 105 101.2deg E -49.4deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3329 Model time: 1979-03-11 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043322 + +* 1 1 3 0.100000E+01 0.813054E-04 * +Number of iterations = 2 +Initial residual = 0.014367 +Final residual = 0.000047 +Average conv. rate = 0.057437 + +* 1 2 2 0.143666E-01 0.473956E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089707 +Final residual = 0.000015 +Average conv. rate = 0.054747 + +* 2 1 3 0.897074E-01 0.147201E-04 * +Number of iterations = 1 +Initial residual = 0.001086 +Final residual = 0.000055 +Average conv. rate = 0.050700 + +* 2 2 1 0.108588E-02 0.550545E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3329 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.74 471 97.5deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.23K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3329 Max w this run +w_max level proc position run w_max level timestep +0.518E+00 18 105 101.2deg E -49.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3330 Model time: 1979-03-11 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043706 + +* 1 1 3 0.100000E+01 0.834876E-04 * +Number of iterations = 2 +Initial residual = 0.014254 +Final residual = 0.000048 +Average conv. rate = 0.057971 + +* 1 2 2 0.142540E-01 0.479023E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090302 +Final residual = 0.000015 +Average conv. rate = 0.055308 + +* 2 1 3 0.903023E-01 0.152782E-04 * +Number of iterations = 1 +Initial residual = 0.001097 +Final residual = 0.000055 +Average conv. rate = 0.050304 + +* 2 2 1 0.109707E-02 0.551870E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3330 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.49 471 97.5deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.27K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3330 Max w this run +w_max level proc position run w_max level timestep +0.488E+00 19 105 101.2deg E -49.4deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3331 Model time: 1979-03-11 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043498 + +* 1 1 3 0.100000E+01 0.823042E-04 * +Number of iterations = 2 +Initial residual = 0.014263 +Final residual = 0.000050 +Average conv. rate = 0.059111 + +* 1 2 2 0.142626E-01 0.498345E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090878 +Final residual = 0.000015 +Average conv. rate = 0.055361 + +* 2 1 3 0.908778E-01 0.154191E-04 * +Number of iterations = 1 +Initial residual = 0.001110 +Final residual = 0.000056 +Average conv. rate = 0.050770 + +* 2 2 1 0.110995E-02 0.563520E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3331 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.25 471 97.5deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.29K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3331 Max w this run +w_max level proc position run w_max level timestep +0.484E+00 37 218 63.8deg W -16.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3332 Model time: 1979-03-11 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043567 + +* 1 1 3 0.100000E+01 0.826954E-04 * +Number of iterations = 2 +Initial residual = 0.014193 +Final residual = 0.000049 +Average conv. rate = 0.058843 + +* 1 2 2 0.141933E-01 0.491440E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089937 +Final residual = 0.000016 +Average conv. rate = 0.056127 + +* 2 1 3 0.899365E-01 0.159024E-04 * +Number of iterations = 1 +Initial residual = 0.001104 +Final residual = 0.000056 +Average conv. rate = 0.050732 + +* 2 2 1 0.110365E-02 0.559904E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3332 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.13 471 97.5deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.29K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3332 Max w this run +w_max level proc position run w_max level timestep +0.387E+00 38 238 157.5deg E -0.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3333 Model time: 1979-03-11 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043540 + +* 1 1 3 0.100000E+01 0.825393E-04 * +Number of iterations = 2 +Initial residual = 0.014305 +Final residual = 0.000050 +Average conv. rate = 0.059021 + +* 1 2 2 0.143052E-01 0.498323E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088837 +Final residual = 0.000014 +Average conv. rate = 0.054188 + +* 2 1 3 0.888371E-01 0.141354E-04 * +Number of iterations = 1 +Initial residual = 0.001092 +Final residual = 0.000055 +Average conv. rate = 0.049936 + +* 2 2 1 0.109230E-02 0.545454E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3333 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.86 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.74K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3333 Max w this run +w_max level proc position run w_max level timestep +0.442E+00 39 238 157.5deg E -0.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3334 Model time: 1979-03-11 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043660 + +* 1 1 3 0.100000E+01 0.832261E-04 * +Number of iterations = 2 +Initial residual = 0.014370 +Final residual = 0.000050 +Average conv. rate = 0.058947 + +* 1 2 2 0.143697E-01 0.499316E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088372 +Final residual = 0.000016 +Average conv. rate = 0.056151 + +* 2 1 3 0.883718E-01 0.156454E-04 * +Number of iterations = 1 +Initial residual = 0.001098 +Final residual = 0.000055 +Average conv. rate = 0.050029 + +* 2 2 1 0.109794E-02 0.549293E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3334 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.59 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3334 Max w this run +w_max level proc position run w_max level timestep +0.451E+00 36 218 61.9deg W -18.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3335 Model time: 1979-03-11 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043812 + +* 1 1 3 0.100000E+01 0.840960E-04 * +Number of iterations = 2 +Initial residual = 0.014464 +Final residual = 0.000051 +Average conv. rate = 0.059222 + +* 1 2 2 0.144645E-01 0.507313E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089273 +Final residual = 0.000016 +Average conv. rate = 0.055860 + +* 2 1 3 0.892730E-01 0.155608E-04 * +Number of iterations = 1 +Initial residual = 0.001101 +Final residual = 0.000055 +Average conv. rate = 0.050028 + +* 2 2 1 0.110149E-02 0.551047E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3335 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.35 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.90K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3335 Max w this run +w_max level proc position run w_max level timestep +0.447E+00 40 238 157.5deg E -0.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3336 Model time: 1979-03-11 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043308 + +* 1 1 3 0.100000E+01 0.812265E-04 * +Number of iterations = 2 +Initial residual = 0.014463 +Final residual = 0.000052 +Average conv. rate = 0.059761 + +* 1 2 2 0.144629E-01 0.516527E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089385 +Final residual = 0.000014 +Average conv. rate = 0.054138 + +* 2 1 3 0.893854E-01 0.141828E-04 * +Number of iterations = 1 +Initial residual = 0.001102 +Final residual = 0.000055 +Average conv. rate = 0.049684 + +* 2 2 1 0.110234E-02 0.547684E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3336 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.12 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3336 Max w this run +w_max level proc position run w_max level timestep +0.430E+00 36 218 60.0deg W -18.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3337 Model time: 1979-03-11 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043962 + +* 1 1 3 0.100000E+01 0.849658E-04 * +Number of iterations = 2 +Initial residual = 0.014512 +Final residual = 0.000051 +Average conv. rate = 0.059110 + +* 1 2 2 0.145115E-01 0.507039E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090581 +Final residual = 0.000015 +Average conv. rate = 0.054350 + +* 2 1 3 0.905813E-01 0.145423E-04 * +Number of iterations = 1 +Initial residual = 0.001107 +Final residual = 0.000056 +Average conv. rate = 0.050182 + +* 2 2 1 0.110736E-02 0.555702E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3337 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.93 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3337 Max w this run +w_max level proc position run w_max level timestep +0.469E+00 36 218 61.9deg W -16.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3338 Model time: 1979-03-11 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043071 + +* 1 1 3 0.100000E+01 0.799035E-04 * +Number of iterations = 2 +Initial residual = 0.014379 +Final residual = 0.000049 +Average conv. rate = 0.058581 + +* 1 2 2 0.143790E-01 0.493454E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090350 +Final residual = 0.000014 +Average conv. rate = 0.053703 + +* 2 1 3 0.903499E-01 0.139933E-04 * +Number of iterations = 1 +Initial residual = 0.001107 +Final residual = 0.000056 +Average conv. rate = 0.050738 + +* 2 2 1 0.110706E-02 0.561705E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3338 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.76 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3338 Max w this run +w_max level proc position run w_max level timestep +0.482E+00 37 218 61.9deg W -16.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3339 Model time: 1979-03-11 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043288 + +* 1 1 3 0.100000E+01 0.811133E-04 * +Number of iterations = 2 +Initial residual = 0.014332 +Final residual = 0.000049 +Average conv. rate = 0.058314 + +* 1 2 2 0.143325E-01 0.487380E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091354 +Final residual = 0.000014 +Average conv. rate = 0.054049 + +* 2 1 3 0.913544E-01 0.144245E-04 * +Number of iterations = 1 +Initial residual = 0.001110 +Final residual = 0.000057 +Average conv. rate = 0.050919 + +* 2 2 1 0.111000E-02 0.565201E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3339 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.61 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3339 Max w this run +w_max level proc position run w_max level timestep +0.426E+00 32 173 153.7deg E -31.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3340 Model time: 1979-03-11 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043744 + +* 1 1 3 0.100000E+01 0.837055E-04 * +Number of iterations = 2 +Initial residual = 0.014204 +Final residual = 0.000048 +Average conv. rate = 0.057895 + +* 1 2 2 0.142040E-01 0.476091E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090701 +Final residual = 0.000014 +Average conv. rate = 0.053010 + +* 2 1 3 0.907009E-01 0.135113E-04 * +Number of iterations = 1 +Initial residual = 0.001119 +Final residual = 0.000057 +Average conv. rate = 0.051050 + +* 2 2 1 0.111947E-02 0.571489E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3340 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.50 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3340 Max w this run +w_max level proc position run w_max level timestep +0.449E+00 32 173 153.7deg E -31.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3341 Model time: 1979-03-11 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043656 + +* 1 1 3 0.100000E+01 0.832009E-04 * +Number of iterations = 2 +Initial residual = 0.014203 +Final residual = 0.000047 +Average conv. rate = 0.057413 + +* 1 2 2 0.142032E-01 0.468176E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091990 +Final residual = 0.000014 +Average conv. rate = 0.053123 + +* 2 1 3 0.919905E-01 0.137909E-04 * +Number of iterations = 1 +Initial residual = 0.001126 +Final residual = 0.000058 +Average conv. rate = 0.051565 + +* 2 2 1 0.112564E-02 0.580441E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3341 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.47 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.86K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3341 Max w this run +w_max level proc position run w_max level timestep +0.461E+00 38 218 60.0deg W -16.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3342 Model time: 1979-03-11 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044030 + +* 1 1 3 0.100000E+01 0.853602E-04 * +Number of iterations = 2 +Initial residual = 0.014185 +Final residual = 0.000046 +Average conv. rate = 0.056790 + +* 1 2 2 0.141849E-01 0.457472E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090528 +Final residual = 0.000014 +Average conv. rate = 0.054016 + +* 2 1 3 0.905278E-01 0.142673E-04 * +Number of iterations = 1 +Initial residual = 0.001122 +Final residual = 0.000058 +Average conv. rate = 0.052035 + +* 2 2 1 0.112218E-02 0.583920E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3342 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.52 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.78K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3342 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 39 218 60.0deg W -16.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3343 Model time: 1979-03-11 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043558 + +* 1 1 3 0.100000E+01 0.826399E-04 * +Number of iterations = 2 +Initial residual = 0.014270 +Final residual = 0.000047 +Average conv. rate = 0.057153 + +* 1 2 2 0.142701E-01 0.466134E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091561 +Final residual = 0.000014 +Average conv. rate = 0.053528 + +* 2 1 3 0.915615E-01 0.140425E-04 * +Number of iterations = 1 +Initial residual = 0.001131 +Final residual = 0.000059 +Average conv. rate = 0.052156 + +* 2 2 1 0.113057E-02 0.589660E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3343 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.68 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3343 Max w this run +w_max level proc position run w_max level timestep +0.497E+00 23 173 153.7deg E -31.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3344 Model time: 1979-03-11 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044034 + +* 1 1 3 0.100000E+01 0.853794E-04 * +Number of iterations = 2 +Initial residual = 0.014240 +Final residual = 0.000046 +Average conv. rate = 0.056602 + +* 1 2 2 0.142404E-01 0.456240E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090450 +Final residual = 0.000015 +Average conv. rate = 0.054626 + +* 2 1 3 0.904503E-01 0.147438E-04 * +Number of iterations = 1 +Initial residual = 0.001108 +Final residual = 0.000059 +Average conv. rate = 0.053503 + +* 2 2 1 0.110794E-02 0.592777E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3344 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.94 471 99.4deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3344 Max w this run +w_max level proc position run w_max level timestep +0.519E+00 24 173 153.7deg E -31.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3345 Model time: 1979-03-11 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044238 + +* 1 1 3 0.100000E+01 0.865710E-04 * +Number of iterations = 2 +Initial residual = 0.014197 +Final residual = 0.000046 +Average conv. rate = 0.057015 + +* 1 2 2 0.141975E-01 0.461514E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091510 +Final residual = 0.000014 +Average conv. rate = 0.053746 + +* 2 1 3 0.915100E-01 0.142068E-04 * +Number of iterations = 1 +Initial residual = 0.001107 +Final residual = 0.000060 +Average conv. rate = 0.054568 + +* 2 2 1 0.110740E-02 0.604291E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3345 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.60 471 97.5deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3345 Max w this run +w_max level proc position run w_max level timestep +0.539E+00 24 173 153.7deg E -31.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3346 Model time: 1979-03-11 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043937 + +* 1 1 3 0.100000E+01 0.848175E-04 * +Number of iterations = 2 +Initial residual = 0.014057 +Final residual = 0.000046 +Average conv. rate = 0.057388 + +* 1 2 2 0.140574E-01 0.462959E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091580 +Final residual = 0.000014 +Average conv. rate = 0.053161 + +* 2 1 3 0.915801E-01 0.137590E-04 * +Number of iterations = 1 +Initial residual = 0.001116 +Final residual = 0.000061 +Average conv. rate = 0.054749 + +* 2 2 1 0.111647E-02 0.611257E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3346 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.33 471 97.5deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3346 Max w this run +w_max level proc position run w_max level timestep +0.546E+00 25 173 153.7deg E -31.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3347 Model time: 1979-03-11 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043408 + +* 1 1 3 0.100000E+01 0.817906E-04 * +Number of iterations = 2 +Initial residual = 0.014060 +Final residual = 0.000047 +Average conv. rate = 0.057860 + +* 1 2 2 0.140600E-01 0.470691E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093312 +Final residual = 0.000016 +Average conv. rate = 0.055094 + +* 2 1 3 0.933121E-01 0.156049E-04 * +Number of iterations = 1 +Initial residual = 0.001139 +Final residual = 0.000064 +Average conv. rate = 0.056048 + +* 2 2 1 0.113892E-02 0.638340E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3347 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.12 471 97.5deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3347 Max w this run +w_max level proc position run w_max level timestep +0.513E+00 25 173 153.7deg E -31.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3348 Model time: 1979-03-11 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044030 + +* 1 1 3 0.100000E+01 0.853590E-04 * +Number of iterations = 2 +Initial residual = 0.014053 +Final residual = 0.000047 +Average conv. rate = 0.057985 + +* 1 2 2 0.140532E-01 0.472506E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092023 +Final residual = 0.000015 +Average conv. rate = 0.054843 + +* 2 1 3 0.920229E-01 0.151793E-04 * +Number of iterations = 1 +Initial residual = 0.001138 +Final residual = 0.000065 +Average conv. rate = 0.056767 + +* 2 2 1 0.113772E-02 0.645848E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3348 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.82 471 97.5deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3348 Max w this run +w_max level proc position run w_max level timestep +0.500E+00 35 186 60.0deg W -23.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3349 Model time: 1979-03-11 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043834 + +* 1 1 3 0.100000E+01 0.842220E-04 * +Number of iterations = 2 +Initial residual = 0.014194 +Final residual = 0.000048 +Average conv. rate = 0.058190 + +* 1 2 2 0.141938E-01 0.480607E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092153 +Final residual = 0.000015 +Average conv. rate = 0.054921 + +* 2 1 3 0.921530E-01 0.152662E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000066 +Average conv. rate = 0.057925 + +* 2 2 1 0.113379E-02 0.656746E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3349 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.60 471 97.5deg W 72.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.24K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3349 Max w this run +w_max level proc position run w_max level timestep +0.453E+00 35 210 155.6deg W -20.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3350 Model time: 1979-03-11 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043809 + +* 1 1 3 0.100000E+01 0.840787E-04 * +Number of iterations = 2 +Initial residual = 0.014208 +Final residual = 0.000049 +Average conv. rate = 0.058890 + +* 1 2 2 0.142078E-01 0.492730E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091932 +Final residual = 0.000016 +Average conv. rate = 0.055530 + +* 2 1 3 0.919317E-01 0.157412E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000066 +Average conv. rate = 0.058618 + +* 2 2 1 0.113381E-02 0.664614E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3350 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.01 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3350 Max w this run +w_max level proc position run w_max level timestep +0.459E+00 24 173 155.6deg E -31.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3351 Model time: 1979-03-11 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044251 + +* 1 1 3 0.100000E+01 0.866473E-04 * +Number of iterations = 2 +Initial residual = 0.014268 +Final residual = 0.000049 +Average conv. rate = 0.058445 + +* 1 2 2 0.142676E-01 0.487361E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092236 +Final residual = 0.000017 +Average conv. rate = 0.057126 + +* 2 1 3 0.922356E-01 0.171948E-04 * +Number of iterations = 1 +Initial residual = 0.001140 +Final residual = 0.000068 +Average conv. rate = 0.059497 + +* 2 2 1 0.114009E-02 0.678315E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3351 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.89 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.62K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3351 Max w this run +w_max level proc position run w_max level timestep +0.487E+00 24 173 155.6deg E -31.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3352 Model time: 1979-03-11 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044473 + +* 1 1 3 0.100000E+01 0.879629E-04 * +Number of iterations = 2 +Initial residual = 0.014183 +Final residual = 0.000048 +Average conv. rate = 0.058475 + +* 1 2 2 0.141828E-01 0.484953E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091924 +Final residual = 0.000016 +Average conv. rate = 0.055617 + +* 2 1 3 0.919239E-01 0.158145E-04 * +Number of iterations = 1 +Initial residual = 0.001138 +Final residual = 0.000068 +Average conv. rate = 0.059624 + +* 2 2 1 0.113780E-02 0.678403E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3352 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.76 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.72K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3352 Max w this run +w_max level proc position run w_max level timestep +0.477E+00 24 173 155.6deg E -31.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3353 Model time: 1979-03-11 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044207 + +* 1 1 3 0.100000E+01 0.863931E-04 * +Number of iterations = 2 +Initial residual = 0.014202 +Final residual = 0.000048 +Average conv. rate = 0.058304 + +* 1 2 2 0.142025E-01 0.482797E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092327 +Final residual = 0.000016 +Average conv. rate = 0.055559 + +* 2 1 3 0.923274E-01 0.158345E-04 * +Number of iterations = 1 +Initial residual = 0.001147 +Final residual = 0.000068 +Average conv. rate = 0.058912 + +* 2 2 1 0.114674E-02 0.675571E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3353 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.64 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3353 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 25 173 155.6deg E -31.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3354 Model time: 1979-03-11 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044597 + +* 1 1 3 0.100000E+01 0.886971E-04 * +Number of iterations = 2 +Initial residual = 0.014172 +Final residual = 0.000048 +Average conv. rate = 0.058338 + +* 1 2 2 0.141724E-01 0.482327E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091597 +Final residual = 0.000017 +Average conv. rate = 0.057344 + +* 2 1 3 0.915968E-01 0.172719E-04 * +Number of iterations = 1 +Initial residual = 0.001153 +Final residual = 0.000067 +Average conv. rate = 0.057877 + +* 2 2 1 0.115287E-02 0.667246E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3354 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.53 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.82K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3354 Max w this run +w_max level proc position run w_max level timestep +0.483E+00 25 173 155.6deg E -31.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3355 Model time: 1979-03-11 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000091 +Average conv. rate = 0.044931 + +* 1 1 3 0.100000E+01 0.907068E-04 * +Number of iterations = 2 +Initial residual = 0.014266 +Final residual = 0.000048 +Average conv. rate = 0.058195 + +* 1 2 2 0.142656E-01 0.483129E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091238 +Final residual = 0.000019 +Average conv. rate = 0.059242 + +* 2 1 3 0.912377E-01 0.189702E-04 * +Number of iterations = 1 +Initial residual = 0.001148 +Final residual = 0.000066 +Average conv. rate = 0.057896 + +* 2 2 1 0.114839E-02 0.664870E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3355 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.43 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3355 Max w this run +w_max level proc position run w_max level timestep +0.494E+00 38 250 58.1deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3356 Model time: 1979-03-11 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044344 + +* 1 1 3 0.100000E+01 0.871969E-04 * +Number of iterations = 2 +Initial residual = 0.014314 +Final residual = 0.000048 +Average conv. rate = 0.057750 + +* 1 2 2 0.143135E-01 0.477362E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091134 +Final residual = 0.000019 +Average conv. rate = 0.059467 + +* 2 1 3 0.911336E-01 0.191649E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000065 +Average conv. rate = 0.057498 + +* 2 2 1 0.113738E-02 0.653968E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3356 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.33 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3356 Max w this run +w_max level proc position run w_max level timestep +0.610E+00 38 250 58.1deg W -10.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3357 Model time: 1979-03-11 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044257 + +* 1 1 3 0.100000E+01 0.866880E-04 * +Number of iterations = 2 +Initial residual = 0.014434 +Final residual = 0.000047 +Average conv. rate = 0.057231 + +* 1 2 2 0.144342E-01 0.472771E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092199 +Final residual = 0.000019 +Average conv. rate = 0.059403 + +* 2 1 3 0.921987E-01 0.193261E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000064 +Average conv. rate = 0.055631 + +* 2 2 1 0.114584E-02 0.637447E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3357 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.24 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3357 Max w this run +w_max level proc position run w_max level timestep +0.499E+00 38 250 58.1deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3358 Model time: 1979-03-11 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044701 + +* 1 1 3 0.100000E+01 0.893209E-04 * +Number of iterations = 2 +Initial residual = 0.014313 +Final residual = 0.000047 +Average conv. rate = 0.056999 + +* 1 2 2 0.143125E-01 0.465003E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090758 +Final residual = 0.000016 +Average conv. rate = 0.055706 + +* 2 1 3 0.907577E-01 0.156888E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000064 +Average conv. rate = 0.055242 + +* 2 2 1 0.114996E-02 0.635264E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3358 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.16 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.97K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3358 Max w this run +w_max level proc position run w_max level timestep +0.428E+00 39 250 58.1deg W -10.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3359 Model time: 1979-03-11 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043891 + +* 1 1 3 0.100000E+01 0.845542E-04 * +Number of iterations = 2 +Initial residual = 0.014260 +Final residual = 0.000046 +Average conv. rate = 0.056778 + +* 1 2 2 0.142604E-01 0.459718E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091423 +Final residual = 0.000020 +Average conv. rate = 0.060746 + +* 2 1 3 0.914232E-01 0.204927E-04 * +Number of iterations = 1 +Initial residual = 0.001154 +Final residual = 0.000062 +Average conv. rate = 0.053444 + +* 2 2 1 0.115417E-02 0.616836E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3359 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.08 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3359 Max w this run +w_max level proc position run w_max level timestep +0.416E+00 39 250 58.1deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3360 Model time: 1979-03-12 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043760 + +* 1 1 3 0.100000E+01 0.837987E-04 * +Number of iterations = 2 +Initial residual = 0.014167 +Final residual = 0.000045 +Average conv. rate = 0.056610 + +* 1 2 2 0.141668E-01 0.453997E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090713 +Final residual = 0.000014 +Average conv. rate = 0.054011 + +* 2 1 3 0.907126E-01 0.142931E-04 * +Number of iterations = 1 +Initial residual = 0.001138 +Final residual = 0.000061 +Average conv. rate = 0.053549 + +* 2 2 1 0.113843E-02 0.609613E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13046E+25 +tot dry energy 0.13047E+25 +gr( rho cal) 0.38080E+24 +KE( rho cal) 0.82138E+21 +KEu(rho cal) 0.62917E+21 +KEv(rho cal) 0.19221E+21 +KEw(rho cal) 0.10699E+16 +cvT( rho cal) 0.92310E+24 +lq ( rho cal) 0.30639E+23 +lqcf( rho cal) 0.66579E+20 +lqcl( rho cal) 0.45747E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12293E+17 KG +Initial moisture = 0.12321E+17 KG +change in moisture = -0.27419E+14 KG +Moisture added E-P in period = -0.27268E+14 KG +Error in moisture = -0.15058E+12 KG +Error as % of change = 0.54917E+00 +q ( rho cal) 0.12251E+17 +qcf( rho cal) 0.26621E+14 +qcl( rho cal) 0.16137E+14 +FINAL TOTAL ENERGY = 0.13046E+25 J/ +INITIAL TOTAL ENERGY = 0.13046E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.13656E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.77365E+19 J/ +ERROR IN ENERGY BUDGET = 0.59200E+19 J/ +TEMP CORRECTION OVER A DAY = 0.16075E-02 K +TEMPERATURE CORRECTION RATE = 0.18605E-07 K/S +FLUX CORRECTION (ATM) = 0.13432E+00 W/M2 + +Minimum theta level 1 for timestep 3360 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.01 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3360 Max w this run +w_max level proc position run w_max level timestep +0.505E+00 39 225 15.0deg E -4.4deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6324.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6324.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6324.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6324.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6324.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6324.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3361 Model time: 1979-03-12 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044419 + +* 1 1 3 0.100000E+01 0.876380E-04 * +Number of iterations = 2 +Initial residual = 0.014200 +Final residual = 0.000046 +Average conv. rate = 0.056779 + +* 1 2 2 0.142001E-01 0.457787E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090834 +Final residual = 0.000021 +Average conv. rate = 0.061852 + +* 2 1 3 0.908339E-01 0.214933E-04 * +Number of iterations = 1 +Initial residual = 0.001139 +Final residual = 0.000060 +Average conv. rate = 0.052321 + +* 2 2 1 0.113904E-02 0.595954E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3361 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.95 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3361 Max w this run +w_max level proc position run w_max level timestep +0.453E+00 39 225 15.0deg E -4.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3362 Model time: 1979-03-12 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043423 + +* 1 1 3 0.100000E+01 0.818770E-04 * +Number of iterations = 2 +Initial residual = 0.014150 +Final residual = 0.000046 +Average conv. rate = 0.056798 + +* 1 2 2 0.141499E-01 0.456471E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090209 +Final residual = 0.000019 +Average conv. rate = 0.059052 + +* 2 1 3 0.902088E-01 0.185758E-04 * +Number of iterations = 1 +Initial residual = 0.001128 +Final residual = 0.000058 +Average conv. rate = 0.051773 + +* 2 2 1 0.112809E-02 0.584044E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3362 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.88 454 75.0deg E 70.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.11K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3362 Max w this run +w_max level proc position run w_max level timestep +0.394E+00 25 174 157.5deg E -31.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3363 Model time: 1979-03-12 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044244 + +* 1 1 3 0.100000E+01 0.866096E-04 * +Number of iterations = 2 +Initial residual = 0.014187 +Final residual = 0.000045 +Average conv. rate = 0.056244 + +* 1 2 2 0.141871E-01 0.448796E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091042 +Final residual = 0.000016 +Average conv. rate = 0.055695 + +* 2 1 3 0.910416E-01 0.157287E-04 * +Number of iterations = 1 +Initial residual = 0.001126 +Final residual = 0.000058 +Average conv. rate = 0.051548 + +* 2 2 1 0.112607E-02 0.580474E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3363 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.79 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3363 Max w this run +w_max level proc position run w_max level timestep +0.407E+00 41 209 168.8deg W -19.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3364 Model time: 1979-03-12 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044255 + +* 1 1 3 0.100000E+01 0.866748E-04 * +Number of iterations = 2 +Initial residual = 0.014157 +Final residual = 0.000044 +Average conv. rate = 0.056040 + +* 1 2 2 0.141573E-01 0.444615E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090084 +Final residual = 0.000018 +Average conv. rate = 0.058773 + +* 2 1 3 0.900843E-01 0.182884E-04 * +Number of iterations = 1 +Initial residual = 0.001133 +Final residual = 0.000058 +Average conv. rate = 0.051345 + +* 2 2 1 0.113323E-02 0.581857E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3364 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.53 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3364 Max w this run +w_max level proc position run w_max level timestep +0.485E+00 37 251 52.5deg W -9.4deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3365 Model time: 1979-03-12 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044079 + +* 1 1 3 0.100000E+01 0.856426E-04 * +Number of iterations = 2 +Initial residual = 0.014214 +Final residual = 0.000045 +Average conv. rate = 0.056184 + +* 1 2 2 0.142143E-01 0.448692E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090415 +Final residual = 0.000016 +Average conv. rate = 0.056074 + +* 2 1 3 0.904146E-01 0.159416E-04 * +Number of iterations = 1 +Initial residual = 0.001130 +Final residual = 0.000058 +Average conv. rate = 0.051179 + +* 2 2 1 0.112984E-02 0.578234E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3365 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.30 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.68K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3365 Max w this run +w_max level proc position run w_max level timestep +0.439E+00 37 251 52.5deg W -9.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3366 Model time: 1979-03-12 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043704 + +* 1 1 3 0.100000E+01 0.834767E-04 * +Number of iterations = 2 +Initial residual = 0.014201 +Final residual = 0.000045 +Average conv. rate = 0.056077 + +* 1 2 2 0.142012E-01 0.446568E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090117 +Final residual = 0.000015 +Average conv. rate = 0.054965 + +* 2 1 3 0.901169E-01 0.149649E-04 * +Number of iterations = 1 +Initial residual = 0.001123 +Final residual = 0.000058 +Average conv. rate = 0.051510 + +* 2 2 1 0.112300E-02 0.578455E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3366 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.09 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3366 Max w this run +w_max level proc position run w_max level timestep +0.428E+00 38 250 61.9deg W -8.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3367 Model time: 1979-03-12 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043862 + +* 1 1 3 0.100000E+01 0.843872E-04 * +Number of iterations = 2 +Initial residual = 0.014308 +Final residual = 0.000045 +Average conv. rate = 0.055963 + +* 1 2 2 0.143077E-01 0.448091E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089676 +Final residual = 0.000015 +Average conv. rate = 0.055020 + +* 2 1 3 0.896765E-01 0.149360E-04 * +Number of iterations = 1 +Initial residual = 0.001112 +Final residual = 0.000057 +Average conv. rate = 0.051281 + +* 2 2 1 0.111190E-02 0.570193E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3367 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.89 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3367 Max w this run +w_max level proc position run w_max level timestep +0.432E+00 34 210 153.8deg W -18.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3368 Model time: 1979-03-12 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043439 + +* 1 1 3 0.100000E+01 0.819655E-04 * +Number of iterations = 2 +Initial residual = 0.014405 +Final residual = 0.000045 +Average conv. rate = 0.055767 + +* 1 2 2 0.144050E-01 0.447991E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089948 +Final residual = 0.000016 +Average conv. rate = 0.056024 + +* 2 1 3 0.899479E-01 0.158169E-04 * +Number of iterations = 1 +Initial residual = 0.001113 +Final residual = 0.000056 +Average conv. rate = 0.050640 + +* 2 2 1 0.111343E-02 0.563835E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3368 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.72 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3368 Max w this run +w_max level proc position run w_max level timestep +0.410E+00 33 210 153.8deg W -18.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3369 Model time: 1979-03-12 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043545 + +* 1 1 3 0.100000E+01 0.825658E-04 * +Number of iterations = 2 +Initial residual = 0.014568 +Final residual = 0.000045 +Average conv. rate = 0.055721 + +* 1 2 2 0.145676E-01 0.452298E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088795 +Final residual = 0.000016 +Average conv. rate = 0.056241 + +* 2 1 3 0.887952E-01 0.157959E-04 * +Number of iterations = 1 +Initial residual = 0.001106 +Final residual = 0.000056 +Average conv. rate = 0.050830 + +* 2 2 1 0.110638E-02 0.562374E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3369 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.56 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3369 Max w this run +w_max level proc position run w_max level timestep +0.418E+00 31 210 153.8deg W -18.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3370 Model time: 1979-03-12 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043831 + +* 1 1 3 0.100000E+01 0.842036E-04 * +Number of iterations = 2 +Initial residual = 0.014512 +Final residual = 0.000045 +Average conv. rate = 0.055437 + +* 1 2 2 0.145123E-01 0.446001E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088669 +Final residual = 0.000017 +Average conv. rate = 0.057868 + +* 2 1 3 0.886692E-01 0.171823E-04 * +Number of iterations = 1 +Initial residual = 0.001113 +Final residual = 0.000056 +Average conv. rate = 0.050619 + +* 2 2 1 0.111331E-02 0.563545E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3370 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.41 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3370 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 37 250 63.8deg W -8.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3371 Model time: 1979-03-12 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043688 + +* 1 1 3 0.100000E+01 0.833846E-04 * +Number of iterations = 2 +Initial residual = 0.014434 +Final residual = 0.000045 +Average conv. rate = 0.055561 + +* 1 2 2 0.144343E-01 0.445594E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088943 +Final residual = 0.000017 +Average conv. rate = 0.058034 + +* 2 1 3 0.889433E-01 0.173842E-04 * +Number of iterations = 1 +Initial residual = 0.001118 +Final residual = 0.000057 +Average conv. rate = 0.050729 + +* 2 2 1 0.111839E-02 0.567347E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3371 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.26 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3371 Max w this run +w_max level proc position run w_max level timestep +0.640E+00 37 250 63.8deg W -8.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3372 Model time: 1979-03-12 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043878 + +* 1 1 3 0.100000E+01 0.844752E-04 * +Number of iterations = 2 +Initial residual = 0.014250 +Final residual = 0.000044 +Average conv. rate = 0.055691 + +* 1 2 2 0.142503E-01 0.441968E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090162 +Final residual = 0.000017 +Average conv. rate = 0.057661 + +* 2 1 3 0.901621E-01 0.172850E-04 * +Number of iterations = 1 +Initial residual = 0.001127 +Final residual = 0.000057 +Average conv. rate = 0.050641 + +* 2 2 1 0.112701E-02 0.570730E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3372 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.14 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.75K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3372 Max w this run +w_max level proc position run w_max level timestep +0.545E+00 38 250 63.8deg W -8.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3373 Model time: 1979-03-12 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044744 + +* 1 1 3 0.100000E+01 0.895771E-04 * +Number of iterations = 2 +Initial residual = 0.014255 +Final residual = 0.000044 +Average conv. rate = 0.055582 + +* 1 2 2 0.142553E-01 0.440394E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090422 +Final residual = 0.000017 +Average conv. rate = 0.057188 + +* 2 1 3 0.904216E-01 0.169114E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000057 +Average conv. rate = 0.050615 + +* 2 2 1 0.113391E-02 0.573932E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3373 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.01 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.60K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3373 Max w this run +w_max level proc position run w_max level timestep +0.545E+00 37 238 165.0deg E -1.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3374 Model time: 1979-03-12 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043868 + +* 1 1 3 0.100000E+01 0.844205E-04 * +Number of iterations = 2 +Initial residual = 0.014268 +Final residual = 0.000044 +Average conv. rate = 0.055482 + +* 1 2 2 0.142684E-01 0.439219E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089834 +Final residual = 0.000017 +Average conv. rate = 0.057188 + +* 2 1 3 0.898336E-01 0.168015E-04 * +Number of iterations = 1 +Initial residual = 0.001132 +Final residual = 0.000057 +Average conv. rate = 0.049964 + +* 2 2 1 0.113208E-02 0.565630E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3374 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.92 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.68K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3374 Max w this run +w_max level proc position run w_max level timestep +0.606E+00 37 250 65.6deg W -6.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3375 Model time: 1979-03-12 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043996 + +* 1 1 3 0.100000E+01 0.851584E-04 * +Number of iterations = 2 +Initial residual = 0.014358 +Final residual = 0.000044 +Average conv. rate = 0.055477 + +* 1 2 2 0.143581E-01 0.441894E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090820 +Final residual = 0.000017 +Average conv. rate = 0.056681 + +* 2 1 3 0.908196E-01 0.165384E-04 * +Number of iterations = 1 +Initial residual = 0.001126 +Final residual = 0.000056 +Average conv. rate = 0.050074 + +* 2 2 1 0.112592E-02 0.563795E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3375 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.84 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.50K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3375 Max w this run +w_max level proc position run w_max level timestep +0.634E+00 38 250 65.6deg W -6.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3376 Model time: 1979-03-12 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043423 + +* 1 1 3 0.100000E+01 0.818766E-04 * +Number of iterations = 2 +Initial residual = 0.014364 +Final residual = 0.000046 +Average conv. rate = 0.056545 + +* 1 2 2 0.143640E-01 0.459266E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090824 +Final residual = 0.000015 +Average conv. rate = 0.055370 + +* 2 1 3 0.908244E-01 0.154182E-04 * +Number of iterations = 1 +Initial residual = 0.001124 +Final residual = 0.000056 +Average conv. rate = 0.049876 + +* 2 2 1 0.112363E-02 0.560423E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3376 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.81 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.24K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3376 Max w this run +w_max level proc position run w_max level timestep +0.567E+00 39 250 65.6deg W -6.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3377 Model time: 1979-03-12 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043808 + +* 1 1 3 0.100000E+01 0.840731E-04 * +Number of iterations = 2 +Initial residual = 0.014441 +Final residual = 0.000045 +Average conv. rate = 0.056102 + +* 1 2 2 0.144408E-01 0.454508E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091461 +Final residual = 0.000015 +Average conv. rate = 0.054893 + +* 2 1 3 0.914613E-01 0.151279E-04 * +Number of iterations = 1 +Initial residual = 0.001130 +Final residual = 0.000056 +Average conv. rate = 0.049190 + +* 2 2 1 0.113022E-02 0.555954E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3377 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.81 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.97K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3377 Max w this run +w_max level proc position run w_max level timestep +0.498E+00 35 218 67.5deg W -14.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3378 Model time: 1979-03-12 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043162 + +* 1 1 3 0.100000E+01 0.804088E-04 * +Number of iterations = 2 +Initial residual = 0.014328 +Final residual = 0.000045 +Average conv. rate = 0.055837 + +* 1 2 2 0.143280E-01 0.446720E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091934 +Final residual = 0.000015 +Average conv. rate = 0.054969 + +* 2 1 3 0.919339E-01 0.152695E-04 * +Number of iterations = 1 +Initial residual = 0.001143 +Final residual = 0.000056 +Average conv. rate = 0.048719 + +* 2 2 1 0.114326E-02 0.556988E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3378 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.84 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.73K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3378 Max w this run +w_max level proc position run w_max level timestep +0.555E+00 39 250 63.8deg W -8.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3379 Model time: 1979-03-12 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043036 + +* 1 1 3 0.100000E+01 0.797051E-04 * +Number of iterations = 2 +Initial residual = 0.014329 +Final residual = 0.000044 +Average conv. rate = 0.055183 + +* 1 2 2 0.143287E-01 0.436328E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091699 +Final residual = 0.000016 +Average conv. rate = 0.056418 + +* 2 1 3 0.916991E-01 0.164673E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000056 +Average conv. rate = 0.048628 + +* 2 2 1 0.115034E-02 0.559386E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3379 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.90 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3379 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 39 250 63.8deg W -8.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3380 Model time: 1979-03-12 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042917 + +* 1 1 3 0.100000E+01 0.790455E-04 * +Number of iterations = 2 +Initial residual = 0.014338 +Final residual = 0.000044 +Average conv. rate = 0.055661 + +* 1 2 2 0.143383E-01 0.444223E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091675 +Final residual = 0.000014 +Average conv. rate = 0.053767 + +* 2 1 3 0.916746E-01 0.142491E-04 * +Number of iterations = 1 +Initial residual = 0.001158 +Final residual = 0.000055 +Average conv. rate = 0.047306 + +* 2 2 1 0.115844E-02 0.548018E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3380 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.96 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3380 Max w this run +w_max level proc position run w_max level timestep +0.507E+00 38 250 63.8deg W -8.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3381 Model time: 1979-03-12 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042964 + +* 1 1 3 0.100000E+01 0.793063E-04 * +Number of iterations = 2 +Initial residual = 0.014434 +Final residual = 0.000046 +Average conv. rate = 0.056729 + +* 1 2 2 0.144344E-01 0.464520E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092656 +Final residual = 0.000015 +Average conv. rate = 0.054024 + +* 2 1 3 0.926556E-01 0.146091E-04 * +Number of iterations = 1 +Initial residual = 0.001160 +Final residual = 0.000055 +Average conv. rate = 0.047191 + +* 2 2 1 0.115988E-02 0.547354E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3381 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.03 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.73K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3381 Max w this run +w_max level proc position run w_max level timestep +0.493E+00 37 250 63.8deg W -8.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3382 Model time: 1979-03-12 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043412 + +* 1 1 3 0.100000E+01 0.818118E-04 * +Number of iterations = 2 +Initial residual = 0.014411 +Final residual = 0.000045 +Average conv. rate = 0.055804 + +* 1 2 2 0.144108E-01 0.448765E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092821 +Final residual = 0.000014 +Average conv. rate = 0.053482 + +* 2 1 3 0.928209E-01 0.141996E-04 * +Number of iterations = 1 +Initial residual = 0.001168 +Final residual = 0.000055 +Average conv. rate = 0.047170 + +* 2 2 1 0.116833E-02 0.551105E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3382 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.10 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3382 Max w this run +w_max level proc position run w_max level timestep +0.574E+00 37 250 63.8deg W -8.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3383 Model time: 1979-03-12 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042891 + +* 1 1 3 0.100000E+01 0.789012E-04 * +Number of iterations = 2 +Initial residual = 0.014508 +Final residual = 0.000045 +Average conv. rate = 0.055693 + +* 1 2 2 0.145082E-01 0.450000E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093417 +Final residual = 0.000014 +Average conv. rate = 0.052661 + +* 2 1 3 0.934169E-01 0.136421E-04 * +Number of iterations = 1 +Initial residual = 0.001172 +Final residual = 0.000056 +Average conv. rate = 0.047626 + +* 2 2 1 0.117227E-02 0.558306E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3383 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.17 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3383 Max w this run +w_max level proc position run w_max level timestep +0.472E+00 35 218 65.6deg W -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3384 Model time: 1979-03-12 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043611 + +* 1 1 3 0.100000E+01 0.829446E-04 * +Number of iterations = 2 +Initial residual = 0.014489 +Final residual = 0.000043 +Average conv. rate = 0.054424 + +* 1 2 2 0.144886E-01 0.429156E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092900 +Final residual = 0.000016 +Average conv. rate = 0.055221 + +* 2 1 3 0.929001E-01 0.156433E-04 * +Number of iterations = 1 +Initial residual = 0.001163 +Final residual = 0.000056 +Average conv. rate = 0.048167 + +* 2 2 1 0.116348E-02 0.560421E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3384 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.23 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.49K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3384 Max w this run +w_max level proc position run w_max level timestep +0.537E+00 37 250 63.8deg W -5.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3385 Model time: 1979-03-12 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042933 + +* 1 1 3 0.100000E+01 0.791353E-04 * +Number of iterations = 2 +Initial residual = 0.014455 +Final residual = 0.000044 +Average conv. rate = 0.055074 + +* 1 2 2 0.144547E-01 0.438430E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093669 +Final residual = 0.000014 +Average conv. rate = 0.053357 + +* 2 1 3 0.936695E-01 0.142288E-04 * +Number of iterations = 1 +Initial residual = 0.001167 +Final residual = 0.000056 +Average conv. rate = 0.047984 + +* 2 2 1 0.116738E-02 0.560161E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3385 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.31 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3385 Max w this run +w_max level proc position run w_max level timestep +0.555E+00 38 250 63.8deg W -5.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3386 Model time: 1979-03-12 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042988 + +* 1 1 3 0.100000E+01 0.794431E-04 * +Number of iterations = 2 +Initial residual = 0.014351 +Final residual = 0.000043 +Average conv. rate = 0.054928 + +* 1 2 2 0.143514E-01 0.433001E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093807 +Final residual = 0.000014 +Average conv. rate = 0.052487 + +* 2 1 3 0.938073E-01 0.135641E-04 * +Number of iterations = 1 +Initial residual = 0.001164 +Final residual = 0.000056 +Average conv. rate = 0.048342 + +* 2 2 1 0.116419E-02 0.562793E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3386 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.40 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3386 Max w this run +w_max level proc position run w_max level timestep +0.585E+00 36 225 18.7deg E -3.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3387 Model time: 1979-03-12 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042997 + +* 1 1 3 0.100000E+01 0.794923E-04 * +Number of iterations = 2 +Initial residual = 0.014427 +Final residual = 0.000042 +Average conv. rate = 0.054156 + +* 1 2 2 0.144271E-01 0.423123E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094761 +Final residual = 0.000013 +Average conv. rate = 0.051489 + +* 2 1 3 0.947609E-01 0.129348E-04 * +Number of iterations = 1 +Initial residual = 0.001175 +Final residual = 0.000056 +Average conv. rate = 0.047870 + +* 2 2 1 0.117543E-02 0.562677E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3387 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.48 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.27K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3387 Max w this run +w_max level proc position run w_max level timestep +0.532E+00 33 238 166.9deg E -1.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3388 Model time: 1979-03-12 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043629 + +* 1 1 3 0.100000E+01 0.830492E-04 * +Number of iterations = 2 +Initial residual = 0.014406 +Final residual = 0.000042 +Average conv. rate = 0.054027 + +* 1 2 2 0.144065E-01 0.420512E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095499 +Final residual = 0.000013 +Average conv. rate = 0.051473 + +* 2 1 3 0.954987E-01 0.130240E-04 * +Number of iterations = 1 +Initial residual = 0.001177 +Final residual = 0.000056 +Average conv. rate = 0.047226 + +* 2 2 1 0.117653E-02 0.555632E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3388 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.38 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.60K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3388 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 35 225 18.7deg E -4.4deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3389 Model time: 1979-03-12 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043070 + +* 1 1 3 0.100000E+01 0.798971E-04 * +Number of iterations = 2 +Initial residual = 0.014474 +Final residual = 0.000042 +Average conv. rate = 0.054104 + +* 1 2 2 0.144739E-01 0.423689E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093805 +Final residual = 0.000013 +Average conv. rate = 0.052282 + +* 2 1 3 0.938053E-01 0.134059E-04 * +Number of iterations = 1 +Initial residual = 0.001166 +Final residual = 0.000055 +Average conv. rate = 0.047115 + +* 2 2 1 0.116595E-02 0.549337E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3389 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.29 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3389 Max w this run +w_max level proc position run w_max level timestep +0.535E+00 37 225 18.7deg E -4.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3390 Model time: 1979-03-12 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043190 + +* 1 1 3 0.100000E+01 0.805667E-04 * +Number of iterations = 2 +Initial residual = 0.014403 +Final residual = 0.000042 +Average conv. rate = 0.054142 + +* 1 2 2 0.144027E-01 0.422198E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093243 +Final residual = 0.000014 +Average conv. rate = 0.052547 + +* 2 1 3 0.932429E-01 0.135291E-04 * +Number of iterations = 1 +Initial residual = 0.001159 +Final residual = 0.000054 +Average conv. rate = 0.046724 + +* 2 2 1 0.115911E-02 0.541576E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3390 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.19 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3390 Max w this run +w_max level proc position run w_max level timestep +0.455E+00 39 197 58.1deg E -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3391 Model time: 1979-03-12 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043030 + +* 1 1 3 0.100000E+01 0.796711E-04 * +Number of iterations = 2 +Initial residual = 0.014430 +Final residual = 0.000043 +Average conv. rate = 0.054392 + +* 1 2 2 0.144303E-01 0.426926E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094783 +Final residual = 0.000013 +Average conv. rate = 0.051306 + +* 2 1 3 0.947827E-01 0.128009E-04 * +Number of iterations = 1 +Initial residual = 0.001163 +Final residual = 0.000054 +Average conv. rate = 0.046216 + +* 2 2 1 0.116262E-02 0.537311E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3391 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.19 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.07K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3391 Max w this run +w_max level proc position run w_max level timestep +0.472E+00 39 197 58.1deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3392 Model time: 1979-03-12 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043649 + +* 1 1 3 0.100000E+01 0.831613E-04 * +Number of iterations = 2 +Initial residual = 0.014376 +Final residual = 0.000043 +Average conv. rate = 0.054767 + +* 1 2 2 0.143757E-01 0.431182E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094188 +Final residual = 0.000013 +Average conv. rate = 0.052244 + +* 2 1 3 0.941881E-01 0.134311E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000053 +Average conv. rate = 0.046136 + +* 2 2 1 0.115734E-02 0.533950E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3392 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.24 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3392 Max w this run +w_max level proc position run w_max level timestep +0.441E+00 37 197 58.1deg E -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3393 Model time: 1979-03-12 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043770 + +* 1 1 3 0.100000E+01 0.838565E-04 * +Number of iterations = 2 +Initial residual = 0.014337 +Final residual = 0.000044 +Average conv. rate = 0.055376 + +* 1 2 2 0.143374E-01 0.439654E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093952 +Final residual = 0.000013 +Average conv. rate = 0.052238 + +* 2 1 3 0.939515E-01 0.133925E-04 * +Number of iterations = 1 +Initial residual = 0.001154 +Final residual = 0.000053 +Average conv. rate = 0.046211 + +* 2 2 1 0.115410E-02 0.533323E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3393 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.38 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.06K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3393 Max w this run +w_max level proc position run w_max level timestep +0.430E+00 40 197 58.1deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3394 Model time: 1979-03-12 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043669 + +* 1 1 3 0.100000E+01 0.832739E-04 * +Number of iterations = 2 +Initial residual = 0.014305 +Final residual = 0.000044 +Average conv. rate = 0.055453 + +* 1 2 2 0.143055E-01 0.439905E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093374 +Final residual = 0.000013 +Average conv. rate = 0.052322 + +* 2 1 3 0.933744E-01 0.133744E-04 * +Number of iterations = 1 +Initial residual = 0.001133 +Final residual = 0.000052 +Average conv. rate = 0.046115 + +* 2 2 1 0.113252E-02 0.522265E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3394 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.55 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.00K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3394 Max w this run +w_max level proc position run w_max level timestep +0.434E+00 39 197 58.1deg E -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3395 Model time: 1979-03-12 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044226 + +* 1 1 3 0.100000E+01 0.865023E-04 * +Number of iterations = 2 +Initial residual = 0.014423 +Final residual = 0.000045 +Average conv. rate = 0.055784 + +* 1 2 2 0.144229E-01 0.448811E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095087 +Final residual = 0.000013 +Average conv. rate = 0.051562 + +* 2 1 3 0.950872E-01 0.130351E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000052 +Average conv. rate = 0.045574 + +* 2 2 1 0.114944E-02 0.523851E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3395 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.78 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3395 Max w this run +w_max level proc position run w_max level timestep +0.490E+00 37 250 61.9deg W -4.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3396 Model time: 1979-03-12 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043815 + +* 1 1 3 0.100000E+01 0.841119E-04 * +Number of iterations = 2 +Initial residual = 0.014378 +Final residual = 0.000045 +Average conv. rate = 0.056087 + +* 1 2 2 0.143775E-01 0.452286E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094777 +Final residual = 0.000013 +Average conv. rate = 0.051708 + +* 2 1 3 0.947765E-01 0.131033E-04 * +Number of iterations = 1 +Initial residual = 0.001153 +Final residual = 0.000053 +Average conv. rate = 0.046038 + +* 2 2 1 0.115259E-02 0.530634E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3396 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.01 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3396 Max w this run +w_max level proc position run w_max level timestep +0.462E+00 34 197 56.2deg E -13.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3397 Model time: 1979-03-12 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044666 + +* 1 1 3 0.100000E+01 0.891130E-04 * +Number of iterations = 2 +Initial residual = 0.014368 +Final residual = 0.000046 +Average conv. rate = 0.056421 + +* 1 2 2 0.143678E-01 0.457367E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095658 +Final residual = 0.000012 +Average conv. rate = 0.050630 + +* 2 1 3 0.956583E-01 0.124151E-04 * +Number of iterations = 1 +Initial residual = 0.001158 +Final residual = 0.000053 +Average conv. rate = 0.046100 + +* 2 2 1 0.115781E-02 0.533753E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3397 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.27 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3397 Max w this run +w_max level proc position run w_max level timestep +0.520E+00 34 197 56.2deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3398 Model time: 1979-03-12 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044067 + +* 1 1 3 0.100000E+01 0.855747E-04 * +Number of iterations = 2 +Initial residual = 0.014292 +Final residual = 0.000046 +Average conv. rate = 0.056700 + +* 1 2 2 0.142925E-01 0.459479E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094829 +Final residual = 0.000014 +Average conv. rate = 0.052408 + +* 2 1 3 0.948293E-01 0.136504E-04 * +Number of iterations = 1 +Initial residual = 0.001152 +Final residual = 0.000054 +Average conv. rate = 0.046574 + +* 2 2 1 0.115226E-02 0.536650E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3398 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.52 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3398 Max w this run +w_max level proc position run w_max level timestep +0.563E+00 36 197 56.2deg E -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3399 Model time: 1979-03-12 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044054 + +* 1 1 3 0.100000E+01 0.854989E-04 * +Number of iterations = 2 +Initial residual = 0.014324 +Final residual = 0.000046 +Average conv. rate = 0.056404 + +* 1 2 2 0.143238E-01 0.455700E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097591 +Final residual = 0.000015 +Average conv. rate = 0.053307 + +* 2 1 3 0.975906E-01 0.147829E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000054 +Average conv. rate = 0.045897 + +* 2 2 1 0.118540E-02 0.544064E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3399 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.75 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.50K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3399 Max w this run +w_max level proc position run w_max level timestep +0.722E+00 25 197 58.1deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3400 Model time: 1979-03-12 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044567 + +* 1 1 3 0.100000E+01 0.885206E-04 * +Number of iterations = 2 +Initial residual = 0.014226 +Final residual = 0.000045 +Average conv. rate = 0.055952 + +* 1 2 2 0.142257E-01 0.445354E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099877 +Final residual = 0.000014 +Average conv. rate = 0.051420 + +* 2 1 3 0.998771E-01 0.135787E-04 * +Number of iterations = 1 +Initial residual = 0.001260 +Final residual = 0.000054 +Average conv. rate = 0.042837 + +* 2 2 1 0.126013E-02 0.539800E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3400 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.96 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3400 Max w this run +w_max level proc position run w_max level timestep +0.790E+00 25 197 58.1deg E -13.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3401 Model time: 1979-03-12 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044639 + +* 1 1 3 0.100000E+01 0.889471E-04 * +Number of iterations = 2 +Initial residual = 0.014267 +Final residual = 0.000044 +Average conv. rate = 0.055643 + +* 1 2 2 0.142669E-01 0.441731E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100879 +Final residual = 0.000013 +Average conv. rate = 0.050996 + +* 2 1 3 0.100879E+00 0.133783E-04 * +Number of iterations = 1 +Initial residual = 0.001259 +Final residual = 0.000054 +Average conv. rate = 0.042820 + +* 2 2 1 0.125917E-02 0.539180E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3401 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.16 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.29K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3401 Max w this run +w_max level proc position run w_max level timestep +0.972E+00 27 197 58.1deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3402 Model time: 1979-03-12 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044482 + +* 1 1 3 0.100000E+01 0.880156E-04 * +Number of iterations = 2 +Initial residual = 0.014164 +Final residual = 0.000044 +Average conv. rate = 0.055719 + +* 1 2 2 0.141642E-01 0.439736E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103633 +Final residual = 0.000014 +Average conv. rate = 0.051308 + +* 2 1 3 0.103633E+00 0.139977E-04 * +Number of iterations = 1 +Initial residual = 0.001425 +Final residual = 0.000054 +Average conv. rate = 0.037918 + +* 2 2 1 0.142484E-02 0.540265E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3402 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.12 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3402 Max w this run +w_max level proc position run w_max level timestep +0.967E+00 27 197 58.1deg E -13.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3403 Model time: 1979-03-12 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044155 + +* 1 1 3 0.100000E+01 0.860863E-04 * +Number of iterations = 2 +Initial residual = 0.014186 +Final residual = 0.000044 +Average conv. rate = 0.055833 + +* 1 2 2 0.141859E-01 0.442215E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098204 +Final residual = 0.000013 +Average conv. rate = 0.051214 + +* 2 1 3 0.982037E-01 0.131915E-04 * +Number of iterations = 1 +Initial residual = 0.001322 +Final residual = 0.000054 +Average conv. rate = 0.040893 + +* 2 2 1 0.132229E-02 0.540721E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3403 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.06 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3403 Max w this run +w_max level proc position run w_max level timestep +0.950E+00 28 197 58.1deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3404 Model time: 1979-03-12 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043760 + +* 1 1 3 0.100000E+01 0.837970E-04 * +Number of iterations = 2 +Initial residual = 0.014241 +Final residual = 0.000044 +Average conv. rate = 0.055676 + +* 1 2 2 0.142406E-01 0.441424E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097430 +Final residual = 0.000013 +Average conv. rate = 0.050843 + +* 2 1 3 0.974302E-01 0.128051E-04 * +Number of iterations = 1 +Initial residual = 0.001368 +Final residual = 0.000054 +Average conv. rate = 0.039399 + +* 2 2 1 0.136833E-02 0.539111E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3404 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.00 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.59K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3404 Max w this run +w_max level proc position run w_max level timestep +0.891E+00 29 197 58.1deg E -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3405 Model time: 1979-03-12 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044136 + +* 1 1 3 0.100000E+01 0.859775E-04 * +Number of iterations = 2 +Initial residual = 0.014412 +Final residual = 0.000045 +Average conv. rate = 0.055779 + +* 1 2 2 0.144121E-01 0.448399E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108897 +Final residual = 0.000013 +Average conv. rate = 0.048869 + +* 2 1 3 0.108897E+00 0.127091E-04 * +Number of iterations = 1 +Initial residual = 0.001761 +Final residual = 0.000054 +Average conv. rate = 0.030876 + +* 2 2 1 0.176088E-02 0.543687E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3405 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.95 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3405 Max w this run +w_max level proc position run w_max level timestep +0.785E+00 30 197 58.1deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3406 Model time: 1979-03-12 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044172 + +* 1 1 3 0.100000E+01 0.861888E-04 * +Number of iterations = 2 +Initial residual = 0.014394 +Final residual = 0.000045 +Average conv. rate = 0.056039 + +* 1 2 2 0.143940E-01 0.452022E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097353 +Final residual = 0.000013 +Average conv. rate = 0.051047 + +* 2 1 3 0.973532E-01 0.129498E-04 * +Number of iterations = 1 +Initial residual = 0.001279 +Final residual = 0.000054 +Average conv. rate = 0.042353 + +* 2 2 1 0.127910E-02 0.541735E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3406 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.91 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.74K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3406 Max w this run +w_max level proc position run w_max level timestep +0.696E+00 31 197 58.1deg E -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3407 Model time: 1979-03-12 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043992 + +* 1 1 3 0.100000E+01 0.851376E-04 * +Number of iterations = 2 +Initial residual = 0.014436 +Final residual = 0.000045 +Average conv. rate = 0.056012 + +* 1 2 2 0.144357E-01 0.452901E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100948 +Final residual = 0.000014 +Average conv. rate = 0.051163 + +* 2 1 3 0.100948E+00 0.135198E-04 * +Number of iterations = 1 +Initial residual = 0.001296 +Final residual = 0.000055 +Average conv. rate = 0.042140 + +* 2 2 1 0.129588E-02 0.546083E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3407 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.86 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.80K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3407 Max w this run +w_max level proc position run w_max level timestep +0.651E+00 34 197 56.2deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3408 Model time: 1979-03-13 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Copying rp2 to dump headers +update_dpsidt: updating based on existing values +stph_skeb2: Copying SKEB2 data to dump headers +update_pattern: updating coeffc and coeffs +Copying SPT parameters to dump headers +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043888 + +* 1 1 3 0.100000E+01 0.845356E-04 * +Number of iterations = 2 +Initial residual = 0.014313 +Final residual = 0.000045 +Average conv. rate = 0.055913 + +* 1 2 2 0.143130E-01 0.447461E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094443 +Final residual = 0.000013 +Average conv. rate = 0.051813 + +* 2 1 3 0.944433E-01 0.131364E-04 * +Number of iterations = 1 +Initial residual = 0.001196 +Final residual = 0.000053 +Average conv. rate = 0.044171 + +* 2 2 1 0.119578E-02 0.528191E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51418E+19 +Tot energy 0.13047E+25 +tot dry energy 0.13048E+25 +gr( rho cal) 0.38081E+24 +KE( rho cal) 0.83918E+21 +KEu(rho cal) 0.64511E+21 +KEv(rho cal) 0.19407E+21 +KEw(rho cal) 0.11318E+16 +cvT( rho cal) 0.92315E+24 +lq ( rho cal) 0.30567E+23 +lqcf( rho cal) 0.63754E+20 +lqcl( rho cal) 0.42557E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12262E+17 KG +Initial moisture = 0.12293E+17 KG +change in moisture = -0.31119E+14 KG +Moisture added E-P in period = -0.32535E+14 KG +Error in moisture = 0.14161E+13 KG +Error as % of change = -0.45505E+01 +q ( rho cal) 0.12222E+17 +qcf( rho cal) 0.25492E+14 +qcl( rho cal) 0.15011E+14 +FINAL TOTAL ENERGY = 0.13047E+25 J/ +INITIAL TOTAL ENERGY = 0.13046E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.87777E+20 J/ +FLUXES INTO ATM OVER PERIOD = 0.94992E+20 J/ +ERROR IN ENERGY BUDGET = 0.72148E+19 J/ +TEMP CORRECTION OVER A DAY = 0.19591E-02 K +TEMPERATURE CORRECTION RATE = 0.22675E-07 K/S +FLUX CORRECTION (ATM) = 0.16370E+00 W/M2 + +Minimum theta level 1 for timestep 3408 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.84 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3408 Max w this run +w_max level proc position run w_max level timestep +0.676E+00 36 197 56.2deg E -13.1deg S 0.986E+00 27 3236 +Value of iranseed copied to the dump headers 236250126153705 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790313_00 +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.d%z%C +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790313_00 +FILE_MANAGER: : Unit : 45 (portio) +DUMPCTL: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790313_00 on unit 45 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790313_00 to be Opened on Unit 45 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790313_00 Created on Unit 45 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790313_00 on unit 45 + +WRITING UNIFIED MODEL DUMP ON UNIT 45 +##################################### + +Data successfully written +794416694 words written to unit 45 +(Model data) +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790313_00 Closed on Unit 45 +FILE_MANAGER: Released : Unit : 45 (portio) +FILE_MANAGER: Assigned : history_archive/temp_hist.0003 +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +MPPIO: file op: cp::history_archive/temp_hist.0003:thist +file_op: Copy: "history_archive/temp_hist.0003" to "thist" +file_op: Copy: Complete, 12897 bytes +MPPIO: file op completed +FILE_MANAGER: Assigned : history_archive/temp_hist.0004 +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +MPPIO: file op: cp::history_archive/temp_hist.0004:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.xhist +file_op: Copy: "history_archive/temp_hist.0004" to "/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.xhist" +file_op: Copy: Complete, 12897 bytes +MPPIO: file op completed +MPPIO: file op: rm::thist: +file_op: Delete: "thist" +file_op: Delete: File deleted +MPPIO: file op completed +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6300.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6300.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6300.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6300.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6300.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6300.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3409 Model time: 1979-03-13 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043960 + +* 1 1 3 0.100000E+01 0.849496E-04 * +Number of iterations = 2 +Initial residual = 0.014286 +Final residual = 0.000046 +Average conv. rate = 0.056678 + +* 1 2 2 0.142856E-01 0.458911E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098298 +Final residual = 0.000013 +Average conv. rate = 0.050497 + +* 2 1 3 0.982976E-01 0.126575E-04 * +Number of iterations = 1 +Initial residual = 0.001216 +Final residual = 0.000052 +Average conv. rate = 0.043019 + +* 2 2 1 0.121644E-02 0.523294E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3409 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.81 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3409 Max w this run +w_max level proc position run w_max level timestep +0.570E+00 33 197 56.2deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3410 Model time: 1979-03-13 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043669 + +* 1 1 3 0.100000E+01 0.832786E-04 * +Number of iterations = 2 +Initial residual = 0.014197 +Final residual = 0.000045 +Average conv. rate = 0.055993 + +* 1 2 2 0.141970E-01 0.445113E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093934 +Final residual = 0.000012 +Average conv. rate = 0.049816 + +* 2 1 3 0.939344E-01 0.116129E-04 * +Number of iterations = 1 +Initial residual = 0.001176 +Final residual = 0.000053 +Average conv. rate = 0.045064 + +* 2 2 1 0.117560E-02 0.529770E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3410 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.80 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3410 Max w this run +w_max level proc position run w_max level timestep +0.568E+00 37 197 56.2deg E -13.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3411 Model time: 1979-03-13 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044568 + +* 1 1 3 0.100000E+01 0.885239E-04 * +Number of iterations = 2 +Initial residual = 0.014296 +Final residual = 0.000046 +Average conv. rate = 0.056436 + +* 1 2 2 0.142957E-01 0.455319E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096828 +Final residual = 0.000012 +Average conv. rate = 0.049631 + +* 2 1 3 0.968281E-01 0.118375E-04 * +Number of iterations = 1 +Initial residual = 0.001199 +Final residual = 0.000053 +Average conv. rate = 0.044439 + +* 2 2 1 0.119882E-02 0.532739E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3411 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.82 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3411 Max w this run +w_max level proc position run w_max level timestep +0.513E+00 32 197 56.2deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3412 Model time: 1979-03-13 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044046 + +* 1 1 3 0.100000E+01 0.854508E-04 * +Number of iterations = 2 +Initial residual = 0.014371 +Final residual = 0.000045 +Average conv. rate = 0.055872 + +* 1 2 2 0.143710E-01 0.448615E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092627 +Final residual = 0.000012 +Average conv. rate = 0.050579 + +* 2 1 3 0.926267E-01 0.119852E-04 * +Number of iterations = 1 +Initial residual = 0.001179 +Final residual = 0.000053 +Average conv. rate = 0.044983 + +* 2 2 1 0.117876E-02 0.530244E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3412 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.82 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3412 Max w this run +w_max level proc position run w_max level timestep +0.520E+00 40 197 56.2deg E -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3413 Model time: 1979-03-13 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043838 + +* 1 1 3 0.100000E+01 0.842483E-04 * +Number of iterations = 2 +Initial residual = 0.014522 +Final residual = 0.000045 +Average conv. rate = 0.055421 + +* 1 2 2 0.145217E-01 0.446039E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093225 +Final residual = 0.000012 +Average conv. rate = 0.051139 + +* 2 1 3 0.932245E-01 0.124676E-04 * +Number of iterations = 1 +Initial residual = 0.001174 +Final residual = 0.000053 +Average conv. rate = 0.045261 + +* 2 2 1 0.117450E-02 0.531583E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3413 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.85 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3413 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 39 269 153.7deg E 0.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3414 Model time: 1979-03-13 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044174 + +* 1 1 3 0.100000E+01 0.861966E-04 * +Number of iterations = 2 +Initial residual = 0.014536 +Final residual = 0.000044 +Average conv. rate = 0.055132 + +* 1 2 2 0.145363E-01 0.441840E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091972 +Final residual = 0.000012 +Average conv. rate = 0.050615 + +* 2 1 3 0.919724E-01 0.119259E-04 * +Number of iterations = 1 +Initial residual = 0.001161 +Final residual = 0.000053 +Average conv. rate = 0.045629 + +* 2 2 1 0.116084E-02 0.529678E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3414 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.88 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3414 Max w this run +w_max level proc position run w_max level timestep +0.493E+00 39 269 153.7deg E 0.6deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3415 Model time: 1979-03-13 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043768 + +* 1 1 3 0.100000E+01 0.838416E-04 * +Number of iterations = 2 +Initial residual = 0.014595 +Final residual = 0.000046 +Average conv. rate = 0.056148 + +* 1 2 2 0.145947E-01 0.460110E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092802 +Final residual = 0.000012 +Average conv. rate = 0.050521 + +* 2 1 3 0.928019E-01 0.119668E-04 * +Number of iterations = 1 +Initial residual = 0.001171 +Final residual = 0.000054 +Average conv. rate = 0.045724 + +* 2 2 1 0.117077E-02 0.535324E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3415 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.98 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3415 Max w this run +w_max level proc position run w_max level timestep +0.483E+00 39 249 69.4deg W -4.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3416 Model time: 1979-03-13 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044290 + +* 1 1 3 0.100000E+01 0.868809E-04 * +Number of iterations = 2 +Initial residual = 0.014571 +Final residual = 0.000045 +Average conv. rate = 0.055860 + +* 1 2 2 0.145708E-01 0.454656E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090728 +Final residual = 0.000011 +Average conv. rate = 0.050041 + +* 2 1 3 0.907284E-01 0.113686E-04 * +Number of iterations = 1 +Initial residual = 0.001162 +Final residual = 0.000053 +Average conv. rate = 0.045923 + +* 2 2 1 0.116171E-02 0.533493E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3416 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.01 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3416 Max w this run +w_max level proc position run w_max level timestep +0.483E+00 39 197 56.2deg E -13.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3417 Model time: 1979-03-13 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043801 + +* 1 1 3 0.100000E+01 0.840311E-04 * +Number of iterations = 2 +Initial residual = 0.014647 +Final residual = 0.000047 +Average conv. rate = 0.056598 + +* 1 2 2 0.146471E-01 0.469191E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091487 +Final residual = 0.000011 +Average conv. rate = 0.050047 + +* 2 1 3 0.914869E-01 0.114683E-04 * +Number of iterations = 1 +Initial residual = 0.001143 +Final residual = 0.000052 +Average conv. rate = 0.045646 + +* 2 2 1 0.114289E-02 0.521687E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3417 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.11 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3417 Max w this run +w_max level proc position run w_max level timestep +0.420E+00 36 197 56.2deg E -13.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3418 Model time: 1979-03-13 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043611 + +* 1 1 3 0.100000E+01 0.829468E-04 * +Number of iterations = 2 +Initial residual = 0.014501 +Final residual = 0.000047 +Average conv. rate = 0.056702 + +* 1 2 2 0.145014E-01 0.466244E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089731 +Final residual = 0.000012 +Average conv. rate = 0.051789 + +* 2 1 3 0.897311E-01 0.124643E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000052 +Average conv. rate = 0.045583 + +* 2 2 1 0.114884E-02 0.523674E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3418 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.19 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.88K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3418 Max w this run +w_max level proc position run w_max level timestep +0.466E+00 41 197 56.2deg E -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3419 Model time: 1979-03-13 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043332 + +* 1 1 3 0.100000E+01 0.813606E-04 * +Number of iterations = 2 +Initial residual = 0.014471 +Final residual = 0.000047 +Average conv. rate = 0.057115 + +* 1 2 2 0.144706E-01 0.472047E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089625 +Final residual = 0.000012 +Average conv. rate = 0.051375 + +* 2 1 3 0.896252E-01 0.121534E-04 * +Number of iterations = 1 +Initial residual = 0.001159 +Final residual = 0.000053 +Average conv. rate = 0.045803 + +* 2 2 1 0.115938E-02 0.531026E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3419 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.18 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.67K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3419 Max w this run +w_max level proc position run w_max level timestep +0.407E+00 37 231 82.5deg E -4.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3420 Model time: 1979-03-13 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042729 + +* 1 1 3 0.100000E+01 0.780130E-04 * +Number of iterations = 2 +Initial residual = 0.014435 +Final residual = 0.000047 +Average conv. rate = 0.056880 + +* 1 2 2 0.144346E-01 0.467002E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088994 +Final residual = 0.000012 +Average conv. rate = 0.051538 + +* 2 1 3 0.889942E-01 0.121826E-04 * +Number of iterations = 1 +Initial residual = 0.001165 +Final residual = 0.000054 +Average conv. rate = 0.046199 + +* 2 2 1 0.116495E-02 0.538200E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3420 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.20 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3420 Max w this run +w_max level proc position run w_max level timestep +0.482E+00 43 197 56.2deg E -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3421 Model time: 1979-03-13 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043340 + +* 1 1 3 0.100000E+01 0.814081E-04 * +Number of iterations = 2 +Initial residual = 0.014438 +Final residual = 0.000047 +Average conv. rate = 0.056978 + +* 1 2 2 0.144377E-01 0.468713E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089866 +Final residual = 0.000011 +Average conv. rate = 0.049721 + +* 2 1 3 0.898660E-01 0.110462E-04 * +Number of iterations = 1 +Initial residual = 0.001166 +Final residual = 0.000053 +Average conv. rate = 0.045890 + +* 2 2 1 0.116566E-02 0.534919E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3421 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.91 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.51K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3421 Max w this run +w_max level proc position run w_max level timestep +0.450E+00 38 225 11.3deg E -0.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3422 Model time: 1979-03-13 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042547 + +* 1 1 3 0.100000E+01 0.770186E-04 * +Number of iterations = 2 +Initial residual = 0.014432 +Final residual = 0.000044 +Average conv. rate = 0.055312 + +* 1 2 2 0.144322E-01 0.441543E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090027 +Final residual = 0.000011 +Average conv. rate = 0.049271 + +* 2 1 3 0.900270E-01 0.107680E-04 * +Number of iterations = 1 +Initial residual = 0.001165 +Final residual = 0.000053 +Average conv. rate = 0.045705 + +* 2 2 1 0.116464E-02 0.532297E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3422 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.25 0 9.4deg E -83.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3422 Max w this run +w_max level proc position run w_max level timestep +0.492E+00 40 249 73.1deg W -4.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3423 Model time: 1979-03-13 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043650 + +* 1 1 3 0.100000E+01 0.831662E-04 * +Number of iterations = 2 +Initial residual = 0.014599 +Final residual = 0.000044 +Average conv. rate = 0.055071 + +* 1 2 2 0.145988E-01 0.442764E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088582 +Final residual = 0.000011 +Average conv. rate = 0.050354 + +* 2 1 3 0.885816E-01 0.113094E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000053 +Average conv. rate = 0.045888 + +* 2 2 1 0.114937E-02 0.527423E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3423 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.49 0 9.4deg E -83.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3423 Max w this run +w_max level proc position run w_max level timestep +0.517E+00 41 249 73.1deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3424 Model time: 1979-03-13 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043194 + +* 1 1 3 0.100000E+01 0.805856E-04 * +Number of iterations = 2 +Initial residual = 0.014683 +Final residual = 0.000044 +Average conv. rate = 0.054698 + +* 1 2 2 0.146832E-01 0.439301E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089393 +Final residual = 0.000011 +Average conv. rate = 0.049917 + +* 2 1 3 0.893928E-01 0.111183E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000052 +Average conv. rate = 0.045415 + +* 2 2 1 0.115537E-02 0.524712E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3424 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.51 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.97K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3424 Max w this run +w_max level proc position run w_max level timestep +0.577E+00 41 249 73.1deg W -10.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3425 Model time: 1979-03-13 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043409 + +* 1 1 3 0.100000E+01 0.817974E-04 * +Number of iterations = 2 +Initial residual = 0.014737 +Final residual = 0.000044 +Average conv. rate = 0.054700 + +* 1 2 2 0.147370E-01 0.440949E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090115 +Final residual = 0.000011 +Average conv. rate = 0.049599 + +* 2 1 3 0.901151E-01 0.109955E-04 * +Number of iterations = 1 +Initial residual = 0.001160 +Final residual = 0.000052 +Average conv. rate = 0.044647 + +* 2 2 1 0.116015E-02 0.517977E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3425 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.13 0 9.4deg E -83.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3425 Max w this run +w_max level proc position run w_max level timestep +0.629E+00 42 249 73.1deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3426 Model time: 1979-03-13 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044112 + +* 1 1 3 0.100000E+01 0.858375E-04 * +Number of iterations = 2 +Initial residual = 0.014698 +Final residual = 0.000046 +Average conv. rate = 0.056085 + +* 1 2 2 0.146981E-01 0.462332E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089884 +Final residual = 0.000012 +Average conv. rate = 0.051123 + +* 2 1 3 0.898845E-01 0.120100E-04 * +Number of iterations = 1 +Initial residual = 0.001168 +Final residual = 0.000051 +Average conv. rate = 0.043921 + +* 2 2 1 0.116795E-02 0.512975E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3426 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.51 0 9.4deg E -83.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.11K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3426 Max w this run +w_max level proc position run w_max level timestep +0.585E+00 42 249 73.1deg W -10.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3427 Model time: 1979-03-13 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044306 + +* 1 1 3 0.100000E+01 0.869729E-04 * +Number of iterations = 2 +Initial residual = 0.014729 +Final residual = 0.000044 +Average conv. rate = 0.054915 + +* 1 2 2 0.147287E-01 0.444160E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089947 +Final residual = 0.000011 +Average conv. rate = 0.049607 + +* 2 1 3 0.899475E-01 0.109801E-04 * +Number of iterations = 1 +Initial residual = 0.001181 +Final residual = 0.000051 +Average conv. rate = 0.043240 + +* 2 2 1 0.118143E-02 0.510854E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3427 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.92 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3427 Max w this run +w_max level proc position run w_max level timestep +0.583E+00 42 249 73.1deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3428 Model time: 1979-03-13 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043407 + +* 1 1 3 0.100000E+01 0.817847E-04 * +Number of iterations = 2 +Initial residual = 0.014733 +Final residual = 0.000045 +Average conv. rate = 0.054958 + +* 1 2 2 0.147331E-01 0.445003E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089438 +Final residual = 0.000011 +Average conv. rate = 0.050332 + +* 2 1 3 0.894377E-01 0.114041E-04 * +Number of iterations = 1 +Initial residual = 0.001199 +Final residual = 0.000052 +Average conv. rate = 0.043374 + +* 2 2 1 0.119880E-02 0.519973E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3428 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.86 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.86K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3428 Max w this run +w_max level proc position run w_max level timestep +0.570E+00 41 249 73.1deg W -10.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3429 Model time: 1979-03-13 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043754 + +* 1 1 3 0.100000E+01 0.837651E-04 * +Number of iterations = 2 +Initial residual = 0.014806 +Final residual = 0.000045 +Average conv. rate = 0.055002 + +* 1 2 2 0.148058E-01 0.447903E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090227 +Final residual = 0.000010 +Average conv. rate = 0.048470 + +* 2 1 3 0.902268E-01 0.102746E-04 * +Number of iterations = 1 +Initial residual = 0.001187 +Final residual = 0.000051 +Average conv. rate = 0.043157 + +* 2 2 1 0.118689E-02 0.512228E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3429 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.70 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3429 Max w this run +w_max level proc position run w_max level timestep +0.539E+00 41 249 73.1deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3430 Model time: 1979-03-13 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044165 + +* 1 1 3 0.100000E+01 0.861484E-04 * +Number of iterations = 2 +Initial residual = 0.014837 +Final residual = 0.000045 +Average conv. rate = 0.055105 + +* 1 2 2 0.148369E-01 0.450528E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089899 +Final residual = 0.000011 +Average conv. rate = 0.049038 + +* 2 1 3 0.898994E-01 0.106011E-04 * +Number of iterations = 1 +Initial residual = 0.001197 +Final residual = 0.000053 +Average conv. rate = 0.043905 + +* 2 2 1 0.119732E-02 0.525686E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3430 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.54 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.74K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3430 Max w this run +w_max level proc position run w_max level timestep +0.587E+00 39 207 178.1deg E -11.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3431 Model time: 1979-03-13 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000076 +Average conv. rate = 0.042445 + +* 1 1 3 0.100000E+01 0.764666E-04 * +Number of iterations = 2 +Initial residual = 0.015129 +Final residual = 0.000046 +Average conv. rate = 0.055051 + +* 1 2 2 0.151294E-01 0.458517E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090265 +Final residual = 0.000011 +Average conv. rate = 0.049571 + +* 2 1 3 0.902647E-01 0.109954E-04 * +Number of iterations = 1 +Initial residual = 0.001165 +Final residual = 0.000051 +Average conv. rate = 0.044058 + +* 2 2 1 0.116490E-02 0.513230E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3431 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.42 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.19K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3431 Max w this run +w_max level proc position run w_max level timestep +0.574E+00 39 207 178.1deg E -11.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3432 Model time: 1979-03-13 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043071 + +* 1 1 3 0.100000E+01 0.799038E-04 * +Number of iterations = 2 +Initial residual = 0.015166 +Final residual = 0.000045 +Average conv. rate = 0.054540 + +* 1 2 2 0.151659E-01 0.451121E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091743 +Final residual = 0.000099 +Average conv. rate = 0.032881 + +* 2 1 2 0.917433E-01 0.991884E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000050 +Average conv. rate = 0.043777 + +* 2 2 1 0.114603E-02 0.501692E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3432 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.29 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.62K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3432 Max w this run +w_max level proc position run w_max level timestep +0.604E+00 39 207 178.1deg E -11.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3433 Model time: 1979-03-13 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043560 + +* 1 1 3 0.100000E+01 0.826521E-04 * +Number of iterations = 2 +Initial residual = 0.014983 +Final residual = 0.000045 +Average conv. rate = 0.055106 + +* 1 2 2 0.149832E-01 0.454991E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092132 +Final residual = 0.000012 +Average conv. rate = 0.050368 + +* 2 1 3 0.921316E-01 0.117724E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000050 +Average conv. rate = 0.043656 + +* 2 2 1 0.114943E-02 0.501793E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3433 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.19 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3433 Max w this run +w_max level proc position run w_max level timestep +0.641E+00 25 189 33.8deg W -30.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3434 Model time: 1979-03-13 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043556 + +* 1 1 3 0.100000E+01 0.826284E-04 * +Number of iterations = 2 +Initial residual = 0.014646 +Final residual = 0.000046 +Average conv. rate = 0.055800 + +* 1 2 2 0.146460E-01 0.456018E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092518 +Final residual = 0.000012 +Average conv. rate = 0.051145 + +* 2 1 3 0.925178E-01 0.123772E-04 * +Number of iterations = 1 +Initial residual = 0.001145 +Final residual = 0.000050 +Average conv. rate = 0.043971 + +* 2 2 1 0.114516E-02 0.503541E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3434 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.13 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.24K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3434 Max w this run +w_max level proc position run w_max level timestep +0.651E+00 26 189 33.8deg W -30.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3435 Model time: 1979-03-13 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043516 + +* 1 1 3 0.100000E+01 0.824025E-04 * +Number of iterations = 2 +Initial residual = 0.014477 +Final residual = 0.000046 +Average conv. rate = 0.056228 + +* 1 2 2 0.144774E-01 0.457715E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094616 +Final residual = 0.000013 +Average conv. rate = 0.051101 + +* 2 1 3 0.946159E-01 0.126255E-04 * +Number of iterations = 1 +Initial residual = 0.001139 +Final residual = 0.000051 +Average conv. rate = 0.044547 + +* 2 2 1 0.113922E-02 0.507491E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3435 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.19 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.53K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3435 Max w this run +w_max level proc position run w_max level timestep +0.721E+00 28 189 33.8deg W -30.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3436 Model time: 1979-03-13 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043099 + +* 1 1 3 0.100000E+01 0.800584E-04 * +Number of iterations = 2 +Initial residual = 0.014364 +Final residual = 0.000045 +Average conv. rate = 0.055727 + +* 1 2 2 0.143642E-01 0.446074E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095003 +Final residual = 0.000013 +Average conv. rate = 0.051505 + +* 2 1 3 0.950032E-01 0.129800E-04 * +Number of iterations = 1 +Initial residual = 0.001174 +Final residual = 0.000050 +Average conv. rate = 0.042808 + +* 2 2 1 0.117406E-02 0.502596E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3436 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.45 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.62K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3436 Max w this run +w_max level proc position run w_max level timestep +0.678E+00 28 189 33.8deg W -30.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3437 Model time: 1979-03-13 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043379 + +* 1 1 3 0.100000E+01 0.816299E-04 * +Number of iterations = 2 +Initial residual = 0.014401 +Final residual = 0.000044 +Average conv. rate = 0.055214 + +* 1 2 2 0.144013E-01 0.439035E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094271 +Final residual = 0.000013 +Average conv. rate = 0.051532 + +* 2 1 3 0.942708E-01 0.129005E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000051 +Average conv. rate = 0.043977 + +* 2 2 1 0.115714E-02 0.508879E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3437 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.47 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3437 Max w this run +w_max level proc position run w_max level timestep +0.607E+00 29 189 33.8deg W -30.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3438 Model time: 1979-03-13 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043396 + +* 1 1 3 0.100000E+01 0.817224E-04 * +Number of iterations = 2 +Initial residual = 0.014362 +Final residual = 0.000044 +Average conv. rate = 0.055130 + +* 1 2 2 0.143618E-01 0.436498E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094744 +Final residual = 0.000099 +Average conv. rate = 0.032268 + +* 2 1 2 0.947442E-01 0.986496E-04 * +Number of iterations = 1 +Initial residual = 0.001172 +Final residual = 0.000051 +Average conv. rate = 0.043484 + +* 2 2 1 0.117226E-02 0.509750E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3438 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.52 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3438 Max w this run +w_max level proc position run w_max level timestep +0.577E+00 39 249 71.3deg W -8.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3439 Model time: 1979-03-13 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043782 + +* 1 1 3 0.100000E+01 0.839244E-04 * +Number of iterations = 2 +Initial residual = 0.014425 +Final residual = 0.000045 +Average conv. rate = 0.055552 + +* 1 2 2 0.144253E-01 0.445162E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094711 +Final residual = 0.000010 +Average conv. rate = 0.048025 + +* 2 1 3 0.947108E-01 0.104904E-04 * +Number of iterations = 1 +Initial residual = 0.001160 +Final residual = 0.000051 +Average conv. rate = 0.043918 + +* 2 2 1 0.115993E-02 0.509421E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3439 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.79 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.40K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3439 Max w this run +w_max level proc position run w_max level timestep +0.594E+00 28 239 168.8deg E -0.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3440 Model time: 1979-03-13 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044041 + +* 1 1 3 0.100000E+01 0.854246E-04 * +Number of iterations = 2 +Initial residual = 0.014440 +Final residual = 0.000045 +Average conv. rate = 0.056060 + +* 1 2 2 0.144405E-01 0.453820E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092870 +Final residual = 0.000011 +Average conv. rate = 0.049076 + +* 2 1 3 0.928696E-01 0.109771E-04 * +Number of iterations = 1 +Initial residual = 0.001144 +Final residual = 0.000051 +Average conv. rate = 0.044526 + +* 2 2 1 0.114393E-02 0.509349E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3440 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.07 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.37K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3440 Max w this run +w_max level proc position run w_max level timestep +0.633E+00 28 239 168.8deg E -0.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3441 Model time: 1979-03-13 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044270 + +* 1 1 3 0.100000E+01 0.867619E-04 * +Number of iterations = 2 +Initial residual = 0.014527 +Final residual = 0.000048 +Average conv. rate = 0.057252 + +* 1 2 2 0.145273E-01 0.476179E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095204 +Final residual = 0.000012 +Average conv. rate = 0.049838 + +* 2 1 3 0.952043E-01 0.117855E-04 * +Number of iterations = 1 +Initial residual = 0.001176 +Final residual = 0.000052 +Average conv. rate = 0.043808 + +* 2 2 1 0.117609E-02 0.515220E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3441 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.50 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3441 Max w this run +w_max level proc position run w_max level timestep +0.640E+00 29 239 168.8deg E -0.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3442 Model time: 1979-03-13 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044523 + +* 1 1 3 0.100000E+01 0.882585E-04 * +Number of iterations = 2 +Initial residual = 0.014496 +Final residual = 0.000047 +Average conv. rate = 0.057072 + +* 1 2 2 0.144958E-01 0.472151E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096536 +Final residual = 0.000012 +Average conv. rate = 0.049955 + +* 2 1 3 0.965363E-01 0.120345E-04 * +Number of iterations = 1 +Initial residual = 0.001233 +Final residual = 0.000052 +Average conv. rate = 0.042545 + +* 2 2 1 0.123301E-02 0.524591E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3442 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.93 504 90.0deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.62K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3442 Max w this run +w_max level proc position run w_max level timestep +0.676E+00 30 239 168.8deg E -0.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3443 Model time: 1979-03-13 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044505 + +* 1 1 3 0.100000E+01 0.881523E-04 * +Number of iterations = 2 +Initial residual = 0.014588 +Final residual = 0.000047 +Average conv. rate = 0.057024 + +* 1 2 2 0.145879E-01 0.474367E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098278 +Final residual = 0.000011 +Average conv. rate = 0.048675 + +* 2 1 3 0.982775E-01 0.113338E-04 * +Number of iterations = 1 +Initial residual = 0.001232 +Final residual = 0.000054 +Average conv. rate = 0.043477 + +* 2 2 1 0.123158E-02 0.535452E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3443 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.90 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.79K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3443 Max w this run +w_max level proc position run w_max level timestep +0.696E+00 30 239 168.8deg E -0.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3444 Model time: 1979-03-13 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044268 + +* 1 1 3 0.100000E+01 0.867498E-04 * +Number of iterations = 2 +Initial residual = 0.014521 +Final residual = 0.000046 +Average conv. rate = 0.056364 + +* 1 2 2 0.145208E-01 0.461318E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095571 +Final residual = 0.000012 +Average conv. rate = 0.049930 + +* 2 1 3 0.955708E-01 0.118963E-04 * +Number of iterations = 1 +Initial residual = 0.001228 +Final residual = 0.000054 +Average conv. rate = 0.044073 + +* 2 2 1 0.122844E-02 0.541413E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3444 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.85 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3444 Max w this run +w_max level proc position run w_max level timestep +0.588E+00 29 239 168.8deg E -0.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3445 Model time: 1979-03-13 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044449 + +* 1 1 3 0.100000E+01 0.878180E-04 * +Number of iterations = 2 +Initial residual = 0.014463 +Final residual = 0.000047 +Average conv. rate = 0.056801 + +* 1 2 2 0.144632E-01 0.466634E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098746 +Final residual = 0.000012 +Average conv. rate = 0.049812 + +* 2 1 3 0.987463E-01 0.122048E-04 * +Number of iterations = 1 +Initial residual = 0.001244 +Final residual = 0.000054 +Average conv. rate = 0.043529 + +* 2 2 1 0.124353E-02 0.541298E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3445 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.80 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.90K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3445 Max w this run +w_max level proc position run w_max level timestep +0.547E+00 29 239 168.8deg E -0.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3446 Model time: 1979-03-13 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044805 + +* 1 1 3 0.100000E+01 0.899440E-04 * +Number of iterations = 2 +Initial residual = 0.014367 +Final residual = 0.000046 +Average conv. rate = 0.056856 + +* 1 2 2 0.143667E-01 0.464417E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096064 +Final residual = 0.000012 +Average conv. rate = 0.049658 + +* 2 1 3 0.960641E-01 0.117634E-04 * +Number of iterations = 1 +Initial residual = 0.001231 +Final residual = 0.000054 +Average conv. rate = 0.044114 + +* 2 2 1 0.123115E-02 0.543105E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3446 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.76 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3446 Max w this run +w_max level proc position run w_max level timestep +0.537E+00 29 239 168.8deg E -0.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3447 Model time: 1979-03-13 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044021 + +* 1 1 3 0.100000E+01 0.853049E-04 * +Number of iterations = 2 +Initial residual = 0.014438 +Final residual = 0.000048 +Average conv. rate = 0.057888 + +* 1 2 2 0.144380E-01 0.483818E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098473 +Final residual = 0.000012 +Average conv. rate = 0.049405 + +* 2 1 3 0.984734E-01 0.118752E-04 * +Number of iterations = 1 +Initial residual = 0.001261 +Final residual = 0.000056 +Average conv. rate = 0.044145 + +* 2 2 1 0.126098E-02 0.556662E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3447 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.73 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.00K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3447 Max w this run +w_max level proc position run w_max level timestep +0.566E+00 31 239 168.8deg E -0.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3448 Model time: 1979-03-13 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043643 + +* 1 1 3 0.100000E+01 0.831251E-04 * +Number of iterations = 2 +Initial residual = 0.014425 +Final residual = 0.000049 +Average conv. rate = 0.058343 + +* 1 2 2 0.144249E-01 0.491019E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098660 +Final residual = 0.000012 +Average conv. rate = 0.049449 + +* 2 1 3 0.986595E-01 0.119295E-04 * +Number of iterations = 1 +Initial residual = 0.001247 +Final residual = 0.000055 +Average conv. rate = 0.044378 + +* 2 2 1 0.124694E-02 0.553370E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3448 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.69 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3448 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 37 258 24.4deg E 4.4deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3449 Model time: 1979-03-13 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044329 + +* 1 1 3 0.100000E+01 0.871113E-04 * +Number of iterations = 2 +Initial residual = 0.014524 +Final residual = 0.000050 +Average conv. rate = 0.058792 + +* 1 2 2 0.145238E-01 0.502016E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098606 +Final residual = 0.000012 +Average conv. rate = 0.048931 + +* 2 1 3 0.986058E-01 0.115519E-04 * +Number of iterations = 1 +Initial residual = 0.001230 +Final residual = 0.000055 +Average conv. rate = 0.044443 + +* 2 2 1 0.122986E-02 0.546582E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3449 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.67 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3449 Max w this run +w_max level proc position run w_max level timestep +0.473E+00 38 258 24.4deg E 4.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3450 Model time: 1979-03-13 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044195 + +* 1 1 3 0.100000E+01 0.863209E-04 * +Number of iterations = 2 +Initial residual = 0.014486 +Final residual = 0.000050 +Average conv. rate = 0.058830 + +* 1 2 2 0.144861E-01 0.501368E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097954 +Final residual = 0.000011 +Average conv. rate = 0.048848 + +* 2 1 3 0.979543E-01 0.114170E-04 * +Number of iterations = 1 +Initial residual = 0.001257 +Final residual = 0.000055 +Average conv. rate = 0.043537 + +* 2 2 1 0.125672E-02 0.547140E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3450 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.64 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.14K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3450 Max w this run +w_max level proc position run w_max level timestep +0.485E+00 29 189 31.9deg W -29.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3451 Model time: 1979-03-13 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044008 + +* 1 1 3 0.100000E+01 0.852277E-04 * +Number of iterations = 2 +Initial residual = 0.014504 +Final residual = 0.000048 +Average conv. rate = 0.057397 + +* 1 2 2 0.145044E-01 0.477833E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101031 +Final residual = 0.000012 +Average conv. rate = 0.048896 + +* 2 1 3 0.101031E+00 0.118104E-04 * +Number of iterations = 1 +Initial residual = 0.001305 +Final residual = 0.000055 +Average conv. rate = 0.042383 + +* 2 2 1 0.130451E-02 0.552897E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3451 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.62 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.19K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3451 Max w this run +w_max level proc position run w_max level timestep +0.506E+00 84 381 28.1deg W 40.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3452 Model time: 1979-03-13 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044408 + +* 1 1 3 0.100000E+01 0.875750E-04 * +Number of iterations = 2 +Initial residual = 0.014489 +Final residual = 0.000048 +Average conv. rate = 0.057793 + +* 1 2 2 0.144892E-01 0.483949E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099817 +Final residual = 0.000012 +Average conv. rate = 0.048847 + +* 2 1 3 0.998173E-01 0.116337E-04 * +Number of iterations = 1 +Initial residual = 0.001295 +Final residual = 0.000055 +Average conv. rate = 0.042537 + +* 2 2 1 0.129477E-02 0.550752E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3452 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.60 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.23K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3452 Max w this run +w_max level proc position run w_max level timestep +0.513E+00 84 381 28.1deg W 40.6deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3453 Model time: 1979-03-13 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000091 +Average conv. rate = 0.044902 + +* 1 1 3 0.100000E+01 0.905301E-04 * +Number of iterations = 2 +Initial residual = 0.014637 +Final residual = 0.000049 +Average conv. rate = 0.057837 + +* 1 2 2 0.146370E-01 0.489627E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099663 +Final residual = 0.000012 +Average conv. rate = 0.049544 + +* 2 1 3 0.996633E-01 0.121201E-04 * +Number of iterations = 1 +Initial residual = 0.001290 +Final residual = 0.000055 +Average conv. rate = 0.042404 + +* 2 2 1 0.129005E-02 0.547038E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3453 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.59 489 110.6deg E 86.3deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3453 Max w this run +w_max level proc position run w_max level timestep +0.478E+00 82 382 15.0deg W 44.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3454 Model time: 1979-03-13 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044236 + +* 1 1 3 0.100000E+01 0.865642E-04 * +Number of iterations = 2 +Initial residual = 0.014612 +Final residual = 0.000049 +Average conv. rate = 0.057931 + +* 1 2 2 0.146123E-01 0.490390E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098396 +Final residual = 0.000012 +Average conv. rate = 0.049166 + +* 2 1 3 0.983963E-01 0.116941E-04 * +Number of iterations = 1 +Initial residual = 0.001263 +Final residual = 0.000054 +Average conv. rate = 0.042464 + +* 2 2 1 0.126288E-02 0.536275E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3454 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.54 5 56.2deg E -82.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.72K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3454 Max w this run +w_max level proc position run w_max level timestep +0.463E+00 82 382 15.0deg W 44.4deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3455 Model time: 1979-03-13 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044737 + +* 1 1 3 0.100000E+01 0.895395E-04 * +Number of iterations = 2 +Initial residual = 0.014624 +Final residual = 0.000049 +Average conv. rate = 0.057709 + +* 1 2 2 0.146238E-01 0.487017E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098472 +Final residual = 0.000012 +Average conv. rate = 0.049448 + +* 2 1 3 0.984724E-01 0.119061E-04 * +Number of iterations = 1 +Initial residual = 0.001245 +Final residual = 0.000054 +Average conv. rate = 0.043039 + +* 2 2 1 0.124515E-02 0.535895E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3455 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.55 4 54.4deg E -82.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.14K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3455 Max w this run +w_max level proc position run w_max level timestep +0.432E+00 37 218 58.1deg W -11.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3456 Model time: 1979-03-14 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044729 + +* 1 1 3 0.100000E+01 0.894914E-04 * +Number of iterations = 2 +Initial residual = 0.014517 +Final residual = 0.000050 +Average conv. rate = 0.058861 + +* 1 2 2 0.145169E-01 0.502951E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097141 +Final residual = 0.000012 +Average conv. rate = 0.049343 + +* 2 1 3 0.971407E-01 0.116699E-04 * +Number of iterations = 1 +Initial residual = 0.001218 +Final residual = 0.000054 +Average conv. rate = 0.044684 + +* 2 2 1 0.121791E-02 0.544211E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51418E+19 +Tot energy 0.13050E+25 +tot dry energy 0.13051E+25 +gr( rho cal) 0.38089E+24 +KE( rho cal) 0.85452E+21 +KEu(rho cal) 0.66966E+21 +KEv(rho cal) 0.18486E+21 +KEw(rho cal) 0.11925E+16 +cvT( rho cal) 0.92333E+24 +lq ( rho cal) 0.30451E+23 +lqcf( rho cal) 0.62167E+20 +lqcl( rho cal) 0.43911E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12216E+17 KG +Initial moisture = 0.12262E+17 KG +change in moisture = -0.46271E+14 KG +Moisture added E-P in period = -0.46047E+14 KG +Error in moisture = -0.22418E+12 KG +Error as % of change = 0.48449E+00 +q ( rho cal) 0.12176E+17 +qcf( rho cal) 0.24857E+14 +qcl( rho cal) 0.15489E+14 +FINAL TOTAL ENERGY = 0.13050E+25 J/ +INITIAL TOTAL ENERGY = 0.13047E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.26555E+21 J/ +FLUXES INTO ATM OVER PERIOD = 0.26849E+21 J/ +ERROR IN ENERGY BUDGET = 0.29447E+19 J/ +TEMP CORRECTION OVER A DAY = 0.79960E-03 K +TEMPERATURE CORRECTION RATE = 0.92546E-08 K/S +FLUX CORRECTION (ATM) = 0.66815E-01 W/M2 + +Minimum theta level 1 for timestep 3456 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.48 5 58.1deg E -82.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3456 Max w this run +w_max level proc position run w_max level timestep +0.491E+00 37 249 69.4deg W -0.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6276.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6276.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6276.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6276.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6276.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6276.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3457 Model time: 1979-03-14 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043793 + +* 1 1 3 0.100000E+01 0.839877E-04 * +Number of iterations = 2 +Initial residual = 0.014555 +Final residual = 0.000050 +Average conv. rate = 0.058612 + +* 1 2 2 0.145546E-01 0.500001E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097764 +Final residual = 0.000013 +Average conv. rate = 0.050792 + +* 2 1 3 0.977638E-01 0.128106E-04 * +Number of iterations = 1 +Initial residual = 0.001201 +Final residual = 0.000054 +Average conv. rate = 0.045157 + +* 2 2 1 0.120135E-02 0.542489E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3457 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.12 5 58.1deg E -82.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3457 Max w this run +w_max level proc position run w_max level timestep +0.497E+00 38 250 58.1deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3458 Model time: 1979-03-14 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043635 + +* 1 1 3 0.100000E+01 0.830804E-04 * +Number of iterations = 2 +Initial residual = 0.014466 +Final residual = 0.000051 +Average conv. rate = 0.059565 + +* 1 2 2 0.144665E-01 0.513273E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097611 +Final residual = 0.000012 +Average conv. rate = 0.049062 + +* 2 1 3 0.976108E-01 0.115276E-04 * +Number of iterations = 1 +Initial residual = 0.001197 +Final residual = 0.000054 +Average conv. rate = 0.045025 + +* 2 2 1 0.119677E-02 0.538846E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3458 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.73 5 58.1deg E -82.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.72K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3458 Max w this run +w_max level proc position run w_max level timestep +0.464E+00 37 218 58.1deg W -11.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3459 Model time: 1979-03-14 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043535 + +* 1 1 3 0.100000E+01 0.825134E-04 * +Number of iterations = 2 +Initial residual = 0.014462 +Final residual = 0.000049 +Average conv. rate = 0.058348 + +* 1 2 2 0.144624E-01 0.492379E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098327 +Final residual = 0.000014 +Average conv. rate = 0.051935 + +* 2 1 3 0.983270E-01 0.137741E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000053 +Average conv. rate = 0.044229 + +* 2 2 1 0.120593E-02 0.533369E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3459 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.35 5 58.1deg E -82.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3459 Max w this run +w_max level proc position run w_max level timestep +0.515E+00 37 218 58.1deg W -11.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3460 Model time: 1979-03-14 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043448 + +* 1 1 3 0.100000E+01 0.820205E-04 * +Number of iterations = 2 +Initial residual = 0.014414 +Final residual = 0.000048 +Average conv. rate = 0.057920 + +* 1 2 2 0.144144E-01 0.483557E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098923 +Final residual = 0.000011 +Average conv. rate = 0.048681 + +* 2 1 3 0.989229E-01 0.114123E-04 * +Number of iterations = 1 +Initial residual = 0.001211 +Final residual = 0.000053 +Average conv. rate = 0.044077 + +* 2 2 1 0.121074E-02 0.533653E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3460 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.12 5 58.1deg E -82.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.33K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3460 Max w this run +w_max level proc position run w_max level timestep +0.490E+00 37 218 58.1deg W -11.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3461 Model time: 1979-03-14 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043074 + +* 1 1 3 0.100000E+01 0.799163E-04 * +Number of iterations = 2 +Initial residual = 0.014505 +Final residual = 0.000048 +Average conv. rate = 0.057616 + +* 1 2 2 0.145046E-01 0.481495E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098428 +Final residual = 0.000012 +Average conv. rate = 0.049434 + +* 2 1 3 0.984279E-01 0.118906E-04 * +Number of iterations = 1 +Initial residual = 0.001218 +Final residual = 0.000054 +Average conv. rate = 0.044437 + +* 2 2 1 0.121766E-02 0.541093E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3461 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.98 5 58.1deg E -82.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3461 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 37 218 58.1deg W -11.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3462 Model time: 1979-03-14 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043082 + +* 1 1 3 0.100000E+01 0.799609E-04 * +Number of iterations = 2 +Initial residual = 0.014511 +Final residual = 0.000048 +Average conv. rate = 0.057391 + +* 1 2 2 0.145105E-01 0.477937E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097855 +Final residual = 0.000011 +Average conv. rate = 0.048198 + +* 2 1 3 0.978552E-01 0.109562E-04 * +Number of iterations = 1 +Initial residual = 0.001225 +Final residual = 0.000054 +Average conv. rate = 0.044069 + +* 2 2 1 0.122535E-02 0.539994E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3462 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.75 5 58.1deg E -82.5deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3462 Max w this run +w_max level proc position run w_max level timestep +0.523E+00 20 331 131.2deg E 30.6deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3463 Model time: 1979-03-14 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043978 + +* 1 1 3 0.100000E+01 0.850580E-04 * +Number of iterations = 2 +Initial residual = 0.014667 +Final residual = 0.000047 +Average conv. rate = 0.056870 + +* 1 2 2 0.146666E-01 0.474353E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098122 +Final residual = 0.000014 +Average conv. rate = 0.051828 + +* 2 1 3 0.981225E-01 0.136604E-04 * +Number of iterations = 1 +Initial residual = 0.001224 +Final residual = 0.000054 +Average conv. rate = 0.044262 + +* 2 2 1 0.122393E-02 0.541732E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3463 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.39 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3463 Max w this run +w_max level proc position run w_max level timestep +0.583E+00 20 331 131.2deg E 30.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3464 Model time: 1979-03-14 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043504 + +* 1 1 3 0.100000E+01 0.823353E-04 * +Number of iterations = 2 +Initial residual = 0.014726 +Final residual = 0.000049 +Average conv. rate = 0.057561 + +* 1 2 2 0.147262E-01 0.487915E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.098709 +Final residual = 0.000100 +Average conv. rate = 0.031811 + +* 2 1 2 0.987089E-01 0.998901E-04 * +Number of iterations = 1 +Initial residual = 0.001238 +Final residual = 0.000054 +Average conv. rate = 0.043556 + +* 2 2 1 0.123812E-02 0.539276E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3464 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.36 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3464 Max w this run +w_max level proc position run w_max level timestep +0.608E+00 20 331 131.2deg E 30.6deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3465 Model time: 1979-03-14 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043611 + +* 1 1 3 0.100000E+01 0.829434E-04 * +Number of iterations = 2 +Initial residual = 0.014769 +Final residual = 0.000048 +Average conv. rate = 0.057147 + +* 1 2 2 0.147688E-01 0.482323E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098687 +Final residual = 0.000013 +Average conv. rate = 0.050351 + +* 2 1 3 0.986870E-01 0.125973E-04 * +Number of iterations = 1 +Initial residual = 0.001235 +Final residual = 0.000053 +Average conv. rate = 0.043035 + +* 2 2 1 0.123491E-02 0.531440E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3465 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.35 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3465 Max w this run +w_max level proc position run w_max level timestep +0.613E+00 21 331 131.2deg E 30.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3466 Model time: 1979-03-14 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043941 + +* 1 1 3 0.100000E+01 0.848423E-04 * +Number of iterations = 2 +Initial residual = 0.014710 +Final residual = 0.000048 +Average conv. rate = 0.056855 + +* 1 2 2 0.147103E-01 0.475508E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097706 +Final residual = 0.000012 +Average conv. rate = 0.050220 + +* 2 1 3 0.977061E-01 0.123753E-04 * +Number of iterations = 1 +Initial residual = 0.001223 +Final residual = 0.000053 +Average conv. rate = 0.043729 + +* 2 2 1 0.122286E-02 0.534740E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3466 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.33 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3466 Max w this run +w_max level proc position run w_max level timestep +0.541E+00 21 331 131.2deg E 30.6deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3467 Model time: 1979-03-14 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044150 + +* 1 1 3 0.100000E+01 0.860597E-04 * +Number of iterations = 2 +Initial residual = 0.014714 +Final residual = 0.000048 +Average conv. rate = 0.057389 + +* 1 2 2 0.147143E-01 0.484621E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099716 +Final residual = 0.000014 +Average conv. rate = 0.051527 + +* 2 1 3 0.997159E-01 0.136416E-04 * +Number of iterations = 1 +Initial residual = 0.001234 +Final residual = 0.000054 +Average conv. rate = 0.043620 + +* 2 2 1 0.123398E-02 0.538265E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3467 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.32 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3467 Max w this run +w_max level proc position run w_max level timestep +0.551E+00 19 331 133.1deg E 30.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3468 Model time: 1979-03-14 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000093 +Average conv. rate = 0.045289 + +* 1 1 3 0.100000E+01 0.928911E-04 * +Number of iterations = 2 +Initial residual = 0.014629 +Final residual = 0.000048 +Average conv. rate = 0.057566 + +* 1 2 2 0.146288E-01 0.484779E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100194 +Final residual = 0.000013 +Average conv. rate = 0.050648 + +* 2 1 3 0.100194E+00 0.130173E-04 * +Number of iterations = 1 +Initial residual = 0.001243 +Final residual = 0.000054 +Average conv. rate = 0.043144 + +* 2 2 1 0.124339E-02 0.536446E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3468 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.31 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3468 Max w this run +w_max level proc position run w_max level timestep +0.584E+00 19 331 133.1deg E 30.6deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3469 Model time: 1979-03-14 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044424 + +* 1 1 3 0.100000E+01 0.876702E-04 * +Number of iterations = 2 +Initial residual = 0.014667 +Final residual = 0.000048 +Average conv. rate = 0.057452 + +* 1 2 2 0.146670E-01 0.484120E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099608 +Final residual = 0.000014 +Average conv. rate = 0.051881 + +* 2 1 3 0.996075E-01 0.139098E-04 * +Number of iterations = 1 +Initial residual = 0.001248 +Final residual = 0.000054 +Average conv. rate = 0.043652 + +* 2 2 1 0.124772E-02 0.544654E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3469 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.30 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.86K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3469 Max w this run +w_max level proc position run w_max level timestep +0.566E+00 19 331 133.1deg E 30.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3470 Model time: 1979-03-14 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043986 + +* 1 1 3 0.100000E+01 0.851021E-04 * +Number of iterations = 2 +Initial residual = 0.014636 +Final residual = 0.000048 +Average conv. rate = 0.057304 + +* 1 2 2 0.146360E-01 0.480602E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099398 +Final residual = 0.000012 +Average conv. rate = 0.049006 + +* 2 1 3 0.993985E-01 0.116983E-04 * +Number of iterations = 1 +Initial residual = 0.001254 +Final residual = 0.000055 +Average conv. rate = 0.043604 + +* 2 2 1 0.125383E-02 0.546715E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3470 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.29 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3470 Max w this run +w_max level proc position run w_max level timestep +0.508E+00 39 249 71.3deg W -1.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3471 Model time: 1979-03-14 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044112 + +* 1 1 3 0.100000E+01 0.858338E-04 * +Number of iterations = 2 +Initial residual = 0.014716 +Final residual = 0.000048 +Average conv. rate = 0.057344 + +* 1 2 2 0.147161E-01 0.483918E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099091 +Final residual = 0.000014 +Average conv. rate = 0.051577 + +* 2 1 3 0.990914E-01 0.135957E-04 * +Number of iterations = 1 +Initial residual = 0.001237 +Final residual = 0.000055 +Average conv. rate = 0.044397 + +* 2 2 1 0.123719E-02 0.549269E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3471 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.29 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.81K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3471 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 22 332 135.0deg E 31.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3472 Model time: 1979-03-14 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043909 + +* 1 1 3 0.100000E+01 0.846574E-04 * +Number of iterations = 2 +Initial residual = 0.014650 +Final residual = 0.000048 +Average conv. rate = 0.057481 + +* 1 2 2 0.146504E-01 0.484061E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099436 +Final residual = 0.000013 +Average conv. rate = 0.050303 + +* 2 1 3 0.994360E-01 0.126566E-04 * +Number of iterations = 1 +Initial residual = 0.001243 +Final residual = 0.000055 +Average conv. rate = 0.044005 + +* 2 2 1 0.124260E-02 0.546803E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3472 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.29 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.79K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3472 Max w this run +w_max level proc position run w_max level timestep +0.612E+00 21 332 135.0deg E 31.9deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3473 Model time: 1979-03-14 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043481 + +* 1 1 3 0.100000E+01 0.822025E-04 * +Number of iterations = 2 +Initial residual = 0.014591 +Final residual = 0.000048 +Average conv. rate = 0.057529 + +* 1 2 2 0.145910E-01 0.482910E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100706 +Final residual = 0.000013 +Average conv. rate = 0.050538 + +* 2 1 3 0.100706E+00 0.129989E-04 * +Number of iterations = 1 +Initial residual = 0.001256 +Final residual = 0.000055 +Average conv. rate = 0.043808 + +* 2 2 1 0.125635E-02 0.550381E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3473 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.29 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3473 Max w this run +w_max level proc position run w_max level timestep +0.620E+00 20 332 135.0deg E 31.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3474 Model time: 1979-03-14 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043803 + +* 1 1 3 0.100000E+01 0.840424E-04 * +Number of iterations = 2 +Initial residual = 0.014529 +Final residual = 0.000048 +Average conv. rate = 0.057551 + +* 1 2 2 0.145288E-01 0.481217E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100909 +Final residual = 0.000013 +Average conv. rate = 0.049915 + +* 2 1 3 0.100909E+00 0.125498E-04 * +Number of iterations = 1 +Initial residual = 0.001261 +Final residual = 0.000055 +Average conv. rate = 0.043821 + +* 2 2 1 0.126113E-02 0.552647E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3474 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.29 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.74K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3474 Max w this run +w_max level proc position run w_max level timestep +0.645E+00 20 332 135.0deg E 31.9deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3475 Model time: 1979-03-14 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043902 + +* 1 1 3 0.100000E+01 0.846141E-04 * +Number of iterations = 2 +Initial residual = 0.014679 +Final residual = 0.000048 +Average conv. rate = 0.056987 + +* 1 2 2 0.146791E-01 0.476713E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100843 +Final residual = 0.000014 +Average conv. rate = 0.052000 + +* 2 1 3 0.100843E+00 0.141790E-04 * +Number of iterations = 1 +Initial residual = 0.001263 +Final residual = 0.000056 +Average conv. rate = 0.044043 + +* 2 2 1 0.126341E-02 0.556439E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3475 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.28 489 103.1deg E 87.5deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -0.72K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3475 Max w this run +w_max level proc position run w_max level timestep +0.604E+00 19 332 135.0deg E 31.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3476 Model time: 1979-03-14 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043878 + +* 1 1 3 0.100000E+01 0.844801E-04 * +Number of iterations = 2 +Initial residual = 0.014706 +Final residual = 0.000048 +Average conv. rate = 0.057026 + +* 1 2 2 0.147055E-01 0.478215E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102432 +Final residual = 0.000013 +Average conv. rate = 0.050118 + +* 2 1 3 0.102432E+00 0.128948E-04 * +Number of iterations = 1 +Initial residual = 0.001322 +Final residual = 0.000056 +Average conv. rate = 0.042319 + +* 2 2 1 0.132227E-02 0.559568E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3476 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.19 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3476 Max w this run +w_max level proc position run w_max level timestep +0.532E+00 20 332 136.9deg E 31.9deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3477 Model time: 1979-03-14 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044049 + +* 1 1 3 0.100000E+01 0.854716E-04 * +Number of iterations = 2 +Initial residual = 0.014750 +Final residual = 0.000047 +Average conv. rate = 0.056345 + +* 1 2 2 0.147499E-01 0.468281E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102334 +Final residual = 0.000013 +Average conv. rate = 0.050041 + +* 2 1 3 0.102334E+00 0.128235E-04 * +Number of iterations = 1 +Initial residual = 0.001276 +Final residual = 0.000056 +Average conv. rate = 0.044063 + +* 2 2 1 0.127578E-02 0.562146E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3477 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.05 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3477 Max w this run +w_max level proc position run w_max level timestep +0.544E+00 18 332 136.9deg E 31.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3478 Model time: 1979-03-14 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044101 + +* 1 1 3 0.100000E+01 0.857703E-04 * +Number of iterations = 2 +Initial residual = 0.014773 +Final residual = 0.000047 +Average conv. rate = 0.056227 + +* 1 2 2 0.147729E-01 0.467033E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103318 +Final residual = 0.000012 +Average conv. rate = 0.049421 + +* 2 1 3 0.103318E+00 0.124715E-04 * +Number of iterations = 1 +Initial residual = 0.001300 +Final residual = 0.000057 +Average conv. rate = 0.044129 + +* 2 2 1 0.129989E-02 0.573623E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3478 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.90 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3478 Max w this run +w_max level proc position run w_max level timestep +0.538E+00 17 332 136.9deg E 31.9deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3479 Model time: 1979-03-14 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043731 + +* 1 1 3 0.100000E+01 0.836336E-04 * +Number of iterations = 2 +Initial residual = 0.014977 +Final residual = 0.000047 +Average conv. rate = 0.056018 + +* 1 2 2 0.149775E-01 0.470001E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101569 +Final residual = 0.000012 +Average conv. rate = 0.049312 + +* 2 1 3 0.101569E+00 0.121795E-04 * +Number of iterations = 1 +Initial residual = 0.001265 +Final residual = 0.000057 +Average conv. rate = 0.044951 + +* 2 2 1 0.126516E-02 0.568702E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3479 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.76 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3479 Max w this run +w_max level proc position run w_max level timestep +0.558E+00 39 249 71.3deg W -3.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3480 Model time: 1979-03-14 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043844 + +* 1 1 3 0.100000E+01 0.842785E-04 * +Number of iterations = 2 +Initial residual = 0.014942 +Final residual = 0.000047 +Average conv. rate = 0.055843 + +* 1 2 2 0.149415E-01 0.465946E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099705 +Final residual = 0.000012 +Average conv. rate = 0.048854 + +* 2 1 3 0.997047E-01 0.116257E-04 * +Number of iterations = 1 +Initial residual = 0.001257 +Final residual = 0.000056 +Average conv. rate = 0.044886 + +* 2 2 1 0.125707E-02 0.564253E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3480 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.62 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3480 Max w this run +w_max level proc position run w_max level timestep +0.525E+00 38 249 71.3deg W -3.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3481 Model time: 1979-03-14 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044312 + +* 1 1 3 0.100000E+01 0.870115E-04 * +Number of iterations = 2 +Initial residual = 0.014905 +Final residual = 0.000047 +Average conv. rate = 0.056159 + +* 1 2 2 0.149051E-01 0.470082E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101408 +Final residual = 0.000012 +Average conv. rate = 0.049027 + +* 2 1 3 0.101408E+00 0.119506E-04 * +Number of iterations = 1 +Initial residual = 0.001254 +Final residual = 0.000056 +Average conv. rate = 0.045023 + +* 2 2 1 0.125351E-02 0.564363E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3481 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.49 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.86K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3481 Max w this run +w_max level proc position run w_max level timestep +0.521E+00 23 332 138.8deg E 33.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3482 Model time: 1979-03-14 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043560 + +* 1 1 3 0.100000E+01 0.826547E-04 * +Number of iterations = 2 +Initial residual = 0.014762 +Final residual = 0.000046 +Average conv. rate = 0.055979 + +* 1 2 2 0.147623E-01 0.462592E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100797 +Final residual = 0.000012 +Average conv. rate = 0.048791 + +* 2 1 3 0.100797E+00 0.117078E-04 * +Number of iterations = 1 +Initial residual = 0.001252 +Final residual = 0.000056 +Average conv. rate = 0.044717 + +* 2 2 1 0.125180E-02 0.559768E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3482 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.37 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.80K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3482 Max w this run +w_max level proc position run w_max level timestep +0.540E+00 21 332 138.8deg E 33.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3483 Model time: 1979-03-14 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043682 + +* 1 1 3 0.100000E+01 0.833489E-04 * +Number of iterations = 2 +Initial residual = 0.014817 +Final residual = 0.000048 +Average conv. rate = 0.056986 + +* 1 2 2 0.148175E-01 0.481191E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101953 +Final residual = 0.000012 +Average conv. rate = 0.048699 + +* 2 1 3 0.101953E+00 0.117752E-04 * +Number of iterations = 1 +Initial residual = 0.001257 +Final residual = 0.000055 +Average conv. rate = 0.044143 + +* 2 2 1 0.125707E-02 0.554907E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3483 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.26 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.75K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3483 Max w this run +w_max level proc position run w_max level timestep +0.543E+00 20 332 138.8deg E 33.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3484 Model time: 1979-03-14 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043559 + +* 1 1 3 0.100000E+01 0.826487E-04 * +Number of iterations = 2 +Initial residual = 0.014732 +Final residual = 0.000048 +Average conv. rate = 0.057063 + +* 1 2 2 0.147321E-01 0.479699E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101913 +Final residual = 0.000012 +Average conv. rate = 0.048997 + +* 2 1 3 0.101913E+00 0.119880E-04 * +Number of iterations = 1 +Initial residual = 0.001233 +Final residual = 0.000055 +Average conv. rate = 0.044816 + +* 2 2 1 0.123282E-02 0.552506E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3484 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.14 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.79K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3484 Max w this run +w_max level proc position run w_max level timestep +0.549E+00 38 196 52.5deg E -19.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3485 Model time: 1979-03-14 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043422 + +* 1 1 3 0.100000E+01 0.818734E-04 * +Number of iterations = 2 +Initial residual = 0.014677 +Final residual = 0.000047 +Average conv. rate = 0.056386 + +* 1 2 2 0.146766E-01 0.466619E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103836 +Final residual = 0.000013 +Average conv. rate = 0.049383 + +* 2 1 3 0.103836E+00 0.125046E-04 * +Number of iterations = 1 +Initial residual = 0.001247 +Final residual = 0.000056 +Average conv. rate = 0.044876 + +* 2 2 1 0.124667E-02 0.559459E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3485 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.04 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3485 Max w this run +w_max level proc position run w_max level timestep +0.526E+00 40 231 78.8deg E -4.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3486 Model time: 1979-03-14 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043558 + +* 1 1 3 0.100000E+01 0.826440E-04 * +Number of iterations = 2 +Initial residual = 0.014561 +Final residual = 0.000046 +Average conv. rate = 0.056439 + +* 1 2 2 0.145607E-01 0.463804E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103532 +Final residual = 0.000012 +Average conv. rate = 0.049361 + +* 2 1 3 0.103532E+00 0.124513E-04 * +Number of iterations = 1 +Initial residual = 0.001243 +Final residual = 0.000056 +Average conv. rate = 0.044695 + +* 2 2 1 0.124334E-02 0.555710E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3486 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.97 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.90K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3486 Max w this run +w_max level proc position run w_max level timestep +0.624E+00 25 250 63.8deg W -1.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3487 Model time: 1979-03-14 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043613 + +* 1 1 3 0.100000E+01 0.829554E-04 * +Number of iterations = 2 +Initial residual = 0.014514 +Final residual = 0.000046 +Average conv. rate = 0.056356 + +* 1 2 2 0.145143E-01 0.460969E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106118 +Final residual = 0.000011 +Average conv. rate = 0.047316 + +* 2 1 3 0.106118E+00 0.112411E-04 * +Number of iterations = 1 +Initial residual = 0.001280 +Final residual = 0.000056 +Average conv. rate = 0.043543 + +* 2 2 1 0.127995E-02 0.557330E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3487 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.93 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3487 Max w this run +w_max level proc position run w_max level timestep +0.652E+00 27 250 63.8deg W -1.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3488 Model time: 1979-03-14 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043903 + +* 1 1 3 0.100000E+01 0.846240E-04 * +Number of iterations = 2 +Initial residual = 0.014393 +Final residual = 0.000046 +Average conv. rate = 0.056831 + +* 1 2 2 0.143925E-01 0.464850E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106585 +Final residual = 0.000011 +Average conv. rate = 0.047326 + +* 2 1 3 0.106585E+00 0.112978E-04 * +Number of iterations = 1 +Initial residual = 0.001275 +Final residual = 0.000056 +Average conv. rate = 0.043879 + +* 2 2 1 0.127482E-02 0.559381E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3488 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.90 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.97K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3488 Max w this run +w_max level proc position run w_max level timestep +0.708E+00 28 250 63.8deg W -1.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3489 Model time: 1979-03-14 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044411 + +* 1 1 3 0.100000E+01 0.875923E-04 * +Number of iterations = 2 +Initial residual = 0.014447 +Final residual = 0.000046 +Average conv. rate = 0.056458 + +* 1 2 2 0.144466E-01 0.460488E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108877 +Final residual = 0.000011 +Average conv. rate = 0.046685 + +* 2 1 3 0.108877E+00 0.110778E-04 * +Number of iterations = 1 +Initial residual = 0.001307 +Final residual = 0.000056 +Average conv. rate = 0.043081 + +* 2 2 1 0.130717E-02 0.563137E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3489 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.90 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3489 Max w this run +w_max level proc position run w_max level timestep +0.637E+00 29 250 63.8deg W -1.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3490 Model time: 1979-03-14 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043899 + +* 1 1 3 0.100000E+01 0.845978E-04 * +Number of iterations = 2 +Initial residual = 0.014543 +Final residual = 0.000047 +Average conv. rate = 0.056755 + +* 1 2 2 0.145430E-01 0.468454E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105029 +Final residual = 0.000011 +Average conv. rate = 0.047372 + +* 2 1 3 0.105029E+00 0.111657E-04 * +Number of iterations = 1 +Initial residual = 0.001285 +Final residual = 0.000057 +Average conv. rate = 0.044136 + +* 2 2 1 0.128451E-02 0.566931E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3490 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.91 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3490 Max w this run +w_max level proc position run w_max level timestep +0.677E+00 31 250 63.8deg W -1.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3491 Model time: 1979-03-14 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043707 + +* 1 1 3 0.100000E+01 0.834924E-04 * +Number of iterations = 2 +Initial residual = 0.014692 +Final residual = 0.000046 +Average conv. rate = 0.055698 + +* 1 2 2 0.146924E-01 0.455805E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107141 +Final residual = 0.000012 +Average conv. rate = 0.047877 + +* 2 1 3 0.107141E+00 0.117583E-04 * +Number of iterations = 1 +Initial residual = 0.001316 +Final residual = 0.000057 +Average conv. rate = 0.043437 + +* 2 2 1 0.131601E-02 0.571630E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3491 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.91 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3491 Max w this run +w_max level proc position run w_max level timestep +0.606E+00 32 250 63.8deg W -1.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3492 Model time: 1979-03-14 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043603 + +* 1 1 3 0.100000E+01 0.829004E-04 * +Number of iterations = 2 +Initial residual = 0.014695 +Final residual = 0.000046 +Average conv. rate = 0.056214 + +* 1 2 2 0.146954E-01 0.464380E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106580 +Final residual = 0.000012 +Average conv. rate = 0.048075 + +* 2 1 3 0.106580E+00 0.118422E-04 * +Number of iterations = 1 +Initial residual = 0.001294 +Final residual = 0.000058 +Average conv. rate = 0.044774 + +* 2 2 1 0.129421E-02 0.579474E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3492 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.92 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3492 Max w this run +w_max level proc position run w_max level timestep +0.564E+00 33 250 63.8deg W -1.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3493 Model time: 1979-03-14 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043531 + +* 1 1 3 0.100000E+01 0.824900E-04 * +Number of iterations = 2 +Initial residual = 0.014732 +Final residual = 0.000045 +Average conv. rate = 0.055445 + +* 1 2 2 0.147325E-01 0.452900E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107422 +Final residual = 0.000012 +Average conv. rate = 0.047776 + +* 2 1 3 0.107422E+00 0.117143E-04 * +Number of iterations = 1 +Initial residual = 0.001321 +Final residual = 0.000059 +Average conv. rate = 0.044751 + +* 2 2 1 0.132150E-02 0.591388E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3493 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.95 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.21K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3493 Max w this run +w_max level proc position run w_max level timestep +0.454E+00 36 225 15.0deg E -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3494 Model time: 1979-03-14 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043843 + +* 1 1 3 0.100000E+01 0.842743E-04 * +Number of iterations = 2 +Initial residual = 0.014716 +Final residual = 0.000045 +Average conv. rate = 0.055419 + +* 1 2 2 0.147156E-01 0.451950E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105562 +Final residual = 0.000011 +Average conv. rate = 0.047357 + +* 2 1 3 0.105562E+00 0.112116E-04 * +Number of iterations = 1 +Initial residual = 0.001302 +Final residual = 0.000059 +Average conv. rate = 0.045070 + +* 2 2 1 0.130200E-02 0.586811E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3494 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.99 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3494 Max w this run +w_max level proc position run w_max level timestep +0.555E+00 37 225 15.0deg E -10.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3495 Model time: 1979-03-14 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044083 + +* 1 1 3 0.100000E+01 0.856680E-04 * +Number of iterations = 2 +Initial residual = 0.014802 +Final residual = 0.000047 +Average conv. rate = 0.056420 + +* 1 2 2 0.148020E-01 0.471186E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107454 +Final residual = 0.000012 +Average conv. rate = 0.048011 + +* 2 1 3 0.107454E+00 0.118919E-04 * +Number of iterations = 1 +Initial residual = 0.001327 +Final residual = 0.000058 +Average conv. rate = 0.043358 + +* 2 2 1 0.132657E-02 0.575176E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3495 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.03 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3495 Max w this run +w_max level proc position run w_max level timestep +0.612E+00 37 250 61.9deg W -8.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3496 Model time: 1979-03-14 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044321 + +* 1 1 3 0.100000E+01 0.870636E-04 * +Number of iterations = 2 +Initial residual = 0.014816 +Final residual = 0.000047 +Average conv. rate = 0.056551 + +* 1 2 2 0.148156E-01 0.473803E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107427 +Final residual = 0.000012 +Average conv. rate = 0.047580 + +* 2 1 3 0.107427E+00 0.115717E-04 * +Number of iterations = 1 +Initial residual = 0.001290 +Final residual = 0.000056 +Average conv. rate = 0.043233 + +* 2 2 1 0.129038E-02 0.557864E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3496 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.09 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3496 Max w this run +w_max level proc position run w_max level timestep +0.567E+00 38 250 61.9deg W -8.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3497 Model time: 1979-03-14 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044558 + +* 1 1 3 0.100000E+01 0.884676E-04 * +Number of iterations = 2 +Initial residual = 0.014895 +Final residual = 0.000048 +Average conv. rate = 0.056648 + +* 1 2 2 0.148946E-01 0.477962E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108159 +Final residual = 0.000012 +Average conv. rate = 0.047544 + +* 2 1 3 0.108159E+00 0.116240E-04 * +Number of iterations = 1 +Initial residual = 0.001302 +Final residual = 0.000056 +Average conv. rate = 0.042776 + +* 2 2 1 0.130187E-02 0.556884E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3497 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.14 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3497 Max w this run +w_max level proc position run w_max level timestep +0.460E+00 38 238 165.0deg E -4.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3498 Model time: 1979-03-14 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043855 + +* 1 1 3 0.100000E+01 0.843435E-04 * +Number of iterations = 2 +Initial residual = 0.014858 +Final residual = 0.000048 +Average conv. rate = 0.056588 + +* 1 2 2 0.148581E-01 0.475790E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107460 +Final residual = 0.000012 +Average conv. rate = 0.047623 + +* 2 1 3 0.107460E+00 0.116063E-04 * +Number of iterations = 1 +Initial residual = 0.001297 +Final residual = 0.000056 +Average conv. rate = 0.042810 + +* 2 2 1 0.129670E-02 0.555113E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3498 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.19 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.63K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3498 Max w this run +w_max level proc position run w_max level timestep +0.468E+00 39 238 165.0deg E -4.4deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3499 Model time: 1979-03-14 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044670 + +* 1 1 3 0.100000E+01 0.891348E-04 * +Number of iterations = 2 +Initial residual = 0.014974 +Final residual = 0.000048 +Average conv. rate = 0.056741 + +* 1 2 2 0.149739E-01 0.482088E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108037 +Final residual = 0.000012 +Average conv. rate = 0.047788 + +* 2 1 3 0.108037E+00 0.117902E-04 * +Number of iterations = 1 +Initial residual = 0.001308 +Final residual = 0.000055 +Average conv. rate = 0.042397 + +* 2 2 1 0.130801E-02 0.554556E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3499 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.23 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3499 Max w this run +w_max level proc position run w_max level timestep +0.432E+00 41 225 15.0deg E -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3500 Model time: 1979-03-14 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044245 + +* 1 1 3 0.100000E+01 0.866145E-04 * +Number of iterations = 2 +Initial residual = 0.014853 +Final residual = 0.000048 +Average conv. rate = 0.056861 + +* 1 2 2 0.148526E-01 0.480216E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108730 +Final residual = 0.000012 +Average conv. rate = 0.048124 + +* 2 1 3 0.108730E+00 0.121183E-04 * +Number of iterations = 1 +Initial residual = 0.001335 +Final residual = 0.000055 +Average conv. rate = 0.041252 + +* 2 2 1 0.133503E-02 0.550726E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3500 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.28 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.59K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3500 Max w this run +w_max level proc position run w_max level timestep +0.482E+00 41 250 65.6deg W -1.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3501 Model time: 1979-03-14 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043986 + +* 1 1 3 0.100000E+01 0.851013E-04 * +Number of iterations = 2 +Initial residual = 0.014782 +Final residual = 0.000048 +Average conv. rate = 0.057072 + +* 1 2 2 0.147821E-01 0.481483E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111281 +Final residual = 0.000012 +Average conv. rate = 0.047933 + +* 2 1 3 0.111281E+00 0.122550E-04 * +Number of iterations = 1 +Initial residual = 0.001359 +Final residual = 0.000055 +Average conv. rate = 0.040288 + +* 2 2 1 0.135891E-02 0.547479E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3501 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.31 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3501 Max w this run +w_max level proc position run w_max level timestep +0.415E+00 41 250 65.6deg W -1.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3502 Model time: 1979-03-14 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044284 + +* 1 1 3 0.100000E+01 0.868468E-04 * +Number of iterations = 2 +Initial residual = 0.014700 +Final residual = 0.000048 +Average conv. rate = 0.056980 + +* 1 2 2 0.147004E-01 0.477279E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110254 +Final residual = 0.000011 +Average conv. rate = 0.047022 + +* 2 1 3 0.110254E+00 0.114632E-04 * +Number of iterations = 1 +Initial residual = 0.001380 +Final residual = 0.000054 +Average conv. rate = 0.039359 + +* 2 2 1 0.138022E-02 0.543245E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3502 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.35 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.51K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3502 Max w this run +w_max level proc position run w_max level timestep +0.469E+00 42 250 65.6deg W -1.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3503 Model time: 1979-03-14 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044082 + +* 1 1 3 0.100000E+01 0.856583E-04 * +Number of iterations = 2 +Initial residual = 0.014746 +Final residual = 0.000048 +Average conv. rate = 0.056786 + +* 1 2 2 0.147461E-01 0.475512E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.114964 +Final residual = 0.000011 +Average conv. rate = 0.045791 + +* 2 1 3 0.114964E+00 0.110383E-04 * +Number of iterations = 1 +Initial residual = 0.001451 +Final residual = 0.000055 +Average conv. rate = 0.037827 + +* 2 2 1 0.145065E-02 0.548742E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3503 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.38 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.45K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3503 Max w this run +w_max level proc position run w_max level timestep +0.453E+00 41 250 65.6deg W -1.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3504 Model time: 1979-03-15 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043358 + +* 1 1 3 0.100000E+01 0.815082E-04 * +Number of iterations = 2 +Initial residual = 0.014700 +Final residual = 0.000047 +Average conv. rate = 0.056690 + +* 1 2 2 0.146998E-01 0.472419E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.115189 +Final residual = 0.000011 +Average conv. rate = 0.045466 + +* 2 1 3 0.115189E+00 0.108259E-04 * +Number of iterations = 1 +Initial residual = 0.001511 +Final residual = 0.000056 +Average conv. rate = 0.036814 + +* 2 2 1 0.151124E-02 0.556347E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51417E+19 +Tot energy 0.13053E+25 +tot dry energy 0.13054E+25 +gr( rho cal) 0.38099E+24 +KE( rho cal) 0.85715E+21 +KEu(rho cal) 0.65998E+21 +KEv(rho cal) 0.19717E+21 +KEw(rho cal) 0.12038E+16 +cvT( rho cal) 0.92360E+24 +lq ( rho cal) 0.30305E+23 +lqcf( rho cal) 0.60796E+20 +lqcl( rho cal) 0.45914E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12157E+17 KG +Initial moisture = 0.12216E+17 KG +change in moisture = -0.58477E+14 KG +Moisture added E-P in period = -0.58712E+14 KG +Error in moisture = 0.23508E+12 KG +Error as % of change = -0.40201E+00 +q ( rho cal) 0.12117E+17 +qcf( rho cal) 0.24309E+14 +qcl( rho cal) 0.16195E+14 +FINAL TOTAL ENERGY = 0.13053E+25 J/ +INITIAL TOTAL ENERGY = 0.13050E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.37558E+21 J/ +FLUXES INTO ATM OVER PERIOD = 0.38253E+21 J/ +ERROR IN ENERGY BUDGET = 0.69515E+19 J/ +TEMP CORRECTION OVER A DAY = 0.18876E-02 K +TEMPERATURE CORRECTION RATE = 0.21847E-07 K/S +FLUX CORRECTION (ATM) = 0.15773E+00 W/M2 + +Minimum theta level 1 for timestep 3504 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.42 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3504 Max w this run +w_max level proc position run w_max level timestep +0.477E+00 41 250 65.6deg W -1.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6252.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6252.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1310 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1309 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6252.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:16 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6252.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:11 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps1 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6252.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6252.00000 -6900.00000 -6228.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:2 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3505 Model time: 1979-03-15 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043284 + +* 1 1 3 0.100000E+01 0.810940E-04 * +Number of iterations = 2 +Initial residual = 0.014748 +Final residual = 0.000048 +Average conv. rate = 0.056878 + +* 1 2 2 0.147481E-01 0.477123E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.116290 +Final residual = 0.000012 +Average conv. rate = 0.047215 + +* 2 1 3 0.116290E+00 0.122403E-04 * +Number of iterations = 1 +Initial residual = 0.001573 +Final residual = 0.000056 +Average conv. rate = 0.035600 + +* 2 2 1 0.157259E-02 0.559847E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3505 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.47 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.29K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3505 Max w this run +w_max level proc position run w_max level timestep +0.468E+00 79 413 24.4deg W 54.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3506 Model time: 1979-03-15 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043120 + +* 1 1 3 0.100000E+01 0.801750E-04 * +Number of iterations = 2 +Initial residual = 0.014650 +Final residual = 0.000046 +Average conv. rate = 0.056245 + +* 1 2 2 0.146502E-01 0.463463E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.113836 +Final residual = 0.000012 +Average conv. rate = 0.047478 + +* 2 1 3 0.113836E+00 0.121833E-04 * +Number of iterations = 1 +Initial residual = 0.001583 +Final residual = 0.000057 +Average conv. rate = 0.035714 + +* 2 2 1 0.158346E-02 0.565520E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3506 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.53 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3506 Max w this run +w_max level proc position run w_max level timestep +0.463E+00 79 413 28.1deg W 53.1deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3507 Model time: 1979-03-15 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043231 + +* 1 1 3 0.100000E+01 0.807960E-04 * +Number of iterations = 2 +Initial residual = 0.014675 +Final residual = 0.000046 +Average conv. rate = 0.056261 + +* 1 2 2 0.146753E-01 0.464514E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.114534 +Final residual = 0.000012 +Average conv. rate = 0.047585 + +* 2 1 3 0.114534E+00 0.123408E-04 * +Number of iterations = 1 +Initial residual = 0.001577 +Final residual = 0.000057 +Average conv. rate = 0.035839 + +* 2 2 1 0.157731E-02 0.565289E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3507 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.61 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.08K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3507 Max w this run +w_max level proc position run w_max level timestep +0.507E+00 80 447 5.6deg W 61.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3508 Model time: 1979-03-15 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043347 + +* 1 1 3 0.100000E+01 0.814456E-04 * +Number of iterations = 2 +Initial residual = 0.014708 +Final residual = 0.000046 +Average conv. rate = 0.055820 + +* 1 2 2 0.147084E-01 0.458290E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111273 +Final residual = 0.000011 +Average conv. rate = 0.046863 + +* 2 1 3 0.111273E+00 0.114522E-04 * +Number of iterations = 1 +Initial residual = 0.001530 +Final residual = 0.000056 +Average conv. rate = 0.036575 + +* 2 2 1 0.153037E-02 0.559735E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3508 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.72 504 88.1deg W 78.7deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3508 Max w this run +w_max level proc position run w_max level timestep +0.537E+00 80 447 5.6deg W 61.9deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3509 Model time: 1979-03-15 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043709 + +* 1 1 3 0.100000E+01 0.835062E-04 * +Number of iterations = 2 +Initial residual = 0.014800 +Final residual = 0.000046 +Average conv. rate = 0.055828 + +* 1 2 2 0.147998E-01 0.461282E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110644 +Final residual = 0.000012 +Average conv. rate = 0.047853 + +* 2 1 3 0.110644E+00 0.121239E-04 * +Number of iterations = 1 +Initial residual = 0.001473 +Final residual = 0.000056 +Average conv. rate = 0.037977 + +* 2 2 1 0.147266E-02 0.559267E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3509 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.31 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.62K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3509 Max w this run +w_max level proc position run w_max level timestep +0.558E+00 80 447 5.6deg W 63.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3510 Model time: 1979-03-15 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043458 + +* 1 1 3 0.100000E+01 0.820744E-04 * +Number of iterations = 2 +Initial residual = 0.014666 +Final residual = 0.000045 +Average conv. rate = 0.055546 + +* 1 2 2 0.146661E-01 0.452505E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107923 +Final residual = 0.000012 +Average conv. rate = 0.047511 + +* 2 1 3 0.107923E+00 0.115742E-04 * +Number of iterations = 1 +Initial residual = 0.001419 +Final residual = 0.000056 +Average conv. rate = 0.039339 + +* 2 2 1 0.141887E-02 0.558172E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3510 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.76 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3510 Max w this run +w_max level proc position run w_max level timestep +0.583E+00 80 447 5.6deg W 63.1deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3511 Model time: 1979-03-15 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043811 + +* 1 1 3 0.100000E+01 0.840900E-04 * +Number of iterations = 2 +Initial residual = 0.014729 +Final residual = 0.000046 +Average conv. rate = 0.055919 + +* 1 2 2 0.147287E-01 0.460561E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108812 +Final residual = 0.000012 +Average conv. rate = 0.047565 + +* 2 1 3 0.108812E+00 0.117097E-04 * +Number of iterations = 1 +Initial residual = 0.001417 +Final residual = 0.000056 +Average conv. rate = 0.039748 + +* 2 2 1 0.141725E-02 0.563330E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3511 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.25 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3511 Max w this run +w_max level proc position run w_max level timestep +0.615E+00 80 447 7.5deg W 60.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3512 Model time: 1979-03-15 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043784 + +* 1 1 3 0.100000E+01 0.839378E-04 * +Number of iterations = 2 +Initial residual = 0.014634 +Final residual = 0.000046 +Average conv. rate = 0.056206 + +* 1 2 2 0.146341E-01 0.462309E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108942 +Final residual = 0.000012 +Average conv. rate = 0.047952 + +* 2 1 3 0.108942E+00 0.120122E-04 * +Number of iterations = 1 +Initial residual = 0.001442 +Final residual = 0.000057 +Average conv. rate = 0.039675 + +* 2 2 1 0.144235E-02 0.572256E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3512 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.77 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3512 Max w this run +w_max level proc position run w_max level timestep +0.701E+00 80 447 7.5deg W 61.9deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3513 Model time: 1979-03-15 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043483 + +* 1 1 3 0.100000E+01 0.822145E-04 * +Number of iterations = 2 +Initial residual = 0.014566 +Final residual = 0.000047 +Average conv. rate = 0.056680 + +* 1 2 2 0.145656E-01 0.467932E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109618 +Final residual = 0.000012 +Average conv. rate = 0.048183 + +* 2 1 3 0.109618E+00 0.122623E-04 * +Number of iterations = 1 +Initial residual = 0.001494 +Final residual = 0.000058 +Average conv. rate = 0.038932 + +* 2 2 1 0.149401E-02 0.581656E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3513 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.37 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3513 Max w this run +w_max level proc position run w_max level timestep +0.742E+00 80 447 7.5deg W 61.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3514 Model time: 1979-03-15 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043997 + +* 1 1 3 0.100000E+01 0.851669E-04 * +Number of iterations = 2 +Initial residual = 0.014486 +Final residual = 0.000047 +Average conv. rate = 0.056999 + +* 1 2 2 0.144859E-01 0.470627E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109788 +Final residual = 0.000012 +Average conv. rate = 0.047485 + +* 2 1 3 0.109788E+00 0.117552E-04 * +Number of iterations = 1 +Initial residual = 0.001520 +Final residual = 0.000058 +Average conv. rate = 0.038375 + +* 2 2 1 0.152050E-02 0.583494E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3514 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.97 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3514 Max w this run +w_max level proc position run w_max level timestep +0.769E+00 80 447 7.5deg W 61.9deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3515 Model time: 1979-03-15 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043812 + +* 1 1 3 0.100000E+01 0.840981E-04 * +Number of iterations = 2 +Initial residual = 0.014610 +Final residual = 0.000046 +Average conv. rate = 0.055864 + +* 1 2 2 0.146101E-01 0.455942E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110977 +Final residual = 0.000012 +Average conv. rate = 0.046995 + +* 2 1 3 0.110977E+00 0.115181E-04 * +Number of iterations = 1 +Initial residual = 0.001526 +Final residual = 0.000059 +Average conv. rate = 0.038440 + +* 2 2 1 0.152618E-02 0.586660E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3515 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.62 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.82K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3515 Max w this run +w_max level proc position run w_max level timestep +0.763E+00 80 447 7.5deg W 61.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3516 Model time: 1979-03-15 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043853 + +* 1 1 3 0.100000E+01 0.843308E-04 * +Number of iterations = 2 +Initial residual = 0.014651 +Final residual = 0.000046 +Average conv. rate = 0.055751 + +* 1 2 2 0.146511E-01 0.455374E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110640 +Final residual = 0.000011 +Average conv. rate = 0.046379 + +* 2 1 3 0.110640E+00 0.110375E-04 * +Number of iterations = 1 +Initial residual = 0.001520 +Final residual = 0.000058 +Average conv. rate = 0.038211 + +* 2 2 1 0.151998E-02 0.580805E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3516 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.31 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3516 Max w this run +w_max level proc position run w_max level timestep +0.726E+00 80 447 5.6deg W 63.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3517 Model time: 1979-03-15 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043762 + +* 1 1 3 0.100000E+01 0.838066E-04 * +Number of iterations = 2 +Initial residual = 0.014724 +Final residual = 0.000046 +Average conv. rate = 0.055981 + +* 1 2 2 0.147239E-01 0.461426E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111507 +Final residual = 0.000011 +Average conv. rate = 0.046489 + +* 2 1 3 0.111507E+00 0.112032E-04 * +Number of iterations = 1 +Initial residual = 0.001518 +Final residual = 0.000057 +Average conv. rate = 0.037363 + +* 2 2 1 0.151839E-02 0.567315E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3517 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.05 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3517 Max w this run +w_max level proc position run w_max level timestep +0.686E+00 80 447 5.6deg W 63.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3518 Model time: 1979-03-15 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044101 + +* 1 1 3 0.100000E+01 0.857717E-04 * +Number of iterations = 2 +Initial residual = 0.014708 +Final residual = 0.000046 +Average conv. rate = 0.056190 + +* 1 2 2 0.147083E-01 0.464380E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111738 +Final residual = 0.000011 +Average conv. rate = 0.046040 + +* 2 1 3 0.111738E+00 0.109047E-04 * +Number of iterations = 1 +Initial residual = 0.001520 +Final residual = 0.000056 +Average conv. rate = 0.036588 + +* 2 2 1 0.152032E-02 0.556246E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3518 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.83 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3518 Max w this run +w_max level proc position run w_max level timestep +0.621E+00 80 447 5.6deg W 63.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3519 Model time: 1979-03-15 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043993 + +* 1 1 3 0.100000E+01 0.851451E-04 * +Number of iterations = 2 +Initial residual = 0.014759 +Final residual = 0.000047 +Average conv. rate = 0.056542 + +* 1 2 2 0.147592E-01 0.471851E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.113434 +Final residual = 0.000011 +Average conv. rate = 0.045803 + +* 2 1 3 0.113434E+00 0.108996E-04 * +Number of iterations = 1 +Initial residual = 0.001536 +Final residual = 0.000056 +Average conv. rate = 0.036709 + +* 2 2 1 0.153602E-02 0.563852E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3519 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.65 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3519 Max w this run +w_max level proc position run w_max level timestep +0.638E+00 80 447 9.4deg W 61.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3520 Model time: 1979-03-15 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043693 + +* 1 1 3 0.100000E+01 0.834152E-04 * +Number of iterations = 2 +Initial residual = 0.014677 +Final residual = 0.000047 +Average conv. rate = 0.056687 + +* 1 2 2 0.146772E-01 0.471636E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.115292 +Final residual = 0.000011 +Average conv. rate = 0.046029 + +* 2 1 3 0.115292E+00 0.112434E-04 * +Number of iterations = 1 +Initial residual = 0.001561 +Final residual = 0.000058 +Average conv. rate = 0.037126 + +* 2 2 1 0.156076E-02 0.579446E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3520 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.50 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3520 Max w this run +w_max level proc position run w_max level timestep +0.635E+00 80 447 9.4deg W 61.9deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3521 Model time: 1979-03-15 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043470 + +* 1 1 3 0.100000E+01 0.821449E-04 * +Number of iterations = 2 +Initial residual = 0.014681 +Final residual = 0.000048 +Average conv. rate = 0.056980 + +* 1 2 2 0.146810E-01 0.476656E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.117495 +Final residual = 0.000011 +Average conv. rate = 0.045834 + +* 2 1 3 0.117495E+00 0.113134E-04 * +Number of iterations = 1 +Initial residual = 0.001575 +Final residual = 0.000058 +Average conv. rate = 0.036774 + +* 2 2 1 0.157525E-02 0.579280E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3521 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.38 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.45K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3521 Max w this run +w_max level proc position run w_max level timestep +0.548E+00 80 447 11.3deg W 60.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3522 Model time: 1979-03-15 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043394 + +* 1 1 3 0.100000E+01 0.817132E-04 * +Number of iterations = 2 +Initial residual = 0.014623 +Final residual = 0.000048 +Average conv. rate = 0.057492 + +* 1 2 2 0.146228E-01 0.483334E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.116847 +Final residual = 0.000011 +Average conv. rate = 0.045942 + +* 2 1 3 0.116847E+00 0.113303E-04 * +Number of iterations = 1 +Initial residual = 0.001591 +Final residual = 0.000058 +Average conv. rate = 0.036217 + +* 2 2 1 0.159075E-02 0.576130E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3522 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.25 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3522 Max w this run +w_max level proc position run w_max level timestep +0.560E+00 36 249 73.1deg W -10.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3523 Model time: 1979-03-15 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042640 + +* 1 1 3 0.100000E+01 0.775255E-04 * +Number of iterations = 2 +Initial residual = 0.014671 +Final residual = 0.000049 +Average conv. rate = 0.057704 + +* 1 2 2 0.146706E-01 0.488487E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.118129 +Final residual = 0.000012 +Average conv. rate = 0.046072 + +* 2 1 3 0.118129E+00 0.115526E-04 * +Number of iterations = 1 +Initial residual = 0.001595 +Final residual = 0.000058 +Average conv. rate = 0.036240 + +* 2 2 1 0.159509E-02 0.578054E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3523 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.08 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3523 Max w this run +w_max level proc position run w_max level timestep +0.549E+00 37 249 73.1deg W -10.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3524 Model time: 1979-03-15 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043289 + +* 1 1 3 0.100000E+01 0.811194E-04 * +Number of iterations = 2 +Initial residual = 0.014650 +Final residual = 0.000048 +Average conv. rate = 0.057414 + +* 1 2 2 0.146500E-01 0.482924E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.115522 +Final residual = 0.000012 +Average conv. rate = 0.046942 + +* 2 1 3 0.115522E+00 0.119497E-04 * +Number of iterations = 1 +Initial residual = 0.001574 +Final residual = 0.000059 +Average conv. rate = 0.037179 + +* 2 2 1 0.157399E-02 0.585187E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3524 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.91 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.27K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3524 Max w this run +w_max level proc position run w_max level timestep +0.516E+00 80 446 15.0deg W 59.4deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3525 Model time: 1979-03-15 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043515 + +* 1 1 3 0.100000E+01 0.823971E-04 * +Number of iterations = 2 +Initial residual = 0.014800 +Final residual = 0.000050 +Average conv. rate = 0.058213 + +* 1 2 2 0.147996E-01 0.501522E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.115206 +Final residual = 0.000013 +Average conv. rate = 0.047864 + +* 2 1 3 0.115206E+00 0.126327E-04 * +Number of iterations = 1 +Initial residual = 0.001549 +Final residual = 0.000058 +Average conv. rate = 0.037699 + +* 2 2 1 0.154935E-02 0.584088E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3525 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.75 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.71K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3525 Max w this run +w_max level proc position run w_max level timestep +0.530E+00 80 448 9.4deg E 68.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3526 Model time: 1979-03-15 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042936 + +* 1 1 3 0.100000E+01 0.791506E-04 * +Number of iterations = 2 +Initial residual = 0.014879 +Final residual = 0.000048 +Average conv. rate = 0.056579 + +* 1 2 2 0.148786E-01 0.476290E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.112242 +Final residual = 0.000013 +Average conv. rate = 0.048200 + +* 2 1 3 0.112242E+00 0.125692E-04 * +Number of iterations = 1 +Initial residual = 0.001501 +Final residual = 0.000058 +Average conv. rate = 0.038710 + +* 2 2 1 0.150064E-02 0.580893E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3526 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.59 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.14K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3526 Max w this run +w_max level proc position run w_max level timestep +0.544E+00 80 448 9.4deg E 68.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3527 Model time: 1979-03-15 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043442 + +* 1 1 3 0.100000E+01 0.819841E-04 * +Number of iterations = 2 +Initial residual = 0.015051 +Final residual = 0.000048 +Average conv. rate = 0.056545 + +* 1 2 2 0.150511E-01 0.481243E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111536 +Final residual = 0.000013 +Average conv. rate = 0.048241 + +* 2 1 3 0.111536E+00 0.125217E-04 * +Number of iterations = 1 +Initial residual = 0.001442 +Final residual = 0.000058 +Average conv. rate = 0.040534 + +* 2 2 1 0.144176E-02 0.584401E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3527 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.47 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.50K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3527 Max w this run +w_max level proc position run w_max level timestep +0.547E+00 80 448 9.4deg E 69.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3528 Model time: 1979-03-15 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043400 + +* 1 1 3 0.100000E+01 0.817477E-04 * +Number of iterations = 2 +Initial residual = 0.014949 +Final residual = 0.000047 +Average conv. rate = 0.056102 + +* 1 2 2 0.149490E-01 0.470514E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110063 +Final residual = 0.000012 +Average conv. rate = 0.047831 + +* 2 1 3 0.110063E+00 0.120438E-04 * +Number of iterations = 1 +Initial residual = 0.001398 +Final residual = 0.000059 +Average conv. rate = 0.042415 + +* 2 2 1 0.139807E-02 0.592991E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3528 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.38 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3528 Max w this run +w_max level proc position run w_max level timestep +0.578E+00 80 448 9.4deg E 69.4deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3529 Model time: 1979-03-15 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043679 + +* 1 1 3 0.100000E+01 0.833323E-04 * +Number of iterations = 2 +Initial residual = 0.014811 +Final residual = 0.000048 +Average conv. rate = 0.056936 + +* 1 2 2 0.148107E-01 0.480111E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109301 +Final residual = 0.000012 +Average conv. rate = 0.048443 + +* 2 1 3 0.109301E+00 0.124259E-04 * +Number of iterations = 1 +Initial residual = 0.001378 +Final residual = 0.000061 +Average conv. rate = 0.044165 + +* 2 2 1 0.137818E-02 0.608671E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3529 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.31 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.12K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3529 Max w this run +w_max level proc position run w_max level timestep +0.602E+00 80 448 9.4deg E 69.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3530 Model time: 1979-03-15 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043451 + +* 1 1 3 0.100000E+01 0.820352E-04 * +Number of iterations = 2 +Initial residual = 0.014640 +Final residual = 0.000047 +Average conv. rate = 0.056864 + +* 1 2 2 0.146399E-01 0.473379E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108618 +Final residual = 0.000012 +Average conv. rate = 0.048518 + +* 2 1 3 0.108618E+00 0.124056E-04 * +Number of iterations = 1 +Initial residual = 0.001378 +Final residual = 0.000063 +Average conv. rate = 0.045548 + +* 2 2 1 0.137838E-02 0.627822E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3530 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.25 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.37K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3530 Max w this run +w_max level proc position run w_max level timestep +0.583E+00 80 448 9.4deg E 69.4deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3531 Model time: 1979-03-15 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043619 + +* 1 1 3 0.100000E+01 0.829883E-04 * +Number of iterations = 2 +Initial residual = 0.014643 +Final residual = 0.000049 +Average conv. rate = 0.057707 + +* 1 2 2 0.146432E-01 0.487638E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109905 +Final residual = 0.000013 +Average conv. rate = 0.048911 + +* 2 1 3 0.109905E+00 0.128599E-04 * +Number of iterations = 1 +Initial residual = 0.001393 +Final residual = 0.000064 +Average conv. rate = 0.046243 + +* 2 2 1 0.139261E-02 0.643987E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3531 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.21 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.62K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3531 Max w this run +w_max level proc position run w_max level timestep +0.567E+00 80 448 9.4deg E 70.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3532 Model time: 1979-03-15 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044051 + +* 1 1 3 0.100000E+01 0.854789E-04 * +Number of iterations = 2 +Initial residual = 0.014530 +Final residual = 0.000047 +Average conv. rate = 0.056974 + +* 1 2 2 0.145304E-01 0.471664E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109742 +Final residual = 0.000012 +Average conv. rate = 0.048385 + +* 2 1 3 0.109742E+00 0.124313E-04 * +Number of iterations = 1 +Initial residual = 0.001390 +Final residual = 0.000065 +Average conv. rate = 0.046736 + +* 2 2 1 0.139008E-02 0.649672E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3532 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.19 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3532 Max w this run +w_max level proc position run w_max level timestep +0.576E+00 80 448 9.4deg E 70.6deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3533 Model time: 1979-03-15 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043787 + +* 1 1 3 0.100000E+01 0.839542E-04 * +Number of iterations = 2 +Initial residual = 0.014666 +Final residual = 0.000050 +Average conv. rate = 0.058310 + +* 1 2 2 0.146659E-01 0.498648E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110115 +Final residual = 0.000014 +Average conv. rate = 0.049905 + +* 2 1 3 0.110115E+00 0.136860E-04 * +Number of iterations = 1 +Initial residual = 0.001395 +Final residual = 0.000067 +Average conv. rate = 0.047699 + +* 2 2 1 0.139492E-02 0.665367E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3533 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.20 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3533 Max w this run +w_max level proc position run w_max level timestep +0.574E+00 80 448 9.4deg E 70.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3534 Model time: 1979-03-15 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044428 + +* 1 1 3 0.100000E+01 0.876955E-04 * +Number of iterations = 2 +Initial residual = 0.014762 +Final residual = 0.000049 +Average conv. rate = 0.057727 + +* 1 2 2 0.147619E-01 0.491923E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110402 +Final residual = 0.000013 +Average conv. rate = 0.049021 + +* 2 1 3 0.110402E+00 0.130053E-04 * +Number of iterations = 1 +Initial residual = 0.001396 +Final residual = 0.000067 +Average conv. rate = 0.047996 + +* 2 2 1 0.139580E-02 0.669925E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3534 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.23 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3534 Max w this run +w_max level proc position run w_max level timestep +0.528E+00 80 448 9.4deg E 70.6deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3535 Model time: 1979-03-15 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044452 + +* 1 1 3 0.100000E+01 0.878386E-04 * +Number of iterations = 2 +Initial residual = 0.014907 +Final residual = 0.000050 +Average conv. rate = 0.057706 + +* 1 2 2 0.149071E-01 0.496413E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110299 +Final residual = 0.000013 +Average conv. rate = 0.049562 + +* 2 1 3 0.110299E+00 0.134286E-04 * +Number of iterations = 1 +Initial residual = 0.001416 +Final residual = 0.000068 +Average conv. rate = 0.047769 + +* 2 2 1 0.141604E-02 0.676431E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3535 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.29 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3535 Max w this run +w_max level proc position run w_max level timestep +0.513E+00 23 209 159.4deg W -21.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3536 Model time: 1979-03-15 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044128 + +* 1 1 3 0.100000E+01 0.859300E-04 * +Number of iterations = 2 +Initial residual = 0.014854 +Final residual = 0.000050 +Average conv. rate = 0.057756 + +* 1 2 2 0.148542E-01 0.495499E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109730 +Final residual = 0.000014 +Average conv. rate = 0.050002 + +* 2 1 3 0.109730E+00 0.137179E-04 * +Number of iterations = 1 +Initial residual = 0.001417 +Final residual = 0.000066 +Average conv. rate = 0.046732 + +* 2 2 1 0.141689E-02 0.662141E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3536 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.37 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3536 Max w this run +w_max level proc position run w_max level timestep +0.547E+00 24 209 159.4deg W -21.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3537 Model time: 1979-03-15 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043704 + +* 1 1 3 0.100000E+01 0.834780E-04 * +Number of iterations = 2 +Initial residual = 0.014843 +Final residual = 0.000050 +Average conv. rate = 0.058091 + +* 1 2 2 0.148429E-01 0.500887E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110109 +Final residual = 0.000014 +Average conv. rate = 0.049735 + +* 2 1 3 0.110109E+00 0.135457E-04 * +Number of iterations = 1 +Initial residual = 0.001439 +Final residual = 0.000066 +Average conv. rate = 0.045785 + +* 2 2 1 0.143935E-02 0.659004E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3537 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.47 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3537 Max w this run +w_max level proc position run w_max level timestep +0.564E+00 24 209 159.4deg W -21.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3538 Model time: 1979-03-15 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044236 + +* 1 1 3 0.100000E+01 0.865602E-04 * +Number of iterations = 2 +Initial residual = 0.014738 +Final residual = 0.000050 +Average conv. rate = 0.058151 + +* 1 2 2 0.147380E-01 0.498366E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108966 +Final residual = 0.000013 +Average conv. rate = 0.049414 + +* 2 1 3 0.108966E+00 0.131476E-04 * +Number of iterations = 1 +Initial residual = 0.001426 +Final residual = 0.000066 +Average conv. rate = 0.046579 + +* 2 2 1 0.142613E-02 0.664281E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3538 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.58 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.37K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3538 Max w this run +w_max level proc position run w_max level timestep +0.562E+00 24 209 159.4deg W -21.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3539 Model time: 1979-03-15 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044306 + +* 1 1 3 0.100000E+01 0.869756E-04 * +Number of iterations = 2 +Initial residual = 0.014816 +Final residual = 0.000050 +Average conv. rate = 0.058361 + +* 1 2 2 0.148162E-01 0.504635E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110341 +Final residual = 0.000013 +Average conv. rate = 0.048924 + +* 2 1 3 0.110341E+00 0.129214E-04 * +Number of iterations = 1 +Initial residual = 0.001465 +Final residual = 0.000068 +Average conv. rate = 0.046725 + +* 2 2 1 0.146451E-02 0.684291E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3539 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.70 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3539 Max w this run +w_max level proc position run w_max level timestep +0.533E+00 24 209 159.4deg W -21.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3540 Model time: 1979-03-15 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043648 + +* 1 1 3 0.100000E+01 0.831561E-04 * +Number of iterations = 2 +Initial residual = 0.014757 +Final residual = 0.000050 +Average conv. rate = 0.058331 + +* 1 2 2 0.147571E-01 0.502111E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111792 +Final residual = 0.000013 +Average conv. rate = 0.048274 + +* 2 1 3 0.111792E+00 0.125762E-04 * +Number of iterations = 1 +Initial residual = 0.001478 +Final residual = 0.000069 +Average conv. rate = 0.046952 + +* 2 2 1 0.147845E-02 0.694163E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3540 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.80 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3540 Max w this run +w_max level proc position run w_max level timestep +0.530E+00 25 209 159.4deg W -21.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3541 Model time: 1979-03-15 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043841 + +* 1 1 3 0.100000E+01 0.842663E-04 * +Number of iterations = 2 +Initial residual = 0.014868 +Final residual = 0.000050 +Average conv. rate = 0.058221 + +* 1 2 2 0.148684E-01 0.503985E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110727 +Final residual = 0.000012 +Average conv. rate = 0.047953 + +* 2 1 3 0.110727E+00 0.122092E-04 * +Number of iterations = 1 +Initial residual = 0.001475 +Final residual = 0.000070 +Average conv. rate = 0.047566 + +* 2 2 1 0.147490E-02 0.701550E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3541 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.89 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3541 Max w this run +w_max level proc position run w_max level timestep +0.528E+00 25 209 159.4deg W -21.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3542 Model time: 1979-03-15 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043890 + +* 1 1 3 0.100000E+01 0.845480E-04 * +Number of iterations = 2 +Initial residual = 0.014820 +Final residual = 0.000050 +Average conv. rate = 0.058175 + +* 1 2 2 0.148202E-01 0.501561E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109018 +Final residual = 0.000012 +Average conv. rate = 0.047792 + +* 2 1 3 0.109018E+00 0.119007E-04 * +Number of iterations = 1 +Initial residual = 0.001458 +Final residual = 0.000069 +Average conv. rate = 0.047191 + +* 2 2 1 0.145791E-02 0.688001E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3542 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.98 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3542 Max w this run +w_max level proc position run w_max level timestep +0.564E+00 26 209 159.4deg W -21.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3543 Model time: 1979-03-15 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044009 + +* 1 1 3 0.100000E+01 0.852373E-04 * +Number of iterations = 2 +Initial residual = 0.014826 +Final residual = 0.000050 +Average conv. rate = 0.058191 + +* 1 2 2 0.148263E-01 0.502042E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109626 +Final residual = 0.000013 +Average conv. rate = 0.049061 + +* 2 1 3 0.109626E+00 0.129457E-04 * +Number of iterations = 1 +Initial residual = 0.001460 +Final residual = 0.000067 +Average conv. rate = 0.045583 + +* 2 2 1 0.145984E-02 0.665440E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3543 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.05 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3543 Max w this run +w_max level proc position run w_max level timestep +0.592E+00 39 257 16.9deg E 4.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3544 Model time: 1979-03-15 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044710 + +* 1 1 3 0.100000E+01 0.893754E-04 * +Number of iterations = 2 +Initial residual = 0.014791 +Final residual = 0.000050 +Average conv. rate = 0.058005 + +* 1 2 2 0.147910E-01 0.497657E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108679 +Final residual = 0.000013 +Average conv. rate = 0.049004 + +* 2 1 3 0.108679E+00 0.127888E-04 * +Number of iterations = 1 +Initial residual = 0.001448 +Final residual = 0.000065 +Average conv. rate = 0.044825 + +* 2 2 1 0.144768E-02 0.648920E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3544 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.11 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3544 Max w this run +w_max level proc position run w_max level timestep +0.644E+00 31 210 157.5deg W -21.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3545 Model time: 1979-03-15 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043985 + +* 1 1 3 0.100000E+01 0.850945E-04 * +Number of iterations = 2 +Initial residual = 0.014842 +Final residual = 0.000050 +Average conv. rate = 0.057946 + +* 1 2 2 0.148420E-01 0.498363E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109496 +Final residual = 0.000013 +Average conv. rate = 0.049360 + +* 2 1 3 0.109496E+00 0.131682E-04 * +Number of iterations = 1 +Initial residual = 0.001461 +Final residual = 0.000064 +Average conv. rate = 0.043850 + +* 2 2 1 0.146107E-02 0.640680E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3545 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.13 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.88K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3545 Max w this run +w_max level proc position run w_max level timestep +0.598E+00 27 210 157.5deg W -21.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3546 Model time: 1979-03-15 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044035 + +* 1 1 3 0.100000E+01 0.853849E-04 * +Number of iterations = 2 +Initial residual = 0.014791 +Final residual = 0.000049 +Average conv. rate = 0.057797 + +* 1 2 2 0.147914E-01 0.494100E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106660 +Final residual = 0.000013 +Average conv. rate = 0.049213 + +* 2 1 3 0.106660E+00 0.127129E-04 * +Number of iterations = 1 +Initial residual = 0.001407 +Final residual = 0.000062 +Average conv. rate = 0.043755 + +* 2 2 1 0.140693E-02 0.615603E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3546 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.14 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3546 Max w this run +w_max level proc position run w_max level timestep +0.638E+00 28 210 157.5deg W -21.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3547 Model time: 1979-03-15 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044495 + +* 1 1 3 0.100000E+01 0.880921E-04 * +Number of iterations = 2 +Initial residual = 0.014806 +Final residual = 0.000049 +Average conv. rate = 0.057620 + +* 1 2 2 0.148064E-01 0.491578E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105993 +Final residual = 0.000013 +Average conv. rate = 0.049840 + +* 2 1 3 0.105993E+00 0.131227E-04 * +Number of iterations = 1 +Initial residual = 0.001379 +Final residual = 0.000059 +Average conv. rate = 0.042964 + +* 2 2 1 0.137909E-02 0.592514E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3547 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.12 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.08K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3547 Max w this run +w_max level proc position run w_max level timestep +0.671E+00 28 210 157.5deg W -21.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3548 Model time: 1979-03-15 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043821 + +* 1 1 3 0.100000E+01 0.841480E-04 * +Number of iterations = 2 +Initial residual = 0.014690 +Final residual = 0.000048 +Average conv. rate = 0.057306 + +* 1 2 2 0.146904E-01 0.482433E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105100 +Final residual = 0.000013 +Average conv. rate = 0.050255 + +* 2 1 3 0.105100E+00 0.133397E-04 * +Number of iterations = 1 +Initial residual = 0.001355 +Final residual = 0.000056 +Average conv. rate = 0.041462 + +* 2 2 1 0.135462E-02 0.561650E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3548 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.08 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3548 Max w this run +w_max level proc position run w_max level timestep +0.695E+00 28 210 157.5deg W -21.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3549 Model time: 1979-03-15 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043445 + +* 1 1 3 0.100000E+01 0.819986E-04 * +Number of iterations = 2 +Initial residual = 0.014641 +Final residual = 0.000048 +Average conv. rate = 0.057528 + +* 1 2 2 0.146410E-01 0.484541E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106131 +Final residual = 0.000012 +Average conv. rate = 0.048819 + +* 2 1 3 0.106131E+00 0.123482E-04 * +Number of iterations = 1 +Initial residual = 0.001353 +Final residual = 0.000054 +Average conv. rate = 0.040083 + +* 2 2 1 0.135278E-02 0.542230E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3549 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.00 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3549 Max w this run +w_max level proc position run w_max level timestep +0.641E+00 38 257 16.9deg E 3.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3550 Model time: 1979-03-15 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043607 + +* 1 1 3 0.100000E+01 0.829190E-04 * +Number of iterations = 2 +Initial residual = 0.014524 +Final residual = 0.000048 +Average conv. rate = 0.057575 + +* 1 2 2 0.145240E-01 0.481451E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104018 +Final residual = 0.000012 +Average conv. rate = 0.048992 + +* 2 1 3 0.104018E+00 0.122316E-04 * +Number of iterations = 1 +Initial residual = 0.001304 +Final residual = 0.000053 +Average conv. rate = 0.040465 + +* 2 2 1 0.130379E-02 0.527577E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3550 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.92 503 91.9deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3550 Max w this run +w_max level proc position run w_max level timestep +0.641E+00 39 257 16.9deg E 3.1deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3551 Model time: 1979-03-15 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043110 + +* 1 1 3 0.100000E+01 0.801173E-04 * +Number of iterations = 2 +Initial residual = 0.014599 +Final residual = 0.000049 +Average conv. rate = 0.057711 + +* 1 2 2 0.145986E-01 0.486213E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103684 +Final residual = 0.000013 +Average conv. rate = 0.049695 + +* 2 1 3 0.103684E+00 0.127245E-04 * +Number of iterations = 1 +Initial residual = 0.001273 +Final residual = 0.000053 +Average conv. rate = 0.041414 + +* 2 2 1 0.127256E-02 0.527015E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3551 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.80 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3551 Max w this run +w_max level proc position run w_max level timestep +0.617E+00 26 210 157.5deg W -21.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3552 Model time: 1979-03-16 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043658 + +* 1 1 3 0.100000E+01 0.832110E-04 * +Number of iterations = 2 +Initial residual = 0.014488 +Final residual = 0.000048 +Average conv. rate = 0.057729 + +* 1 2 2 0.144879E-01 0.482822E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103065 +Final residual = 0.000013 +Average conv. rate = 0.050208 + +* 2 1 3 0.103065E+00 0.130442E-04 * +Number of iterations = 1 +Initial residual = 0.001275 +Final residual = 0.000053 +Average conv. rate = 0.041196 + +* 2 2 1 0.127505E-02 0.525267E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51418E+19 +Tot energy 0.13055E+25 +tot dry energy 0.13056E+25 +gr( rho cal) 0.38101E+24 +KE( rho cal) 0.85482E+21 +KEu(rho cal) 0.66195E+21 +KEv(rho cal) 0.19287E+21 +KEw(rho cal) 0.12240E+16 +cvT( rho cal) 0.92370E+24 +lq ( rho cal) 0.30391E+23 +lqcf( rho cal) 0.62390E+20 +lqcl( rho cal) 0.41087E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12191E+17 KG +Initial moisture = 0.12157E+17 KG +change in moisture = 0.33523E+14 KG +Moisture added E-P in period = 0.33293E+14 KG +Error in moisture = 0.23021E+12 KG +Error as % of change = 0.68670E+00 +q ( rho cal) 0.12152E+17 +qcf( rho cal) 0.24946E+14 +qcl( rho cal) 0.14493E+14 +FINAL TOTAL ENERGY = 0.13055E+25 J/ +INITIAL TOTAL ENERGY = 0.13053E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.12604E+21 J/ +FLUXES INTO ATM OVER PERIOD = 0.12098E+21 J/ +ERROR IN ENERGY BUDGET = -0.50567E+19 J/ +TEMP CORRECTION OVER A DAY = -0.13731E-02 K +TEMPERATURE CORRECTION RATE = -0.15892E-07 K/S +FLUX CORRECTION (ATM) = -0.11474E+00 W/M2 + +Minimum theta level 1 for timestep 3552 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.67 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.90K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3552 Max w this run +w_max level proc position run w_max level timestep +0.662E+00 30 210 155.6deg W -21.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD5 +REPLANCA - time interpolation for ancillary field, stashcode 216 +targ_time,time1,time2 -6180.00000 -12396.00000 -3636.00000 +hours,int,period -32768 12 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1162 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 9 Number of steps129 +STASH code in dataset 216 STASH code requested 216 +'start' position of lookup tables for dataset 4in overall lookup array 182173 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3553 Model time: 1979-03-16 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043516 + +* 1 1 3 0.100000E+01 0.824050E-04 * +Number of iterations = 2 +Initial residual = 0.014463 +Final residual = 0.000049 +Average conv. rate = 0.058017 + +* 1 2 2 0.144632E-01 0.486821E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102701 +Final residual = 0.000013 +Average conv. rate = 0.050788 + +* 2 1 3 0.102701E+00 0.134538E-04 * +Number of iterations = 1 +Initial residual = 0.001241 +Final residual = 0.000053 +Average conv. rate = 0.042758 + +* 2 2 1 0.124141E-02 0.530801E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3553 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.55 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3553 Max w this run +w_max level proc position run w_max level timestep +0.698E+00 32 210 155.6deg W -21.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3554 Model time: 1979-03-16 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043989 + +* 1 1 3 0.100000E+01 0.851191E-04 * +Number of iterations = 2 +Initial residual = 0.014394 +Final residual = 0.000048 +Average conv. rate = 0.057711 + +* 1 2 2 0.143943E-01 0.479412E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102587 +Final residual = 0.000013 +Average conv. rate = 0.050700 + +* 2 1 3 0.102587E+00 0.133692E-04 * +Number of iterations = 1 +Initial residual = 0.001211 +Final residual = 0.000053 +Average conv. rate = 0.043770 + +* 2 2 1 0.121067E-02 0.529910E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3554 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.45 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3554 Max w this run +w_max level proc position run w_max level timestep +0.690E+00 32 210 155.6deg W -21.9deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3555 Model time: 1979-03-16 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044269 + +* 1 1 3 0.100000E+01 0.867539E-04 * +Number of iterations = 2 +Initial residual = 0.014465 +Final residual = 0.000047 +Average conv. rate = 0.057286 + +* 1 2 2 0.144653E-01 0.474704E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102369 +Final residual = 0.000012 +Average conv. rate = 0.049518 + +* 2 1 3 0.102369E+00 0.124293E-04 * +Number of iterations = 1 +Initial residual = 0.001224 +Final residual = 0.000053 +Average conv. rate = 0.043602 + +* 2 2 1 0.122377E-02 0.533592E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3555 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.37 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3555 Max w this run +w_max level proc position run w_max level timestep +0.580E+00 31 210 155.6deg W -21.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3556 Model time: 1979-03-16 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043584 + +* 1 1 3 0.100000E+01 0.827928E-04 * +Number of iterations = 2 +Initial residual = 0.014425 +Final residual = 0.000047 +Average conv. rate = 0.056902 + +* 1 2 2 0.144252E-01 0.467058E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100706 +Final residual = 0.000013 +Average conv. rate = 0.050638 + +* 2 1 3 0.100706E+00 0.130763E-04 * +Number of iterations = 1 +Initial residual = 0.001202 +Final residual = 0.000054 +Average conv. rate = 0.045152 + +* 2 2 1 0.120191E-02 0.542691E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3556 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.31 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3556 Max w this run +w_max level proc position run w_max level timestep +0.633E+00 37 218 58.1deg W -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3557 Model time: 1979-03-16 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044419 + +* 1 1 3 0.100000E+01 0.876429E-04 * +Number of iterations = 2 +Initial residual = 0.014509 +Final residual = 0.000047 +Average conv. rate = 0.056626 + +* 1 2 2 0.145088E-01 0.465224E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101088 +Final residual = 0.000013 +Average conv. rate = 0.050811 + +* 2 1 3 0.101088E+00 0.132611E-04 * +Number of iterations = 1 +Initial residual = 0.001198 +Final residual = 0.000055 +Average conv. rate = 0.045523 + +* 2 2 1 0.119796E-02 0.545349E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3557 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.27 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3557 Max w this run +w_max level proc position run w_max level timestep +0.495E+00 30 164 54.4deg E -24.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3558 Model time: 1979-03-16 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044698 + +* 1 1 3 0.100000E+01 0.893024E-04 * +Number of iterations = 2 +Initial residual = 0.014445 +Final residual = 0.000046 +Average conv. rate = 0.056260 + +* 1 2 2 0.144449E-01 0.457216E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102435 +Final residual = 0.000013 +Average conv. rate = 0.049667 + +* 2 1 3 0.102435E+00 0.125503E-04 * +Number of iterations = 1 +Initial residual = 0.001241 +Final residual = 0.000055 +Average conv. rate = 0.044285 + +* 2 2 1 0.124131E-02 0.549719E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3558 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.24 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3558 Max w this run +w_max level proc position run w_max level timestep +0.560E+00 39 218 58.1deg W -13.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3559 Model time: 1979-03-16 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044375 + +* 1 1 3 0.100000E+01 0.873777E-04 * +Number of iterations = 2 +Initial residual = 0.014484 +Final residual = 0.000046 +Average conv. rate = 0.056199 + +* 1 2 2 0.144836E-01 0.457446E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102716 +Final residual = 0.000014 +Average conv. rate = 0.051057 + +* 2 1 3 0.102716E+00 0.136709E-04 * +Number of iterations = 1 +Initial residual = 0.001227 +Final residual = 0.000056 +Average conv. rate = 0.045836 + +* 2 2 1 0.122699E-02 0.562405E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3559 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.22 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3559 Max w this run +w_max level proc position run w_max level timestep +0.543E+00 34 164 54.4deg E -24.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3560 Model time: 1979-03-16 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044077 + +* 1 1 3 0.100000E+01 0.856329E-04 * +Number of iterations = 2 +Initial residual = 0.014429 +Final residual = 0.000046 +Average conv. rate = 0.056192 + +* 1 2 2 0.144293E-01 0.455616E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101754 +Final residual = 0.000014 +Average conv. rate = 0.051279 + +* 2 1 3 0.101754E+00 0.137208E-04 * +Number of iterations = 1 +Initial residual = 0.001255 +Final residual = 0.000057 +Average conv. rate = 0.045256 + +* 2 2 1 0.125467E-02 0.567808E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3560 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.22 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3560 Max w this run +w_max level proc position run w_max level timestep +0.596E+00 39 218 58.1deg W -13.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3561 Model time: 1979-03-16 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044165 + +* 1 1 3 0.100000E+01 0.861440E-04 * +Number of iterations = 2 +Initial residual = 0.014593 +Final residual = 0.000046 +Average conv. rate = 0.056014 + +* 1 2 2 0.145926E-01 0.457852E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101366 +Final residual = 0.000014 +Average conv. rate = 0.051660 + +* 2 1 3 0.101366E+00 0.139753E-04 * +Number of iterations = 1 +Initial residual = 0.001256 +Final residual = 0.000056 +Average conv. rate = 0.044963 + +* 2 2 1 0.125598E-02 0.564728E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3561 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.24 503 93.8deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.86K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3561 Max w this run +w_max level proc position run w_max level timestep +0.555E+00 34 164 54.4deg E -24.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3562 Model time: 1979-03-16 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044810 + +* 1 1 3 0.100000E+01 0.899786E-04 * +Number of iterations = 2 +Initial residual = 0.014680 +Final residual = 0.000046 +Average conv. rate = 0.055827 + +* 1 2 2 0.146796E-01 0.457508E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102496 +Final residual = 0.000014 +Average conv. rate = 0.051130 + +* 2 1 3 0.102496E+00 0.137006E-04 * +Number of iterations = 1 +Initial residual = 0.001282 +Final residual = 0.000057 +Average conv. rate = 0.044203 + +* 2 2 1 0.128170E-02 0.566551E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3562 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.23 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.80K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3562 Max w this run +w_max level proc position run w_max level timestep +0.634E+00 39 218 58.1deg W -13.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3563 Model time: 1979-03-16 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044802 + +* 1 1 3 0.100000E+01 0.899284E-04 * +Number of iterations = 2 +Initial residual = 0.014779 +Final residual = 0.000046 +Average conv. rate = 0.056089 + +* 1 2 2 0.147795E-01 0.464961E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103025 +Final residual = 0.000014 +Average conv. rate = 0.051437 + +* 2 1 3 0.103025E+00 0.140206E-04 * +Number of iterations = 1 +Initial residual = 0.001296 +Final residual = 0.000057 +Average conv. rate = 0.043672 + +* 2 2 1 0.129627E-02 0.566112E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3563 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.21 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3563 Max w this run +w_max level proc position run w_max level timestep +0.620E+00 25 178 155.6deg W -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3564 Model time: 1979-03-16 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044425 + +* 1 1 3 0.100000E+01 0.876767E-04 * +Number of iterations = 2 +Initial residual = 0.014747 +Final residual = 0.000046 +Average conv. rate = 0.056081 + +* 1 2 2 0.147468E-01 0.463804E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102530 +Final residual = 0.000014 +Average conv. rate = 0.051552 + +* 2 1 3 0.102530E+00 0.140470E-04 * +Number of iterations = 1 +Initial residual = 0.001309 +Final residual = 0.000057 +Average conv. rate = 0.043417 + +* 2 2 1 0.130876E-02 0.568222E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3564 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.20 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3564 Max w this run +w_max level proc position run w_max level timestep +0.644E+00 26 178 155.6deg W -23.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3565 Model time: 1979-03-16 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044710 + +* 1 1 3 0.100000E+01 0.893755E-04 * +Number of iterations = 2 +Initial residual = 0.014688 +Final residual = 0.000047 +Average conv. rate = 0.056549 + +* 1 2 2 0.146876E-01 0.469676E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103340 +Final residual = 0.000014 +Average conv. rate = 0.051513 + +* 2 1 3 0.103340E+00 0.141259E-04 * +Number of iterations = 1 +Initial residual = 0.001341 +Final residual = 0.000059 +Average conv. rate = 0.043657 + +* 2 2 1 0.134128E-02 0.585571E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3565 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.20 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.00K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3565 Max w this run +w_max level proc position run w_max level timestep +0.718E+00 26 178 155.6deg W -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3566 Model time: 1979-03-16 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044111 + +* 1 1 3 0.100000E+01 0.858328E-04 * +Number of iterations = 2 +Initial residual = 0.014549 +Final residual = 0.000047 +Average conv. rate = 0.056932 + +* 1 2 2 0.145486E-01 0.471549E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104406 +Final residual = 0.000014 +Average conv. rate = 0.051611 + +* 2 1 3 0.104406E+00 0.143537E-04 * +Number of iterations = 1 +Initial residual = 0.001422 +Final residual = 0.000059 +Average conv. rate = 0.041446 + +* 2 2 1 0.142236E-02 0.589513E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3566 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.20 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3566 Max w this run +w_max level proc position run w_max level timestep +0.693E+00 28 178 153.8deg W -23.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3567 Model time: 1979-03-16 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043717 + +* 1 1 3 0.100000E+01 0.835524E-04 * +Number of iterations = 2 +Initial residual = 0.014570 +Final residual = 0.000048 +Average conv. rate = 0.057146 + +* 1 2 2 0.145702E-01 0.475819E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104082 +Final residual = 0.000014 +Average conv. rate = 0.051641 + +* 2 1 3 0.104082E+00 0.143338E-04 * +Number of iterations = 1 +Initial residual = 0.001389 +Final residual = 0.000058 +Average conv. rate = 0.041780 + +* 2 2 1 0.138907E-02 0.580348E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3567 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.20 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3567 Max w this run +w_max level proc position run w_max level timestep +0.810E+00 27 178 155.6deg W -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3568 Model time: 1979-03-16 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045154 + +* 1 1 3 0.100000E+01 0.920627E-04 * +Number of iterations = 2 +Initial residual = 0.014567 +Final residual = 0.000047 +Average conv. rate = 0.057095 + +* 1 2 2 0.145672E-01 0.474874E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107067 +Final residual = 0.000014 +Average conv. rate = 0.050529 + +* 2 1 3 0.107067E+00 0.138126E-04 * +Number of iterations = 1 +Initial residual = 0.001579 +Final residual = 0.000057 +Average conv. rate = 0.036049 + +* 2 2 1 0.157850E-02 0.569041E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3568 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.22 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3568 Max w this run +w_max level proc position run w_max level timestep +0.738E+00 26 178 155.6deg W -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3569 Model time: 1979-03-16 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043934 + +* 1 1 3 0.100000E+01 0.848024E-04 * +Number of iterations = 2 +Initial residual = 0.014624 +Final residual = 0.000048 +Average conv. rate = 0.057388 + +* 1 2 2 0.146241E-01 0.481627E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105264 +Final residual = 0.000014 +Average conv. rate = 0.050895 + +* 2 1 3 0.105264E+00 0.138775E-04 * +Number of iterations = 1 +Initial residual = 0.001337 +Final residual = 0.000056 +Average conv. rate = 0.042097 + +* 2 2 1 0.133703E-02 0.562845E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3569 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.23 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3569 Max w this run +w_max level proc position run w_max level timestep +0.748E+00 28 178 153.8deg W -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3570 Model time: 1979-03-16 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043753 + +* 1 1 3 0.100000E+01 0.837585E-04 * +Number of iterations = 2 +Initial residual = 0.014586 +Final residual = 0.000048 +Average conv. rate = 0.057322 + +* 1 2 2 0.145861E-01 0.479263E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102733 +Final residual = 0.000014 +Average conv. rate = 0.051534 + +* 2 1 3 0.102733E+00 0.140603E-04 * +Number of iterations = 1 +Initial residual = 0.001317 +Final residual = 0.000056 +Average conv. rate = 0.042633 + +* 2 2 1 0.131678E-02 0.561378E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3570 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.24 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3570 Max w this run +w_max level proc position run w_max level timestep +0.714E+00 28 178 153.8deg W -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3571 Model time: 1979-03-16 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044275 + +* 1 1 3 0.100000E+01 0.867939E-04 * +Number of iterations = 2 +Initial residual = 0.014638 +Final residual = 0.000048 +Average conv. rate = 0.057419 + +* 1 2 2 0.146383E-01 0.482610E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101845 +Final residual = 0.000014 +Average conv. rate = 0.051031 + +* 2 1 3 0.101845E+00 0.135347E-04 * +Number of iterations = 1 +Initial residual = 0.001263 +Final residual = 0.000056 +Average conv. rate = 0.044524 + +* 2 2 1 0.126259E-02 0.562156E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3571 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.25 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3571 Max w this run +w_max level proc position run w_max level timestep +0.794E+00 28 178 153.8deg W -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3572 Model time: 1979-03-16 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043805 + +* 1 1 3 0.100000E+01 0.840541E-04 * +Number of iterations = 2 +Initial residual = 0.014556 +Final residual = 0.000048 +Average conv. rate = 0.057584 + +* 1 2 2 0.145558E-01 0.482665E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100545 +Final residual = 0.000013 +Average conv. rate = 0.050377 + +* 2 1 3 0.100545E+00 0.128548E-04 * +Number of iterations = 1 +Initial residual = 0.001246 +Final residual = 0.000057 +Average conv. rate = 0.045752 + +* 2 2 1 0.124628E-02 0.570201E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3572 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.24 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3572 Max w this run +w_max level proc position run w_max level timestep +0.876E+00 27 178 153.8deg W -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3573 Model time: 1979-03-16 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043544 + +* 1 1 3 0.100000E+01 0.825616E-04 * +Number of iterations = 2 +Initial residual = 0.014581 +Final residual = 0.000049 +Average conv. rate = 0.058152 + +* 1 2 2 0.145811E-01 0.493081E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103124 +Final residual = 0.000014 +Average conv. rate = 0.051047 + +* 2 1 3 0.103124E+00 0.137175E-04 * +Number of iterations = 1 +Initial residual = 0.001295 +Final residual = 0.000058 +Average conv. rate = 0.044468 + +* 2 2 1 0.129460E-02 0.575685E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3573 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.25 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3573 Max w this run +w_max level proc position run w_max level timestep +0.893E+00 26 178 153.8deg W -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3574 Model time: 1979-03-16 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043318 + +* 1 1 3 0.100000E+01 0.812815E-04 * +Number of iterations = 2 +Initial residual = 0.014558 +Final residual = 0.000048 +Average conv. rate = 0.057314 + +* 1 2 2 0.145577E-01 0.478205E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103838 +Final residual = 0.000013 +Average conv. rate = 0.050008 + +* 2 1 3 0.103838E+00 0.129858E-04 * +Number of iterations = 1 +Initial residual = 0.001294 +Final residual = 0.000058 +Average conv. rate = 0.044640 + +* 2 2 1 0.129374E-02 0.577524E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3574 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.23 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3574 Max w this run +w_max level proc position run w_max level timestep +0.914E+00 27 178 153.8deg W -23.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3575 Model time: 1979-03-16 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043702 + +* 1 1 3 0.100000E+01 0.834661E-04 * +Number of iterations = 2 +Initial residual = 0.014628 +Final residual = 0.000048 +Average conv. rate = 0.057348 + +* 1 2 2 0.146281E-01 0.481082E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102429 +Final residual = 0.000013 +Average conv. rate = 0.050004 + +* 2 1 3 0.102429E+00 0.128068E-04 * +Number of iterations = 1 +Initial residual = 0.001250 +Final residual = 0.000058 +Average conv. rate = 0.046157 + +* 2 2 1 0.124980E-02 0.576872E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3575 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.20 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.33K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3575 Max w this run +w_max level proc position run w_max level timestep +0.924E+00 28 178 153.8deg W -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3576 Model time: 1979-03-16 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043495 + +* 1 1 3 0.100000E+01 0.822859E-04 * +Number of iterations = 2 +Initial residual = 0.014511 +Final residual = 0.000049 +Average conv. rate = 0.058335 + +* 1 2 2 0.145109E-01 0.493809E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102868 +Final residual = 0.000013 +Average conv. rate = 0.050695 + +* 2 1 3 0.102868E+00 0.134023E-04 * +Number of iterations = 1 +Initial residual = 0.001268 +Final residual = 0.000058 +Average conv. rate = 0.045539 + +* 2 2 1 0.126777E-02 0.577334E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3576 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.18 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.40K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3576 Max w this run +w_max level proc position run w_max level timestep +0.872E+00 28 178 153.8deg W -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3577 Model time: 1979-03-16 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043913 + +* 1 1 3 0.100000E+01 0.846779E-04 * +Number of iterations = 2 +Initial residual = 0.014479 +Final residual = 0.000049 +Average conv. rate = 0.058232 + +* 1 2 2 0.144785E-01 0.490954E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107068 +Final residual = 0.000014 +Average conv. rate = 0.050489 + +* 2 1 3 0.107068E+00 0.137804E-04 * +Number of iterations = 1 +Initial residual = 0.001304 +Final residual = 0.000057 +Average conv. rate = 0.043787 + +* 2 2 1 0.130422E-02 0.571082E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3577 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.17 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3577 Max w this run +w_max level proc position run w_max level timestep +0.776E+00 27 178 153.8deg W -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3578 Model time: 1979-03-16 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043886 + +* 1 1 3 0.100000E+01 0.845216E-04 * +Number of iterations = 2 +Initial residual = 0.014394 +Final residual = 0.000047 +Average conv. rate = 0.057436 + +* 1 2 2 0.143941E-01 0.474844E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101579 +Final residual = 0.000012 +Average conv. rate = 0.049407 + +* 2 1 3 0.101579E+00 0.122512E-04 * +Number of iterations = 1 +Initial residual = 0.001231 +Final residual = 0.000057 +Average conv. rate = 0.046024 + +* 2 2 1 0.123120E-02 0.566642E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3578 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.15 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3578 Max w this run +w_max level proc position run w_max level timestep +0.814E+00 27 178 153.8deg W -23.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3579 Model time: 1979-03-16 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043847 + +* 1 1 3 0.100000E+01 0.842980E-04 * +Number of iterations = 2 +Initial residual = 0.014512 +Final residual = 0.000048 +Average conv. rate = 0.057215 + +* 1 2 2 0.145116E-01 0.475050E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107196 +Final residual = 0.000013 +Average conv. rate = 0.049616 + +* 2 1 3 0.107196E+00 0.130929E-04 * +Number of iterations = 1 +Initial residual = 0.001293 +Final residual = 0.000056 +Average conv. rate = 0.042988 + +* 2 2 1 0.129273E-02 0.555721E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3579 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.17 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3579 Max w this run +w_max level proc position run w_max level timestep +0.783E+00 27 178 153.8deg W -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3580 Model time: 1979-03-16 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043756 + +* 1 1 3 0.100000E+01 0.837719E-04 * +Number of iterations = 2 +Initial residual = 0.014582 +Final residual = 0.000047 +Average conv. rate = 0.057041 + +* 1 2 2 0.145818E-01 0.474443E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105693 +Final residual = 0.000013 +Average conv. rate = 0.049495 + +* 2 1 3 0.105693E+00 0.128155E-04 * +Number of iterations = 1 +Initial residual = 0.001239 +Final residual = 0.000054 +Average conv. rate = 0.043912 + +* 2 2 1 0.123912E-02 0.544124E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3580 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.23 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.41K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3580 Max w this run +w_max level proc position run w_max level timestep +0.691E+00 27 178 153.8deg W -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3581 Model time: 1979-03-16 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043860 + +* 1 1 3 0.100000E+01 0.843749E-04 * +Number of iterations = 2 +Initial residual = 0.014720 +Final residual = 0.000048 +Average conv. rate = 0.056882 + +* 1 2 2 0.147195E-01 0.476260E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102894 +Final residual = 0.000013 +Average conv. rate = 0.050336 + +* 2 1 3 0.102894E+00 0.131226E-04 * +Number of iterations = 1 +Initial residual = 0.001212 +Final residual = 0.000054 +Average conv. rate = 0.044412 + +* 2 2 1 0.121166E-02 0.538120E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3581 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.67 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3581 Max w this run +w_max level proc position run w_max level timestep +0.576E+00 27 178 153.8deg W -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3582 Model time: 1979-03-16 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044262 + +* 1 1 3 0.100000E+01 0.867164E-04 * +Number of iterations = 2 +Initial residual = 0.014745 +Final residual = 0.000047 +Average conv. rate = 0.056644 + +* 1 2 2 0.147446E-01 0.473092E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102667 +Final residual = 0.000013 +Average conv. rate = 0.049807 + +* 2 1 3 0.102667E+00 0.126856E-04 * +Number of iterations = 1 +Initial residual = 0.001233 +Final residual = 0.000053 +Average conv. rate = 0.043240 + +* 2 2 1 0.123349E-02 0.533367E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3582 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.10 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3582 Max w this run +w_max level proc position run w_max level timestep +0.547E+00 26 178 151.9deg W -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3583 Model time: 1979-03-16 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043452 + +* 1 1 3 0.100000E+01 0.820431E-04 * +Number of iterations = 2 +Initial residual = 0.014764 +Final residual = 0.000047 +Average conv. rate = 0.056580 + +* 1 2 2 0.147642E-01 0.472643E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101935 +Final residual = 0.000012 +Average conv. rate = 0.049595 + +* 2 1 3 0.101935E+00 0.124346E-04 * +Number of iterations = 1 +Initial residual = 0.001248 +Final residual = 0.000053 +Average conv. rate = 0.042806 + +* 2 2 1 0.124826E-02 0.534331E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3583 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.73 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3583 Max w this run +w_max level proc position run w_max level timestep +0.552E+00 21 164 54.4deg E -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3584 Model time: 1979-03-16 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043278 + +* 1 1 3 0.100000E+01 0.810601E-04 * +Number of iterations = 2 +Initial residual = 0.014690 +Final residual = 0.000047 +Average conv. rate = 0.056542 + +* 1 2 2 0.146902E-01 0.469643E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101268 +Final residual = 0.000012 +Average conv. rate = 0.049593 + +* 2 1 3 0.101268E+00 0.123519E-04 * +Number of iterations = 1 +Initial residual = 0.001247 +Final residual = 0.000054 +Average conv. rate = 0.043021 + +* 2 2 1 0.124739E-02 0.536636E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3584 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.08 27 54.4deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.80K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3584 Max w this run +w_max level proc position run w_max level timestep +0.596E+00 22 164 54.4deg E -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3585 Model time: 1979-03-16 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044344 + +* 1 1 3 0.100000E+01 0.871970E-04 * +Number of iterations = 2 +Initial residual = 0.014700 +Final residual = 0.000047 +Average conv. rate = 0.056595 + +* 1 2 2 0.147002E-01 0.470846E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102465 +Final residual = 0.000012 +Average conv. rate = 0.049127 + +* 2 1 3 0.102465E+00 0.121488E-04 * +Number of iterations = 1 +Initial residual = 0.001279 +Final residual = 0.000055 +Average conv. rate = 0.042623 + +* 2 2 1 0.127880E-02 0.545058E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3585 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.23 27 54.4deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.81K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3585 Max w this run +w_max level proc position run w_max level timestep +0.632E+00 22 164 54.4deg E -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3586 Model time: 1979-03-16 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044012 + +* 1 1 3 0.100000E+01 0.852565E-04 * +Number of iterations = 2 +Initial residual = 0.014618 +Final residual = 0.000046 +Average conv. rate = 0.056331 + +* 1 2 2 0.146180E-01 0.463860E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102740 +Final residual = 0.000012 +Average conv. rate = 0.049008 + +* 2 1 3 0.102740E+00 0.120935E-04 * +Number of iterations = 1 +Initial residual = 0.001297 +Final residual = 0.000055 +Average conv. rate = 0.042591 + +* 2 2 1 0.129737E-02 0.552562E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3586 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.32 27 54.4deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3586 Max w this run +w_max level proc position run w_max level timestep +0.634E+00 21 164 54.4deg E -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3587 Model time: 1979-03-16 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043554 + +* 1 1 3 0.100000E+01 0.826217E-04 * +Number of iterations = 2 +Initial residual = 0.014600 +Final residual = 0.000047 +Average conv. rate = 0.056516 + +* 1 2 2 0.146005E-01 0.466355E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104411 +Final residual = 0.000012 +Average conv. rate = 0.048667 + +* 2 1 3 0.104411E+00 0.120348E-04 * +Number of iterations = 1 +Initial residual = 0.001319 +Final residual = 0.000056 +Average conv. rate = 0.042444 + +* 2 2 1 0.131914E-02 0.559900E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3587 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.40 27 54.4deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3587 Max w this run +w_max level proc position run w_max level timestep +0.673E+00 21 164 54.4deg E -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3588 Model time: 1979-03-16 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043795 + +* 1 1 3 0.100000E+01 0.839966E-04 * +Number of iterations = 2 +Initial residual = 0.014508 +Final residual = 0.000046 +Average conv. rate = 0.056029 + +* 1 2 2 0.145081E-01 0.455439E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103038 +Final residual = 0.000013 +Average conv. rate = 0.049678 + +* 2 1 3 0.103038E+00 0.126322E-04 * +Number of iterations = 1 +Initial residual = 0.001395 +Final residual = 0.000056 +Average conv. rate = 0.040362 + +* 2 2 1 0.139488E-02 0.563001E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3588 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.47 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.63K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3588 Max w this run +w_max level proc position run w_max level timestep +0.711E+00 22 164 54.4deg E -23.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3589 Model time: 1979-03-16 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043699 + +* 1 1 3 0.100000E+01 0.834457E-04 * +Number of iterations = 2 +Initial residual = 0.014565 +Final residual = 0.000046 +Average conv. rate = 0.056299 + +* 1 2 2 0.145645E-01 0.461637E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108225 +Final residual = 0.000011 +Average conv. rate = 0.047307 + +* 2 1 3 0.108225E+00 0.114581E-04 * +Number of iterations = 1 +Initial residual = 0.001388 +Final residual = 0.000057 +Average conv. rate = 0.040723 + +* 2 2 1 0.138770E-02 0.565113E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3589 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.49 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.71K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3589 Max w this run +w_max level proc position run w_max level timestep +0.763E+00 23 164 54.4deg E -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3590 Model time: 1979-03-16 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043958 + +* 1 1 3 0.100000E+01 0.849424E-04 * +Number of iterations = 2 +Initial residual = 0.014444 +Final residual = 0.000046 +Average conv. rate = 0.056219 + +* 1 2 2 0.144441E-01 0.456509E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105130 +Final residual = 0.000011 +Average conv. rate = 0.046459 + +* 2 1 3 0.105130E+00 0.105427E-04 * +Number of iterations = 1 +Initial residual = 0.001442 +Final residual = 0.000056 +Average conv. rate = 0.038625 + +* 2 2 1 0.144246E-02 0.557151E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3590 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.50 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.79K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3590 Max w this run +w_max level proc position run w_max level timestep +0.814E+00 23 164 54.4deg E -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3591 Model time: 1979-03-16 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044356 + +* 1 1 3 0.100000E+01 0.872689E-04 * +Number of iterations = 2 +Initial residual = 0.014469 +Final residual = 0.000046 +Average conv. rate = 0.056523 + +* 1 2 2 0.144689E-01 0.462253E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107699 +Final residual = 0.000011 +Average conv. rate = 0.047019 + +* 2 1 3 0.107699E+00 0.111952E-04 * +Number of iterations = 1 +Initial residual = 0.001383 +Final residual = 0.000055 +Average conv. rate = 0.039494 + +* 2 2 1 0.138254E-02 0.546016E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3591 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.49 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3591 Max w this run +w_max level proc position run w_max level timestep +0.876E+00 25 164 54.4deg E -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3592 Model time: 1979-03-16 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043949 + +* 1 1 3 0.100000E+01 0.848860E-04 * +Number of iterations = 2 +Initial residual = 0.014455 +Final residual = 0.000046 +Average conv. rate = 0.056145 + +* 1 2 2 0.144555E-01 0.455667E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103894 +Final residual = 0.000012 +Average conv. rate = 0.049078 + +* 2 1 3 0.103894E+00 0.122818E-04 * +Number of iterations = 1 +Initial residual = 0.001348 +Final residual = 0.000054 +Average conv. rate = 0.039988 + +* 2 2 1 0.134826E-02 0.539139E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3592 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.45 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3592 Max w this run +w_max level proc position run w_max level timestep +0.822E+00 25 164 54.4deg E -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3593 Model time: 1979-03-16 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044098 + +* 1 1 3 0.100000E+01 0.857561E-04 * +Number of iterations = 2 +Initial residual = 0.014532 +Final residual = 0.000046 +Average conv. rate = 0.056138 + +* 1 2 2 0.145322E-01 0.457983E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107386 +Final residual = 0.000012 +Average conv. rate = 0.048094 + +* 2 1 3 0.107386E+00 0.119462E-04 * +Number of iterations = 1 +Initial residual = 0.001380 +Final residual = 0.000054 +Average conv. rate = 0.039177 + +* 2 2 1 0.137997E-02 0.540625E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3593 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.38 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.97K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3593 Max w this run +w_max level proc position run w_max level timestep +0.917E+00 27 164 54.4deg E -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3594 Model time: 1979-03-16 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043568 + +* 1 1 3 0.100000E+01 0.827000E-04 * +Number of iterations = 2 +Initial residual = 0.014524 +Final residual = 0.000046 +Average conv. rate = 0.056286 + +* 1 2 2 0.145245E-01 0.460153E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105866 +Final residual = 0.000012 +Average conv. rate = 0.048034 + +* 2 1 3 0.105866E+00 0.117327E-04 * +Number of iterations = 1 +Initial residual = 0.001369 +Final residual = 0.000054 +Average conv. rate = 0.039621 + +* 2 2 1 0.136941E-02 0.542576E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3594 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.30 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3594 Max w this run +w_max level proc position run w_max level timestep +0.896E+00 26 164 54.4deg E -23.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3595 Model time: 1979-03-16 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043518 + +* 1 1 3 0.100000E+01 0.824178E-04 * +Number of iterations = 2 +Initial residual = 0.014501 +Final residual = 0.000048 +Average conv. rate = 0.057486 + +* 1 2 2 0.145010E-01 0.479201E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108872 +Final residual = 0.000012 +Average conv. rate = 0.047941 + +* 2 1 3 0.108872E+00 0.119958E-04 * +Number of iterations = 1 +Initial residual = 0.001345 +Final residual = 0.000054 +Average conv. rate = 0.040282 + +* 2 2 1 0.134499E-02 0.541790E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3595 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.18 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.11K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3595 Max w this run +w_max level proc position run w_max level timestep +0.930E+00 28 164 54.4deg E -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3596 Model time: 1979-03-16 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043634 + +* 1 1 3 0.100000E+01 0.830779E-04 * +Number of iterations = 2 +Initial residual = 0.014474 +Final residual = 0.000048 +Average conv. rate = 0.057773 + +* 1 2 2 0.144741E-01 0.483110E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.111149 +Final residual = 0.000012 +Average conv. rate = 0.046955 + +* 2 1 3 0.111149E+00 0.115063E-04 * +Number of iterations = 1 +Initial residual = 0.001515 +Final residual = 0.000054 +Average conv. rate = 0.035558 + +* 2 2 1 0.151493E-02 0.538685E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3596 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.06 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3596 Max w this run +w_max level proc position run w_max level timestep +0.833E+00 28 164 54.4deg E -23.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3597 Model time: 1979-03-16 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043949 + +* 1 1 3 0.100000E+01 0.848875E-04 * +Number of iterations = 2 +Initial residual = 0.014609 +Final residual = 0.000048 +Average conv. rate = 0.057329 + +* 1 2 2 0.146090E-01 0.480135E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105990 +Final residual = 0.000013 +Average conv. rate = 0.049224 + +* 2 1 3 0.105990E+00 0.126414E-04 * +Number of iterations = 1 +Initial residual = 0.001344 +Final residual = 0.000054 +Average conv. rate = 0.039939 + +* 2 2 1 0.134404E-02 0.536791E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3597 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.92 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.24K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3597 Max w this run +w_max level proc position run w_max level timestep +0.802E+00 26 164 54.4deg E -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3598 Model time: 1979-03-16 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043284 + +* 1 1 3 0.100000E+01 0.810906E-04 * +Number of iterations = 2 +Initial residual = 0.014618 +Final residual = 0.000047 +Average conv. rate = 0.056587 + +* 1 2 2 0.146182E-01 0.468093E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103826 +Final residual = 0.000013 +Average conv. rate = 0.049532 + +* 2 1 3 0.103826E+00 0.126171E-04 * +Number of iterations = 1 +Initial residual = 0.001331 +Final residual = 0.000053 +Average conv. rate = 0.039983 + +* 2 2 1 0.133053E-02 0.531982E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3598 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.79 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3598 Max w this run +w_max level proc position run w_max level timestep +0.689E+00 25 164 54.4deg E -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3599 Model time: 1979-03-16 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043686 + +* 1 1 3 0.100000E+01 0.833707E-04 * +Number of iterations = 2 +Initial residual = 0.014684 +Final residual = 0.000047 +Average conv. rate = 0.056752 + +* 1 2 2 0.146843E-01 0.472945E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107437 +Final residual = 0.000013 +Average conv. rate = 0.049504 + +* 2 1 3 0.107437E+00 0.130342E-04 * +Number of iterations = 1 +Initial residual = 0.001337 +Final residual = 0.000053 +Average conv. rate = 0.039615 + +* 2 2 1 0.133733E-02 0.529781E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3599 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.67 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.34K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3599 Max w this run +w_max level proc position run w_max level timestep +0.680E+00 26 164 54.4deg E -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3600 Model time: 1979-03-17 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044673 + +* 1 1 3 0.100000E+01 0.891536E-04 * +Number of iterations = 2 +Initial residual = 0.014670 +Final residual = 0.000047 +Average conv. rate = 0.056591 + +* 1 2 2 0.146696E-01 0.469808E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104843 +Final residual = 0.000013 +Average conv. rate = 0.049450 + +* 2 1 3 0.104843E+00 0.126775E-04 * +Number of iterations = 1 +Initial residual = 0.001330 +Final residual = 0.000053 +Average conv. rate = 0.039706 + +* 2 2 1 0.132993E-02 0.528062E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51418E+19 +Tot energy 0.13054E+25 +tot dry energy 0.13055E+25 +gr( rho cal) 0.38100E+24 +KE( rho cal) 0.86441E+21 +KEu(rho cal) 0.66882E+21 +KEv(rho cal) 0.19559E+21 +KEw(rho cal) 0.12283E+16 +cvT( rho cal) 0.92367E+24 +lq ( rho cal) 0.30576E+23 +lqcf( rho cal) 0.65992E+20 +lqcl( rho cal) 0.41788E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12267E+17 KG +Initial moisture = 0.12191E+17 KG +change in moisture = 0.75602E+14 KG +Moisture added E-P in period = 0.74820E+14 KG +Error in moisture = 0.78210E+12 KG +Error as % of change = 0.10345E+01 +q ( rho cal) 0.12225E+17 +qcf( rho cal) 0.26386E+14 +qcl( rho cal) 0.14740E+14 +FINAL TOTAL ENERGY = 0.13054E+25 J/ +INITIAL TOTAL ENERGY = 0.13055E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.33951E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.38731E+20 J/ +ERROR IN ENERGY BUDGET = -0.47803E+19 J/ +TEMP CORRECTION OVER A DAY = -0.12980E-02 K +TEMPERATURE CORRECTION RATE = -0.15023E-07 K/S +FLUX CORRECTION (ATM) = -0.10846E+00 W/M2 + +Minimum theta level 1 for timestep 3600 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.56 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3600 Max w this run +w_max level proc position run w_max level timestep +0.654E+00 28 164 54.4deg E -23.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6204.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6204.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6204.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6204.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6204.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6204.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3601 Model time: 1979-03-17 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044202 + +* 1 1 3 0.100000E+01 0.863609E-04 * +Number of iterations = 2 +Initial residual = 0.014636 +Final residual = 0.000047 +Average conv. rate = 0.056750 + +* 1 2 2 0.146361E-01 0.471366E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104086 +Final residual = 0.000013 +Average conv. rate = 0.049546 + +* 2 1 3 0.104086E+00 0.126595E-04 * +Number of iterations = 1 +Initial residual = 0.001292 +Final residual = 0.000052 +Average conv. rate = 0.040568 + +* 2 2 1 0.129176E-02 0.524046E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3601 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.46 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3601 Max w this run +w_max level proc position run w_max level timestep +0.680E+00 30 164 54.4deg E -23.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3602 Model time: 1979-03-17 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043903 + +* 1 1 3 0.100000E+01 0.846194E-04 * +Number of iterations = 2 +Initial residual = 0.014490 +Final residual = 0.000047 +Average conv. rate = 0.057229 + +* 1 2 2 0.144901E-01 0.474571E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104073 +Final residual = 0.000013 +Average conv. rate = 0.049929 + +* 2 1 3 0.104073E+00 0.129541E-04 * +Number of iterations = 1 +Initial residual = 0.001278 +Final residual = 0.000053 +Average conv. rate = 0.041387 + +* 2 2 1 0.127763E-02 0.528778E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3602 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.39 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3602 Max w this run +w_max level proc position run w_max level timestep +0.643E+00 28 179 144.4deg W -29.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3603 Model time: 1979-03-17 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044252 + +* 1 1 3 0.100000E+01 0.866551E-04 * +Number of iterations = 2 +Initial residual = 0.014484 +Final residual = 0.000048 +Average conv. rate = 0.057362 + +* 1 2 2 0.144845E-01 0.476596E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103097 +Final residual = 0.000013 +Average conv. rate = 0.049951 + +* 2 1 3 0.103097E+00 0.128493E-04 * +Number of iterations = 1 +Initial residual = 0.001284 +Final residual = 0.000054 +Average conv. rate = 0.041915 + +* 2 2 1 0.128449E-02 0.538398E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3603 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.34 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.37K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3603 Max w this run +w_max level proc position run w_max level timestep +0.702E+00 30 179 144.4deg W -29.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3604 Model time: 1979-03-17 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043398 + +* 1 1 3 0.100000E+01 0.817373E-04 * +Number of iterations = 2 +Initial residual = 0.014464 +Final residual = 0.000048 +Average conv. rate = 0.057337 + +* 1 2 2 0.144639E-01 0.475503E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106232 +Final residual = 0.000013 +Average conv. rate = 0.049582 + +* 2 1 3 0.106232E+00 0.129490E-04 * +Number of iterations = 1 +Initial residual = 0.001287 +Final residual = 0.000054 +Average conv. rate = 0.042076 + +* 2 2 1 0.128669E-02 0.541380E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3604 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.29 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.34K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3604 Max w this run +w_max level proc position run w_max level timestep +0.765E+00 31 179 144.4deg W -29.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3605 Model time: 1979-03-17 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043234 + +* 1 1 3 0.100000E+01 0.808121E-04 * +Number of iterations = 2 +Initial residual = 0.014714 +Final residual = 0.000048 +Average conv. rate = 0.057171 + +* 1 2 2 0.147138E-01 0.480922E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106632 +Final residual = 0.000012 +Average conv. rate = 0.048716 + +* 2 1 3 0.106632E+00 0.123286E-04 * +Number of iterations = 1 +Initial residual = 0.001261 +Final residual = 0.000054 +Average conv. rate = 0.042621 + +* 2 2 1 0.126135E-02 0.537597E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3605 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.27 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3605 Max w this run +w_max level proc position run w_max level timestep +0.774E+00 33 179 144.4deg W -29.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3606 Model time: 1979-03-17 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042651 + +* 1 1 3 0.100000E+01 0.775849E-04 * +Number of iterations = 2 +Initial residual = 0.014962 +Final residual = 0.000048 +Average conv. rate = 0.056363 + +* 1 2 2 0.149622E-01 0.475324E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106627 +Final residual = 0.000011 +Average conv. rate = 0.046479 + +* 2 1 3 0.106627E+00 0.107062E-04 * +Number of iterations = 1 +Initial residual = 0.001297 +Final residual = 0.000054 +Average conv. rate = 0.041506 + +* 2 2 1 0.129667E-02 0.538199E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3606 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.24 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3606 Max w this run +w_max level proc position run w_max level timestep +0.802E+00 33 179 144.4deg W -29.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3607 Model time: 1979-03-17 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042854 + +* 1 1 3 0.100000E+01 0.786998E-04 * +Number of iterations = 2 +Initial residual = 0.015087 +Final residual = 0.000048 +Average conv. rate = 0.056282 + +* 1 2 2 0.150871E-01 0.477918E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105776 +Final residual = 0.000011 +Average conv. rate = 0.047528 + +* 2 1 3 0.105776E+00 0.113565E-04 * +Number of iterations = 1 +Initial residual = 0.001269 +Final residual = 0.000055 +Average conv. rate = 0.043342 + +* 2 2 1 0.126861E-02 0.549837E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3607 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.23 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.22K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3607 Max w this run +w_max level proc position run w_max level timestep +0.745E+00 33 179 144.4deg W -29.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3608 Model time: 1979-03-17 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043115 + +* 1 1 3 0.100000E+01 0.801447E-04 * +Number of iterations = 2 +Initial residual = 0.015031 +Final residual = 0.000048 +Average conv. rate = 0.056230 + +* 1 2 2 0.150309E-01 0.475256E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103164 +Final residual = 0.000011 +Average conv. rate = 0.047666 + +* 2 1 3 0.103164E+00 0.111724E-04 * +Number of iterations = 1 +Initial residual = 0.001276 +Final residual = 0.000054 +Average conv. rate = 0.042595 + +* 2 2 1 0.127563E-02 0.543348E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3608 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.21 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3608 Max w this run +w_max level proc position run w_max level timestep +0.645E+00 32 179 144.4deg W -29.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3609 Model time: 1979-03-17 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042601 + +* 1 1 3 0.100000E+01 0.773160E-04 * +Number of iterations = 2 +Initial residual = 0.015150 +Final residual = 0.000048 +Average conv. rate = 0.056375 + +* 1 2 2 0.151501E-01 0.481493E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102117 +Final residual = 0.000013 +Average conv. rate = 0.050288 + +* 2 1 3 0.102117E+00 0.129863E-04 * +Number of iterations = 1 +Initial residual = 0.001293 +Final residual = 0.000055 +Average conv. rate = 0.042411 + +* 2 2 1 0.129294E-02 0.548342E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3609 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.20 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3609 Max w this run +w_max level proc position run w_max level timestep +0.625E+00 32 179 144.4deg W -29.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3610 Model time: 1979-03-17 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000076 +Average conv. rate = 0.042436 + +* 1 1 3 0.100000E+01 0.764175E-04 * +Number of iterations = 2 +Initial residual = 0.015276 +Final residual = 0.000048 +Average conv. rate = 0.055957 + +* 1 2 2 0.152759E-01 0.478317E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103132 +Final residual = 0.000012 +Average conv. rate = 0.048552 + +* 2 1 3 0.103132E+00 0.118037E-04 * +Number of iterations = 1 +Initial residual = 0.001289 +Final residual = 0.000055 +Average conv. rate = 0.042340 + +* 2 2 1 0.128882E-02 0.545683E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3610 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.18 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.14K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3610 Max w this run +w_max level proc position run w_max level timestep +0.564E+00 33 179 144.4deg W -29.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3611 Model time: 1979-03-17 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042615 + +* 1 1 3 0.100000E+01 0.773917E-04 * +Number of iterations = 2 +Initial residual = 0.015241 +Final residual = 0.000048 +Average conv. rate = 0.056156 + +* 1 2 2 0.152415E-01 0.480640E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103060 +Final residual = 0.000012 +Average conv. rate = 0.048822 + +* 2 1 3 0.103060E+00 0.119934E-04 * +Number of iterations = 1 +Initial residual = 0.001290 +Final residual = 0.000055 +Average conv. rate = 0.042303 + +* 2 2 1 0.129035E-02 0.545855E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3611 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.17 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3611 Max w this run +w_max level proc position run w_max level timestep +0.537E+00 26 165 56.2deg E -24.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3612 Model time: 1979-03-17 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042642 + +* 1 1 3 0.100000E+01 0.775387E-04 * +Number of iterations = 2 +Initial residual = 0.015039 +Final residual = 0.000048 +Average conv. rate = 0.056630 + +* 1 2 2 0.150390E-01 0.482287E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102389 +Final residual = 0.000011 +Average conv. rate = 0.047603 + +* 2 1 3 0.102389E+00 0.110445E-04 * +Number of iterations = 1 +Initial residual = 0.001283 +Final residual = 0.000053 +Average conv. rate = 0.041681 + +* 2 2 1 0.128331E-02 0.534892E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3612 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.16 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3612 Max w this run +w_max level proc position run w_max level timestep +0.576E+00 39 249 75.0deg W -9.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3613 Model time: 1979-03-17 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042688 + +* 1 1 3 0.100000E+01 0.777876E-04 * +Number of iterations = 2 +Initial residual = 0.014875 +Final residual = 0.000048 +Average conv. rate = 0.056619 + +* 1 2 2 0.148754E-01 0.476865E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102981 +Final residual = 0.000013 +Average conv. rate = 0.050161 + +* 2 1 3 0.102981E+00 0.129975E-04 * +Number of iterations = 1 +Initial residual = 0.001288 +Final residual = 0.000054 +Average conv. rate = 0.041598 + +* 2 2 1 0.128845E-02 0.535965E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3613 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.15 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3613 Max w this run +w_max level proc position run w_max level timestep +0.592E+00 27 165 56.2deg E -24.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3614 Model time: 1979-03-17 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042731 + +* 1 1 3 0.100000E+01 0.780216E-04 * +Number of iterations = 2 +Initial residual = 0.014740 +Final residual = 0.000049 +Average conv. rate = 0.057897 + +* 1 2 2 0.147396E-01 0.494077E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103560 +Final residual = 0.000012 +Average conv. rate = 0.048470 + +* 2 1 3 0.103560E+00 0.117923E-04 * +Number of iterations = 1 +Initial residual = 0.001335 +Final residual = 0.000054 +Average conv. rate = 0.040581 + +* 2 2 1 0.133526E-02 0.541866E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3614 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.14 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.14K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3614 Max w this run +w_max level proc position run w_max level timestep +0.587E+00 28 165 56.2deg E -24.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3615 Model time: 1979-03-17 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042785 + +* 1 1 3 0.100000E+01 0.783190E-04 * +Number of iterations = 2 +Initial residual = 0.014816 +Final residual = 0.000049 +Average conv. rate = 0.057355 + +* 1 2 2 0.148164E-01 0.487402E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102777 +Final residual = 0.000011 +Average conv. rate = 0.047887 + +* 2 1 3 0.102777E+00 0.112860E-04 * +Number of iterations = 1 +Initial residual = 0.001322 +Final residual = 0.000055 +Average conv. rate = 0.041536 + +* 2 2 1 0.132242E-02 0.549282E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3615 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.14 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3615 Max w this run +w_max level proc position run w_max level timestep +0.573E+00 28 165 56.2deg E -24.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3616 Model time: 1979-03-17 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043176 + +* 1 1 3 0.100000E+01 0.804846E-04 * +Number of iterations = 2 +Initial residual = 0.014795 +Final residual = 0.000049 +Average conv. rate = 0.057604 + +* 1 2 2 0.147955E-01 0.490942E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104223 +Final residual = 0.000013 +Average conv. rate = 0.049420 + +* 2 1 3 0.104223E+00 0.125800E-04 * +Number of iterations = 1 +Initial residual = 0.001359 +Final residual = 0.000055 +Average conv. rate = 0.040791 + +* 2 2 1 0.135892E-02 0.554316E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3616 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.15 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3616 Max w this run +w_max level proc position run w_max level timestep +0.550E+00 26 165 56.2deg E -24.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3617 Model time: 1979-03-17 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043342 + +* 1 1 3 0.100000E+01 0.814166E-04 * +Number of iterations = 2 +Initial residual = 0.014802 +Final residual = 0.000049 +Average conv. rate = 0.057456 + +* 1 2 2 0.148020E-01 0.488644E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106005 +Final residual = 0.000011 +Average conv. rate = 0.047251 + +* 2 1 3 0.106005E+00 0.111829E-04 * +Number of iterations = 1 +Initial residual = 0.001369 +Final residual = 0.000056 +Average conv. rate = 0.040665 + +* 2 2 1 0.136860E-02 0.556544E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3617 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.16 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3617 Max w this run +w_max level proc position run w_max level timestep +0.569E+00 26 165 56.2deg E -24.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3618 Model time: 1979-03-17 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043208 + +* 1 1 3 0.100000E+01 0.806642E-04 * +Number of iterations = 2 +Initial residual = 0.014695 +Final residual = 0.000049 +Average conv. rate = 0.057450 + +* 1 2 2 0.146955E-01 0.485016E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104432 +Final residual = 0.000011 +Average conv. rate = 0.047369 + +* 2 1 3 0.104432E+00 0.111001E-04 * +Number of iterations = 1 +Initial residual = 0.001360 +Final residual = 0.000055 +Average conv. rate = 0.040812 + +* 2 2 1 0.135987E-02 0.554997E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3618 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.17 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.23K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3618 Max w this run +w_max level proc position run w_max level timestep +0.557E+00 37 249 73.1deg W -10.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3619 Model time: 1979-03-17 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043408 + +* 1 1 3 0.100000E+01 0.817938E-04 * +Number of iterations = 2 +Initial residual = 0.014737 +Final residual = 0.000050 +Average conv. rate = 0.057990 + +* 1 2 2 0.147374E-01 0.495591E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105033 +Final residual = 0.000013 +Average conv. rate = 0.049809 + +* 2 1 3 0.105033E+00 0.129789E-04 * +Number of iterations = 1 +Initial residual = 0.001378 +Final residual = 0.000057 +Average conv. rate = 0.041652 + +* 2 2 1 0.137833E-02 0.574097E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3619 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.19 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.24K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3619 Max w this run +w_max level proc position run w_max level timestep +0.629E+00 24 179 142.5deg W -31.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3620 Model time: 1979-03-17 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043351 + +* 1 1 3 0.100000E+01 0.814709E-04 * +Number of iterations = 2 +Initial residual = 0.014718 +Final residual = 0.000049 +Average conv. rate = 0.057656 + +* 1 2 2 0.147183E-01 0.489268E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105549 +Final residual = 0.000011 +Average conv. rate = 0.046629 + +* 2 1 3 0.105549E+00 0.107011E-04 * +Number of iterations = 1 +Initial residual = 0.001368 +Final residual = 0.000057 +Average conv. rate = 0.041855 + +* 2 2 1 0.136827E-02 0.572684E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3620 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.22 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3620 Max w this run +w_max level proc position run w_max level timestep +0.745E+00 25 179 142.5deg W -31.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3621 Model time: 1979-03-17 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043717 + +* 1 1 3 0.100000E+01 0.835502E-04 * +Number of iterations = 2 +Initial residual = 0.014800 +Final residual = 0.000050 +Average conv. rate = 0.058203 + +* 1 2 2 0.147998E-01 0.501366E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104989 +Final residual = 0.000012 +Average conv. rate = 0.048849 + +* 2 1 3 0.104989E+00 0.122384E-04 * +Number of iterations = 1 +Initial residual = 0.001371 +Final residual = 0.000058 +Average conv. rate = 0.042385 + +* 2 2 1 0.137125E-02 0.581204E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3621 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.24 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3621 Max w this run +w_max level proc position run w_max level timestep +0.818E+00 26 179 142.5deg W -31.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3622 Model time: 1979-03-17 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043078 + +* 1 1 3 0.100000E+01 0.799409E-04 * +Number of iterations = 2 +Initial residual = 0.014839 +Final residual = 0.000048 +Average conv. rate = 0.056652 + +* 1 2 2 0.148392E-01 0.476263E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104395 +Final residual = 0.000012 +Average conv. rate = 0.048582 + +* 2 1 3 0.104395E+00 0.119707E-04 * +Number of iterations = 1 +Initial residual = 0.001361 +Final residual = 0.000059 +Average conv. rate = 0.043212 + +* 2 2 1 0.136082E-02 0.588035E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3622 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.27 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3622 Max w this run +w_max level proc position run w_max level timestep +0.835E+00 27 179 142.5deg W -31.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3623 Model time: 1979-03-17 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044155 + +* 1 1 3 0.100000E+01 0.860902E-04 * +Number of iterations = 2 +Initial residual = 0.015019 +Final residual = 0.000049 +Average conv. rate = 0.056881 + +* 1 2 2 0.150186E-01 0.485919E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106980 +Final residual = 0.000011 +Average conv. rate = 0.047018 + +* 2 1 3 0.106980E+00 0.111195E-04 * +Number of iterations = 1 +Initial residual = 0.001349 +Final residual = 0.000059 +Average conv. rate = 0.043517 + +* 2 2 1 0.134945E-02 0.587246E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3623 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.30 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3623 Max w this run +w_max level proc position run w_max level timestep +0.834E+00 27 179 142.5deg W -31.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3624 Model time: 1979-03-17 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044078 + +* 1 1 3 0.100000E+01 0.856369E-04 * +Number of iterations = 2 +Initial residual = 0.014976 +Final residual = 0.000048 +Average conv. rate = 0.056886 + +* 1 2 2 0.149759E-01 0.484617E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102979 +Final residual = 0.000011 +Average conv. rate = 0.047547 + +* 2 1 3 0.102979E+00 0.110690E-04 * +Number of iterations = 1 +Initial residual = 0.001338 +Final residual = 0.000059 +Average conv. rate = 0.043840 + +* 2 2 1 0.133804E-02 0.586590E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3624 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.32 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3624 Max w this run +w_max level proc position run w_max level timestep +0.817E+00 26 179 142.5deg W -31.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3625 Model time: 1979-03-17 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043443 + +* 1 1 3 0.100000E+01 0.819877E-04 * +Number of iterations = 2 +Initial residual = 0.014908 +Final residual = 0.000049 +Average conv. rate = 0.057197 + +* 1 2 2 0.149081E-01 0.487716E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103319 +Final residual = 0.000011 +Average conv. rate = 0.047493 + +* 2 1 3 0.103319E+00 0.110683E-04 * +Number of iterations = 1 +Initial residual = 0.001347 +Final residual = 0.000060 +Average conv. rate = 0.044218 + +* 2 2 1 0.134707E-02 0.595651E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3625 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.37 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3625 Max w this run +w_max level proc position run w_max level timestep +0.810E+00 25 179 142.5deg W -31.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3626 Model time: 1979-03-17 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043563 + +* 1 1 3 0.100000E+01 0.826718E-04 * +Number of iterations = 2 +Initial residual = 0.014754 +Final residual = 0.000048 +Average conv. rate = 0.057086 + +* 1 2 2 0.147542E-01 0.480814E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103375 +Final residual = 0.000011 +Average conv. rate = 0.047985 + +* 2 1 3 0.103375E+00 0.114219E-04 * +Number of iterations = 1 +Initial residual = 0.001361 +Final residual = 0.000061 +Average conv. rate = 0.044832 + +* 2 2 1 0.136146E-02 0.610364E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3626 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.40 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3626 Max w this run +w_max level proc position run w_max level timestep +0.758E+00 25 179 142.5deg W -31.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3627 Model time: 1979-03-17 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043245 + +* 1 1 3 0.100000E+01 0.808715E-04 * +Number of iterations = 2 +Initial residual = 0.014801 +Final residual = 0.000049 +Average conv. rate = 0.057257 + +* 1 2 2 0.148014E-01 0.485239E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105889 +Final residual = 0.000012 +Average conv. rate = 0.048716 + +* 2 1 3 0.105889E+00 0.122426E-04 * +Number of iterations = 1 +Initial residual = 0.001357 +Final residual = 0.000062 +Average conv. rate = 0.045564 + +* 2 2 1 0.135673E-02 0.618178E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3627 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.44 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3627 Max w this run +w_max level proc position run w_max level timestep +0.715E+00 23 179 140.6deg W -33.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3628 Model time: 1979-03-17 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043494 + +* 1 1 3 0.100000E+01 0.822782E-04 * +Number of iterations = 2 +Initial residual = 0.014827 +Final residual = 0.000046 +Average conv. rate = 0.055688 + +* 1 2 2 0.148271E-01 0.459804E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104886 +Final residual = 0.000013 +Average conv. rate = 0.049353 + +* 2 1 3 0.104886E+00 0.126087E-04 * +Number of iterations = 1 +Initial residual = 0.001329 +Final residual = 0.000062 +Average conv. rate = 0.046872 + +* 2 2 1 0.132867E-02 0.622774E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3628 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.48 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3628 Max w this run +w_max level proc position run w_max level timestep +0.796E+00 24 179 140.6deg W -33.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3629 Model time: 1979-03-17 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044339 + +* 1 1 3 0.100000E+01 0.871669E-04 * +Number of iterations = 2 +Initial residual = 0.014867 +Final residual = 0.000047 +Average conv. rate = 0.056185 + +* 1 2 2 0.148672E-01 0.469313E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104752 +Final residual = 0.000012 +Average conv. rate = 0.048545 + +* 2 1 3 0.104752E+00 0.119835E-04 * +Number of iterations = 1 +Initial residual = 0.001319 +Final residual = 0.000063 +Average conv. rate = 0.047966 + +* 2 2 1 0.131864E-02 0.632496E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3629 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.53 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3629 Max w this run +w_max level proc position run w_max level timestep +0.875E+00 25 179 140.6deg W -33.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3630 Model time: 1979-03-17 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043447 + +* 1 1 3 0.100000E+01 0.820101E-04 * +Number of iterations = 2 +Initial residual = 0.014836 +Final residual = 0.000047 +Average conv. rate = 0.056002 + +* 1 2 2 0.148361E-01 0.465295E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107631 +Final residual = 0.000012 +Average conv. rate = 0.048580 + +* 2 1 3 0.107631E+00 0.123398E-04 * +Number of iterations = 1 +Initial residual = 0.001377 +Final residual = 0.000063 +Average conv. rate = 0.045815 + +* 2 2 1 0.137749E-02 0.631100E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3630 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.59 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3630 Max w this run +w_max level proc position run w_max level timestep +0.927E+00 25 179 140.6deg W -33.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3631 Model time: 1979-03-17 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043708 + +* 1 1 3 0.100000E+01 0.835015E-04 * +Number of iterations = 2 +Initial residual = 0.014897 +Final residual = 0.000046 +Average conv. rate = 0.055663 + +* 1 2 2 0.148968E-01 0.461555E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109231 +Final residual = 0.000013 +Average conv. rate = 0.048937 + +* 2 1 3 0.109231E+00 0.128016E-04 * +Number of iterations = 1 +Initial residual = 0.001379 +Final residual = 0.000064 +Average conv. rate = 0.046368 + +* 2 2 1 0.137943E-02 0.639609E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3631 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.73 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3631 Max w this run +w_max level proc position run w_max level timestep +0.891E+00 25 179 140.6deg W -33.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3632 Model time: 1979-03-17 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043415 + +* 1 1 3 0.100000E+01 0.818287E-04 * +Number of iterations = 2 +Initial residual = 0.014860 +Final residual = 0.000046 +Average conv. rate = 0.055351 + +* 1 2 2 0.148598E-01 0.455271E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106833 +Final residual = 0.000012 +Average conv. rate = 0.048847 + +* 2 1 3 0.106833E+00 0.124516E-04 * +Number of iterations = 1 +Initial residual = 0.001336 +Final residual = 0.000065 +Average conv. rate = 0.048870 + +* 2 2 1 0.133639E-02 0.653094E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3632 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.88 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.59K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3632 Max w this run +w_max level proc position run w_max level timestep +0.803E+00 25 179 140.6deg W -33.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3633 Model time: 1979-03-17 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043370 + +* 1 1 3 0.100000E+01 0.815745E-04 * +Number of iterations = 2 +Initial residual = 0.014920 +Final residual = 0.000046 +Average conv. rate = 0.055817 + +* 1 2 2 0.149196E-01 0.464825E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107094 +Final residual = 0.000013 +Average conv. rate = 0.048880 + +* 2 1 3 0.107094E+00 0.125074E-04 * +Number of iterations = 1 +Initial residual = 0.001363 +Final residual = 0.000066 +Average conv. rate = 0.048609 + +* 2 2 1 0.136254E-02 0.662318E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3633 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.04 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.42K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3633 Max w this run +w_max level proc position run w_max level timestep +0.771E+00 25 179 140.6deg W -33.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3634 Model time: 1979-03-17 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043571 + +* 1 1 3 0.100000E+01 0.827164E-04 * +Number of iterations = 2 +Initial residual = 0.014848 +Final residual = 0.000045 +Average conv. rate = 0.055083 + +* 1 2 2 0.148484E-01 0.450526E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107063 +Final residual = 0.000012 +Average conv. rate = 0.048414 + +* 2 1 3 0.107063E+00 0.121490E-04 * +Number of iterations = 1 +Initial residual = 0.001363 +Final residual = 0.000066 +Average conv. rate = 0.048416 + +* 2 2 1 0.136315E-02 0.659983E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3634 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.18 27 56.3deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3634 Max w this run +w_max level proc position run w_max level timestep +0.807E+00 24 179 140.6deg W -33.1deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3635 Model time: 1979-03-17 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043484 + +* 1 1 3 0.100000E+01 0.822225E-04 * +Number of iterations = 2 +Initial residual = 0.014866 +Final residual = 0.000045 +Average conv. rate = 0.054976 + +* 1 2 2 0.148663E-01 0.449320E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108916 +Final residual = 0.000014 +Average conv. rate = 0.050070 + +* 2 1 3 0.108916E+00 0.136715E-04 * +Number of iterations = 1 +Initial residual = 0.001422 +Final residual = 0.000066 +Average conv. rate = 0.046662 + +* 2 2 1 0.142244E-02 0.663734E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3635 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.29 26 58.1deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.22K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3635 Max w this run +w_max level proc position run w_max level timestep +0.828E+00 25 179 140.6deg W -33.1deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3636 Model time: 1979-03-17 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042858 + +* 1 1 3 0.100000E+01 0.787243E-04 * +Number of iterations = 2 +Initial residual = 0.014791 +Final residual = 0.000045 +Average conv. rate = 0.054881 + +* 1 2 2 0.147907E-01 0.445476E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107228 +Final residual = 0.000014 +Average conv. rate = 0.051106 + +* 2 1 3 0.107228E+00 0.143124E-04 * +Number of iterations = 1 +Initial residual = 0.001479 +Final residual = 0.000065 +Average conv. rate = 0.044104 + +* 2 2 1 0.147931E-02 0.652437E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3636 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.33 26 58.1deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.22K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3636 Max w this run +w_max level proc position run w_max level timestep +0.730E+00 24 179 140.6deg W -33.1deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3637 Model time: 1979-03-17 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043784 + +* 1 1 3 0.100000E+01 0.839345E-04 * +Number of iterations = 2 +Initial residual = 0.014789 +Final residual = 0.000045 +Average conv. rate = 0.055181 + +* 1 2 2 0.147892E-01 0.450327E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107578 +Final residual = 0.000011 +Average conv. rate = 0.047094 + +* 2 1 3 0.107578E+00 0.112363E-04 * +Number of iterations = 1 +Initial residual = 0.001435 +Final residual = 0.000064 +Average conv. rate = 0.044702 + +* 2 2 1 0.143484E-02 0.641402E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3637 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.37 26 58.1deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.20K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3637 Max w this run +w_max level proc position run w_max level timestep +0.751E+00 34 165 56.2deg E -26.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3638 Model time: 1979-03-17 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043573 + +* 1 1 3 0.100000E+01 0.827278E-04 * +Number of iterations = 2 +Initial residual = 0.014708 +Final residual = 0.000045 +Average conv. rate = 0.055539 + +* 1 2 2 0.147084E-01 0.453690E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107461 +Final residual = 0.000011 +Average conv. rate = 0.046650 + +* 2 1 3 0.107461E+00 0.109097E-04 * +Number of iterations = 1 +Initial residual = 0.001413 +Final residual = 0.000063 +Average conv. rate = 0.044682 + +* 2 2 1 0.141260E-02 0.631183E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3638 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.40 26 58.1deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.17K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3638 Max w this run +w_max level proc position run w_max level timestep +0.734E+00 35 165 56.2deg E -26.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3639 Model time: 1979-03-17 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043871 + +* 1 1 3 0.100000E+01 0.844384E-04 * +Number of iterations = 2 +Initial residual = 0.014777 +Final residual = 0.000046 +Average conv. rate = 0.055602 + +* 1 2 2 0.147770E-01 0.456836E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104636 +Final residual = 0.000012 +Average conv. rate = 0.049194 + +* 2 1 3 0.104636E+00 0.124575E-04 * +Number of iterations = 1 +Initial residual = 0.001343 +Final residual = 0.000063 +Average conv. rate = 0.046687 + +* 2 2 1 0.134262E-02 0.626828E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3639 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.42 26 58.1deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3639 Max w this run +w_max level proc position run w_max level timestep +0.668E+00 35 165 56.2deg E -26.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3640 Model time: 1979-03-17 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044169 + +* 1 1 3 0.100000E+01 0.861715E-04 * +Number of iterations = 2 +Initial residual = 0.014828 +Final residual = 0.000045 +Average conv. rate = 0.054983 + +* 1 2 2 0.148280E-01 0.448265E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104285 +Final residual = 0.000014 +Average conv. rate = 0.050737 + +* 2 1 3 0.104285E+00 0.136203E-04 * +Number of iterations = 1 +Initial residual = 0.001317 +Final residual = 0.000061 +Average conv. rate = 0.045996 + +* 2 2 1 0.131733E-02 0.605920E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3640 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.45 26 58.1deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.09K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3640 Max w this run +w_max level proc position run w_max level timestep +0.646E+00 27 165 56.2deg E -25.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3641 Model time: 1979-03-17 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044605 + +* 1 1 3 0.100000E+01 0.887456E-04 * +Number of iterations = 2 +Initial residual = 0.014919 +Final residual = 0.000045 +Average conv. rate = 0.054887 + +* 1 2 2 0.149191E-01 0.449453E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109570 +Final residual = 0.000013 +Average conv. rate = 0.048876 + +* 2 1 3 0.109570E+00 0.127929E-04 * +Number of iterations = 1 +Initial residual = 0.001365 +Final residual = 0.000060 +Average conv. rate = 0.044063 + +* 2 2 1 0.136499E-02 0.601450E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3641 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.45 26 58.1deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3641 Max w this run +w_max level proc position run w_max level timestep +0.667E+00 28 165 56.2deg E -25.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3642 Model time: 1979-03-17 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043874 + +* 1 1 3 0.100000E+01 0.844530E-04 * +Number of iterations = 2 +Initial residual = 0.014856 +Final residual = 0.000044 +Average conv. rate = 0.054573 + +* 1 2 2 0.148560E-01 0.442437E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104180 +Final residual = 0.000012 +Average conv. rate = 0.048458 + +* 2 1 3 0.104180E+00 0.118541E-04 * +Number of iterations = 1 +Initial residual = 0.001286 +Final residual = 0.000060 +Average conv. rate = 0.046408 + +* 2 2 1 0.128645E-02 0.597012E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3642 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.47 26 58.1deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.97K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3642 Max w this run +w_max level proc position run w_max level timestep +0.721E+00 29 165 56.2deg E -25.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3643 Model time: 1979-03-17 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044274 + +* 1 1 3 0.100000E+01 0.867880E-04 * +Number of iterations = 2 +Initial residual = 0.014838 +Final residual = 0.000045 +Average conv. rate = 0.054846 + +* 1 2 2 0.148384E-01 0.446352E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106219 +Final residual = 0.000012 +Average conv. rate = 0.048034 + +* 2 1 3 0.106219E+00 0.117717E-04 * +Number of iterations = 1 +Initial residual = 0.001310 +Final residual = 0.000060 +Average conv. rate = 0.045497 + +* 2 2 1 0.130960E-02 0.595830E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3643 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.36 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3643 Max w this run +w_max level proc position run w_max level timestep +0.764E+00 29 165 56.2deg E -25.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3644 Model time: 1979-03-17 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044613 + +* 1 1 3 0.100000E+01 0.887965E-04 * +Number of iterations = 2 +Initial residual = 0.014716 +Final residual = 0.000043 +Average conv. rate = 0.054159 + +* 1 2 2 0.147156E-01 0.431642E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107646 +Final residual = 0.000012 +Average conv. rate = 0.048330 + +* 2 1 3 0.107646E+00 0.121522E-04 * +Number of iterations = 1 +Initial residual = 0.001320 +Final residual = 0.000059 +Average conv. rate = 0.044738 + +* 2 2 1 0.132045E-02 0.590740E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3644 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.21 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3644 Max w this run +w_max level proc position run w_max level timestep +0.716E+00 28 165 56.2deg E -25.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3645 Model time: 1979-03-17 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044647 + +* 1 1 3 0.100000E+01 0.889968E-04 * +Number of iterations = 2 +Initial residual = 0.014750 +Final residual = 0.000043 +Average conv. rate = 0.054158 + +* 1 2 2 0.147496E-01 0.432622E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108238 +Final residual = 0.000013 +Average conv. rate = 0.049013 + +* 2 1 3 0.108238E+00 0.127444E-04 * +Number of iterations = 1 +Initial residual = 0.001334 +Final residual = 0.000059 +Average conv. rate = 0.044565 + +* 2 2 1 0.133361E-02 0.594318E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3645 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.06 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3645 Max w this run +w_max level proc position run w_max level timestep +0.724E+00 35 165 56.2deg E -26.9deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3646 Model time: 1979-03-17 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043920 + +* 1 1 3 0.100000E+01 0.847183E-04 * +Number of iterations = 2 +Initial residual = 0.014734 +Final residual = 0.000044 +Average conv. rate = 0.054477 + +* 1 2 2 0.147340E-01 0.437268E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110993 +Final residual = 0.000012 +Average conv. rate = 0.047492 + +* 2 1 3 0.110993E+00 0.118894E-04 * +Number of iterations = 1 +Initial residual = 0.001376 +Final residual = 0.000060 +Average conv. rate = 0.043589 + +* 2 2 1 0.137581E-02 0.599698E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3646 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.92 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.22K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3646 Max w this run +w_max level proc position run w_max level timestep +0.808E+00 29 165 56.2deg E -25.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3647 Model time: 1979-03-17 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044844 + +* 1 1 3 0.100000E+01 0.901798E-04 * +Number of iterations = 2 +Initial residual = 0.014860 +Final residual = 0.000046 +Average conv. rate = 0.055453 + +* 1 2 2 0.148604E-01 0.456965E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108281 +Final residual = 0.000012 +Average conv. rate = 0.048094 + +* 2 1 3 0.108281E+00 0.120454E-04 * +Number of iterations = 1 +Initial residual = 0.001375 +Final residual = 0.000059 +Average conv. rate = 0.043203 + +* 2 2 1 0.137476E-02 0.593938E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3647 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.78 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.28K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3647 Max w this run +w_max level proc position run w_max level timestep +0.799E+00 28 165 56.2deg E -25.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3648 Model time: 1979-03-18 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044053 + +* 1 1 3 0.100000E+01 0.854924E-04 * +Number of iterations = 2 +Initial residual = 0.014860 +Final residual = 0.000045 +Average conv. rate = 0.054746 + +* 1 2 2 0.148595E-01 0.445366E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110065 +Final residual = 0.000012 +Average conv. rate = 0.048192 + +* 2 1 3 0.110065E+00 0.123193E-04 * +Number of iterations = 1 +Initial residual = 0.001399 +Final residual = 0.000059 +Average conv. rate = 0.041839 + +* 2 2 1 0.139866E-02 0.585181E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13055E+25 +tot dry energy 0.13056E+25 +gr( rho cal) 0.38102E+24 +KE( rho cal) 0.87932E+21 +KEu(rho cal) 0.68776E+21 +KEv(rho cal) 0.19156E+21 +KEw(rho cal) 0.12977E+16 +cvT( rho cal) 0.92371E+24 +lq ( rho cal) 0.30642E+23 +lqcf( rho cal) 0.65599E+20 +lqcl( rho cal) 0.42818E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12293E+17 KG +Initial moisture = 0.12267E+17 KG +change in moisture = 0.26436E+14 KG +Moisture added E-P in period = 0.25696E+14 KG +Error in moisture = 0.74000E+12 KG +Error as % of change = 0.27992E+01 +q ( rho cal) 0.12252E+17 +qcf( rho cal) 0.26229E+14 +qcl( rho cal) 0.15104E+14 +FINAL TOTAL ENERGY = 0.13055E+25 J/ +INITIAL TOTAL ENERGY = 0.13054E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.69161E+20 J/ +FLUXES INTO ATM OVER PERIOD = 0.71315E+20 J/ +ERROR IN ENERGY BUDGET = 0.21536E+19 J/ +TEMP CORRECTION OVER A DAY = 0.58479E-03 K +TEMPERATURE CORRECTION RATE = 0.67684E-08 K/S +FLUX CORRECTION (ATM) = 0.48865E-01 W/M2 + +Minimum theta level 1 for timestep 3648 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.65 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3648 Max w this run +w_max level proc position run w_max level timestep +0.798E+00 28 165 56.2deg E -25.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6180.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6180.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6180.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6180.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6180.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6180.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3649 Model time: 1979-03-18 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044232 + +* 1 1 3 0.100000E+01 0.865367E-04 * +Number of iterations = 2 +Initial residual = 0.014877 +Final residual = 0.000046 +Average conv. rate = 0.055321 + +* 1 2 2 0.148767E-01 0.455285E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109155 +Final residual = 0.000012 +Average conv. rate = 0.048218 + +* 2 1 3 0.109155E+00 0.122372E-04 * +Number of iterations = 1 +Initial residual = 0.001396 +Final residual = 0.000059 +Average conv. rate = 0.042424 + +* 2 2 1 0.139563E-02 0.592076E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3649 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.54 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3649 Max w this run +w_max level proc position run w_max level timestep +0.756E+00 29 165 56.2deg E -25.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3650 Model time: 1979-03-18 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043543 + +* 1 1 3 0.100000E+01 0.825583E-04 * +Number of iterations = 2 +Initial residual = 0.014773 +Final residual = 0.000044 +Average conv. rate = 0.054834 + +* 1 2 2 0.147729E-01 0.444192E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105368 +Final residual = 0.000014 +Average conv. rate = 0.050976 + +* 2 1 3 0.105368E+00 0.139572E-04 * +Number of iterations = 1 +Initial residual = 0.001372 +Final residual = 0.000059 +Average conv. rate = 0.042964 + +* 2 2 1 0.137176E-02 0.589365E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3650 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.43 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3650 Max w this run +w_max level proc position run w_max level timestep +0.781E+00 36 165 56.2deg E -26.9deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3651 Model time: 1979-03-18 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043881 + +* 1 1 3 0.100000E+01 0.844934E-04 * +Number of iterations = 2 +Initial residual = 0.014817 +Final residual = 0.000045 +Average conv. rate = 0.055279 + +* 1 2 2 0.148173E-01 0.452781E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108499 +Final residual = 0.000014 +Average conv. rate = 0.050921 + +* 2 1 3 0.108499E+00 0.143261E-04 * +Number of iterations = 1 +Initial residual = 0.001433 +Final residual = 0.000059 +Average conv. rate = 0.041168 + +* 2 2 1 0.143269E-02 0.589815E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3651 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.32 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3651 Max w this run +w_max level proc position run w_max level timestep +0.715E+00 27 165 56.2deg E -25.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3652 Model time: 1979-03-18 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043607 + +* 1 1 3 0.100000E+01 0.829191E-04 * +Number of iterations = 2 +Initial residual = 0.014898 +Final residual = 0.000043 +Average conv. rate = 0.053947 + +* 1 2 2 0.148982E-01 0.433584E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105596 +Final residual = 0.000013 +Average conv. rate = 0.049560 + +* 2 1 3 0.105596E+00 0.128542E-04 * +Number of iterations = 1 +Initial residual = 0.001394 +Final residual = 0.000059 +Average conv. rate = 0.042051 + +* 2 2 1 0.139412E-02 0.586248E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3652 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.22 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.50K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3652 Max w this run +w_max level proc position run w_max level timestep +0.784E+00 29 165 56.2deg E -25.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3653 Model time: 1979-03-18 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043790 + +* 1 1 3 0.100000E+01 0.839726E-04 * +Number of iterations = 2 +Initial residual = 0.015119 +Final residual = 0.000046 +Average conv. rate = 0.055175 + +* 1 2 2 0.151188E-01 0.460256E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106374 +Final residual = 0.000013 +Average conv. rate = 0.049543 + +* 2 1 3 0.106374E+00 0.129356E-04 * +Number of iterations = 1 +Initial residual = 0.001420 +Final residual = 0.000058 +Average conv. rate = 0.041048 + +* 2 2 1 0.142046E-02 0.583065E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3653 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.12 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3653 Max w this run +w_max level proc position run w_max level timestep +0.730E+00 27 165 56.2deg E -25.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3654 Model time: 1979-03-18 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043952 + +* 1 1 3 0.100000E+01 0.849083E-04 * +Number of iterations = 2 +Initial residual = 0.015148 +Final residual = 0.000045 +Average conv. rate = 0.054275 + +* 1 2 2 0.151476E-01 0.446215E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104782 +Final residual = 0.000014 +Average conv. rate = 0.050834 + +* 2 1 3 0.104782E+00 0.137640E-04 * +Number of iterations = 1 +Initial residual = 0.001367 +Final residual = 0.000058 +Average conv. rate = 0.042110 + +* 2 2 1 0.136729E-02 0.575762E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3654 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.02 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.70K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3654 Max w this run +w_max level proc position run w_max level timestep +0.700E+00 28 165 56.2deg E -25.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3655 Model time: 1979-03-18 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043664 + +* 1 1 3 0.100000E+01 0.832458E-04 * +Number of iterations = 2 +Initial residual = 0.015118 +Final residual = 0.000044 +Average conv. rate = 0.053761 + +* 1 2 2 0.151184E-01 0.436959E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105791 +Final residual = 0.000014 +Average conv. rate = 0.050405 + +* 2 1 3 0.105791E+00 0.135477E-04 * +Number of iterations = 1 +Initial residual = 0.001358 +Final residual = 0.000058 +Average conv. rate = 0.042786 + +* 2 2 1 0.135755E-02 0.580843E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3655 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.92 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.81K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3655 Max w this run +w_max level proc position run w_max level timestep +0.727E+00 28 165 56.2deg E -25.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3656 Model time: 1979-03-18 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043621 + +* 1 1 3 0.100000E+01 0.830034E-04 * +Number of iterations = 2 +Initial residual = 0.014945 +Final residual = 0.000043 +Average conv. rate = 0.053698 + +* 1 2 2 0.149448E-01 0.430929E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102625 +Final residual = 0.000014 +Average conv. rate = 0.050994 + +* 2 1 3 0.102625E+00 0.136088E-04 * +Number of iterations = 1 +Initial residual = 0.001320 +Final residual = 0.000058 +Average conv. rate = 0.043825 + +* 2 2 1 0.132040E-02 0.578663E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3656 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.81 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3656 Max w this run +w_max level proc position run w_max level timestep +0.791E+00 29 165 56.2deg E -25.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3657 Model time: 1979-03-18 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042925 + +* 1 1 3 0.100000E+01 0.790898E-04 * +Number of iterations = 2 +Initial residual = 0.014938 +Final residual = 0.000043 +Average conv. rate = 0.053568 + +* 1 2 2 0.149382E-01 0.428665E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103671 +Final residual = 0.000012 +Average conv. rate = 0.048492 + +* 2 1 3 0.103671E+00 0.118217E-04 * +Number of iterations = 1 +Initial residual = 0.001350 +Final residual = 0.000059 +Average conv. rate = 0.043415 + +* 2 2 1 0.135013E-02 0.586167E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3657 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.71 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3657 Max w this run +w_max level proc position run w_max level timestep +0.856E+00 29 165 56.2deg E -25.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3658 Model time: 1979-03-18 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043476 + +* 1 1 3 0.100000E+01 0.821791E-04 * +Number of iterations = 2 +Initial residual = 0.014941 +Final residual = 0.000042 +Average conv. rate = 0.053225 + +* 1 2 2 0.149406E-01 0.423251E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106103 +Final residual = 0.000012 +Average conv. rate = 0.048387 + +* 2 1 3 0.106103E+00 0.120204E-04 * +Number of iterations = 1 +Initial residual = 0.001391 +Final residual = 0.000059 +Average conv. rate = 0.042230 + +* 2 2 1 0.139144E-02 0.587603E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3658 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.60 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3658 Max w this run +w_max level proc position run w_max level timestep +0.784E+00 28 165 56.2deg E -25.6deg S 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3659 Model time: 1979-03-18 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043428 + +* 1 1 3 0.100000E+01 0.819037E-04 * +Number of iterations = 2 +Initial residual = 0.014877 +Final residual = 0.000043 +Average conv. rate = 0.053646 + +* 1 2 2 0.148773E-01 0.428153E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102677 +Final residual = 0.000012 +Average conv. rate = 0.048897 + +* 2 1 3 0.102677E+00 0.120039E-04 * +Number of iterations = 1 +Initial residual = 0.001350 +Final residual = 0.000057 +Average conv. rate = 0.042257 + +* 2 2 1 0.135019E-02 0.570546E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3659 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.50 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.22K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3659 Max w this run +w_max level proc position run w_max level timestep +0.656E+00 29 165 56.2deg E -25.6deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3660 Model time: 1979-03-18 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043499 + +* 1 1 3 0.100000E+01 0.823099E-04 * +Number of iterations = 2 +Initial residual = 0.014784 +Final residual = 0.000043 +Average conv. rate = 0.054024 + +* 1 2 2 0.147836E-01 0.431476E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101828 +Final residual = 0.000012 +Average conv. rate = 0.048359 + +* 2 1 3 0.101828E+00 0.115159E-04 * +Number of iterations = 1 +Initial residual = 0.001344 +Final residual = 0.000056 +Average conv. rate = 0.041613 + +* 2 2 1 0.134431E-02 0.559403E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3660 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.39 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3660 Max w this run +w_max level proc position run w_max level timestep +0.604E+00 28 165 56.2deg E -25.6deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3661 Model time: 1979-03-18 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043963 + +* 1 1 3 0.100000E+01 0.849700E-04 * +Number of iterations = 2 +Initial residual = 0.014830 +Final residual = 0.000044 +Average conv. rate = 0.054175 + +* 1 2 2 0.148301E-01 0.435247E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103868 +Final residual = 0.000011 +Average conv. rate = 0.047494 + +* 2 1 3 0.103868E+00 0.111274E-04 * +Number of iterations = 1 +Initial residual = 0.001353 +Final residual = 0.000056 +Average conv. rate = 0.041503 + +* 2 2 1 0.135281E-02 0.561457E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3661 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.29 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3661 Max w this run +w_max level proc position run w_max level timestep +0.571E+00 20 331 133.1deg E 24.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3662 Model time: 1979-03-18 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043232 + +* 1 1 3 0.100000E+01 0.807999E-04 * +Number of iterations = 2 +Initial residual = 0.014777 +Final residual = 0.000044 +Average conv. rate = 0.054360 + +* 1 2 2 0.147771E-01 0.436669E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103002 +Final residual = 0.000011 +Average conv. rate = 0.047530 + +* 2 1 3 0.103002E+00 0.110601E-04 * +Number of iterations = 1 +Initial residual = 0.001362 +Final residual = 0.000057 +Average conv. rate = 0.041865 + +* 2 2 1 0.136173E-02 0.570083E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3662 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.19 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3662 Max w this run +w_max level proc position run w_max level timestep +0.561E+00 21 331 133.1deg E 24.4deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3663 Model time: 1979-03-18 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043318 + +* 1 1 3 0.100000E+01 0.812833E-04 * +Number of iterations = 2 +Initial residual = 0.014779 +Final residual = 0.000044 +Average conv. rate = 0.054652 + +* 1 2 2 0.147794E-01 0.441436E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103294 +Final residual = 0.000012 +Average conv. rate = 0.048123 + +* 2 1 3 0.103294E+00 0.115113E-04 * +Number of iterations = 1 +Initial residual = 0.001347 +Final residual = 0.000057 +Average conv. rate = 0.042573 + +* 2 2 1 0.134715E-02 0.573521E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3663 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.10 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3663 Max w this run +w_max level proc position run w_max level timestep +0.506E+00 23 332 135.0deg E 25.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3664 Model time: 1979-03-18 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043298 + +* 1 1 3 0.100000E+01 0.811715E-04 * +Number of iterations = 2 +Initial residual = 0.014754 +Final residual = 0.000044 +Average conv. rate = 0.054842 + +* 1 2 2 0.147543E-01 0.443761E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.102703 +Final residual = 0.000100 +Average conv. rate = 0.031167 + +* 2 1 2 0.102703E+00 0.997630E-04 * +Number of iterations = 1 +Initial residual = 0.001361 +Final residual = 0.000059 +Average conv. rate = 0.043034 + +* 2 2 1 0.136097E-02 0.585680E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3664 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.02 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.70K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3664 Max w this run +w_max level proc position run w_max level timestep +0.527E+00 23 332 135.0deg E 25.6deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3665 Model time: 1979-03-18 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042858 + +* 1 1 3 0.100000E+01 0.787210E-04 * +Number of iterations = 2 +Initial residual = 0.014864 +Final residual = 0.000045 +Average conv. rate = 0.055157 + +* 1 2 2 0.148639E-01 0.452208E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.105157 +Final residual = 0.000099 +Average conv. rate = 0.030649 + +* 2 1 2 0.105157E+00 0.987809E-04 * +Number of iterations = 1 +Initial residual = 0.001368 +Final residual = 0.000059 +Average conv. rate = 0.042787 + +* 2 2 1 0.136815E-02 0.585384E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3665 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.95 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.81K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3665 Max w this run +w_max level proc position run w_max level timestep +0.549E+00 23 332 135.0deg E 25.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3666 Model time: 1979-03-18 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042923 + +* 1 1 3 0.100000E+01 0.790780E-04 * +Number of iterations = 2 +Initial residual = 0.014850 +Final residual = 0.000046 +Average conv. rate = 0.055558 + +* 1 2 2 0.148505E-01 0.458392E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.104063 +Final residual = 0.000099 +Average conv. rate = 0.030888 + +* 2 1 2 0.104063E+00 0.992811E-04 * +Number of iterations = 1 +Initial residual = 0.001363 +Final residual = 0.000059 +Average conv. rate = 0.043063 + +* 2 2 1 0.136328E-02 0.587075E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3666 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.88 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3666 Max w this run +w_max level proc position run w_max level timestep +0.525E+00 24 332 135.0deg E 25.6deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3667 Model time: 1979-03-18 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043333 + +* 1 1 3 0.100000E+01 0.813672E-04 * +Number of iterations = 2 +Initial residual = 0.014865 +Final residual = 0.000047 +Average conv. rate = 0.056080 + +* 1 2 2 0.148649E-01 0.467497E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.106387 +Final residual = 0.000099 +Average conv. rate = 0.030459 + +* 2 1 2 0.106387E+00 0.986992E-04 * +Number of iterations = 1 +Initial residual = 0.001381 +Final residual = 0.000059 +Average conv. rate = 0.042581 + +* 2 2 1 0.138062E-02 0.587890E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3667 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.83 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3667 Max w this run +w_max level proc position run w_max level timestep +0.480E+00 36 218 65.6deg W -14.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3668 Model time: 1979-03-18 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043265 + +* 1 1 3 0.100000E+01 0.809888E-04 * +Number of iterations = 2 +Initial residual = 0.014810 +Final residual = 0.000047 +Average conv. rate = 0.056329 + +* 1 2 2 0.148103E-01 0.469928E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.107327 +Final residual = 0.000011 +Average conv. rate = 0.047333 + +* 2 1 3 0.107327E+00 0.113818E-04 * +Number of iterations = 1 +Initial residual = 0.001420 +Final residual = 0.000059 +Average conv. rate = 0.041500 + +* 2 2 1 0.142003E-02 0.589311E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3668 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.80 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3668 Max w this run +w_max level proc position run w_max level timestep +0.495E+00 25 218 65.6deg W -14.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3669 Model time: 1979-03-18 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042940 + +* 1 1 3 0.100000E+01 0.791740E-04 * +Number of iterations = 2 +Initial residual = 0.014872 +Final residual = 0.000048 +Average conv. rate = 0.056613 + +* 1 2 2 0.148715E-01 0.476629E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.109736 +Final residual = 0.000011 +Average conv. rate = 0.047110 + +* 2 1 3 0.109736E+00 0.114733E-04 * +Number of iterations = 1 +Initial residual = 0.001440 +Final residual = 0.000059 +Average conv. rate = 0.040934 + +* 2 2 1 0.144025E-02 0.589549E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3669 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.78 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.37K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3669 Max w this run +w_max level proc position run w_max level timestep +0.590E+00 27 218 65.6deg W -14.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3670 Model time: 1979-03-18 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042770 + +* 1 1 3 0.100000E+01 0.782364E-04 * +Number of iterations = 2 +Initial residual = 0.014843 +Final residual = 0.000048 +Average conv. rate = 0.056666 + +* 1 2 2 0.148432E-01 0.476628E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.110420 +Final residual = 0.000100 +Average conv. rate = 0.030088 + +* 2 1 2 0.110420E+00 0.999635E-04 * +Number of iterations = 1 +Initial residual = 0.001449 +Final residual = 0.000060 +Average conv. rate = 0.041446 + +* 2 2 1 0.144945E-02 0.600734E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3670 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.79 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3670 Max w this run +w_max level proc position run w_max level timestep +0.643E+00 27 218 65.6deg W -14.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3671 Model time: 1979-03-18 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042825 + +* 1 1 3 0.100000E+01 0.785387E-04 * +Number of iterations = 2 +Initial residual = 0.014836 +Final residual = 0.000048 +Average conv. rate = 0.056645 + +* 1 2 2 0.148359E-01 0.476025E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.114012 +Final residual = 0.000010 +Average conv. rate = 0.044205 + +* 2 1 3 0.114012E+00 0.984834E-05 * +Number of iterations = 1 +Initial residual = 0.001485 +Final residual = 0.000061 +Average conv. rate = 0.041398 + +* 2 2 1 0.148542E-02 0.614942E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3671 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.83 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3671 Max w this run +w_max level proc position run w_max level timestep +0.756E+00 29 218 65.6deg W -14.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3672 Model time: 1979-03-18 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043247 + +* 1 1 3 0.100000E+01 0.808867E-04 * +Number of iterations = 2 +Initial residual = 0.014742 +Final residual = 0.000048 +Average conv. rate = 0.056989 + +* 1 2 2 0.147415E-01 0.478760E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.114493 +Final residual = 0.000010 +Average conv. rate = 0.044611 + +* 2 1 3 0.114493E+00 0.101648E-04 * +Number of iterations = 1 +Initial residual = 0.001517 +Final residual = 0.000063 +Average conv. rate = 0.041217 + +* 2 2 1 0.151741E-02 0.625427E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3672 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.89 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.82K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3672 Max w this run +w_max level proc position run w_max level timestep +0.807E+00 30 218 65.6deg W -14.4deg S 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3673 Model time: 1979-03-18 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043807 + +* 1 1 3 0.100000E+01 0.840681E-04 * +Number of iterations = 2 +Initial residual = 0.014767 +Final residual = 0.000048 +Average conv. rate = 0.056791 + +* 1 2 2 0.147666E-01 0.476249E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.114767 +Final residual = 0.000010 +Average conv. rate = 0.044849 + +* 2 1 3 0.114767E+00 0.103529E-04 * +Number of iterations = 1 +Initial residual = 0.001578 +Final residual = 0.000062 +Average conv. rate = 0.039592 + +* 2 2 1 0.157768E-02 0.624634E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3673 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.00 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3673 Max w this run +w_max level proc position run w_max level timestep +0.781E+00 32 218 65.6deg W -14.4deg S 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3674 Model time: 1979-03-18 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043439 + +* 1 1 3 0.100000E+01 0.819652E-04 * +Number of iterations = 2 +Initial residual = 0.014621 +Final residual = 0.000047 +Average conv. rate = 0.056653 + +* 1 2 2 0.146212E-01 0.469275E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.110975 +Final residual = 0.000010 +Average conv. rate = 0.045307 + +* 2 1 3 0.110975E+00 0.103212E-04 * +Number of iterations = 1 +Initial residual = 0.001528 +Final residual = 0.000063 +Average conv. rate = 0.041466 + +* 2 2 1 0.152752E-02 0.633397E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3674 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.26 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.28K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3674 Max w this run +w_max level proc position run w_max level timestep +0.667E+00 23 332 138.8deg E 26.9deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3675 Model time: 1979-03-18 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043093 + +* 1 1 3 0.100000E+01 0.800243E-04 * +Number of iterations = 2 +Initial residual = 0.014604 +Final residual = 0.000047 +Average conv. rate = 0.056667 + +* 1 2 2 0.146042E-01 0.468957E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.112320 +Final residual = 0.000012 +Average conv. rate = 0.047264 + +* 2 1 3 0.112320E+00 0.118592E-04 * +Number of iterations = 1 +Initial residual = 0.001566 +Final residual = 0.000064 +Average conv. rate = 0.040627 + +* 2 2 1 0.156558E-02 0.636047E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3675 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.54 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3675 Max w this run +w_max level proc position run w_max level timestep +0.639E+00 22 332 138.8deg E 26.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3676 Model time: 1979-03-18 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043380 + +* 1 1 3 0.100000E+01 0.816318E-04 * +Number of iterations = 2 +Initial residual = 0.014509 +Final residual = 0.000046 +Average conv. rate = 0.056596 + +* 1 2 2 0.145089E-01 0.464728E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.108793 +Final residual = 0.000011 +Average conv. rate = 0.046514 + +* 2 1 3 0.108793E+00 0.109484E-04 * +Number of iterations = 1 +Initial residual = 0.001505 +Final residual = 0.000062 +Average conv. rate = 0.041213 + +* 2 2 1 0.150478E-02 0.620165E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3676 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.82 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3676 Max w this run +w_max level proc position run w_max level timestep +0.579E+00 23 332 138.8deg E 26.9deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3677 Model time: 1979-03-18 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043131 + +* 1 1 3 0.100000E+01 0.802371E-04 * +Number of iterations = 2 +Initial residual = 0.014552 +Final residual = 0.000047 +Average conv. rate = 0.056680 + +* 1 2 2 0.145522E-01 0.467503E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.106140 +Final residual = 0.000012 +Average conv. rate = 0.047899 + +* 2 1 3 0.106140E+00 0.116645E-04 * +Number of iterations = 1 +Initial residual = 0.001438 +Final residual = 0.000061 +Average conv. rate = 0.042679 + +* 2 2 1 0.143795E-02 0.613699E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3677 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.10 26 61.9deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.69K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3677 Max w this run +w_max level proc position run w_max level timestep +0.493E+00 80 419 33.8deg E 66.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3678 Model time: 1979-03-18 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043106 + +* 1 1 3 0.100000E+01 0.800985E-04 * +Number of iterations = 2 +Initial residual = 0.014601 +Final residual = 0.000047 +Average conv. rate = 0.056516 + +* 1 2 2 0.146012E-01 0.466371E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104183 +Final residual = 0.000011 +Average conv. rate = 0.047427 + +* 2 1 3 0.104183E+00 0.111140E-04 * +Number of iterations = 1 +Initial residual = 0.001375 +Final residual = 0.000060 +Average conv. rate = 0.043753 + +* 2 2 1 0.137468E-02 0.601471E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3678 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.26 26 61.9deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3678 Max w this run +w_max level proc position run w_max level timestep +0.514E+00 22 332 140.6deg E 28.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3679 Model time: 1979-03-18 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043000 + +* 1 1 3 0.100000E+01 0.795093E-04 * +Number of iterations = 2 +Initial residual = 0.014711 +Final residual = 0.000047 +Average conv. rate = 0.056393 + +* 1 2 2 0.147110E-01 0.467830E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103964 +Final residual = 0.000011 +Average conv. rate = 0.046955 + +* 2 1 3 0.103964E+00 0.107629E-04 * +Number of iterations = 1 +Initial residual = 0.001330 +Final residual = 0.000059 +Average conv. rate = 0.044058 + +* 2 2 1 0.132971E-02 0.585845E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3679 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.46 26 61.9deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3679 Max w this run +w_max level proc position run w_max level timestep +0.536E+00 23 332 140.6deg E 28.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3680 Model time: 1979-03-18 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042840 + +* 1 1 3 0.100000E+01 0.786245E-04 * +Number of iterations = 2 +Initial residual = 0.014710 +Final residual = 0.000046 +Average conv. rate = 0.056107 + +* 1 2 2 0.147096E-01 0.463061E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103052 +Final residual = 0.000011 +Average conv. rate = 0.047409 + +* 2 1 3 0.103052E+00 0.109812E-04 * +Number of iterations = 1 +Initial residual = 0.001289 +Final residual = 0.000058 +Average conv. rate = 0.044629 + +* 2 2 1 0.128853E-02 0.575065E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3680 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.68 26 61.9deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3680 Max w this run +w_max level proc position run w_max level timestep +0.521E+00 80 418 30.0deg E 65.6deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3681 Model time: 1979-03-18 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043298 + +* 1 1 3 0.100000E+01 0.811720E-04 * +Number of iterations = 2 +Initial residual = 0.014822 +Final residual = 0.000046 +Average conv. rate = 0.055948 + +* 1 2 2 0.148220E-01 0.463958E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.101229 +Final residual = 0.000100 +Average conv. rate = 0.031420 + +* 2 1 2 0.101229E+00 0.999367E-04 * +Number of iterations = 1 +Initial residual = 0.001259 +Final residual = 0.000057 +Average conv. rate = 0.045451 + +* 2 2 1 0.125897E-02 0.572208E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3681 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.79 26 65.6deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3681 Max w this run +w_max level proc position run w_max level timestep +0.550E+00 80 418 30.0deg E 65.6deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3682 Model time: 1979-03-18 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043180 + +* 1 1 3 0.100000E+01 0.805100E-04 * +Number of iterations = 2 +Initial residual = 0.014807 +Final residual = 0.000045 +Average conv. rate = 0.055336 + +* 1 2 2 0.148075E-01 0.453414E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100393 +Final residual = 0.000012 +Average conv. rate = 0.049218 + +* 2 1 3 0.100393E+00 0.119695E-04 * +Number of iterations = 1 +Initial residual = 0.001234 +Final residual = 0.000055 +Average conv. rate = 0.044884 + +* 2 2 1 0.123430E-02 0.553998E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3682 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.87 26 65.6deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.60K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3682 Max w this run +w_max level proc position run w_max level timestep +0.632E+00 22 332 142.5deg E 28.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3683 Model time: 1979-03-18 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043146 + +* 1 1 3 0.100000E+01 0.803205E-04 * +Number of iterations = 2 +Initial residual = 0.014809 +Final residual = 0.000046 +Average conv. rate = 0.055475 + +* 1 2 2 0.148091E-01 0.455741E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101007 +Final residual = 0.000013 +Average conv. rate = 0.050387 + +* 2 1 3 0.101007E+00 0.129210E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000055 +Average conv. rate = 0.044918 + +* 2 2 1 0.122182E-02 0.548816E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3683 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.96 26 65.6deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.72K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3683 Max w this run +w_max level proc position run w_max level timestep +0.729E+00 23 332 142.5deg E 28.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3684 Model time: 1979-03-18 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043415 + +* 1 1 3 0.100000E+01 0.818336E-04 * +Number of iterations = 2 +Initial residual = 0.014682 +Final residual = 0.000048 +Average conv. rate = 0.057085 + +* 1 2 2 0.146822E-01 0.478443E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101060 +Final residual = 0.000011 +Average conv. rate = 0.047101 + +* 2 1 3 0.101060E+00 0.105601E-04 * +Number of iterations = 1 +Initial residual = 0.001227 +Final residual = 0.000054 +Average conv. rate = 0.044031 + +* 2 2 1 0.122748E-02 0.540476E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3684 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.05 26 65.6deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3684 Max w this run +w_max level proc position run w_max level timestep +0.778E+00 23 332 142.5deg E 28.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3685 Model time: 1979-03-18 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044031 + +* 1 1 3 0.100000E+01 0.853626E-04 * +Number of iterations = 2 +Initial residual = 0.014679 +Final residual = 0.000046 +Average conv. rate = 0.056111 + +* 1 2 2 0.146786E-01 0.462144E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102107 +Final residual = 0.000014 +Average conv. rate = 0.051018 + +* 2 1 3 0.102107E+00 0.135592E-04 * +Number of iterations = 1 +Initial residual = 0.001237 +Final residual = 0.000054 +Average conv. rate = 0.043664 + +* 2 2 1 0.123667E-02 0.539981E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3685 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.13 26 65.6deg W -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3685 Max w this run +w_max level proc position run w_max level timestep +0.769E+00 24 332 142.5deg E 28.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3686 Model time: 1979-03-18 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043562 + +* 1 1 3 0.100000E+01 0.826662E-04 * +Number of iterations = 2 +Initial residual = 0.014700 +Final residual = 0.000046 +Average conv. rate = 0.055788 + +* 1 2 2 0.146999E-01 0.457498E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.099765 +Final residual = 0.000099 +Average conv. rate = 0.031566 + +* 2 1 2 0.997654E-01 0.994102E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000053 +Average conv. rate = 0.045028 + +* 2 2 1 0.118800E-02 0.534935E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3686 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.19 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.17K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3686 Max w this run +w_max level proc position run w_max level timestep +0.704E+00 24 332 142.5deg E 28.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3687 Model time: 1979-03-18 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043584 + +* 1 1 3 0.100000E+01 0.827883E-04 * +Number of iterations = 2 +Initial residual = 0.014834 +Final residual = 0.000049 +Average conv. rate = 0.057370 + +* 1 2 2 0.148339E-01 0.488225E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.101566 +Final residual = 0.000100 +Average conv. rate = 0.031341 + +* 2 1 2 0.101566E+00 0.997653E-04 * +Number of iterations = 1 +Initial residual = 0.001212 +Final residual = 0.000053 +Average conv. rate = 0.044117 + +* 2 2 1 0.121200E-02 0.534698E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3687 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.21 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.41K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3687 Max w this run +w_max level proc position run w_max level timestep +0.610E+00 24 332 142.5deg E 28.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3688 Model time: 1979-03-18 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044390 + +* 1 1 3 0.100000E+01 0.874665E-04 * +Number of iterations = 2 +Initial residual = 0.014780 +Final residual = 0.000048 +Average conv. rate = 0.056848 + +* 1 2 2 0.147804E-01 0.477660E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.101279 +Final residual = 0.000100 +Average conv. rate = 0.031376 + +* 2 1 2 0.101279E+00 0.997033E-04 * +Number of iterations = 1 +Initial residual = 0.001218 +Final residual = 0.000054 +Average conv. rate = 0.044219 + +* 2 2 1 0.121788E-02 0.538534E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3688 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.23 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.65K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3688 Max w this run +w_max level proc position run w_max level timestep +0.540E+00 20 332 144.4deg E 28.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3689 Model time: 1979-03-18 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043806 + +* 1 1 3 0.100000E+01 0.840629E-04 * +Number of iterations = 2 +Initial residual = 0.014734 +Final residual = 0.000049 +Average conv. rate = 0.057667 + +* 1 2 2 0.147343E-01 0.489990E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103808 +Final residual = 0.000011 +Average conv. rate = 0.046848 + +* 2 1 3 0.103808E+00 0.106731E-04 * +Number of iterations = 1 +Initial residual = 0.001249 +Final residual = 0.000054 +Average conv. rate = 0.043335 + +* 2 2 1 0.124876E-02 0.541147E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3689 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.23 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3689 Max w this run +w_max level proc position run w_max level timestep +0.605E+00 20 332 144.4deg E 28.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3690 Model time: 1979-03-18 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043199 + +* 1 1 3 0.100000E+01 0.806185E-04 * +Number of iterations = 2 +Initial residual = 0.014629 +Final residual = 0.000049 +Average conv. rate = 0.057901 + +* 1 2 2 0.146288E-01 0.490441E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103248 +Final residual = 0.000010 +Average conv. rate = 0.046022 + +* 2 1 3 0.103248E+00 0.100642E-04 * +Number of iterations = 1 +Initial residual = 0.001247 +Final residual = 0.000055 +Average conv. rate = 0.044156 + +* 2 2 1 0.124707E-02 0.550652E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3690 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.21 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.12K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3690 Max w this run +w_max level proc position run w_max level timestep +0.666E+00 20 332 144.4deg E 28.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3691 Model time: 1979-03-18 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043852 + +* 1 1 3 0.100000E+01 0.843266E-04 * +Number of iterations = 2 +Initial residual = 0.014617 +Final residual = 0.000047 +Average conv. rate = 0.056547 + +* 1 2 2 0.146170E-01 0.467385E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.104456 +Final residual = 0.000010 +Average conv. rate = 0.045659 + +* 2 1 3 0.104456E+00 0.994302E-05 * +Number of iterations = 1 +Initial residual = 0.001271 +Final residual = 0.000056 +Average conv. rate = 0.044262 + +* 2 2 1 0.127066E-02 0.562425E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3691 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.19 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.53K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3691 Max w this run +w_max level proc position run w_max level timestep +0.675E+00 20 332 144.4deg E 28.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3692 Model time: 1979-03-18 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043775 + +* 1 1 3 0.100000E+01 0.838817E-04 * +Number of iterations = 2 +Initial residual = 0.014535 +Final residual = 0.000047 +Average conv. rate = 0.056796 + +* 1 2 2 0.145354E-01 0.468880E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103181 +Final residual = 0.000012 +Average conv. rate = 0.048766 + +* 2 1 3 0.103181E+00 0.119663E-04 * +Number of iterations = 1 +Initial residual = 0.001270 +Final residual = 0.000055 +Average conv. rate = 0.043582 + +* 2 2 1 0.127004E-02 0.553504E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3692 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.09 26 61.9deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.73K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3692 Max w this run +w_max level proc position run w_max level timestep +0.656E+00 21 332 144.4deg E 28.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3693 Model time: 1979-03-18 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043934 + +* 1 1 3 0.100000E+01 0.848012E-04 * +Number of iterations = 2 +Initial residual = 0.014648 +Final residual = 0.000049 +Average conv. rate = 0.057588 + +* 1 2 2 0.146479E-01 0.485783E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103987 +Final residual = 0.000012 +Average conv. rate = 0.048229 + +* 2 1 3 0.103987E+00 0.116658E-04 * +Number of iterations = 1 +Initial residual = 0.001240 +Final residual = 0.000054 +Average conv. rate = 0.043409 + +* 2 2 1 0.124019E-02 0.538358E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3693 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.94 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.45K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3693 Max w this run +w_max level proc position run w_max level timestep +0.606E+00 22 332 144.4deg E 28.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3694 Model time: 1979-03-18 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043768 + +* 1 1 3 0.100000E+01 0.838412E-04 * +Number of iterations = 2 +Initial residual = 0.014664 +Final residual = 0.000047 +Average conv. rate = 0.056664 + +* 1 2 2 0.146644E-01 0.470847E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102987 +Final residual = 0.000011 +Average conv. rate = 0.047609 + +* 2 1 3 0.102987E+00 0.111134E-04 * +Number of iterations = 1 +Initial residual = 0.001225 +Final residual = 0.000053 +Average conv. rate = 0.042900 + +* 2 2 1 0.122545E-02 0.525716E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3694 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.78 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3694 Max w this run +w_max level proc position run w_max level timestep +0.492E+00 81 419 35.6deg E 66.9deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3695 Model time: 1979-03-18 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044024 + +* 1 1 3 0.100000E+01 0.853247E-04 * +Number of iterations = 2 +Initial residual = 0.014736 +Final residual = 0.000048 +Average conv. rate = 0.057192 + +* 1 2 2 0.147360E-01 0.482009E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102218 +Final residual = 0.000011 +Average conv. rate = 0.047984 + +* 2 1 3 0.102218E+00 0.112932E-04 * +Number of iterations = 1 +Initial residual = 0.001217 +Final residual = 0.000052 +Average conv. rate = 0.042839 + +* 2 2 1 0.121683E-02 0.521280E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3695 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.61 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.34K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3695 Max w this run +w_max level proc position run w_max level timestep +0.498E+00 22 333 146.3deg E 29.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3696 Model time: 1979-03-19 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043614 + +* 1 1 3 0.100000E+01 0.829631E-04 * +Number of iterations = 2 +Initial residual = 0.014608 +Final residual = 0.000048 +Average conv. rate = 0.057306 + +* 1 2 2 0.146075E-01 0.479710E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100808 +Final residual = 0.000013 +Average conv. rate = 0.050090 + +* 2 1 3 0.100808E+00 0.126689E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000052 +Average conv. rate = 0.042852 + +* 2 2 1 0.120799E-02 0.517650E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51418E+19 +Tot energy 0.13057E+25 +tot dry energy 0.13058E+25 +gr( rho cal) 0.38107E+24 +KE( rho cal) 0.88382E+21 +KEu(rho cal) 0.69127E+21 +KEv(rho cal) 0.19255E+21 +KEw(rho cal) 0.12144E+16 +cvT( rho cal) 0.92384E+24 +lq ( rho cal) 0.30614E+23 +lqcf( rho cal) 0.64646E+20 +lqcl( rho cal) 0.45256E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12283E+17 KG +Initial moisture = 0.12293E+17 KG +change in moisture = -0.10375E+14 KG +Moisture added E-P in period = -0.10310E+14 KG +Error in moisture = -0.65082E+11 KG +Error as % of change = 0.62727E+00 +q ( rho cal) 0.12241E+17 +qcf( rho cal) 0.25848E+14 +qcl( rho cal) 0.15963E+14 +FINAL TOTAL ENERGY = 0.13057E+25 J/ +INITIAL TOTAL ENERGY = 0.13055E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.18749E+21 J/ +FLUXES INTO ATM OVER PERIOD = 0.19047E+21 J/ +ERROR IN ENERGY BUDGET = 0.29788E+19 J/ +TEMP CORRECTION OVER A DAY = 0.80884E-03 K +TEMPERATURE CORRECTION RATE = 0.93616E-08 K/S +FLUX CORRECTION (ATM) = 0.67588E-01 W/M2 + +Minimum theta level 1 for timestep 3696 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.44 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.33K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3696 Max w this run +w_max level proc position run w_max level timestep +0.524E+00 22 333 146.3deg E 29.4deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6156.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6156.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6156.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6156.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6156.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6156.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3697 Model time: 1979-03-19 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044070 + +* 1 1 3 0.100000E+01 0.855941E-04 * +Number of iterations = 2 +Initial residual = 0.014605 +Final residual = 0.000048 +Average conv. rate = 0.057468 + +* 1 2 2 0.146050E-01 0.482336E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100691 +Final residual = 0.000010 +Average conv. rate = 0.046677 + +* 2 1 3 0.100691E+00 0.102402E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000051 +Average conv. rate = 0.042622 + +* 2 2 1 0.120571E-02 0.513896E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3697 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.28 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3697 Max w this run +w_max level proc position run w_max level timestep +0.538E+00 23 333 148.1deg E 29.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3698 Model time: 1979-03-19 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044285 + +* 1 1 3 0.100000E+01 0.868476E-04 * +Number of iterations = 2 +Initial residual = 0.014543 +Final residual = 0.000048 +Average conv. rate = 0.057440 + +* 1 2 2 0.145426E-01 0.479803E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.100057 +Final residual = 0.000100 +Average conv. rate = 0.031552 + +* 2 1 2 0.100057E+00 0.996089E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000052 +Average conv. rate = 0.043450 + +* 2 2 1 0.120636E-02 0.524161E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3698 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.12 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.40K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3698 Max w this run +w_max level proc position run w_max level timestep +0.622E+00 23 333 148.1deg E 29.4deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3699 Model time: 1979-03-19 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043480 + +* 1 1 3 0.100000E+01 0.821990E-04 * +Number of iterations = 2 +Initial residual = 0.014572 +Final residual = 0.000048 +Average conv. rate = 0.057479 + +* 1 2 2 0.145717E-01 0.481428E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.100542 +Final residual = 0.000099 +Average conv. rate = 0.031433 + +* 2 1 2 0.100542E+00 0.993393E-04 * +Number of iterations = 1 +Initial residual = 0.001225 +Final residual = 0.000053 +Average conv. rate = 0.043090 + +* 2 2 1 0.122541E-02 0.528032E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3699 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.98 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.52K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3699 Max w this run +w_max level proc position run w_max level timestep +0.651E+00 23 333 148.1deg E 29.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3700 Model time: 1979-03-19 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043394 + +* 1 1 3 0.100000E+01 0.817141E-04 * +Number of iterations = 2 +Initial residual = 0.014541 +Final residual = 0.000049 +Average conv. rate = 0.057986 + +* 1 2 2 0.145406E-01 0.488913E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.101132 +Final residual = 0.000100 +Average conv. rate = 0.031393 + +* 2 1 2 0.101132E+00 0.996680E-04 * +Number of iterations = 1 +Initial residual = 0.001227 +Final residual = 0.000053 +Average conv. rate = 0.043349 + +* 2 2 1 0.122684E-02 0.531824E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3700 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.85 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3700 Max w this run +w_max level proc position run w_max level timestep +0.641E+00 22 333 148.1deg E 29.4deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3701 Model time: 1979-03-19 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043440 + +* 1 1 3 0.100000E+01 0.819742E-04 * +Number of iterations = 2 +Initial residual = 0.014646 +Final residual = 0.000048 +Average conv. rate = 0.057047 + +* 1 2 2 0.146458E-01 0.476632E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.099293 +Final residual = 0.000099 +Average conv. rate = 0.031635 + +* 2 1 2 0.992933E-01 0.993701E-04 * +Number of iterations = 1 +Initial residual = 0.001221 +Final residual = 0.000053 +Average conv. rate = 0.043728 + +* 2 2 1 0.122122E-02 0.534014E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3701 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.73 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3701 Max w this run +w_max level proc position run w_max level timestep +0.665E+00 22 333 148.1deg E 29.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3702 Model time: 1979-03-19 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042495 + +* 1 1 3 0.100000E+01 0.767380E-04 * +Number of iterations = 2 +Initial residual = 0.014621 +Final residual = 0.000049 +Average conv. rate = 0.057995 + +* 1 2 2 0.146210E-01 0.491764E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.099347 +Final residual = 0.000100 +Average conv. rate = 0.031716 + +* 2 1 2 0.993470E-01 0.999349E-04 * +Number of iterations = 1 +Initial residual = 0.001223 +Final residual = 0.000053 +Average conv. rate = 0.043314 + +* 2 2 1 0.122315E-02 0.529790E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3702 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.61 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.71K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3702 Max w this run +w_max level proc position run w_max level timestep +0.635E+00 23 333 148.1deg E 29.4deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3703 Model time: 1979-03-19 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042838 + +* 1 1 3 0.100000E+01 0.786121E-04 * +Number of iterations = 2 +Initial residual = 0.014614 +Final residual = 0.000047 +Average conv. rate = 0.056976 + +* 1 2 2 0.146135E-01 0.474398E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100617 +Final residual = 0.000010 +Average conv. rate = 0.046840 + +* 2 1 3 0.100617E+00 0.103398E-04 * +Number of iterations = 1 +Initial residual = 0.001238 +Final residual = 0.000053 +Average conv. rate = 0.042706 + +* 2 2 1 0.123754E-02 0.528498E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3703 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.48 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.79K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3703 Max w this run +w_max level proc position run w_max level timestep +0.569E+00 23 333 148.1deg E 29.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3704 Model time: 1979-03-19 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043263 + +* 1 1 3 0.100000E+01 0.809764E-04 * +Number of iterations = 2 +Initial residual = 0.014557 +Final residual = 0.000047 +Average conv. rate = 0.056926 + +* 1 2 2 0.145571E-01 0.471731E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099260 +Final residual = 0.000012 +Average conv. rate = 0.049914 + +* 2 1 3 0.992599E-01 0.123432E-04 * +Number of iterations = 1 +Initial residual = 0.001230 +Final residual = 0.000053 +Average conv. rate = 0.043236 + +* 2 2 1 0.122959E-02 0.531620E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3704 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.40 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.82K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3704 Max w this run +w_max level proc position run w_max level timestep +0.563E+00 24 333 150.0deg E 29.4deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3705 Model time: 1979-03-19 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042913 + +* 1 1 3 0.100000E+01 0.790262E-04 * +Number of iterations = 2 +Initial residual = 0.014719 +Final residual = 0.000049 +Average conv. rate = 0.057510 + +* 1 2 2 0.147188E-01 0.486810E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099274 +Final residual = 0.000011 +Average conv. rate = 0.047535 + +* 2 1 3 0.992735E-01 0.106630E-04 * +Number of iterations = 1 +Initial residual = 0.001223 +Final residual = 0.000052 +Average conv. rate = 0.042786 + +* 2 2 1 0.122317E-02 0.523343E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3705 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.34 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.42K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3705 Max w this run +w_max level proc position run w_max level timestep +0.582E+00 24 333 150.0deg E 29.4deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3706 Model time: 1979-03-19 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042781 + +* 1 1 3 0.100000E+01 0.782970E-04 * +Number of iterations = 2 +Initial residual = 0.014775 +Final residual = 0.000049 +Average conv. rate = 0.057371 + +* 1 2 2 0.147753E-01 0.486312E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098306 +Final residual = 0.000012 +Average conv. rate = 0.049286 + +* 2 1 3 0.983057E-01 0.117692E-04 * +Number of iterations = 1 +Initial residual = 0.001214 +Final residual = 0.000052 +Average conv. rate = 0.042528 + +* 2 2 1 0.121398E-02 0.516275E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3706 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.26 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3706 Max w this run +w_max level proc position run w_max level timestep +0.589E+00 24 333 150.0deg E 29.4deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3707 Model time: 1979-03-19 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043274 + +* 1 1 3 0.100000E+01 0.810375E-04 * +Number of iterations = 2 +Initial residual = 0.014811 +Final residual = 0.000049 +Average conv. rate = 0.057295 + +* 1 2 2 0.148113E-01 0.486215E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099316 +Final residual = 0.000012 +Average conv. rate = 0.048875 + +* 2 1 3 0.993158E-01 0.115951E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000052 +Average conv. rate = 0.042773 + +* 2 2 1 0.122171E-02 0.522562E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3707 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.19 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3707 Max w this run +w_max level proc position run w_max level timestep +0.591E+00 23 329 110.6deg E 23.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3708 Model time: 1979-03-19 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043310 + +* 1 1 3 0.100000E+01 0.812362E-04 * +Number of iterations = 2 +Initial residual = 0.014697 +Final residual = 0.000049 +Average conv. rate = 0.057489 + +* 1 2 2 0.146965E-01 0.485710E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098132 +Final residual = 0.000012 +Average conv. rate = 0.049369 + +* 2 1 3 0.981316E-01 0.118081E-04 * +Number of iterations = 1 +Initial residual = 0.001228 +Final residual = 0.000053 +Average conv. rate = 0.042818 + +* 2 2 1 0.122805E-02 0.525831E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3708 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.13 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.53K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3708 Max w this run +w_max level proc position run w_max level timestep +0.575E+00 21 330 112.5deg E 23.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3709 Model time: 1979-03-19 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042613 + +* 1 1 3 0.100000E+01 0.773823E-04 * +Number of iterations = 2 +Initial residual = 0.014695 +Final residual = 0.000049 +Average conv. rate = 0.057550 + +* 1 2 2 0.146951E-01 0.486701E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098167 +Final residual = 0.000012 +Average conv. rate = 0.049783 + +* 2 1 3 0.981674E-01 0.121117E-04 * +Number of iterations = 1 +Initial residual = 0.001221 +Final residual = 0.000052 +Average conv. rate = 0.042996 + +* 2 2 1 0.122069E-02 0.524844E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3709 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.09 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3709 Max w this run +w_max level proc position run w_max level timestep +0.668E+00 23 330 112.5deg E 23.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3710 Model time: 1979-03-19 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042660 + +* 1 1 3 0.100000E+01 0.776362E-04 * +Number of iterations = 2 +Initial residual = 0.014735 +Final residual = 0.000048 +Average conv. rate = 0.057152 + +* 1 2 2 0.147350E-01 0.481295E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096543 +Final residual = 0.000012 +Average conv. rate = 0.049419 + +* 2 1 3 0.965430E-01 0.116522E-04 * +Number of iterations = 1 +Initial residual = 0.001199 +Final residual = 0.000053 +Average conv. rate = 0.043919 + +* 2 2 1 0.119856E-02 0.526394E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3710 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.08 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.28K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3710 Max w this run +w_max level proc position run w_max level timestep +0.716E+00 24 330 112.5deg E 23.1deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3711 Model time: 1979-03-19 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043061 + +* 1 1 3 0.100000E+01 0.798469E-04 * +Number of iterations = 2 +Initial residual = 0.014821 +Final residual = 0.000049 +Average conv. rate = 0.057771 + +* 1 2 2 0.148205E-01 0.494636E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097758 +Final residual = 0.000011 +Average conv. rate = 0.048877 + +* 2 1 3 0.977576E-01 0.114150E-04 * +Number of iterations = 1 +Initial residual = 0.001199 +Final residual = 0.000053 +Average conv. rate = 0.043796 + +* 2 2 1 0.119945E-02 0.525309E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3711 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.17 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.36K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3711 Max w this run +w_max level proc position run w_max level timestep +0.773E+00 24 330 112.5deg E 23.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3712 Model time: 1979-03-19 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042789 + +* 1 1 3 0.100000E+01 0.783421E-04 * +Number of iterations = 2 +Initial residual = 0.014792 +Final residual = 0.000050 +Average conv. rate = 0.058169 + +* 1 2 2 0.147918E-01 0.500503E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097408 +Final residual = 0.000011 +Average conv. rate = 0.049043 + +* 2 1 3 0.974083E-01 0.114900E-04 * +Number of iterations = 1 +Initial residual = 0.001220 +Final residual = 0.000052 +Average conv. rate = 0.042973 + +* 2 2 1 0.122011E-02 0.524319E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3712 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.26 26 65.6deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.17K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3712 Max w this run +w_max level proc position run w_max level timestep +0.805E+00 25 330 112.5deg E 23.1deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3713 Model time: 1979-03-19 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043025 + +* 1 1 3 0.100000E+01 0.796461E-04 * +Number of iterations = 2 +Initial residual = 0.014802 +Final residual = 0.000050 +Average conv. rate = 0.058409 + +* 1 2 2 0.148022E-01 0.504993E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098719 +Final residual = 0.000012 +Average conv. rate = 0.050087 + +* 2 1 3 0.987188E-01 0.124044E-04 * +Number of iterations = 1 +Initial residual = 0.001215 +Final residual = 0.000054 +Average conv. rate = 0.044346 + +* 2 2 1 0.121482E-02 0.538724E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3713 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.53 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3713 Max w this run +w_max level proc position run w_max level timestep +0.791E+00 26 330 112.5deg E 23.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3714 Model time: 1979-03-19 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042515 + +* 1 1 3 0.100000E+01 0.768483E-04 * +Number of iterations = 2 +Initial residual = 0.014689 +Final residual = 0.000050 +Average conv. rate = 0.058538 + +* 1 2 2 0.146887E-01 0.503332E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098722 +Final residual = 0.000011 +Average conv. rate = 0.048155 + +* 2 1 3 0.987218E-01 0.110238E-04 * +Number of iterations = 1 +Initial residual = 0.001277 +Final residual = 0.000054 +Average conv. rate = 0.042375 + +* 2 2 1 0.127651E-02 0.540918E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3714 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.72 26 63.8deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3714 Max w this run +w_max level proc position run w_max level timestep +0.692E+00 26 330 112.5deg E 23.1deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3715 Model time: 1979-03-19 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042560 + +* 1 1 3 0.100000E+01 0.770915E-04 * +Number of iterations = 2 +Initial residual = 0.014732 +Final residual = 0.000050 +Average conv. rate = 0.058485 + +* 1 2 2 0.147317E-01 0.503897E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098439 +Final residual = 0.000012 +Average conv. rate = 0.049969 + +* 2 1 3 0.984390E-01 0.122821E-04 * +Number of iterations = 1 +Initial residual = 0.001227 +Final residual = 0.000054 +Average conv. rate = 0.043851 + +* 2 2 1 0.122664E-02 0.537896E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3715 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.74 25 69.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3715 Max w this run +w_max level proc position run w_max level timestep +0.592E+00 26 330 112.5deg E 23.1deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3716 Model time: 1979-03-19 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042840 + +* 1 1 3 0.100000E+01 0.786221E-04 * +Number of iterations = 2 +Initial residual = 0.014748 +Final residual = 0.000051 +Average conv. rate = 0.058605 + +* 1 2 2 0.147476E-01 0.506512E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099142 +Final residual = 0.000013 +Average conv. rate = 0.050342 + +* 2 1 3 0.991417E-01 0.126491E-04 * +Number of iterations = 1 +Initial residual = 0.001230 +Final residual = 0.000054 +Average conv. rate = 0.044244 + +* 2 2 1 0.122972E-02 0.544081E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3716 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.74 25 69.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3716 Max w this run +w_max level proc position run w_max level timestep +0.554E+00 20 298 112.5deg E 21.9deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3717 Model time: 1979-03-19 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042768 + +* 1 1 3 0.100000E+01 0.782294E-04 * +Number of iterations = 2 +Initial residual = 0.014847 +Final residual = 0.000050 +Average conv. rate = 0.058188 + +* 1 2 2 0.148474E-01 0.502713E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099581 +Final residual = 0.000012 +Average conv. rate = 0.050067 + +* 2 1 3 0.995811E-01 0.124975E-04 * +Number of iterations = 1 +Initial residual = 0.001245 +Final residual = 0.000055 +Average conv. rate = 0.044496 + +* 2 2 1 0.124502E-02 0.553988E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3717 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.95 25 69.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.81K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3717 Max w this run +w_max level proc position run w_max level timestep +0.620E+00 20 298 112.5deg E 21.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3718 Model time: 1979-03-19 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042804 + +* 1 1 3 0.100000E+01 0.784256E-04 * +Number of iterations = 2 +Initial residual = 0.014924 +Final residual = 0.000049 +Average conv. rate = 0.057419 + +* 1 2 2 0.149239E-01 0.492029E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099860 +Final residual = 0.000012 +Average conv. rate = 0.048796 + +* 2 1 3 0.998596E-01 0.116020E-04 * +Number of iterations = 1 +Initial residual = 0.001250 +Final residual = 0.000056 +Average conv. rate = 0.044484 + +* 2 2 1 0.124959E-02 0.555862E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3718 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.21 25 69.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3718 Max w this run +w_max level proc position run w_max level timestep +0.739E+00 22 298 112.5deg E 21.9deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3719 Model time: 1979-03-19 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042811 + +* 1 1 3 0.100000E+01 0.784640E-04 * +Number of iterations = 2 +Initial residual = 0.015024 +Final residual = 0.000050 +Average conv. rate = 0.057453 + +* 1 2 2 0.150235E-01 0.495909E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100398 +Final residual = 0.000013 +Average conv. rate = 0.050533 + +* 2 1 3 0.100398E+00 0.129552E-04 * +Number of iterations = 1 +Initial residual = 0.001239 +Final residual = 0.000056 +Average conv. rate = 0.044892 + +* 2 2 1 0.123920E-02 0.556307E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3719 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.07 25 71.3deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.65K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3719 Max w this run +w_max level proc position run w_max level timestep +0.806E+00 23 298 112.5deg E 21.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3720 Model time: 1979-03-19 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042917 + +* 1 1 3 0.100000E+01 0.790484E-04 * +Number of iterations = 2 +Initial residual = 0.014901 +Final residual = 0.000048 +Average conv. rate = 0.056860 + +* 1 2 2 0.149006E-01 0.481744E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101140 +Final residual = 0.000013 +Average conv. rate = 0.050172 + +* 2 1 3 0.101140E+00 0.127737E-04 * +Number of iterations = 1 +Initial residual = 0.001229 +Final residual = 0.000056 +Average conv. rate = 0.045432 + +* 2 2 1 0.122947E-02 0.558570E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3720 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.05 25 71.3deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.97K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3720 Max w this run +w_max level proc position run w_max level timestep +0.798E+00 24 298 112.5deg E 21.9deg N 0.986E+00 27 3236 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3721 Model time: 1979-03-19 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043384 + +* 1 1 3 0.100000E+01 0.816549E-04 * +Number of iterations = 2 +Initial residual = 0.014852 +Final residual = 0.000047 +Average conv. rate = 0.056400 + +* 1 2 2 0.148517E-01 0.472433E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099905 +Final residual = 0.000012 +Average conv. rate = 0.049093 + +* 2 1 3 0.999054E-01 0.118206E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000057 +Average conv. rate = 0.047051 + +* 2 2 1 0.122183E-02 0.574885E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3721 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.27 5 58.1deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3721 Max w this run +w_max level proc position run w_max level timestep +0.774E+00 25 298 112.5deg E 21.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3722 Model time: 1979-03-19 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043434 + +* 1 1 3 0.100000E+01 0.819400E-04 * +Number of iterations = 2 +Initial residual = 0.014733 +Final residual = 0.000046 +Average conv. rate = 0.056061 + +* 1 2 2 0.147331E-01 0.463030E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099900 +Final residual = 0.000012 +Average conv. rate = 0.049022 + +* 2 1 3 0.999000E-01 0.117689E-04 * +Number of iterations = 1 +Initial residual = 0.001216 +Final residual = 0.000059 +Average conv. rate = 0.048164 + +* 2 2 1 0.121559E-02 0.585482E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3722 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.28 5 58.1deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -19.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3722 Max w this run +w_max level proc position run w_max level timestep +0.719E+00 26 298 112.5deg E 21.9deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3723 Model time: 1979-03-19 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043728 + +* 1 1 3 0.100000E+01 0.836149E-04 * +Number of iterations = 2 +Initial residual = 0.014782 +Final residual = 0.000047 +Average conv. rate = 0.056103 + +* 1 2 2 0.147823E-01 0.465275E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099239 +Final residual = 0.000012 +Average conv. rate = 0.049790 + +* 2 1 3 0.992391E-01 0.122492E-04 * +Number of iterations = 1 +Initial residual = 0.001221 +Final residual = 0.000059 +Average conv. rate = 0.048151 + +* 2 2 1 0.122117E-02 0.588010E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3723 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.25 5 58.1deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -19.72K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3723 Max w this run +w_max level proc position run w_max level timestep +0.624E+00 27 298 112.5deg E 21.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3724 Model time: 1979-03-19 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044052 + +* 1 1 3 0.100000E+01 0.854844E-04 * +Number of iterations = 2 +Initial residual = 0.014678 +Final residual = 0.000046 +Average conv. rate = 0.055838 + +* 1 2 2 0.146783E-01 0.457656E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100225 +Final residual = 0.000012 +Average conv. rate = 0.049001 + +* 2 1 3 0.100225E+00 0.117920E-04 * +Number of iterations = 1 +Initial residual = 0.001228 +Final residual = 0.000058 +Average conv. rate = 0.047054 + +* 2 2 1 0.122830E-02 0.577962E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3724 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.18 5 58.1deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -19.46K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3724 Max w this run +w_max level proc position run w_max level timestep +0.720E+00 22 298 114.4deg E 21.9deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3725 Model time: 1979-03-19 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043777 + +* 1 1 3 0.100000E+01 0.838950E-04 * +Number of iterations = 2 +Initial residual = 0.014701 +Final residual = 0.000046 +Average conv. rate = 0.055904 + +* 1 2 2 0.147014E-01 0.459456E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099553 +Final residual = 0.000012 +Average conv. rate = 0.049663 + +* 2 1 3 0.995526E-01 0.121944E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000057 +Average conv. rate = 0.046665 + +* 2 2 1 0.122216E-02 0.570320E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3725 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.09 5 58.1deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -19.21K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3725 Max w this run +w_max level proc position run w_max level timestep +0.825E+00 23 298 114.4deg E 21.9deg N 0.986E+00 27 3236 + +******************************************************************************** + +Atm_Step: Timestep 3726 Model time: 1979-03-19 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044425 + +* 1 1 3 0.100000E+01 0.876776E-04 * +Number of iterations = 2 +Initial residual = 0.014718 +Final residual = 0.000045 +Average conv. rate = 0.055586 + +* 1 2 2 0.147181E-01 0.454769E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099419 +Final residual = 0.000012 +Average conv. rate = 0.048872 + +* 2 1 3 0.994191E-01 0.116049E-04 * +Number of iterations = 1 +Initial residual = 0.001220 +Final residual = 0.000057 +Average conv. rate = 0.046594 + +* 2 2 1 0.122037E-02 0.568623E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3726 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.00 5 58.1deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3726 Max w this run +w_max level proc position run w_max level timestep +0.923E+00 24 298 114.4deg E 21.9deg N 0.986E+00 27 3236 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3727 Model time: 1979-03-19 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044833 + +* 1 1 3 0.100000E+01 0.901149E-04 * +Number of iterations = 2 +Initial residual = 0.014810 +Final residual = 0.000046 +Average conv. rate = 0.055462 + +* 1 2 2 0.148095E-01 0.455553E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102389 +Final residual = 0.000011 +Average conv. rate = 0.048118 + +* 2 1 3 0.102389E+00 0.114073E-04 * +Number of iterations = 1 +Initial residual = 0.001301 +Final residual = 0.000057 +Average conv. rate = 0.044119 + +* 2 2 1 0.130065E-02 0.573838E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3727 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.89 5 58.1deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.70K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3727 Max w this run +w_max level proc position run w_max level timestep +0.100E+01 25 298 114.4deg E 21.9deg N 0.100E+01 25 3727 + +******************************************************************************** + +Atm_Step: Timestep 3728 Model time: 1979-03-19 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044610 + +* 1 1 3 0.100000E+01 0.887749E-04 * +Number of iterations = 2 +Initial residual = 0.014784 +Final residual = 0.000045 +Average conv. rate = 0.055388 + +* 1 2 2 0.147839E-01 0.453542E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.105271 +Final residual = 0.000012 +Average conv. rate = 0.048097 + +* 2 1 3 0.105271E+00 0.117127E-04 * +Number of iterations = 1 +Initial residual = 0.001525 +Final residual = 0.000056 +Average conv. rate = 0.036940 + +* 2 2 1 0.152540E-02 0.563484E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3728 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.79 5 56.2deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3728 Max w this run +w_max level proc position run w_max level timestep +0.949E+00 26 298 114.4deg E 21.9deg N 0.100E+01 25 3727 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3729 Model time: 1979-03-19 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045221 + +* 1 1 3 0.100000E+01 0.924767E-04 * +Number of iterations = 2 +Initial residual = 0.014828 +Final residual = 0.000045 +Average conv. rate = 0.055309 + +* 1 2 2 0.148283E-01 0.453612E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100442 +Final residual = 0.000012 +Average conv. rate = 0.048962 + +* 2 1 3 0.100442E+00 0.117894E-04 * +Number of iterations = 1 +Initial residual = 0.001238 +Final residual = 0.000056 +Average conv. rate = 0.045321 + +* 2 2 1 0.123783E-02 0.560996E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3729 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.70 5 56.2deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.07K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3729 Max w this run +w_max level proc position run w_max level timestep +0.907E+00 27 298 114.4deg E 21.9deg N 0.100E+01 25 3727 + +******************************************************************************** + +Atm_Step: Timestep 3730 Model time: 1979-03-19 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044335 + +* 1 1 3 0.100000E+01 0.871449E-04 * +Number of iterations = 2 +Initial residual = 0.014752 +Final residual = 0.000046 +Average conv. rate = 0.055577 + +* 1 2 2 0.147525E-01 0.455679E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103273 +Final residual = 0.000011 +Average conv. rate = 0.046965 + +* 2 1 3 0.103273E+00 0.106983E-04 * +Number of iterations = 1 +Initial residual = 0.001377 +Final residual = 0.000056 +Average conv. rate = 0.040559 + +* 2 2 1 0.137699E-02 0.558495E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3730 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.62 5 56.2deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.82K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3730 Max w this run +w_max level proc position run w_max level timestep +0.790E+00 27 298 114.4deg E 21.9deg N 0.100E+01 25 3727 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3731 Model time: 1979-03-19 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044169 + +* 1 1 3 0.100000E+01 0.861689E-04 * +Number of iterations = 2 +Initial residual = 0.014806 +Final residual = 0.000046 +Average conv. rate = 0.055783 + +* 1 2 2 0.148057E-01 0.460709E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103032 +Final residual = 0.000010 +Average conv. rate = 0.046269 + +* 2 1 3 0.103032E+00 0.102058E-04 * +Number of iterations = 1 +Initial residual = 0.001259 +Final residual = 0.000057 +Average conv. rate = 0.044938 + +* 2 2 1 0.125853E-02 0.565555E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3731 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.56 5 56.2deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3731 Max w this run +w_max level proc position run w_max level timestep +0.665E+00 27 298 114.4deg E 21.9deg N 0.100E+01 25 3727 + +******************************************************************************** + +Atm_Step: Timestep 3732 Model time: 1979-03-19 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044853 + +* 1 1 3 0.100000E+01 0.902328E-04 * +Number of iterations = 2 +Initial residual = 0.014727 +Final residual = 0.000046 +Average conv. rate = 0.055608 + +* 1 2 2 0.147266E-01 0.455378E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098697 +Final residual = 0.000012 +Average conv. rate = 0.049393 + +* 2 1 3 0.986971E-01 0.118931E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000056 +Average conv. rate = 0.046702 + +* 2 2 1 0.120841E-02 0.564359E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3732 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.51 5 56.2deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.31K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3732 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 27 298 114.4deg E 21.9deg N 0.100E+01 25 3727 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3733 Model time: 1979-03-19 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044469 + +* 1 1 3 0.100000E+01 0.879342E-04 * +Number of iterations = 2 +Initial residual = 0.014730 +Final residual = 0.000046 +Average conv. rate = 0.055742 + +* 1 2 2 0.147299E-01 0.457689E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099122 +Final residual = 0.000011 +Average conv. rate = 0.048364 + +* 2 1 3 0.991215E-01 0.112137E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000056 +Average conv. rate = 0.046144 + +* 2 2 1 0.120637E-02 0.556663E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3733 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.48 5 56.2deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.08K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3733 Max w this run +w_max level proc position run w_max level timestep +0.622E+00 21 298 116.3deg E 21.9deg N 0.100E+01 25 3727 + +******************************************************************************** + +Atm_Step: Timestep 3734 Model time: 1979-03-19 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044265 + +* 1 1 3 0.100000E+01 0.867298E-04 * +Number of iterations = 2 +Initial residual = 0.014656 +Final residual = 0.000047 +Average conv. rate = 0.056354 + +* 1 2 2 0.146563E-01 0.465457E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098245 +Final residual = 0.000011 +Average conv. rate = 0.048793 + +* 2 1 3 0.982451E-01 0.114128E-04 * +Number of iterations = 1 +Initial residual = 0.001194 +Final residual = 0.000055 +Average conv. rate = 0.046089 + +* 2 2 1 0.119371E-02 0.550167E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3734 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.45 5 56.2deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3734 Max w this run +w_max level proc position run w_max level timestep +0.724E+00 22 298 116.3deg E 21.9deg N 0.100E+01 25 3727 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3735 Model time: 1979-03-19 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044605 + +* 1 1 3 0.100000E+01 0.887454E-04 * +Number of iterations = 2 +Initial residual = 0.014669 +Final residual = 0.000048 +Average conv. rate = 0.056955 + +* 1 2 2 0.146693E-01 0.475853E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099987 +Final residual = 0.000011 +Average conv. rate = 0.048151 + +* 2 1 3 0.999875E-01 0.111626E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000055 +Average conv. rate = 0.045464 + +* 2 2 1 0.120426E-02 0.547504E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3735 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.45 5 56.2deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.63K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3735 Max w this run +w_max level proc position run w_max level timestep +0.842E+00 22 298 116.3deg E 21.9deg N 0.100E+01 25 3727 + +******************************************************************************** + +Atm_Step: Timestep 3736 Model time: 1979-03-19 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044489 + +* 1 1 3 0.100000E+01 0.880575E-04 * +Number of iterations = 2 +Initial residual = 0.014608 +Final residual = 0.000048 +Average conv. rate = 0.057304 + +* 1 2 2 0.146076E-01 0.479671E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103045 +Final residual = 0.000013 +Average conv. rate = 0.049712 + +* 2 1 3 0.103045E+00 0.126591E-04 * +Number of iterations = 1 +Initial residual = 0.001361 +Final residual = 0.000054 +Average conv. rate = 0.040023 + +* 2 2 1 0.136070E-02 0.544592E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3736 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.45 5 56.2deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.41K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3736 Max w this run +w_max level proc position run w_max level timestep +0.941E+00 23 298 116.3deg E 21.9deg N 0.100E+01 25 3727 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3737 Model time: 1979-03-19 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044845 + +* 1 1 3 0.100000E+01 0.901864E-04 * +Number of iterations = 2 +Initial residual = 0.014642 +Final residual = 0.000050 +Average conv. rate = 0.058163 + +* 1 2 2 0.146420E-01 0.495326E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103490 +Final residual = 0.000013 +Average conv. rate = 0.050186 + +* 2 1 3 0.103490E+00 0.130810E-04 * +Number of iterations = 1 +Initial residual = 0.001244 +Final residual = 0.000055 +Average conv. rate = 0.044332 + +* 2 2 1 0.124445E-02 0.551690E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3737 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.45 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3737 Max w this run +w_max level proc position run w_max level timestep +0.103E+01 24 298 116.3deg E 21.9deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3738 Model time: 1979-03-19 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044320 + +* 1 1 3 0.100000E+01 0.870542E-04 * +Number of iterations = 2 +Initial residual = 0.014551 +Final residual = 0.000050 +Average conv. rate = 0.058719 + +* 1 2 2 0.145515E-01 0.501725E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101203 +Final residual = 0.000013 +Average conv. rate = 0.050816 + +* 2 1 3 0.101203E+00 0.132803E-04 * +Number of iterations = 1 +Initial residual = 0.001228 +Final residual = 0.000055 +Average conv. rate = 0.044914 + +* 2 2 1 0.122841E-02 0.551730E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3738 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.44 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3738 Max w this run +w_max level proc position run w_max level timestep +0.979E+00 24 298 116.3deg E 21.9deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3739 Model time: 1979-03-19 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000093 +Average conv. rate = 0.045255 + +* 1 1 3 0.100000E+01 0.926837E-04 * +Number of iterations = 2 +Initial residual = 0.014525 +Final residual = 0.000051 +Average conv. rate = 0.059204 + +* 1 2 2 0.145253E-01 0.509135E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102667 +Final residual = 0.000013 +Average conv. rate = 0.049930 + +* 2 1 3 0.102667E+00 0.127796E-04 * +Number of iterations = 1 +Initial residual = 0.001201 +Final residual = 0.000055 +Average conv. rate = 0.045566 + +* 2 2 1 0.120056E-02 0.547053E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3739 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.45 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3739 Max w this run +w_max level proc position run w_max level timestep +0.945E+00 25 298 116.3deg E 21.9deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3740 Model time: 1979-03-19 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044512 + +* 1 1 3 0.100000E+01 0.881947E-04 * +Number of iterations = 2 +Initial residual = 0.014497 +Final residual = 0.000051 +Average conv. rate = 0.059227 + +* 1 2 2 0.144968E-01 0.508527E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101965 +Final residual = 0.000013 +Average conv. rate = 0.050416 + +* 2 1 3 0.101965E+00 0.130664E-04 * +Number of iterations = 1 +Initial residual = 0.001205 +Final residual = 0.000055 +Average conv. rate = 0.045804 + +* 2 2 1 0.120491E-02 0.551895E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3740 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.45 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.37K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3740 Max w this run +w_max level proc position run w_max level timestep +0.889E+00 25 298 116.3deg E 21.9deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3741 Model time: 1979-03-19 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044692 + +* 1 1 3 0.100000E+01 0.892669E-04 * +Number of iterations = 2 +Initial residual = 0.014612 +Final residual = 0.000051 +Average conv. rate = 0.058864 + +* 1 2 2 0.146125E-01 0.506322E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100208 +Final residual = 0.000014 +Average conv. rate = 0.051508 + +* 2 1 3 0.100208E+00 0.136937E-04 * +Number of iterations = 1 +Initial residual = 0.001194 +Final residual = 0.000055 +Average conv. rate = 0.046342 + +* 2 2 1 0.119360E-02 0.553143E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3741 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.46 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.19K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3741 Max w this run +w_max level proc position run w_max level timestep +0.824E+00 25 298 116.3deg E 21.9deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3742 Model time: 1979-03-19 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044410 + +* 1 1 3 0.100000E+01 0.875852E-04 * +Number of iterations = 2 +Initial residual = 0.014621 +Final residual = 0.000050 +Average conv. rate = 0.058590 + +* 1 2 2 0.146207E-01 0.501903E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100503 +Final residual = 0.000014 +Average conv. rate = 0.051494 + +* 2 1 3 0.100503E+00 0.137229E-04 * +Number of iterations = 1 +Initial residual = 0.001277 +Final residual = 0.000056 +Average conv. rate = 0.043684 + +* 2 2 1 0.127685E-02 0.557773E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3742 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.47 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3742 Max w this run +w_max level proc position run w_max level timestep +0.708E+00 25 298 116.3deg E 21.9deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3743 Model time: 1979-03-19 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044554 + +* 1 1 3 0.100000E+01 0.884434E-04 * +Number of iterations = 2 +Initial residual = 0.014778 +Final residual = 0.000050 +Average conv. rate = 0.058282 + +* 1 2 2 0.147780E-01 0.501972E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100465 +Final residual = 0.000014 +Average conv. rate = 0.051740 + +* 2 1 3 0.100465E+00 0.139155E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000056 +Average conv. rate = 0.046644 + +* 2 2 1 0.120773E-02 0.563334E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3743 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.48 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3743 Max w this run +w_max level proc position run w_max level timestep +0.621E+00 25 298 116.3deg E 21.9deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3744 Model time: 1979-03-20 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000094 +Average conv. rate = 0.045421 + +* 1 1 3 0.100000E+01 0.937071E-04 * +Number of iterations = 2 +Initial residual = 0.014754 +Final residual = 0.000049 +Average conv. rate = 0.057522 + +* 1 2 2 0.147535E-01 0.488164E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098258 +Final residual = 0.000014 +Average conv. rate = 0.052749 + +* 2 1 3 0.982583E-01 0.144217E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000056 +Average conv. rate = 0.046777 + +* 2 2 1 0.120390E-02 0.563148E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13057E+25 +tot dry energy 0.13058E+25 +gr( rho cal) 0.38109E+24 +KE( rho cal) 0.86009E+21 +KEu(rho cal) 0.66875E+21 +KEv(rho cal) 0.19134E+21 +KEw(rho cal) 0.12351E+16 +cvT( rho cal) 0.92383E+24 +lq ( rho cal) 0.30736E+23 +lqcf( rho cal) 0.62475E+20 +lqcl( rho cal) 0.45232E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12330E+17 KG +Initial moisture = 0.12283E+17 KG +change in moisture = 0.47623E+14 KG +Moisture added E-P in period = 0.47328E+14 KG +Error in moisture = 0.29533E+12 KG +Error as % of change = 0.62013E+00 +q ( rho cal) 0.12289E+17 +qcf( rho cal) 0.24980E+14 +qcl( rho cal) 0.15955E+14 +FINAL TOTAL ENERGY = 0.13057E+25 J/ +INITIAL TOTAL ENERGY = 0.13057E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.19200E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.17970E+20 J/ +ERROR IN ENERGY BUDGET = 0.12304E+19 J/ +TEMP CORRECTION OVER A DAY = 0.33410E-03 K +TEMPERATURE CORRECTION RATE = 0.38669E-08 K/S +FLUX CORRECTION (ATM) = 0.27918E-01 W/M2 + +Minimum theta level 1 for timestep 3744 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.48 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.75K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3744 Max w this run +w_max level proc position run w_max level timestep +0.611E+00 25 298 116.3deg E 21.9deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6132.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6132.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6132.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6132.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6132.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6132.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3745 Model time: 1979-03-20 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045151 + +* 1 1 3 0.100000E+01 0.920478E-04 * +Number of iterations = 2 +Initial residual = 0.014810 +Final residual = 0.000049 +Average conv. rate = 0.057811 + +* 1 2 2 0.148098E-01 0.494963E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099273 +Final residual = 0.000014 +Average conv. rate = 0.051639 + +* 2 1 3 0.992730E-01 0.136702E-04 * +Number of iterations = 1 +Initial residual = 0.001220 +Final residual = 0.000057 +Average conv. rate = 0.046692 + +* 2 2 1 0.122046E-02 0.569857E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3745 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.49 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3745 Max w this run +w_max level proc position run w_max level timestep +0.645E+00 22 298 118.1deg E 21.9deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3746 Model time: 1979-03-20 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044629 + +* 1 1 3 0.100000E+01 0.888905E-04 * +Number of iterations = 2 +Initial residual = 0.014876 +Final residual = 0.000048 +Average conv. rate = 0.056869 + +* 1 2 2 0.148756E-01 0.481088E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095958 +Final residual = 0.000015 +Average conv. rate = 0.053445 + +* 2 1 3 0.959582E-01 0.146486E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000057 +Average conv. rate = 0.047136 + +* 2 2 1 0.120750E-02 0.569168E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3746 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.49 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.60K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3746 Max w this run +w_max level proc position run w_max level timestep +0.722E+00 23 298 118.1deg E 21.9deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3747 Model time: 1979-03-20 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043994 + +* 1 1 3 0.100000E+01 0.851509E-04 * +Number of iterations = 2 +Initial residual = 0.015053 +Final residual = 0.000049 +Average conv. rate = 0.057043 + +* 1 2 2 0.150533E-01 0.489824E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096962 +Final residual = 0.000014 +Average conv. rate = 0.052760 + +* 2 1 3 0.969622E-01 0.142404E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000057 +Average conv. rate = 0.047690 + +* 2 2 1 0.120393E-02 0.574153E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3747 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.49 4 54.4deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3747 Max w this run +w_max level proc position run w_max level timestep +0.741E+00 23 298 118.1deg E 21.9deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3748 Model time: 1979-03-20 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043999 + +* 1 1 3 0.100000E+01 0.851768E-04 * +Number of iterations = 2 +Initial residual = 0.015040 +Final residual = 0.000048 +Average conv. rate = 0.056529 + +* 1 2 2 0.150399E-01 0.480603E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096000 +Final residual = 0.000013 +Average conv. rate = 0.050809 + +* 2 1 3 0.959996E-01 0.125917E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000057 +Average conv. rate = 0.047557 + +* 2 2 1 0.120604E-02 0.573561E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3748 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.48 4 52.5deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.12K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3748 Max w this run +w_max level proc position run w_max level timestep +0.735E+00 24 298 118.1deg E 21.9deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3749 Model time: 1979-03-20 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043486 + +* 1 1 3 0.100000E+01 0.822308E-04 * +Number of iterations = 2 +Initial residual = 0.015129 +Final residual = 0.000048 +Average conv. rate = 0.056335 + +* 1 2 2 0.151290E-01 0.480143E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096784 +Final residual = 0.000013 +Average conv. rate = 0.050890 + +* 2 1 3 0.967844E-01 0.127556E-04 * +Number of iterations = 1 +Initial residual = 0.001214 +Final residual = 0.000057 +Average conv. rate = 0.047184 + +* 2 2 1 0.121416E-02 0.572884E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3749 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.47 4 52.5deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.06K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3749 Max w this run +w_max level proc position run w_max level timestep +0.665E+00 24 298 118.1deg E 21.9deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3750 Model time: 1979-03-20 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043765 + +* 1 1 3 0.100000E+01 0.838247E-04 * +Number of iterations = 2 +Initial residual = 0.015021 +Final residual = 0.000047 +Average conv. rate = 0.056008 + +* 1 2 2 0.150206E-01 0.471174E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096317 +Final residual = 0.000013 +Average conv. rate = 0.051457 + +* 2 1 3 0.963167E-01 0.131231E-04 * +Number of iterations = 1 +Initial residual = 0.001217 +Final residual = 0.000057 +Average conv. rate = 0.047013 + +* 2 2 1 0.121676E-02 0.572035E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3750 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.47 4 52.5deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3750 Max w this run +w_max level proc position run w_max level timestep +0.673E+00 24 298 118.1deg E 21.9deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3751 Model time: 1979-03-20 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043669 + +* 1 1 3 0.100000E+01 0.832768E-04 * +Number of iterations = 2 +Initial residual = 0.015001 +Final residual = 0.000047 +Average conv. rate = 0.056019 + +* 1 2 2 0.150014E-01 0.470769E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095934 +Final residual = 0.000012 +Average conv. rate = 0.050296 + +* 2 1 3 0.959336E-01 0.122056E-04 * +Number of iterations = 1 +Initial residual = 0.001215 +Final residual = 0.000057 +Average conv. rate = 0.047091 + +* 2 2 1 0.121497E-02 0.572140E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3751 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.48 4 52.5deg E -88.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3751 Max w this run +w_max level proc position run w_max level timestep +0.633E+00 25 298 118.1deg E 21.9deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3752 Model time: 1979-03-20 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043863 + +* 1 1 3 0.100000E+01 0.843889E-04 * +Number of iterations = 2 +Initial residual = 0.014853 +Final residual = 0.000047 +Average conv. rate = 0.056481 + +* 1 2 2 0.148528E-01 0.473817E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095061 +Final residual = 0.000013 +Average conv. rate = 0.051544 + +* 2 1 3 0.950613E-01 0.130175E-04 * +Number of iterations = 1 +Initial residual = 0.001217 +Final residual = 0.000058 +Average conv. rate = 0.047698 + +* 2 2 1 0.121747E-02 0.580711E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3752 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.47 3 39.4deg E -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3752 Max w this run +w_max level proc position run w_max level timestep +0.579E+00 25 298 118.1deg E 21.9deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3753 Model time: 1979-03-20 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043642 + +* 1 1 3 0.100000E+01 0.831198E-04 * +Number of iterations = 2 +Initial residual = 0.014850 +Final residual = 0.000046 +Average conv. rate = 0.055583 + +* 1 2 2 0.148499E-01 0.458780E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096163 +Final residual = 0.000012 +Average conv. rate = 0.049698 + +* 2 1 3 0.961627E-01 0.118042E-04 * +Number of iterations = 1 +Initial residual = 0.001216 +Final residual = 0.000059 +Average conv. rate = 0.048372 + +* 2 2 1 0.121565E-02 0.588037E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3753 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.36 3 39.4deg E -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3753 Max w this run +w_max level proc position run w_max level timestep +0.569E+00 21 298 118.1deg E 20.6deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3754 Model time: 1979-03-20 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043345 + +* 1 1 3 0.100000E+01 0.814333E-04 * +Number of iterations = 2 +Initial residual = 0.014844 +Final residual = 0.000045 +Average conv. rate = 0.055237 + +* 1 2 2 0.148442E-01 0.452915E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093789 +Final residual = 0.000015 +Average conv. rate = 0.053822 + +* 2 1 3 0.937887E-01 0.146225E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000058 +Average conv. rate = 0.048570 + +* 2 2 1 0.118790E-02 0.576958E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3754 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.34 3 39.4deg E -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.23K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3754 Max w this run +w_max level proc position run w_max level timestep +0.599E+00 21 298 118.1deg E 20.6deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3755 Model time: 1979-03-20 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044249 + +* 1 1 3 0.100000E+01 0.866387E-04 * +Number of iterations = 2 +Initial residual = 0.014923 +Final residual = 0.000045 +Average conv. rate = 0.055212 + +* 1 2 2 0.149227E-01 0.454899E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093522 +Final residual = 0.000014 +Average conv. rate = 0.052934 + +* 2 1 3 0.935225E-01 0.138713E-04 * +Number of iterations = 1 +Initial residual = 0.001166 +Final residual = 0.000056 +Average conv. rate = 0.048332 + +* 2 2 1 0.116554E-02 0.563328E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3755 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.42 3 39.4deg E -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3755 Max w this run +w_max level proc position run w_max level timestep +0.623E+00 22 298 118.1deg E 20.6deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3756 Model time: 1979-03-20 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044714 + +* 1 1 3 0.100000E+01 0.893982E-04 * +Number of iterations = 2 +Initial residual = 0.014836 +Final residual = 0.000046 +Average conv. rate = 0.055423 + +* 1 2 2 0.148360E-01 0.455713E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092448 +Final residual = 0.000011 +Average conv. rate = 0.049387 + +* 2 1 3 0.924485E-01 0.111360E-04 * +Number of iterations = 1 +Initial residual = 0.001163 +Final residual = 0.000055 +Average conv. rate = 0.047097 + +* 2 2 1 0.116294E-02 0.547710E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3756 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.62 3 39.4deg E -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3756 Max w this run +w_max level proc position run w_max level timestep +0.641E+00 22 298 118.1deg E 20.6deg N 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3757 Model time: 1979-03-20 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044542 + +* 1 1 3 0.100000E+01 0.883710E-04 * +Number of iterations = 2 +Initial residual = 0.014688 +Final residual = 0.000046 +Average conv. rate = 0.055950 + +* 1 2 2 0.146883E-01 0.459808E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092794 +Final residual = 0.000100 +Average conv. rate = 0.032809 + +* 2 1 2 0.927937E-01 0.998843E-04 * +Number of iterations = 1 +Initial residual = 0.001164 +Final residual = 0.000056 +Average conv. rate = 0.048227 + +* 2 2 1 0.116418E-02 0.561446E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3757 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.76 0 7.5deg E -85.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.69K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3757 Max w this run +w_max level proc position run w_max level timestep +0.620E+00 23 298 118.1deg E 20.6deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3758 Model time: 1979-03-20 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043675 + +* 1 1 3 0.100000E+01 0.833095E-04 * +Number of iterations = 2 +Initial residual = 0.014507 +Final residual = 0.000046 +Average conv. rate = 0.056408 + +* 1 2 2 0.145074E-01 0.461613E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093905 +Final residual = 0.000100 +Average conv. rate = 0.032563 + +* 2 1 2 0.939045E-01 0.995739E-04 * +Number of iterations = 1 +Initial residual = 0.001197 +Final residual = 0.000057 +Average conv. rate = 0.047504 + +* 2 2 1 0.119672E-02 0.568483E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3758 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.77 0 7.5deg E -85.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3758 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 23 298 118.1deg E 20.6deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3759 Model time: 1979-03-20 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044425 + +* 1 1 3 0.100000E+01 0.876743E-04 * +Number of iterations = 2 +Initial residual = 0.014568 +Final residual = 0.000047 +Average conv. rate = 0.056913 + +* 1 2 2 0.145682E-01 0.471870E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094514 +Final residual = 0.000014 +Average conv. rate = 0.052556 + +* 2 1 3 0.945141E-01 0.137203E-04 * +Number of iterations = 1 +Initial residual = 0.001166 +Final residual = 0.000056 +Average conv. rate = 0.047885 + +* 2 2 1 0.116623E-02 0.558448E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3759 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.81 0 5.6deg E -85.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3759 Max w this run +w_max level proc position run w_max level timestep +0.571E+00 26 174 166.9deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3760 Model time: 1979-03-20 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043798 + +* 1 1 3 0.100000E+01 0.840151E-04 * +Number of iterations = 2 +Initial residual = 0.014622 +Final residual = 0.000047 +Average conv. rate = 0.056798 + +* 1 2 2 0.146225E-01 0.471723E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091284 +Final residual = 0.000098 +Average conv. rate = 0.032715 + +* 2 1 2 0.912837E-01 0.976977E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000056 +Average conv. rate = 0.048102 + +* 2 2 1 0.115481E-02 0.555488E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3760 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.90 0 5.6deg E -85.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.19K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3760 Max w this run +w_max level proc position run w_max level timestep +0.613E+00 26 174 166.9deg E -25.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3761 Model time: 1979-03-20 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044734 + +* 1 1 3 0.100000E+01 0.895194E-04 * +Number of iterations = 2 +Initial residual = 0.014710 +Final residual = 0.000048 +Average conv. rate = 0.057012 + +* 1 2 2 0.147097E-01 0.478120E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092748 +Final residual = 0.000012 +Average conv. rate = 0.051158 + +* 2 1 3 0.927476E-01 0.124176E-04 * +Number of iterations = 1 +Initial residual = 0.001192 +Final residual = 0.000055 +Average conv. rate = 0.046342 + +* 2 2 1 0.119216E-02 0.552475E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3761 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.82 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3761 Max w this run +w_max level proc position run w_max level timestep +0.736E+00 28 174 166.9deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3762 Model time: 1979-03-20 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044199 + +* 1 1 3 0.100000E+01 0.863456E-04 * +Number of iterations = 2 +Initial residual = 0.014609 +Final residual = 0.000048 +Average conv. rate = 0.057570 + +* 1 2 2 0.146091E-01 0.484183E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094690 +Final residual = 0.000014 +Average conv. rate = 0.052901 + +* 2 1 3 0.946903E-01 0.140181E-04 * +Number of iterations = 1 +Initial residual = 0.001235 +Final residual = 0.000055 +Average conv. rate = 0.044543 + +* 2 2 1 0.123526E-02 0.550227E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3762 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.69 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.53K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3762 Max w this run +w_max level proc position run w_max level timestep +0.688E+00 27 174 166.9deg E -25.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3763 Model time: 1979-03-20 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044385 + +* 1 1 3 0.100000E+01 0.874409E-04 * +Number of iterations = 2 +Initial residual = 0.014560 +Final residual = 0.000049 +Average conv. rate = 0.057997 + +* 1 2 2 0.145603E-01 0.489762E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092449 +Final residual = 0.000011 +Average conv. rate = 0.049686 + +* 2 1 3 0.924489E-01 0.113400E-04 * +Number of iterations = 1 +Initial residual = 0.001193 +Final residual = 0.000055 +Average conv. rate = 0.045830 + +* 2 2 1 0.119283E-02 0.546678E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3763 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.57 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.46K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3763 Max w this run +w_max level proc position run w_max level timestep +0.712E+00 28 174 166.9deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3764 Model time: 1979-03-20 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043521 + +* 1 1 3 0.100000E+01 0.824349E-04 * +Number of iterations = 2 +Initial residual = 0.014495 +Final residual = 0.000048 +Average conv. rate = 0.057428 + +* 1 2 2 0.144951E-01 0.478051E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092607 +Final residual = 0.000011 +Average conv. rate = 0.049238 + +* 2 1 3 0.926072E-01 0.110547E-04 * +Number of iterations = 1 +Initial residual = 0.001222 +Final residual = 0.000055 +Average conv. rate = 0.044747 + +* 2 2 1 0.122186E-02 0.546748E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3764 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.45 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3764 Max w this run +w_max level proc position run w_max level timestep +0.678E+00 26 174 166.9deg E -25.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3765 Model time: 1979-03-20 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043330 + +* 1 1 3 0.100000E+01 0.813490E-04 * +Number of iterations = 2 +Initial residual = 0.014634 +Final residual = 0.000049 +Average conv. rate = 0.057623 + +* 1 2 2 0.146345E-01 0.485928E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100354 +Final residual = 0.000011 +Average conv. rate = 0.047501 + +* 2 1 3 0.100354E+00 0.107556E-04 * +Number of iterations = 1 +Initial residual = 0.001259 +Final residual = 0.000054 +Average conv. rate = 0.043089 + +* 2 2 1 0.125865E-02 0.542333E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3765 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.35 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.28K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3765 Max w this run +w_max level proc position run w_max level timestep +0.778E+00 28 174 166.9deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3766 Model time: 1979-03-20 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043515 + +* 1 1 3 0.100000E+01 0.823991E-04 * +Number of iterations = 2 +Initial residual = 0.014699 +Final residual = 0.000048 +Average conv. rate = 0.056910 + +* 1 2 2 0.146988E-01 0.476061E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092181 +Final residual = 0.000099 +Average conv. rate = 0.032853 + +* 2 1 2 0.921806E-01 0.994934E-04 * +Number of iterations = 1 +Initial residual = 0.001168 +Final residual = 0.000054 +Average conv. rate = 0.046125 + +* 2 2 1 0.116751E-02 0.538515E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3766 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.26 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.15K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3766 Max w this run +w_max level proc position run w_max level timestep +0.814E+00 28 174 166.9deg E -25.6deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3767 Model time: 1979-03-20 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043205 + +* 1 1 3 0.100000E+01 0.806472E-04 * +Number of iterations = 2 +Initial residual = 0.014760 +Final residual = 0.000049 +Average conv. rate = 0.057521 + +* 1 2 2 0.147605E-01 0.488368E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092420 +Final residual = 0.000098 +Average conv. rate = 0.032605 + +* 2 1 2 0.924202E-01 0.982518E-04 * +Number of iterations = 1 +Initial residual = 0.001166 +Final residual = 0.000054 +Average conv. rate = 0.046199 + +* 2 2 1 0.116631E-02 0.538821E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3767 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.18 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3767 Max w this run +w_max level proc position run w_max level timestep +0.788E+00 29 174 166.9deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3768 Model time: 1979-03-20 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043418 + +* 1 1 3 0.100000E+01 0.818457E-04 * +Number of iterations = 2 +Initial residual = 0.014762 +Final residual = 0.000048 +Average conv. rate = 0.057197 + +* 1 2 2 0.147623E-01 0.482949E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099803 +Final residual = 0.000013 +Average conv. rate = 0.050200 + +* 2 1 3 0.998032E-01 0.126253E-04 * +Number of iterations = 1 +Initial residual = 0.001324 +Final residual = 0.000053 +Average conv. rate = 0.039829 + +* 2 2 1 0.132394E-02 0.527309E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3768 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.12 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3768 Max w this run +w_max level proc position run w_max level timestep +0.649E+00 29 174 166.9deg E -25.6deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3769 Model time: 1979-03-20 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043697 + +* 1 1 3 0.100000E+01 0.834382E-04 * +Number of iterations = 2 +Initial residual = 0.014907 +Final residual = 0.000049 +Average conv. rate = 0.057498 + +* 1 2 2 0.149065E-01 0.492811E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092966 +Final residual = 0.000014 +Average conv. rate = 0.052966 + +* 2 1 3 0.929663E-01 0.138135E-04 * +Number of iterations = 1 +Initial residual = 0.001151 +Final residual = 0.000053 +Average conv. rate = 0.045837 + +* 2 2 1 0.115085E-02 0.527513E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3769 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.07 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.74K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3769 Max w this run +w_max level proc position run w_max level timestep +0.668E+00 30 174 166.9deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3770 Model time: 1979-03-20 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043657 + +* 1 1 3 0.100000E+01 0.832052E-04 * +Number of iterations = 2 +Initial residual = 0.014937 +Final residual = 0.000048 +Average conv. rate = 0.056727 + +* 1 2 2 0.149368E-01 0.480661E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091731 +Final residual = 0.000099 +Average conv. rate = 0.032905 + +* 2 1 2 0.917314E-01 0.993238E-04 * +Number of iterations = 1 +Initial residual = 0.001165 +Final residual = 0.000054 +Average conv. rate = 0.046566 + +* 2 2 1 0.116456E-02 0.542285E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3770 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.01 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3770 Max w this run +w_max level proc position run w_max level timestep +0.616E+00 29 174 166.9deg E -25.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3771 Model time: 1979-03-20 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043756 + +* 1 1 3 0.100000E+01 0.837719E-04 * +Number of iterations = 2 +Initial residual = 0.014929 +Final residual = 0.000048 +Average conv. rate = 0.056525 + +* 1 2 2 0.149289E-01 0.476983E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092548 +Final residual = 0.000100 +Average conv. rate = 0.032826 + +* 2 1 2 0.925481E-01 0.997277E-04 * +Number of iterations = 1 +Initial residual = 0.001165 +Final residual = 0.000055 +Average conv. rate = 0.046866 + +* 2 2 1 0.116531E-02 0.546131E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3771 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.97 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3771 Max w this run +w_max level proc position run w_max level timestep +0.621E+00 31 174 166.9deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3772 Model time: 1979-03-20 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043550 + +* 1 1 3 0.100000E+01 0.825964E-04 * +Number of iterations = 2 +Initial residual = 0.014821 +Final residual = 0.000047 +Average conv. rate = 0.056234 + +* 1 2 2 0.148213E-01 0.468691E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093454 +Final residual = 0.000013 +Average conv. rate = 0.052141 + +* 2 1 3 0.934539E-01 0.132477E-04 * +Number of iterations = 1 +Initial residual = 0.001220 +Final residual = 0.000054 +Average conv. rate = 0.044112 + +* 2 2 1 0.121963E-02 0.537998E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3772 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.94 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.36K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3772 Max w this run +w_max level proc position run w_max level timestep +0.489E+00 31 174 166.9deg E -25.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3773 Model time: 1979-03-20 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044478 + +* 1 1 3 0.100000E+01 0.879887E-04 * +Number of iterations = 2 +Initial residual = 0.014839 +Final residual = 0.000047 +Average conv. rate = 0.056201 + +* 1 2 2 0.148395E-01 0.468717E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091888 +Final residual = 0.000099 +Average conv. rate = 0.032826 + +* 2 1 2 0.918883E-01 0.990112E-04 * +Number of iterations = 1 +Initial residual = 0.001180 +Final residual = 0.000055 +Average conv. rate = 0.046193 + +* 2 2 1 0.118045E-02 0.545291E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3773 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.93 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.29K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3773 Max w this run +w_max level proc position run w_max level timestep +0.451E+00 34 175 168.8deg E -24.4deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3774 Model time: 1979-03-20 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043891 + +* 1 1 3 0.100000E+01 0.845540E-04 * +Number of iterations = 2 +Initial residual = 0.014769 +Final residual = 0.000047 +Average conv. rate = 0.056409 + +* 1 2 2 0.147689E-01 0.469945E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091403 +Final residual = 0.000011 +Average conv. rate = 0.048665 + +* 2 1 3 0.914028E-01 0.105343E-04 * +Number of iterations = 1 +Initial residual = 0.001175 +Final residual = 0.000054 +Average conv. rate = 0.045622 + +* 2 2 1 0.117510E-02 0.536105E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3774 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.94 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3774 Max w this run +w_max level proc position run w_max level timestep +0.416E+00 32 175 170.6deg E -24.4deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3775 Model time: 1979-03-20 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043924 + +* 1 1 3 0.100000E+01 0.847454E-04 * +Number of iterations = 2 +Initial residual = 0.014850 +Final residual = 0.000047 +Average conv. rate = 0.056435 + +* 1 2 2 0.148501E-01 0.472964E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091092 +Final residual = 0.000012 +Average conv. rate = 0.051159 + +* 2 1 3 0.910924E-01 0.121968E-04 * +Number of iterations = 1 +Initial residual = 0.001170 +Final residual = 0.000054 +Average conv. rate = 0.046150 + +* 2 2 1 0.116952E-02 0.539735E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3775 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.98 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.24K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3775 Max w this run +w_max level proc position run w_max level timestep +0.433E+00 37 175 168.8deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3776 Model time: 1979-03-20 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044160 + +* 1 1 3 0.100000E+01 0.861159E-04 * +Number of iterations = 2 +Initial residual = 0.014847 +Final residual = 0.000049 +Average conv. rate = 0.057187 + +* 1 2 2 0.148470E-01 0.485541E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091991 +Final residual = 0.000012 +Average conv. rate = 0.050695 + +* 2 1 3 0.919908E-01 0.119849E-04 * +Number of iterations = 1 +Initial residual = 0.001172 +Final residual = 0.000054 +Average conv. rate = 0.045662 + +* 2 2 1 0.117183E-02 0.535081E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3776 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.03 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.24K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3776 Max w this run +w_max level proc position run w_max level timestep +0.508E+00 40 257 20.6deg E 6.9deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3777 Model time: 1979-03-20 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043647 + +* 1 1 3 0.100000E+01 0.831483E-04 * +Number of iterations = 2 +Initial residual = 0.014864 +Final residual = 0.000048 +Average conv. rate = 0.056640 + +* 1 2 2 0.148638E-01 0.476851E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091906 +Final residual = 0.000010 +Average conv. rate = 0.048345 + +* 2 1 3 0.919062E-01 0.103849E-04 * +Number of iterations = 1 +Initial residual = 0.001164 +Final residual = 0.000053 +Average conv. rate = 0.045349 + +* 2 2 1 0.116378E-02 0.527766E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3777 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.11 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3777 Max w this run +w_max level proc position run w_max level timestep +0.530E+00 35 175 168.8deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3778 Model time: 1979-03-20 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043317 + +* 1 1 3 0.100000E+01 0.812799E-04 * +Number of iterations = 2 +Initial residual = 0.014693 +Final residual = 0.000048 +Average conv. rate = 0.056940 + +* 1 2 2 0.146926E-01 0.476356E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091175 +Final residual = 0.000099 +Average conv. rate = 0.032953 + +* 2 1 2 0.911746E-01 0.990040E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000053 +Average conv. rate = 0.045833 + +* 2 2 1 0.115733E-02 0.530435E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3778 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.20 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.23K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3778 Max w this run +w_max level proc position run w_max level timestep +0.511E+00 30 175 168.8deg E -25.6deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3779 Model time: 1979-03-20 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043333 + +* 1 1 3 0.100000E+01 0.813665E-04 * +Number of iterations = 2 +Initial residual = 0.014688 +Final residual = 0.000048 +Average conv. rate = 0.057150 + +* 1 2 2 0.146876E-01 0.479711E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091862 +Final residual = 0.000098 +Average conv. rate = 0.032711 + +* 2 1 2 0.918620E-01 0.982938E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000053 +Average conv. rate = 0.046082 + +* 2 2 1 0.115719E-02 0.533254E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3779 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.33 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3779 Max w this run +w_max level proc position run w_max level timestep +0.521E+00 26 175 168.8deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3780 Model time: 1979-03-20 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043580 + +* 1 1 3 0.100000E+01 0.827705E-04 * +Number of iterations = 2 +Initial residual = 0.014665 +Final residual = 0.000047 +Average conv. rate = 0.056673 + +* 1 2 2 0.146649E-01 0.471012E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091561 +Final residual = 0.000096 +Average conv. rate = 0.032413 + +* 2 1 2 0.915605E-01 0.961935E-04 * +Number of iterations = 1 +Initial residual = 0.001151 +Final residual = 0.000052 +Average conv. rate = 0.045592 + +* 2 2 1 0.115113E-02 0.524820E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3780 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.47 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.12K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3780 Max w this run +w_max level proc position run w_max level timestep +0.581E+00 27 175 168.8deg E -25.6deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3781 Model time: 1979-03-20 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043391 + +* 1 1 3 0.100000E+01 0.816965E-04 * +Number of iterations = 2 +Initial residual = 0.014742 +Final residual = 0.000047 +Average conv. rate = 0.056564 + +* 1 2 2 0.147425E-01 0.471674E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092694 +Final residual = 0.000098 +Average conv. rate = 0.032452 + +* 2 1 2 0.926942E-01 0.976221E-04 * +Number of iterations = 1 +Initial residual = 0.001158 +Final residual = 0.000053 +Average conv. rate = 0.045495 + +* 2 2 1 0.115828E-02 0.526956E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3781 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.62 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3781 Max w this run +w_max level proc position run w_max level timestep +0.610E+00 28 175 168.8deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3782 Model time: 1979-03-20 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043610 + +* 1 1 3 0.100000E+01 0.829393E-04 * +Number of iterations = 2 +Initial residual = 0.014697 +Final residual = 0.000047 +Average conv. rate = 0.056567 + +* 1 2 2 0.146975E-01 0.470294E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090799 +Final residual = 0.000095 +Average conv. rate = 0.032282 + +* 2 1 2 0.907987E-01 0.946237E-04 * +Number of iterations = 1 +Initial residual = 0.001144 +Final residual = 0.000052 +Average conv. rate = 0.045631 + +* 2 2 1 0.114375E-02 0.521901E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3782 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.78 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3782 Max w this run +w_max level proc position run w_max level timestep +0.623E+00 29 175 168.8deg E -25.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3783 Model time: 1979-03-20 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043792 + +* 1 1 3 0.100000E+01 0.839807E-04 * +Number of iterations = 2 +Initial residual = 0.014760 +Final residual = 0.000047 +Average conv. rate = 0.056659 + +* 1 2 2 0.147605E-01 0.473850E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092852 +Final residual = 0.000097 +Average conv. rate = 0.032349 + +* 2 1 2 0.928524E-01 0.971665E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000053 +Average conv. rate = 0.045871 + +* 2 2 1 0.115748E-02 0.530952E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3783 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.80 42 116.3deg E -75.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3783 Max w this run +w_max level proc position run w_max level timestep +0.602E+00 29 175 168.8deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3784 Model time: 1979-03-20 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043818 + +* 1 1 3 0.100000E+01 0.841296E-04 * +Number of iterations = 2 +Initial residual = 0.014707 +Final residual = 0.000047 +Average conv. rate = 0.056781 + +* 1 2 2 0.147070E-01 0.474163E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091840 +Final residual = 0.000097 +Average conv. rate = 0.032439 + +* 2 1 2 0.918397E-01 0.966398E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000053 +Average conv. rate = 0.046871 + +* 2 2 1 0.113382E-02 0.531430E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3784 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.67 43 123.7deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.97K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3784 Max w this run +w_max level proc position run w_max level timestep +0.570E+00 29 175 168.8deg E -25.6deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3785 Model time: 1979-03-20 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044034 + +* 1 1 3 0.100000E+01 0.853832E-04 * +Number of iterations = 2 +Initial residual = 0.014728 +Final residual = 0.000048 +Average conv. rate = 0.056938 + +* 1 2 2 0.147282E-01 0.477474E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092386 +Final residual = 0.000099 +Average conv. rate = 0.032779 + +* 2 1 2 0.923862E-01 0.992629E-04 * +Number of iterations = 1 +Initial residual = 0.001163 +Final residual = 0.000054 +Average conv. rate = 0.046069 + +* 2 2 1 0.116261E-02 0.535603E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3785 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.46 43 123.7deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.60K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3785 Max w this run +w_max level proc position run w_max level timestep +0.568E+00 36 258 22.5deg E 5.6deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3786 Model time: 1979-03-20 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043967 + +* 1 1 3 0.100000E+01 0.849939E-04 * +Number of iterations = 2 +Initial residual = 0.014621 +Final residual = 0.000047 +Average conv. rate = 0.056863 + +* 1 2 2 0.146206E-01 0.472747E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094503 +Final residual = 0.000012 +Average conv. rate = 0.050129 + +* 2 1 3 0.945026E-01 0.119047E-04 * +Number of iterations = 1 +Initial residual = 0.001184 +Final residual = 0.000053 +Average conv. rate = 0.044739 + +* 2 2 1 0.118379E-02 0.529614E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3786 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.29 43 123.7deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -21.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3786 Max w this run +w_max level proc position run w_max level timestep +0.545E+00 37 258 22.5deg E 5.6deg N 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3787 Model time: 1979-03-20 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043819 + +* 1 1 3 0.100000E+01 0.841367E-04 * +Number of iterations = 2 +Initial residual = 0.014669 +Final residual = 0.000048 +Average conv. rate = 0.056925 + +* 1 2 2 0.146686E-01 0.475324E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094121 +Final residual = 0.000016 +Average conv. rate = 0.055163 + +* 2 1 3 0.941212E-01 0.157991E-04 * +Number of iterations = 1 +Initial residual = 0.001193 +Final residual = 0.000054 +Average conv. rate = 0.044928 + +* 2 2 1 0.119318E-02 0.536077E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3787 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.11 43 123.7deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3787 Max w this run +w_max level proc position run w_max level timestep +0.624E+00 27 175 176.2deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3788 Model time: 1979-03-20 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044483 + +* 1 1 3 0.100000E+01 0.880210E-04 * +Number of iterations = 2 +Initial residual = 0.014552 +Final residual = 0.000048 +Average conv. rate = 0.057219 + +* 1 2 2 0.145521E-01 0.476433E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093215 +Final residual = 0.000014 +Average conv. rate = 0.053372 + +* 2 1 3 0.932148E-01 0.141720E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000053 +Average conv. rate = 0.043933 + +* 2 2 1 0.120634E-02 0.529987E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3788 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.98 43 123.7deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3788 Max w this run +w_max level proc position run w_max level timestep +0.618E+00 26 175 176.2deg E -25.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3789 Model time: 1979-03-20 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044703 + +* 1 1 3 0.100000E+01 0.893344E-04 * +Number of iterations = 2 +Initial residual = 0.014580 +Final residual = 0.000048 +Average conv. rate = 0.057626 + +* 1 2 2 0.145802E-01 0.484173E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095712 +Final residual = 0.000015 +Average conv. rate = 0.053421 + +* 2 1 3 0.957121E-01 0.145914E-04 * +Number of iterations = 1 +Initial residual = 0.001210 +Final residual = 0.000053 +Average conv. rate = 0.043759 + +* 2 2 1 0.121037E-02 0.529644E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3789 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.90 43 123.7deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -19.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3789 Max w this run +w_max level proc position run w_max level timestep +0.603E+00 26 175 176.2deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3790 Model time: 1979-03-20 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045211 + +* 1 1 3 0.100000E+01 0.924102E-04 * +Number of iterations = 2 +Initial residual = 0.014579 +Final residual = 0.000051 +Average conv. rate = 0.059206 + +* 1 2 2 0.145787E-01 0.511034E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096184 +Final residual = 0.000013 +Average conv. rate = 0.051027 + +* 2 1 3 0.961838E-01 0.127790E-04 * +Number of iterations = 1 +Initial residual = 0.001213 +Final residual = 0.000053 +Average conv. rate = 0.043689 + +* 2 2 1 0.121299E-02 0.529947E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3790 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.91 43 123.7deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -19.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3790 Max w this run +w_max level proc position run w_max level timestep +0.596E+00 35 258 26.3deg E 5.6deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3791 Model time: 1979-03-20 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045126 + +* 1 1 3 0.100000E+01 0.918946E-04 * +Number of iterations = 2 +Initial residual = 0.014695 +Final residual = 0.000050 +Average conv. rate = 0.058471 + +* 1 2 2 0.146945E-01 0.502384E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095575 +Final residual = 0.000012 +Average conv. rate = 0.049836 + +* 2 1 3 0.955754E-01 0.118297E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000053 +Average conv. rate = 0.044034 + +* 2 2 1 0.120609E-02 0.531096E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3791 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.12 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3791 Max w this run +w_max level proc position run w_max level timestep +0.616E+00 27 175 176.2deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3792 Model time: 1979-03-21 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044744 + +* 1 1 3 0.100000E+01 0.895761E-04 * +Number of iterations = 2 +Initial residual = 0.014682 +Final residual = 0.000051 +Average conv. rate = 0.058706 + +* 1 2 2 0.146823E-01 0.506009E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096153 +Final residual = 0.000012 +Average conv. rate = 0.049515 + +* 2 1 3 0.961530E-01 0.116729E-04 * +Number of iterations = 1 +Initial residual = 0.001217 +Final residual = 0.000053 +Average conv. rate = 0.043441 + +* 2 2 1 0.121663E-02 0.528516E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13056E+25 +tot dry energy 0.13057E+25 +gr( rho cal) 0.38109E+24 +KE( rho cal) 0.84396E+21 +KEu(rho cal) 0.64940E+21 +KEv(rho cal) 0.19456E+21 +KEw(rho cal) 0.11583E+16 +cvT( rho cal) 0.92379E+24 +lq ( rho cal) 0.30805E+23 +lqcf( rho cal) 0.64173E+20 +lqcl( rho cal) 0.44563E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12358E+17 KG +Initial moisture = 0.12330E+17 KG +change in moisture = 0.27971E+14 KG +Moisture added E-P in period = 0.27670E+14 KG +Error in moisture = 0.30081E+12 KG +Error as % of change = 0.10755E+01 +q ( rho cal) 0.12317E+17 +qcf( rho cal) 0.25659E+14 +qcl( rho cal) 0.15719E+14 +FINAL TOTAL ENERGY = 0.13056E+25 J/ +INITIAL TOTAL ENERGY = 0.13057E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.57224E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.53054E+20 J/ +ERROR IN ENERGY BUDGET = 0.41699E+19 J/ +TEMP CORRECTION OVER A DAY = 0.11323E-02 K +TEMPERATURE CORRECTION RATE = 0.13105E-07 K/S +FLUX CORRECTION (ATM) = 0.94614E-01 W/M2 + +Minimum theta level 1 for timestep 3792 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.02 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.28K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3792 Max w this run +w_max level proc position run w_max level timestep +0.617E+00 28 175 176.2deg E -25.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6108.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6108.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD5 +REPLANCA - time interpolation for ancillary field, stashcode 216 +targ_time,time1,time2 -6060.00000 -12396.00000 -3636.00000 +hours,int,period -32768 12 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1162 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 9 Number of steps129 +STASH code in dataset 216 STASH code requested 216 +'start' position of lookup tables for dataset 4in overall lookup array 182173 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6108.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6108.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6108.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6108.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3793 Model time: 1979-03-21 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000091 +Average conv. rate = 0.044952 + +* 1 1 3 0.100000E+01 0.908339E-04 * +Number of iterations = 2 +Initial residual = 0.014777 +Final residual = 0.000050 +Average conv. rate = 0.058182 + +* 1 2 2 0.147770E-01 0.500217E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096279 +Final residual = 0.000016 +Average conv. rate = 0.054891 + +* 2 1 3 0.962794E-01 0.159236E-04 * +Number of iterations = 1 +Initial residual = 0.001213 +Final residual = 0.000053 +Average conv. rate = 0.043945 + +* 2 2 1 0.121293E-02 0.533023E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3793 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.01 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.58K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3793 Max w this run +w_max level proc position run w_max level timestep +0.655E+00 28 175 176.2deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3794 Model time: 1979-03-21 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044860 + +* 1 1 3 0.100000E+01 0.902796E-04 * +Number of iterations = 2 +Initial residual = 0.014797 +Final residual = 0.000050 +Average conv. rate = 0.058004 + +* 1 2 2 0.147965E-01 0.497832E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096092 +Final residual = 0.000015 +Average conv. rate = 0.053710 + +* 2 1 3 0.960918E-01 0.148882E-04 * +Number of iterations = 1 +Initial residual = 0.001220 +Final residual = 0.000054 +Average conv. rate = 0.043885 + +* 2 2 1 0.122018E-02 0.535477E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3794 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.09 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.95K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3794 Max w this run +w_max level proc position run w_max level timestep +0.666E+00 27 175 176.2deg E -25.6deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3795 Model time: 1979-03-21 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044723 + +* 1 1 3 0.100000E+01 0.894505E-04 * +Number of iterations = 2 +Initial residual = 0.014789 +Final residual = 0.000049 +Average conv. rate = 0.057529 + +* 1 2 2 0.147886E-01 0.489446E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099191 +Final residual = 0.000015 +Average conv. rate = 0.052831 + +* 2 1 3 0.991907E-01 0.146266E-04 * +Number of iterations = 1 +Initial residual = 0.001327 +Final residual = 0.000054 +Average conv. rate = 0.040853 + +* 2 2 1 0.132657E-02 0.541943E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3795 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.17 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.75K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3795 Max w this run +w_max level proc position run w_max level timestep +0.711E+00 31 258 26.3deg E 5.6deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3796 Model time: 1979-03-21 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044237 + +* 1 1 3 0.100000E+01 0.865682E-04 * +Number of iterations = 2 +Initial residual = 0.014744 +Final residual = 0.000051 +Average conv. rate = 0.058611 + +* 1 2 2 0.147442E-01 0.506493E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098166 +Final residual = 0.000015 +Average conv. rate = 0.053427 + +* 2 1 3 0.981662E-01 0.149711E-04 * +Number of iterations = 1 +Initial residual = 0.001240 +Final residual = 0.000054 +Average conv. rate = 0.043395 + +* 2 2 1 0.123993E-02 0.538067E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3796 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.13 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3796 Max w this run +w_max level proc position run w_max level timestep +0.767E+00 30 258 26.3deg E 5.6deg N 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3797 Model time: 1979-03-21 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043903 + +* 1 1 3 0.100000E+01 0.846202E-04 * +Number of iterations = 2 +Initial residual = 0.014811 +Final residual = 0.000050 +Average conv. rate = 0.057815 + +* 1 2 2 0.148114E-01 0.495078E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099558 +Final residual = 0.000015 +Average conv. rate = 0.053606 + +* 2 1 3 0.995578E-01 0.153365E-04 * +Number of iterations = 1 +Initial residual = 0.001294 +Final residual = 0.000053 +Average conv. rate = 0.041105 + +* 2 2 1 0.129390E-02 0.531859E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3797 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.11 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.55K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3797 Max w this run +w_max level proc position run w_max level timestep +0.689E+00 33 258 26.3deg E 5.6deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3798 Model time: 1979-03-21 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043151 + +* 1 1 3 0.100000E+01 0.803455E-04 * +Number of iterations = 2 +Initial residual = 0.014754 +Final residual = 0.000048 +Average conv. rate = 0.057210 + +* 1 2 2 0.147544E-01 0.482909E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096633 +Final residual = 0.000015 +Average conv. rate = 0.053207 + +* 2 1 3 0.966332E-01 0.145553E-04 * +Number of iterations = 1 +Initial residual = 0.001215 +Final residual = 0.000053 +Average conv. rate = 0.043491 + +* 2 2 1 0.121450E-02 0.528198E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3798 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.10 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3798 Max w this run +w_max level proc position run w_max level timestep +0.535E+00 34 258 26.3deg E 5.6deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3799 Model time: 1979-03-21 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043438 + +* 1 1 3 0.100000E+01 0.819594E-04 * +Number of iterations = 2 +Initial residual = 0.014818 +Final residual = 0.000048 +Average conv. rate = 0.056850 + +* 1 2 2 0.148184E-01 0.478911E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095632 +Final residual = 0.000013 +Average conv. rate = 0.051986 + +* 2 1 3 0.956320E-01 0.134355E-04 * +Number of iterations = 1 +Initial residual = 0.001259 +Final residual = 0.000054 +Average conv. rate = 0.042633 + +* 2 2 1 0.125862E-02 0.536583E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3799 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.10 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.30K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3799 Max w this run +w_max level proc position run w_max level timestep +0.576E+00 27 175 176.2deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3800 Model time: 1979-03-21 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043579 + +* 1 1 3 0.100000E+01 0.827633E-04 * +Number of iterations = 2 +Initial residual = 0.014874 +Final residual = 0.000049 +Average conv. rate = 0.057364 + +* 1 2 2 0.148742E-01 0.489457E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094648 +Final residual = 0.000014 +Average conv. rate = 0.052505 + +* 2 1 3 0.946480E-01 0.136996E-04 * +Number of iterations = 1 +Initial residual = 0.001237 +Final residual = 0.000053 +Average conv. rate = 0.043002 + +* 2 2 1 0.123719E-02 0.532010E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3800 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.13 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.64K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3800 Max w this run +w_max level proc position run w_max level timestep +0.623E+00 31 133 65.6deg E -34.4deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3801 Model time: 1979-03-21 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043363 + +* 1 1 3 0.100000E+01 0.815366E-04 * +Number of iterations = 2 +Initial residual = 0.015003 +Final residual = 0.000048 +Average conv. rate = 0.056296 + +* 1 2 2 0.150029E-01 0.475475E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093655 +Final residual = 0.000013 +Average conv. rate = 0.051889 + +* 2 1 3 0.936550E-01 0.130845E-04 * +Number of iterations = 1 +Initial residual = 0.001214 +Final residual = 0.000053 +Average conv. rate = 0.043321 + +* 2 2 1 0.121365E-02 0.525761E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3801 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.21 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3801 Max w this run +w_max level proc position run w_max level timestep +0.703E+00 29 133 65.6deg E -34.4deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3802 Model time: 1979-03-21 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043275 + +* 1 1 3 0.100000E+01 0.810436E-04 * +Number of iterations = 2 +Initial residual = 0.014966 +Final residual = 0.000049 +Average conv. rate = 0.057086 + +* 1 2 2 0.149662E-01 0.487720E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091811 +Final residual = 0.000014 +Average conv. rate = 0.053098 + +* 2 1 3 0.918108E-01 0.137443E-04 * +Number of iterations = 1 +Initial residual = 0.001217 +Final residual = 0.000052 +Average conv. rate = 0.042793 + +* 2 2 1 0.121744E-02 0.520983E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3802 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.37 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.11K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3802 Max w this run +w_max level proc position run w_max level timestep +0.837E+00 30 133 65.6deg E -34.4deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3803 Model time: 1979-03-21 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043592 + +* 1 1 3 0.100000E+01 0.828361E-04 * +Number of iterations = 2 +Initial residual = 0.014931 +Final residual = 0.000049 +Average conv. rate = 0.057059 + +* 1 2 2 0.149313E-01 0.486115E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094175 +Final residual = 0.000013 +Average conv. rate = 0.051770 + +* 2 1 3 0.941746E-01 0.130668E-04 * +Number of iterations = 1 +Initial residual = 0.001258 +Final residual = 0.000052 +Average conv. rate = 0.041451 + +* 2 2 1 0.125842E-02 0.521630E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3803 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.63 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.19K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3803 Max w this run +w_max level proc position run w_max level timestep +0.827E+00 28 133 65.6deg E -34.4deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3804 Model time: 1979-03-21 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043584 + +* 1 1 3 0.100000E+01 0.827934E-04 * +Number of iterations = 2 +Initial residual = 0.014742 +Final residual = 0.000048 +Average conv. rate = 0.057292 + +* 1 2 2 0.147418E-01 0.483883E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093684 +Final residual = 0.000099 +Average conv. rate = 0.032516 + +* 2 1 2 0.936838E-01 0.990511E-04 * +Number of iterations = 1 +Initial residual = 0.001255 +Final residual = 0.000052 +Average conv. rate = 0.041347 + +* 2 2 1 0.125488E-02 0.518850E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3804 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.97 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.17K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3804 Max w this run +w_max level proc position run w_max level timestep +0.853E+00 29 133 65.6deg E -34.4deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3805 Model time: 1979-03-21 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043254 + +* 1 1 3 0.100000E+01 0.809242E-04 * +Number of iterations = 2 +Initial residual = 0.014698 +Final residual = 0.000048 +Average conv. rate = 0.057386 + +* 1 2 2 0.146980E-01 0.484023E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.098623 +Final residual = 0.000096 +Average conv. rate = 0.031185 + +* 2 1 2 0.986230E-01 0.959118E-04 * +Number of iterations = 1 +Initial residual = 0.001418 +Final residual = 0.000052 +Average conv. rate = 0.036464 + +* 2 2 1 0.141765E-02 0.516930E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3805 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.40 3 37.5deg E -81.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3805 Max w this run +w_max level proc position run w_max level timestep +0.734E+00 28 133 65.6deg E -34.4deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3806 Model time: 1979-03-21 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044271 + +* 1 1 3 0.100000E+01 0.867700E-04 * +Number of iterations = 2 +Initial residual = 0.014605 +Final residual = 0.000049 +Average conv. rate = 0.057717 + +* 1 2 2 0.146050E-01 0.486532E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094227 +Final residual = 0.000097 +Average conv. rate = 0.032058 + +* 2 1 2 0.942271E-01 0.968394E-04 * +Number of iterations = 1 +Initial residual = 0.001237 +Final residual = 0.000051 +Average conv. rate = 0.041426 + +* 2 2 1 0.123688E-02 0.512392E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3806 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.82 0 7.5deg E -85.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -1.27K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3806 Max w this run +w_max level proc position run w_max level timestep +0.762E+00 30 133 65.6deg E -34.4deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3807 Model time: 1979-03-21 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043840 + +* 1 1 3 0.100000E+01 0.842609E-04 * +Number of iterations = 2 +Initial residual = 0.014562 +Final residual = 0.000048 +Average conv. rate = 0.057164 + +* 1 2 2 0.145623E-01 0.475859E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095943 +Final residual = 0.000095 +Average conv. rate = 0.031532 + +* 2 1 2 0.959429E-01 0.953901E-04 * +Number of iterations = 1 +Initial residual = 0.001194 +Final residual = 0.000051 +Average conv. rate = 0.042809 + +* 2 2 1 0.119361E-02 0.510969E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3807 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.89 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3807 Max w this run +w_max level proc position run w_max level timestep +0.695E+00 29 133 65.6deg E -34.4deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3808 Model time: 1979-03-21 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043489 + +* 1 1 3 0.100000E+01 0.822520E-04 * +Number of iterations = 2 +Initial residual = 0.014457 +Final residual = 0.000048 +Average conv. rate = 0.057697 + +* 1 2 2 0.144573E-01 0.481280E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095243 +Final residual = 0.000093 +Average conv. rate = 0.031239 + +* 2 1 2 0.952433E-01 0.929482E-04 * +Number of iterations = 1 +Initial residual = 0.001196 +Final residual = 0.000051 +Average conv. rate = 0.042532 + +* 2 2 1 0.119573E-02 0.508567E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3808 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.94 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.88K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3808 Max w this run +w_max level proc position run w_max level timestep +0.625E+00 33 258 26.3deg E 4.4deg N 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3809 Model time: 1979-03-21 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043232 + +* 1 1 3 0.100000E+01 0.808019E-04 * +Number of iterations = 2 +Initial residual = 0.014404 +Final residual = 0.000049 +Average conv. rate = 0.058258 + +* 1 2 2 0.144039E-01 0.488871E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094899 +Final residual = 0.000095 +Average conv. rate = 0.031590 + +* 2 1 2 0.948995E-01 0.947003E-04 * +Number of iterations = 1 +Initial residual = 0.001190 +Final residual = 0.000051 +Average conv. rate = 0.042886 + +* 2 2 1 0.119050E-02 0.510554E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3809 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.00 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3809 Max w this run +w_max level proc position run w_max level timestep +0.592E+00 27 175 176.2deg E -25.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3810 Model time: 1979-03-21 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043259 + +* 1 1 3 0.100000E+01 0.809524E-04 * +Number of iterations = 2 +Initial residual = 0.014316 +Final residual = 0.000046 +Average conv. rate = 0.056641 + +* 1 2 2 0.143164E-01 0.459302E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092667 +Final residual = 0.000094 +Average conv. rate = 0.031824 + +* 2 1 2 0.926674E-01 0.938487E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000051 +Average conv. rate = 0.042732 + +* 2 2 1 0.118832E-02 0.507795E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3810 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.07 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3810 Max w this run +w_max level proc position run w_max level timestep +0.628E+00 25 134 67.5deg E -35.6deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3811 Model time: 1979-03-21 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043287 + +* 1 1 3 0.100000E+01 0.811100E-04 * +Number of iterations = 2 +Initial residual = 0.014345 +Final residual = 0.000047 +Average conv. rate = 0.057194 + +* 1 2 2 0.143452E-01 0.469256E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093600 +Final residual = 0.000097 +Average conv. rate = 0.032116 + +* 2 1 2 0.935999E-01 0.965401E-04 * +Number of iterations = 1 +Initial residual = 0.001190 +Final residual = 0.000052 +Average conv. rate = 0.043409 + +* 2 2 1 0.119041E-02 0.516741E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3811 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.13 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.12K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3811 Max w this run +w_max level proc position run w_max level timestep +0.691E+00 25 134 67.5deg E -35.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3812 Model time: 1979-03-21 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042964 + +* 1 1 3 0.100000E+01 0.793079E-04 * +Number of iterations = 2 +Initial residual = 0.014358 +Final residual = 0.000047 +Average conv. rate = 0.056977 + +* 1 2 2 0.143579E-01 0.466114E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093388 +Final residual = 0.000095 +Average conv. rate = 0.031891 + +* 2 1 2 0.933877E-01 0.949784E-04 * +Number of iterations = 1 +Initial residual = 0.001200 +Final residual = 0.000051 +Average conv. rate = 0.042803 + +* 2 2 1 0.119969E-02 0.513503E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3812 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.21 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.19K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3812 Max w this run +w_max level proc position run w_max level timestep +0.799E+00 26 134 67.5deg E -35.6deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3813 Model time: 1979-03-21 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043351 + +* 1 1 3 0.100000E+01 0.814702E-04 * +Number of iterations = 2 +Initial residual = 0.014564 +Final residual = 0.000048 +Average conv. rate = 0.057580 + +* 1 2 2 0.145644E-01 0.482884E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094647 +Final residual = 0.000098 +Average conv. rate = 0.032189 + +* 2 1 2 0.946475E-01 0.980689E-04 * +Number of iterations = 1 +Initial residual = 0.001181 +Final residual = 0.000052 +Average conv. rate = 0.044258 + +* 2 2 1 0.118107E-02 0.522722E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3813 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.30 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.26K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3813 Max w this run +w_max level proc position run w_max level timestep +0.778E+00 26 134 67.5deg E -35.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3814 Model time: 1979-03-21 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042900 + +* 1 1 3 0.100000E+01 0.789562E-04 * +Number of iterations = 2 +Initial residual = 0.014667 +Final residual = 0.000048 +Average conv. rate = 0.057308 + +* 1 2 2 0.146668E-01 0.481684E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093439 +Final residual = 0.000096 +Average conv. rate = 0.032057 + +* 2 1 2 0.934390E-01 0.960237E-04 * +Number of iterations = 1 +Initial residual = 0.001183 +Final residual = 0.000052 +Average conv. rate = 0.044389 + +* 2 2 1 0.118253E-02 0.524917E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3814 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.41 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3814 Max w this run +w_max level proc position run w_max level timestep +0.773E+00 27 134 67.5deg E -35.6deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3815 Model time: 1979-03-21 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043611 + +* 1 1 3 0.100000E+01 0.829436E-04 * +Number of iterations = 2 +Initial residual = 0.014770 +Final residual = 0.000050 +Average conv. rate = 0.057900 + +* 1 2 2 0.147698E-01 0.495140E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094186 +Final residual = 0.000098 +Average conv. rate = 0.032336 + +* 2 1 2 0.941864E-01 0.984817E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000052 +Average conv. rate = 0.043750 + +* 2 2 1 0.118784E-02 0.519683E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3815 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.54 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3815 Max w this run +w_max level proc position run w_max level timestep +0.759E+00 27 134 67.5deg E -35.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3816 Model time: 1979-03-21 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043535 + +* 1 1 3 0.100000E+01 0.825099E-04 * +Number of iterations = 2 +Initial residual = 0.014558 +Final residual = 0.000050 +Average conv. rate = 0.058351 + +* 1 2 2 0.145584E-01 0.495696E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.096121 +Final residual = 0.000096 +Average conv. rate = 0.031636 + +* 2 1 2 0.961206E-01 0.962014E-04 * +Number of iterations = 1 +Initial residual = 0.001250 +Final residual = 0.000051 +Average conv. rate = 0.040979 + +* 2 2 1 0.125019E-02 0.512315E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3816 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.68 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.37K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3816 Max w this run +w_max level proc position run w_max level timestep +0.695E+00 28 134 67.5deg E -35.6deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3817 Model time: 1979-03-21 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044219 + +* 1 1 3 0.100000E+01 0.864611E-04 * +Number of iterations = 2 +Initial residual = 0.014453 +Final residual = 0.000051 +Average conv. rate = 0.059211 + +* 1 2 2 0.144532E-01 0.506712E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.096074 +Final residual = 0.000096 +Average conv. rate = 0.031664 + +* 2 1 2 0.960741E-01 0.963277E-04 * +Number of iterations = 1 +Initial residual = 0.001214 +Final residual = 0.000051 +Average conv. rate = 0.042215 + +* 2 2 1 0.121394E-02 0.512469E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3817 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.84 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3817 Max w this run +w_max level proc position run w_max level timestep +0.615E+00 30 134 67.5deg E -35.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3818 Model time: 1979-03-21 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044144 + +* 1 1 3 0.100000E+01 0.860231E-04 * +Number of iterations = 2 +Initial residual = 0.014313 +Final residual = 0.000049 +Average conv. rate = 0.058797 + +* 1 2 2 0.143126E-01 0.494806E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095955 +Final residual = 0.000097 +Average conv. rate = 0.031799 + +* 2 1 2 0.959555E-01 0.970275E-04 * +Number of iterations = 1 +Initial residual = 0.001191 +Final residual = 0.000052 +Average conv. rate = 0.043708 + +* 2 2 1 0.119060E-02 0.520382E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3818 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.00 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3818 Max w this run +w_max level proc position run w_max level timestep +0.510E+00 21 443 50.6deg W 63.1deg N 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3819 Model time: 1979-03-21 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044224 + +* 1 1 3 0.100000E+01 0.864944E-04 * +Number of iterations = 2 +Initial residual = 0.014349 +Final residual = 0.000050 +Average conv. rate = 0.058804 + +* 1 2 2 0.143494E-01 0.496194E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094190 +Final residual = 0.000095 +Average conv. rate = 0.031695 + +* 2 1 2 0.941903E-01 0.946201E-04 * +Number of iterations = 1 +Initial residual = 0.001173 +Final residual = 0.000052 +Average conv. rate = 0.044231 + +* 2 2 1 0.117299E-02 0.518821E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3819 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.19 503 95.6deg W 80.0deg N 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.41K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3819 Max w this run +w_max level proc position run w_max level timestep +0.510E+00 21 443 50.6deg W 63.1deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3820 Model time: 1979-03-21 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044456 + +* 1 1 3 0.100000E+01 0.878608E-04 * +Number of iterations = 2 +Initial residual = 0.014281 +Final residual = 0.000049 +Average conv. rate = 0.058422 + +* 1 2 2 0.142812E-01 0.487432E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094409 +Final residual = 0.000097 +Average conv. rate = 0.032003 + +* 2 1 2 0.944091E-01 0.966932E-04 * +Number of iterations = 1 +Initial residual = 0.001168 +Final residual = 0.000052 +Average conv. rate = 0.044491 + +* 2 2 1 0.116764E-02 0.519495E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3820 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.01 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.80K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3820 Max w this run +w_max level proc position run w_max level timestep +0.539E+00 31 134 69.4deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3821 Model time: 1979-03-21 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043693 + +* 1 1 3 0.100000E+01 0.834135E-04 * +Number of iterations = 2 +Initial residual = 0.014308 +Final residual = 0.000048 +Average conv. rate = 0.058131 + +* 1 2 2 0.143078E-01 0.483492E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094926 +Final residual = 0.000097 +Average conv. rate = 0.031923 + +* 2 1 2 0.949256E-01 0.967373E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000053 +Average conv. rate = 0.044030 + +* 2 2 1 0.120441E-02 0.530307E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3821 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.79 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3821 Max w this run +w_max level proc position run w_max level timestep +0.549E+00 31 134 69.4deg E -36.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3822 Model time: 1979-03-21 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043887 + +* 1 1 3 0.100000E+01 0.845272E-04 * +Number of iterations = 2 +Initial residual = 0.014240 +Final residual = 0.000049 +Average conv. rate = 0.058614 + +* 1 2 2 0.142399E-01 0.489227E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093521 +Final residual = 0.000096 +Average conv. rate = 0.032024 + +* 2 1 2 0.935207E-01 0.959113E-04 * +Number of iterations = 1 +Initial residual = 0.001169 +Final residual = 0.000052 +Average conv. rate = 0.044609 + +* 2 2 1 0.116851E-02 0.521265E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3822 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.58 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3822 Max w this run +w_max level proc position run w_max level timestep +0.559E+00 25 134 69.4deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3823 Model time: 1979-03-21 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043784 + +* 1 1 3 0.100000E+01 0.839332E-04 * +Number of iterations = 2 +Initial residual = 0.014286 +Final residual = 0.000045 +Average conv. rate = 0.056161 + +* 1 2 2 0.142865E-01 0.450600E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095049 +Final residual = 0.000095 +Average conv. rate = 0.031532 + +* 2 1 2 0.950489E-01 0.945021E-04 * +Number of iterations = 1 +Initial residual = 0.001156 +Final residual = 0.000052 +Average conv. rate = 0.044719 + +* 2 2 1 0.115588E-02 0.516900E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3823 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.31 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3823 Max w this run +w_max level proc position run w_max level timestep +0.649E+00 26 134 69.4deg E -36.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3824 Model time: 1979-03-21 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043452 + +* 1 1 3 0.100000E+01 0.820382E-04 * +Number of iterations = 2 +Initial residual = 0.014218 +Final residual = 0.000045 +Average conv. rate = 0.056199 + +* 1 2 2 0.142177E-01 0.449040E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095671 +Final residual = 0.000095 +Average conv. rate = 0.031510 + +* 2 1 2 0.956709E-01 0.949906E-04 * +Number of iterations = 1 +Initial residual = 0.001178 +Final residual = 0.000051 +Average conv. rate = 0.042987 + +* 2 2 1 0.117759E-02 0.506204E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3824 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.02 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.69K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3824 Max w this run +w_max level proc position run w_max level timestep +0.766E+00 27 134 69.4deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3825 Model time: 1979-03-21 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043609 + +* 1 1 3 0.100000E+01 0.829338E-04 * +Number of iterations = 2 +Initial residual = 0.014215 +Final residual = 0.000046 +Average conv. rate = 0.056641 + +* 1 2 2 0.142146E-01 0.456027E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093550 +Final residual = 0.000096 +Average conv. rate = 0.032029 + +* 2 1 2 0.935497E-01 0.959690E-04 * +Number of iterations = 1 +Initial residual = 0.001153 +Final residual = 0.000051 +Average conv. rate = 0.043957 + +* 2 2 1 0.115260E-02 0.506648E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3825 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.75 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.82K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3825 Max w this run +w_max level proc position run w_max level timestep +0.796E+00 27 134 69.4deg E -36.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3826 Model time: 1979-03-21 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043494 + +* 1 1 3 0.100000E+01 0.822778E-04 * +Number of iterations = 2 +Initial residual = 0.014184 +Final residual = 0.000045 +Average conv. rate = 0.056516 + +* 1 2 2 0.141844E-01 0.453056E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095035 +Final residual = 0.000096 +Average conv. rate = 0.031754 + +* 2 1 2 0.950355E-01 0.958259E-04 * +Number of iterations = 1 +Initial residual = 0.001143 +Final residual = 0.000051 +Average conv. rate = 0.044318 + +* 2 2 1 0.114346E-02 0.506756E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3826 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.49 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.96K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3826 Max w this run +w_max level proc position run w_max level timestep +0.707E+00 28 134 69.4deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3827 Model time: 1979-03-21 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043525 + +* 1 1 3 0.100000E+01 0.824520E-04 * +Number of iterations = 2 +Initial residual = 0.014241 +Final residual = 0.000045 +Average conv. rate = 0.056274 + +* 1 2 2 0.142408E-01 0.450974E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.096775 +Final residual = 0.000097 +Average conv. rate = 0.031610 + +* 2 1 2 0.967751E-01 0.966945E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000050 +Average conv. rate = 0.043738 + +* 2 2 1 0.115000E-02 0.502986E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3827 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.25 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.21K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3827 Max w this run +w_max level proc position run w_max level timestep +0.713E+00 27 134 69.4deg E -36.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3828 Model time: 1979-03-21 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043434 + +* 1 1 3 0.100000E+01 0.819382E-04 * +Number of iterations = 2 +Initial residual = 0.014150 +Final residual = 0.000045 +Average conv. rate = 0.056277 + +* 1 2 2 0.141496E-01 0.448136E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095282 +Final residual = 0.000097 +Average conv. rate = 0.031863 + +* 2 1 2 0.952823E-01 0.967353E-04 * +Number of iterations = 1 +Initial residual = 0.001241 +Final residual = 0.000050 +Average conv. rate = 0.040588 + +* 2 2 1 0.124120E-02 0.503775E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3828 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.03 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3828 Max w this run +w_max level proc position run w_max level timestep +0.632E+00 27 134 69.4deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3829 Model time: 1979-03-21 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044028 + +* 1 1 3 0.100000E+01 0.853496E-04 * +Number of iterations = 2 +Initial residual = 0.014158 +Final residual = 0.000045 +Average conv. rate = 0.056537 + +* 1 2 2 0.141577E-01 0.452548E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093026 +Final residual = 0.000096 +Average conv. rate = 0.032073 + +* 2 1 2 0.930260E-01 0.956923E-04 * +Number of iterations = 1 +Initial residual = 0.001153 +Final residual = 0.000051 +Average conv. rate = 0.043911 + +* 2 2 1 0.115278E-02 0.506201E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3829 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.81 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.70K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3829 Max w this run +w_max level proc position run w_max level timestep +0.614E+00 28 134 69.4deg E -36.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3830 Model time: 1979-03-21 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043989 + +* 1 1 3 0.100000E+01 0.851187E-04 * +Number of iterations = 2 +Initial residual = 0.014109 +Final residual = 0.000044 +Average conv. rate = 0.056086 + +* 1 2 2 0.141089E-01 0.443822E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092884 +Final residual = 0.000098 +Average conv. rate = 0.032524 + +* 2 1 2 0.928844E-01 0.982552E-04 * +Number of iterations = 1 +Initial residual = 0.001151 +Final residual = 0.000051 +Average conv. rate = 0.044021 + +* 2 2 1 0.115145E-02 0.506880E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3830 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.60 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3830 Max w this run +w_max level proc position run w_max level timestep +0.538E+00 29 134 69.4deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3831 Model time: 1979-03-21 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043992 + +* 1 1 3 0.100000E+01 0.851363E-04 * +Number of iterations = 2 +Initial residual = 0.014117 +Final residual = 0.000044 +Average conv. rate = 0.055901 + +* 1 2 2 0.141167E-01 0.441137E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092834 +Final residual = 0.000098 +Average conv. rate = 0.032497 + +* 2 1 2 0.928340E-01 0.980377E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000050 +Average conv. rate = 0.043986 + +* 2 2 1 0.114610E-02 0.504128E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3831 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.40 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.21K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3831 Max w this run +w_max level proc position run w_max level timestep +0.630E+00 31 134 71.3deg E -36.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3832 Model time: 1979-03-21 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044383 + +* 1 1 3 0.100000E+01 0.874291E-04 * +Number of iterations = 2 +Initial residual = 0.014099 +Final residual = 0.000044 +Average conv. rate = 0.055563 + +* 1 2 2 0.140989E-01 0.435274E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093551 +Final residual = 0.000098 +Average conv. rate = 0.032349 + +* 2 1 2 0.935508E-01 0.978986E-04 * +Number of iterations = 1 +Initial residual = 0.001152 +Final residual = 0.000051 +Average conv. rate = 0.043925 + +* 2 2 1 0.115150E-02 0.505802E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3832 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.21 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.50K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3832 Max w this run +w_max level proc position run w_max level timestep +0.689E+00 30 134 71.3deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3833 Model time: 1979-03-21 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044675 + +* 1 1 3 0.100000E+01 0.891668E-04 * +Number of iterations = 2 +Initial residual = 0.014189 +Final residual = 0.000044 +Average conv. rate = 0.055915 + +* 1 2 2 0.141893E-01 0.443627E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093548 +Final residual = 0.000099 +Average conv. rate = 0.032598 + +* 2 1 2 0.935477E-01 0.994087E-04 * +Number of iterations = 1 +Initial residual = 0.001170 +Final residual = 0.000051 +Average conv. rate = 0.043484 + +* 2 2 1 0.116985E-02 0.508698E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3833 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.02 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3833 Max w this run +w_max level proc position run w_max level timestep +0.644E+00 30 134 71.3deg E -36.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3834 Model time: 1979-03-21 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045125 + +* 1 1 3 0.100000E+01 0.918889E-04 * +Number of iterations = 2 +Initial residual = 0.014209 +Final residual = 0.000044 +Average conv. rate = 0.055659 + +* 1 2 2 0.142086E-01 0.440170E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092431 +Final residual = 0.000098 +Average conv. rate = 0.032618 + +* 2 1 2 0.924315E-01 0.983388E-04 * +Number of iterations = 1 +Initial residual = 0.001141 +Final residual = 0.000051 +Average conv. rate = 0.044395 + +* 2 2 1 0.114077E-02 0.506449E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3834 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.84 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.14K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3834 Max w this run +w_max level proc position run w_max level timestep +0.697E+00 31 134 71.3deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3835 Model time: 1979-03-21 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045202 + +* 1 1 3 0.100000E+01 0.923575E-04 * +Number of iterations = 2 +Initial residual = 0.014286 +Final residual = 0.000046 +Average conv. rate = 0.056527 + +* 1 2 2 0.142855E-01 0.456462E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094035 +Final residual = 0.000098 +Average conv. rate = 0.032333 + +* 2 1 2 0.940347E-01 0.983034E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000051 +Average conv. rate = 0.044390 + +* 2 2 1 0.115007E-02 0.510510E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3835 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.67 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.42K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3835 Max w this run +w_max level proc position run w_max level timestep +0.726E+00 30 134 71.3deg E -36.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3836 Model time: 1979-03-21 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000093 +Average conv. rate = 0.045344 + +* 1 1 3 0.100000E+01 0.932281E-04 * +Number of iterations = 2 +Initial residual = 0.014223 +Final residual = 0.000047 +Average conv. rate = 0.057695 + +* 1 2 2 0.142230E-01 0.473447E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094535 +Final residual = 0.000011 +Average conv. rate = 0.049467 + +* 2 1 3 0.945351E-01 0.114432E-04 * +Number of iterations = 1 +Initial residual = 0.001159 +Final residual = 0.000050 +Average conv. rate = 0.043231 + +* 2 2 1 0.115873E-02 0.500930E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3836 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.50 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.72K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3836 Max w this run +w_max level proc position run w_max level timestep +0.715E+00 31 134 71.3deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3837 Model time: 1979-03-21 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044601 + +* 1 1 3 0.100000E+01 0.887245E-04 * +Number of iterations = 2 +Initial residual = 0.014259 +Final residual = 0.000047 +Average conv. rate = 0.057268 + +* 1 2 2 0.142591E-01 0.467650E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095228 +Final residual = 0.000099 +Average conv. rate = 0.032215 + +* 2 1 2 0.952284E-01 0.988293E-04 * +Number of iterations = 1 +Initial residual = 0.001177 +Final residual = 0.000051 +Average conv. rate = 0.043672 + +* 2 2 1 0.117711E-02 0.514067E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3837 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.34 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3837 Max w this run +w_max level proc position run w_max level timestep +0.588E+00 32 134 71.3deg E -36.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3838 Model time: 1979-03-21 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044215 + +* 1 1 3 0.100000E+01 0.864362E-04 * +Number of iterations = 2 +Initial residual = 0.014239 +Final residual = 0.000044 +Average conv. rate = 0.055345 + +* 1 2 2 0.142391E-01 0.436157E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094947 +Final residual = 0.000011 +Average conv. rate = 0.048988 + +* 2 1 3 0.949473E-01 0.111623E-04 * +Number of iterations = 1 +Initial residual = 0.001173 +Final residual = 0.000050 +Average conv. rate = 0.043021 + +* 2 2 1 0.117327E-02 0.504755E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3838 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.23 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.29K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3838 Max w this run +w_max level proc position run w_max level timestep +0.465E+00 32 134 71.3deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3839 Model time: 1979-03-21 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044613 + +* 1 1 3 0.100000E+01 0.887949E-04 * +Number of iterations = 2 +Initial residual = 0.014330 +Final residual = 0.000043 +Average conv. rate = 0.055027 + +* 1 2 2 0.143295E-01 0.433891E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093648 +Final residual = 0.000012 +Average conv. rate = 0.049995 + +* 2 1 3 0.936479E-01 0.117024E-04 * +Number of iterations = 1 +Initial residual = 0.001168 +Final residual = 0.000051 +Average conv. rate = 0.043602 + +* 2 2 1 0.116803E-02 0.509288E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3839 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.22 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3839 Max w this run +w_max level proc position run w_max level timestep +0.461E+00 32 134 71.3deg E -36.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3840 Model time: 1979-03-22 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044357 + +* 1 1 3 0.100000E+01 0.872771E-04 * +Number of iterations = 2 +Initial residual = 0.014245 +Final residual = 0.000043 +Average conv. rate = 0.054833 + +* 1 2 2 0.142449E-01 0.428288E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093856 +Final residual = 0.000099 +Average conv. rate = 0.032503 + +* 2 1 2 0.938557E-01 0.991521E-04 * +Number of iterations = 1 +Initial residual = 0.001164 +Final residual = 0.000051 +Average conv. rate = 0.044204 + +* 2 2 1 0.116370E-02 0.514403E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13056E+25 +tot dry energy 0.13057E+25 +gr( rho cal) 0.38108E+24 +KE( rho cal) 0.83053E+21 +KEu(rho cal) 0.64001E+21 +KEv(rho cal) 0.19052E+21 +KEw(rho cal) 0.11104E+16 +cvT( rho cal) 0.92379E+24 +lq ( rho cal) 0.30828E+23 +lqcf( rho cal) 0.62625E+20 +lqcl( rho cal) 0.42830E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12367E+17 KG +Initial moisture = 0.12358E+17 KG +change in moisture = 0.82560E+13 KG +Moisture added E-P in period = 0.84542E+13 KG +Error in moisture = -0.19828E+12 KG +Error as % of change = -0.24017E+01 +q ( rho cal) 0.12326E+17 +qcf( rho cal) 0.25040E+14 +qcl( rho cal) 0.15108E+14 +FINAL TOTAL ENERGY = 0.13056E+25 J/ +INITIAL TOTAL ENERGY = 0.13056E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.20957E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.20717E+20 J/ +ERROR IN ENERGY BUDGET = 0.24040E+18 J/ +TEMP CORRECTION OVER A DAY = 0.65277E-04 K +TEMPERATURE CORRECTION RATE = 0.75552E-09 K/S +FLUX CORRECTION (ATM) = 0.54546E-02 W/M2 + +Minimum theta level 1 for timestep 3840 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.35 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3840 Max w this run +w_max level proc position run w_max level timestep +0.415E+00 31 134 71.3deg E -36.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6084.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6084.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6084.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6084.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6084.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6084.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3841 Model time: 1979-03-22 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044174 + +* 1 1 3 0.100000E+01 0.862013E-04 * +Number of iterations = 2 +Initial residual = 0.014257 +Final residual = 0.000043 +Average conv. rate = 0.054938 + +* 1 2 2 0.142574E-01 0.430317E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094546 +Final residual = 0.000013 +Average conv. rate = 0.051216 + +* 2 1 3 0.945465E-01 0.127018E-04 * +Number of iterations = 1 +Initial residual = 0.001173 +Final residual = 0.000051 +Average conv. rate = 0.043749 + +* 2 2 1 0.117342E-02 0.513365E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3841 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.63 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.07K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3841 Max w this run +w_max level proc position run w_max level timestep +0.432E+00 26 380 39.4deg W 35.6deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3842 Model time: 1979-03-22 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043905 + +* 1 1 3 0.100000E+01 0.846314E-04 * +Number of iterations = 2 +Initial residual = 0.014221 +Final residual = 0.000043 +Average conv. rate = 0.054716 + +* 1 2 2 0.142208E-01 0.425751E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093529 +Final residual = 0.000013 +Average conv. rate = 0.051794 + +* 2 1 3 0.935287E-01 0.129949E-04 * +Number of iterations = 1 +Initial residual = 0.001176 +Final residual = 0.000052 +Average conv. rate = 0.044180 + +* 2 2 1 0.117577E-02 0.519452E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3842 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.05 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.29K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3842 Max w this run +w_max level proc position run w_max level timestep +0.431E+00 20 378 67.5deg W 34.4deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3843 Model time: 1979-03-22 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043901 + +* 1 1 3 0.100000E+01 0.846105E-04 * +Number of iterations = 2 +Initial residual = 0.014338 +Final residual = 0.000043 +Average conv. rate = 0.054662 + +* 1 2 2 0.143376E-01 0.428391E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094068 +Final residual = 0.000100 +Average conv. rate = 0.032537 + +* 2 1 2 0.940684E-01 0.995845E-04 * +Number of iterations = 1 +Initial residual = 0.001171 +Final residual = 0.000053 +Average conv. rate = 0.045184 + +* 2 2 1 0.117140E-02 0.529284E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3843 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.78 42 116.3deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3843 Max w this run +w_max level proc position run w_max level timestep +0.457E+00 38 251 54.4deg W -6.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3844 Model time: 1979-03-22 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043471 + +* 1 1 3 0.100000E+01 0.821464E-04 * +Number of iterations = 2 +Initial residual = 0.014389 +Final residual = 0.000042 +Average conv. rate = 0.054313 + +* 1 2 2 0.143892E-01 0.424460E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093532 +Final residual = 0.000099 +Average conv. rate = 0.032576 + +* 2 1 2 0.935325E-01 0.992534E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000053 +Average conv. rate = 0.045441 + +* 2 2 1 0.115686E-02 0.525683E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3844 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.63 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.88K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3844 Max w this run +w_max level proc position run w_max level timestep +0.475E+00 20 378 67.5deg W 34.4deg N 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3845 Model time: 1979-03-22 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043215 + +* 1 1 3 0.100000E+01 0.807077E-04 * +Number of iterations = 2 +Initial residual = 0.014472 +Final residual = 0.000043 +Average conv. rate = 0.054271 + +* 1 2 2 0.144724E-01 0.426268E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093452 +Final residual = 0.000012 +Average conv. rate = 0.049798 + +* 2 1 3 0.934517E-01 0.115404E-04 * +Number of iterations = 1 +Initial residual = 0.001160 +Final residual = 0.000051 +Average conv. rate = 0.043717 + +* 2 2 1 0.115955E-02 0.506922E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3845 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.46 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.06K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3845 Max w this run +w_max level proc position run w_max level timestep +0.463E+00 39 257 13.1deg E 0.6deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3846 Model time: 1979-03-22 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043977 + +* 1 1 3 0.100000E+01 0.850507E-04 * +Number of iterations = 2 +Initial residual = 0.014403 +Final residual = 0.000042 +Average conv. rate = 0.054217 + +* 1 2 2 0.144028E-01 0.423370E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092797 +Final residual = 0.000011 +Average conv. rate = 0.049561 + +* 2 1 3 0.927972E-01 0.112967E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000050 +Average conv. rate = 0.043489 + +* 2 2 1 0.114553E-02 0.498176E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3846 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.20 36 48.7deg E -73.7deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.22K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3846 Max w this run +w_max level proc position run w_max level timestep +0.524E+00 32 134 73.1deg E -38.1deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3847 Model time: 1979-03-22 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044008 + +* 1 1 3 0.100000E+01 0.852306E-04 * +Number of iterations = 2 +Initial residual = 0.014438 +Final residual = 0.000043 +Average conv. rate = 0.054663 + +* 1 2 2 0.144380E-01 0.431412E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094915 +Final residual = 0.000099 +Average conv. rate = 0.032343 + +* 2 1 2 0.949149E-01 0.992855E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000051 +Average conv. rate = 0.043880 + +* 2 2 1 0.115536E-02 0.506973E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3847 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.34 36 48.7deg E -73.7deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.06K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3847 Max w this run +w_max level proc position run w_max level timestep +0.504E+00 32 134 73.1deg E -38.1deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3848 Model time: 1979-03-22 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043335 + +* 1 1 3 0.100000E+01 0.813809E-04 * +Number of iterations = 2 +Initial residual = 0.014429 +Final residual = 0.000043 +Average conv. rate = 0.054699 + +* 1 2 2 0.144290E-01 0.431706E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091917 +Final residual = 0.000098 +Average conv. rate = 0.032687 + +* 2 1 2 0.919173E-01 0.982087E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000051 +Average conv. rate = 0.044161 + +* 2 2 1 0.115525E-02 0.510173E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3848 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.57 3 35.6deg E -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.66K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3848 Max w this run +w_max level proc position run w_max level timestep +0.514E+00 20 378 65.6deg W 34.4deg N 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3849 Model time: 1979-03-22 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043356 + +* 1 1 3 0.100000E+01 0.814965E-04 * +Number of iterations = 2 +Initial residual = 0.014460 +Final residual = 0.000044 +Average conv. rate = 0.055221 + +* 1 2 2 0.144595E-01 0.440928E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091999 +Final residual = 0.000099 +Average conv. rate = 0.032732 + +* 2 1 2 0.919993E-01 0.985638E-04 * +Number of iterations = 1 +Initial residual = 0.001147 +Final residual = 0.000051 +Average conv. rate = 0.044290 + +* 2 2 1 0.114709E-02 0.508050E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3849 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.41 3 37.5deg E -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.29K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3849 Max w this run +w_max level proc position run w_max level timestep +0.515E+00 20 378 65.6deg W 34.4deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3850 Model time: 1979-03-22 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043168 + +* 1 1 3 0.100000E+01 0.804448E-04 * +Number of iterations = 2 +Initial residual = 0.014391 +Final residual = 0.000042 +Average conv. rate = 0.053980 + +* 1 2 2 0.143914E-01 0.419338E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089470 +Final residual = 0.000097 +Average conv. rate = 0.032954 + +* 2 1 2 0.894705E-01 0.971639E-04 * +Number of iterations = 1 +Initial residual = 0.001131 +Final residual = 0.000051 +Average conv. rate = 0.044829 + +* 2 2 1 0.113111E-02 0.507064E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3850 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.20 3 37.5deg E -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3850 Max w this run +w_max level proc position run w_max level timestep +0.473E+00 20 378 65.6deg W 34.4deg N 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3851 Model time: 1979-03-22 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043026 + +* 1 1 3 0.100000E+01 0.796487E-04 * +Number of iterations = 2 +Initial residual = 0.014347 +Final residual = 0.000042 +Average conv. rate = 0.054124 + +* 1 2 2 0.143471E-01 0.420292E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090271 +Final residual = 0.000098 +Average conv. rate = 0.032926 + +* 2 1 2 0.902708E-01 0.978618E-04 * +Number of iterations = 1 +Initial residual = 0.001115 +Final residual = 0.000051 +Average conv. rate = 0.045554 + +* 2 2 1 0.111524E-02 0.508032E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3851 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.11 3 37.5deg E -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.73K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3851 Max w this run +w_max level proc position run w_max level timestep +0.449E+00 40 257 13.1deg E 0.6deg N 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3852 Model time: 1979-03-22 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043380 + +* 1 1 3 0.100000E+01 0.816335E-04 * +Number of iterations = 2 +Initial residual = 0.014221 +Final residual = 0.000044 +Average conv. rate = 0.055552 + +* 1 2 2 0.142211E-01 0.438868E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090838 +Final residual = 0.000096 +Average conv. rate = 0.032556 + +* 2 1 2 0.908384E-01 0.962805E-04 * +Number of iterations = 1 +Initial residual = 0.001128 +Final residual = 0.000051 +Average conv. rate = 0.045476 + +* 2 2 1 0.112795E-02 0.512953E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3852 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.14 3 37.5deg E -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.77K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3852 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 20 176 176.3deg W -28.1deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3853 Model time: 1979-03-22 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043755 + +* 1 1 3 0.100000E+01 0.837692E-04 * +Number of iterations = 2 +Initial residual = 0.014262 +Final residual = 0.000042 +Average conv. rate = 0.054509 + +* 1 2 2 0.142620E-01 0.423764E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090364 +Final residual = 0.000097 +Average conv. rate = 0.032726 + +* 2 1 2 0.903638E-01 0.967788E-04 * +Number of iterations = 1 +Initial residual = 0.001116 +Final residual = 0.000051 +Average conv. rate = 0.045547 + +* 2 2 1 0.111566E-02 0.508147E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3853 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.13 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3853 Max w this run +w_max level proc position run w_max level timestep +0.547E+00 25 220 39.4deg W -16.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3854 Model time: 1979-03-22 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043621 + +* 1 1 3 0.100000E+01 0.829993E-04 * +Number of iterations = 2 +Initial residual = 0.014312 +Final residual = 0.000042 +Average conv. rate = 0.054444 + +* 1 2 2 0.143124E-01 0.424242E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.088880 +Final residual = 0.000093 +Average conv. rate = 0.032325 + +* 2 1 2 0.888803E-01 0.928716E-04 * +Number of iterations = 1 +Initial residual = 0.001109 +Final residual = 0.000050 +Average conv. rate = 0.044787 + +* 2 2 1 0.110945E-02 0.496890E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3854 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.00 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.02K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3854 Max w this run +w_max level proc position run w_max level timestep +0.574E+00 21 176 176.3deg W -28.1deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3855 Model time: 1979-03-22 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043383 + +* 1 1 3 0.100000E+01 0.816503E-04 * +Number of iterations = 2 +Initial residual = 0.014390 +Final residual = 0.000043 +Average conv. rate = 0.054724 + +* 1 2 2 0.143903E-01 0.430946E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090187 +Final residual = 0.000092 +Average conv. rate = 0.032017 + +* 2 1 2 0.901870E-01 0.924507E-04 * +Number of iterations = 1 +Initial residual = 0.001113 +Final residual = 0.000049 +Average conv. rate = 0.044297 + +* 2 2 1 0.111343E-02 0.493213E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3855 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.87 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.85K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3855 Max w this run +w_max level proc position run w_max level timestep +0.615E+00 22 176 176.3deg W -28.1deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3856 Model time: 1979-03-22 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043626 + +* 1 1 3 0.100000E+01 0.830298E-04 * +Number of iterations = 2 +Initial residual = 0.014296 +Final residual = 0.000042 +Average conv. rate = 0.054426 + +* 1 2 2 0.142956E-01 0.423469E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089388 +Final residual = 0.000092 +Average conv. rate = 0.032006 + +* 2 1 2 0.893884E-01 0.915706E-04 * +Number of iterations = 1 +Initial residual = 0.001110 +Final residual = 0.000049 +Average conv. rate = 0.044601 + +* 2 2 1 0.110981E-02 0.494981E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3856 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.76 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.91K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3856 Max w this run +w_max level proc position run w_max level timestep +0.622E+00 22 176 176.3deg W -28.1deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3857 Model time: 1979-03-22 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043419 + +* 1 1 3 0.100000E+01 0.818542E-04 * +Number of iterations = 2 +Initial residual = 0.014174 +Final residual = 0.000042 +Average conv. rate = 0.054291 + +* 1 2 2 0.141737E-01 0.417774E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090875 +Final residual = 0.000093 +Average conv. rate = 0.031941 + +* 2 1 2 0.908750E-01 0.927135E-04 * +Number of iterations = 1 +Initial residual = 0.001110 +Final residual = 0.000050 +Average conv. rate = 0.044767 + +* 2 2 1 0.111048E-02 0.497126E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3857 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.66 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.75K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3857 Max w this run +w_max level proc position run w_max level timestep +0.586E+00 28 220 39.4deg W -16.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3858 Model time: 1979-03-22 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043144 + +* 1 1 3 0.100000E+01 0.803095E-04 * +Number of iterations = 2 +Initial residual = 0.014090 +Final residual = 0.000043 +Average conv. rate = 0.055402 + +* 1 2 2 0.140897E-01 0.432460E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091390 +Final residual = 0.000092 +Average conv. rate = 0.031741 + +* 2 1 2 0.913904E-01 0.920752E-04 * +Number of iterations = 1 +Initial residual = 0.001103 +Final residual = 0.000049 +Average conv. rate = 0.044714 + +* 2 2 1 0.110254E-02 0.492996E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3858 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.57 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3858 Max w this run +w_max level proc position run w_max level timestep +0.602E+00 28 220 39.4deg W -16.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3859 Model time: 1979-03-22 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044142 + +* 1 1 3 0.100000E+01 0.860092E-04 * +Number of iterations = 2 +Initial residual = 0.014156 +Final residual = 0.000041 +Average conv. rate = 0.054027 + +* 1 2 2 0.141564E-01 0.413213E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091044 +Final residual = 0.000094 +Average conv. rate = 0.032142 + +* 2 1 2 0.910441E-01 0.940566E-04 * +Number of iterations = 1 +Initial residual = 0.001096 +Final residual = 0.000050 +Average conv. rate = 0.045277 + +* 2 2 1 0.109641E-02 0.496428E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3859 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.48 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3859 Max w this run +w_max level proc position run w_max level timestep +0.583E+00 29 220 39.4deg W -16.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3860 Model time: 1979-03-22 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043614 + +* 1 1 3 0.100000E+01 0.829642E-04 * +Number of iterations = 2 +Initial residual = 0.014154 +Final residual = 0.000042 +Average conv. rate = 0.054292 + +* 1 2 2 0.141542E-01 0.417208E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090640 +Final residual = 0.000092 +Average conv. rate = 0.031914 + +* 2 1 2 0.906395E-01 0.923166E-04 * +Number of iterations = 1 +Initial residual = 0.001086 +Final residual = 0.000049 +Average conv. rate = 0.044746 + +* 2 2 1 0.108648E-02 0.486162E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3860 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.39 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.80K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3860 Max w this run +w_max level proc position run w_max level timestep +0.557E+00 28 220 39.4deg W -16.9deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3861 Model time: 1979-03-22 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043845 + +* 1 1 3 0.100000E+01 0.842894E-04 * +Number of iterations = 2 +Initial residual = 0.014149 +Final residual = 0.000043 +Average conv. rate = 0.055269 + +* 1 2 2 0.141492E-01 0.432208E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092320 +Final residual = 0.000096 +Average conv. rate = 0.032243 + +* 2 1 2 0.923197E-01 0.959741E-04 * +Number of iterations = 1 +Initial residual = 0.001106 +Final residual = 0.000048 +Average conv. rate = 0.043691 + +* 2 2 1 0.110604E-02 0.483236E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3861 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.31 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.92K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3861 Max w this run +w_max level proc position run w_max level timestep +0.543E+00 28 220 39.4deg W -16.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3862 Model time: 1979-03-22 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043720 + +* 1 1 3 0.100000E+01 0.835672E-04 * +Number of iterations = 2 +Initial residual = 0.014062 +Final residual = 0.000044 +Average conv. rate = 0.055687 + +* 1 2 2 0.140618E-01 0.436060E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092664 +Final residual = 0.000093 +Average conv. rate = 0.031752 + +* 2 1 2 0.926641E-01 0.934230E-04 * +Number of iterations = 1 +Initial residual = 0.001108 +Final residual = 0.000048 +Average conv. rate = 0.043072 + +* 2 2 1 0.110790E-02 0.477201E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3862 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.22 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.03K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3862 Max w this run +w_max level proc position run w_max level timestep +0.495E+00 28 220 39.4deg W -16.9deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3863 Model time: 1979-03-22 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044033 + +* 1 1 3 0.100000E+01 0.853731E-04 * +Number of iterations = 2 +Initial residual = 0.014098 +Final residual = 0.000043 +Average conv. rate = 0.054954 + +* 1 2 2 0.140980E-01 0.425753E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093372 +Final residual = 0.000095 +Average conv. rate = 0.031905 + +* 2 1 2 0.933721E-01 0.950480E-04 * +Number of iterations = 1 +Initial residual = 0.001107 +Final residual = 0.000048 +Average conv. rate = 0.043297 + +* 2 2 1 0.110654E-02 0.479104E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3863 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.14 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3863 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 25 220 39.4deg W -15.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3864 Model time: 1979-03-22 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044009 + +* 1 1 3 0.100000E+01 0.852349E-04 * +Number of iterations = 2 +Initial residual = 0.014038 +Final residual = 0.000047 +Average conv. rate = 0.058011 + +* 1 2 2 0.140379E-01 0.472420E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092376 +Final residual = 0.000093 +Average conv. rate = 0.031787 + +* 2 1 2 0.923756E-01 0.933390E-04 * +Number of iterations = 1 +Initial residual = 0.001100 +Final residual = 0.000047 +Average conv. rate = 0.042950 + +* 2 2 1 0.110037E-02 0.472605E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3864 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.07 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.01K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3864 Max w this run +w_max level proc position run w_max level timestep +0.539E+00 26 220 39.4deg W -15.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3865 Model time: 1979-03-22 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043346 + +* 1 1 3 0.100000E+01 0.814397E-04 * +Number of iterations = 2 +Initial residual = 0.014077 +Final residual = 0.000047 +Average conv. rate = 0.057710 + +* 1 2 2 0.140769E-01 0.468816E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092928 +Final residual = 0.000094 +Average conv. rate = 0.031810 + +* 2 1 2 0.929281E-01 0.940313E-04 * +Number of iterations = 1 +Initial residual = 0.001110 +Final residual = 0.000047 +Average conv. rate = 0.042334 + +* 2 2 1 0.110953E-02 0.469712E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3865 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.02 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3865 Max w this run +w_max level proc position run w_max level timestep +0.542E+00 26 220 39.4deg W -15.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3866 Model time: 1979-03-22 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043939 + +* 1 1 3 0.100000E+01 0.848307E-04 * +Number of iterations = 2 +Initial residual = 0.014056 +Final residual = 0.000045 +Average conv. rate = 0.056656 + +* 1 2 2 0.140564E-01 0.451188E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092278 +Final residual = 0.000094 +Average conv. rate = 0.031887 + +* 2 1 2 0.922785E-01 0.938286E-04 * +Number of iterations = 1 +Initial residual = 0.001109 +Final residual = 0.000047 +Average conv. rate = 0.042388 + +* 2 2 1 0.110942E-02 0.470257E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3866 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.97 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.17K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3866 Max w this run +w_max level proc position run w_max level timestep +0.488E+00 34 219 50.6deg W -11.9deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3867 Model time: 1979-03-22 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043677 + +* 1 1 3 0.100000E+01 0.833227E-04 * +Number of iterations = 2 +Initial residual = 0.014136 +Final residual = 0.000044 +Average conv. rate = 0.056048 + +* 1 2 2 0.141363E-01 0.444071E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092026 +Final residual = 0.000094 +Average conv. rate = 0.031900 + +* 2 1 2 0.920258E-01 0.936447E-04 * +Number of iterations = 1 +Initial residual = 0.001098 +Final residual = 0.000047 +Average conv. rate = 0.042758 + +* 2 2 1 0.109791E-02 0.469447E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3867 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.95 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.97K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3867 Max w this run +w_max level proc position run w_max level timestep +0.481E+00 33 219 50.6deg W -11.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3868 Model time: 1979-03-22 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043417 + +* 1 1 3 0.100000E+01 0.818415E-04 * +Number of iterations = 2 +Initial residual = 0.014143 +Final residual = 0.000043 +Average conv. rate = 0.055396 + +* 1 2 2 0.141429E-01 0.434010E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092505 +Final residual = 0.000092 +Average conv. rate = 0.031498 + +* 2 1 2 0.925050E-01 0.917766E-04 * +Number of iterations = 1 +Initial residual = 0.001099 +Final residual = 0.000047 +Average conv. rate = 0.042866 + +* 2 2 1 0.109853E-02 0.470901E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3868 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.95 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.78K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3868 Max w this run +w_max level proc position run w_max level timestep +0.528E+00 36 219 50.6deg W -11.9deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3869 Model time: 1979-03-22 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043402 + +* 1 1 3 0.100000E+01 0.817604E-04 * +Number of iterations = 2 +Initial residual = 0.014189 +Final residual = 0.000042 +Average conv. rate = 0.054565 + +* 1 2 2 0.141893E-01 0.422457E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092282 +Final residual = 0.000095 +Average conv. rate = 0.032051 + +* 2 1 2 0.922818E-01 0.947984E-04 * +Number of iterations = 1 +Initial residual = 0.001100 +Final residual = 0.000048 +Average conv. rate = 0.043400 + +* 2 2 1 0.110000E-02 0.477404E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3869 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.97 28 37.5deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.81K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3869 Max w this run +w_max level proc position run w_max level timestep +0.572E+00 35 219 50.6deg W -11.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3870 Model time: 1979-03-22 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043943 + +* 1 1 3 0.100000E+01 0.848559E-04 * +Number of iterations = 2 +Initial residual = 0.014160 +Final residual = 0.000042 +Average conv. rate = 0.054292 + +* 1 2 2 0.141601E-01 0.417382E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091451 +Final residual = 0.000094 +Average conv. rate = 0.032083 + +* 2 1 2 0.914506E-01 0.941299E-04 * +Number of iterations = 1 +Initial residual = 0.001109 +Final residual = 0.000048 +Average conv. rate = 0.043309 + +* 2 2 1 0.110856E-02 0.480104E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3870 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.75 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3870 Max w this run +w_max level proc position run w_max level timestep +0.542E+00 34 161 20.6deg E -33.1deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3871 Model time: 1979-03-22 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043840 + +* 1 1 3 0.100000E+01 0.842558E-04 * +Number of iterations = 2 +Initial residual = 0.014233 +Final residual = 0.000043 +Average conv. rate = 0.054668 + +* 1 2 2 0.142327E-01 0.425362E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091791 +Final residual = 0.000097 +Average conv. rate = 0.032535 + +* 2 1 2 0.917914E-01 0.971636E-04 * +Number of iterations = 1 +Initial residual = 0.001105 +Final residual = 0.000049 +Average conv. rate = 0.044300 + +* 2 2 1 0.110519E-02 0.489597E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3871 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.44 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.35K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3871 Max w this run +w_max level proc position run w_max level timestep +0.478E+00 34 161 20.6deg E -33.1deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3872 Model time: 1979-03-22 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044564 + +* 1 1 3 0.100000E+01 0.885009E-04 * +Number of iterations = 2 +Initial residual = 0.014181 +Final residual = 0.000043 +Average conv. rate = 0.055157 + +* 1 2 2 0.141810E-01 0.431430E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091675 +Final residual = 0.000097 +Average conv. rate = 0.032538 + +* 2 1 2 0.916749E-01 0.970564E-04 * +Number of iterations = 1 +Initial residual = 0.001099 +Final residual = 0.000049 +Average conv. rate = 0.044965 + +* 2 2 1 0.109926E-02 0.494288E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3872 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.14 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.37K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3872 Max w this run +w_max level proc position run w_max level timestep +0.467E+00 28 177 168.8deg W -29.4deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3873 Model time: 1979-03-22 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043991 + +* 1 1 3 0.100000E+01 0.851306E-04 * +Number of iterations = 2 +Initial residual = 0.014179 +Final residual = 0.000044 +Average conv. rate = 0.055662 + +* 1 2 2 0.141795E-01 0.439318E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091943 +Final residual = 0.000097 +Average conv. rate = 0.032554 + +* 2 1 2 0.919429E-01 0.974407E-04 * +Number of iterations = 1 +Initial residual = 0.001090 +Final residual = 0.000049 +Average conv. rate = 0.045069 + +* 2 2 1 0.109005E-02 0.491273E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3873 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.86 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.40K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3873 Max w this run +w_max level proc position run w_max level timestep +0.550E+00 29 177 168.8deg W -29.4deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3874 Model time: 1979-03-22 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044191 + +* 1 1 3 0.100000E+01 0.862991E-04 * +Number of iterations = 2 +Initial residual = 0.014112 +Final residual = 0.000044 +Average conv. rate = 0.055950 + +* 1 2 2 0.141116E-01 0.441750E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092368 +Final residual = 0.000099 +Average conv. rate = 0.032687 + +* 2 1 2 0.923684E-01 0.986915E-04 * +Number of iterations = 1 +Initial residual = 0.001104 +Final residual = 0.000049 +Average conv. rate = 0.044483 + +* 2 2 1 0.110405E-02 0.491115E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3874 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.60 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3874 Max w this run +w_max level proc position run w_max level timestep +0.573E+00 30 177 168.8deg W -29.4deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3875 Model time: 1979-03-22 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044227 + +* 1 1 3 0.100000E+01 0.865114E-04 * +Number of iterations = 2 +Initial residual = 0.014203 +Final residual = 0.000044 +Average conv. rate = 0.055631 + +* 1 2 2 0.142030E-01 0.439551E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090411 +Final residual = 0.000098 +Average conv. rate = 0.032961 + +* 2 1 2 0.904115E-01 0.982283E-04 * +Number of iterations = 1 +Initial residual = 0.001091 +Final residual = 0.000047 +Average conv. rate = 0.043185 + +* 2 2 1 0.109090E-02 0.471110E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3875 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.36 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.46K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3875 Max w this run +w_max level proc position run w_max level timestep +0.595E+00 30 177 168.8deg W -29.4deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3876 Model time: 1979-03-22 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043970 + +* 1 1 3 0.100000E+01 0.850120E-04 * +Number of iterations = 2 +Initial residual = 0.014203 +Final residual = 0.000044 +Average conv. rate = 0.055662 + +* 1 2 2 0.142029E-01 0.440045E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093155 +Final residual = 0.000097 +Average conv. rate = 0.032316 + +* 2 1 2 0.931551E-01 0.972858E-04 * +Number of iterations = 1 +Initial residual = 0.001083 +Final residual = 0.000047 +Average conv. rate = 0.043563 + +* 2 2 1 0.108256E-02 0.471598E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3876 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.12 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.48K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3876 Max w this run +w_max level proc position run w_max level timestep +0.561E+00 22 177 168.8deg W -29.4deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3877 Model time: 1979-03-22 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043437 + +* 1 1 3 0.100000E+01 0.819546E-04 * +Number of iterations = 2 +Initial residual = 0.014233 +Final residual = 0.000045 +Average conv. rate = 0.056018 + +* 1 2 2 0.142332E-01 0.446637E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091137 +Final residual = 0.000014 +Average conv. rate = 0.053997 + +* 2 1 3 0.911370E-01 0.143482E-04 * +Number of iterations = 1 +Initial residual = 0.001067 +Final residual = 0.000045 +Average conv. rate = 0.042636 + +* 2 2 1 0.106659E-02 0.454752E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3877 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.90 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.52K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3877 Max w this run +w_max level proc position run w_max level timestep +0.635E+00 22 177 168.8deg W -29.4deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3878 Model time: 1979-03-22 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044169 + +* 1 1 3 0.100000E+01 0.861701E-04 * +Number of iterations = 2 +Initial residual = 0.014129 +Final residual = 0.000045 +Average conv. rate = 0.056308 + +* 1 2 2 0.141286E-01 0.447961E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092127 +Final residual = 0.000098 +Average conv. rate = 0.032694 + +* 2 1 2 0.921271E-01 0.984762E-04 * +Number of iterations = 1 +Initial residual = 0.001069 +Final residual = 0.000046 +Average conv. rate = 0.043354 + +* 2 2 1 0.106912E-02 0.463509E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3878 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.69 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.59K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3878 Max w this run +w_max level proc position run w_max level timestep +0.705E+00 23 177 168.8deg W -29.4deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3879 Model time: 1979-03-22 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043867 + +* 1 1 3 0.100000E+01 0.844124E-04 * +Number of iterations = 2 +Initial residual = 0.014113 +Final residual = 0.000045 +Average conv. rate = 0.056690 + +* 1 2 2 0.141135E-01 0.453575E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091556 +Final residual = 0.000099 +Average conv. rate = 0.032813 + +* 2 1 2 0.915562E-01 0.985800E-04 * +Number of iterations = 1 +Initial residual = 0.001071 +Final residual = 0.000047 +Average conv. rate = 0.043532 + +* 2 2 1 0.107080E-02 0.466146E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3879 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.49 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.59K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3879 Max w this run +w_max level proc position run w_max level timestep +0.739E+00 24 177 168.8deg W -29.4deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3880 Model time: 1979-03-22 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044014 + +* 1 1 3 0.100000E+01 0.852635E-04 * +Number of iterations = 2 +Initial residual = 0.014056 +Final residual = 0.000046 +Average conv. rate = 0.056960 + +* 1 2 2 0.140561E-01 0.456037E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093213 +Final residual = 0.000098 +Average conv. rate = 0.032496 + +* 2 1 2 0.932134E-01 0.984324E-04 * +Number of iterations = 1 +Initial residual = 0.001080 +Final residual = 0.000047 +Average conv. rate = 0.043242 + +* 2 2 1 0.108034E-02 0.467157E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3880 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.30 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3880 Max w this run +w_max level proc position run w_max level timestep +0.694E+00 24 177 168.8deg W -29.4deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3881 Model time: 1979-03-22 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044303 + +* 1 1 3 0.100000E+01 0.869573E-04 * +Number of iterations = 2 +Initial residual = 0.014088 +Final residual = 0.000046 +Average conv. rate = 0.057035 + +* 1 2 2 0.140882E-01 0.458284E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092066 +Final residual = 0.000100 +Average conv. rate = 0.032894 + +* 2 1 2 0.920665E-01 0.996167E-04 * +Number of iterations = 1 +Initial residual = 0.001075 +Final residual = 0.000048 +Average conv. rate = 0.044828 + +* 2 2 1 0.107539E-02 0.482073E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3881 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.13 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.54K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3881 Max w this run +w_max level proc position run w_max level timestep +0.628E+00 25 177 168.8deg W -29.4deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3882 Model time: 1979-03-22 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044275 + +* 1 1 3 0.100000E+01 0.867900E-04 * +Number of iterations = 2 +Initial residual = 0.014043 +Final residual = 0.000045 +Average conv. rate = 0.056802 + +* 1 2 2 0.140433E-01 0.453101E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093999 +Final residual = 0.000016 +Average conv. rate = 0.055693 + +* 2 1 3 0.939990E-01 0.162375E-04 * +Number of iterations = 1 +Initial residual = 0.001115 +Final residual = 0.000047 +Average conv. rate = 0.041887 + +* 2 2 1 0.111476E-02 0.466938E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3882 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.97 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.52K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3882 Max w this run +w_max level proc position run w_max level timestep +0.571E+00 28 177 166.9deg W -30.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3883 Model time: 1979-03-22 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043631 + +* 1 1 3 0.100000E+01 0.830592E-04 * +Number of iterations = 2 +Initial residual = 0.014070 +Final residual = 0.000046 +Average conv. rate = 0.056942 + +* 1 2 2 0.140701E-01 0.456200E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094709 +Final residual = 0.000100 +Average conv. rate = 0.032482 + +* 2 1 2 0.947088E-01 0.999284E-04 * +Number of iterations = 1 +Initial residual = 0.001142 +Final residual = 0.000048 +Average conv. rate = 0.041992 + +* 2 2 1 0.114242E-02 0.479721E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3883 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.82 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.46K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3883 Max w this run +w_max level proc position run w_max level timestep +0.562E+00 28 177 165.0deg W -30.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3884 Model time: 1979-03-22 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043940 + +* 1 1 3 0.100000E+01 0.848360E-04 * +Number of iterations = 2 +Initial residual = 0.014074 +Final residual = 0.000045 +Average conv. rate = 0.056761 + +* 1 2 2 0.140737E-01 0.453423E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093126 +Final residual = 0.000013 +Average conv. rate = 0.052191 + +* 2 1 3 0.931260E-01 0.132393E-04 * +Number of iterations = 1 +Initial residual = 0.001111 +Final residual = 0.000047 +Average conv. rate = 0.042066 + +* 2 2 1 0.111095E-02 0.467328E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3884 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.69 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.38K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3884 Max w this run +w_max level proc position run w_max level timestep +0.575E+00 25 177 166.9deg W -30.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3885 Model time: 1979-03-22 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044027 + +* 1 1 3 0.100000E+01 0.853381E-04 * +Number of iterations = 2 +Initial residual = 0.014239 +Final residual = 0.000045 +Average conv. rate = 0.056042 + +* 1 2 2 0.142393E-01 0.447212E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.098086 +Final residual = 0.000098 +Average conv. rate = 0.031641 + +* 2 1 2 0.980860E-01 0.981978E-04 * +Number of iterations = 1 +Initial residual = 0.001147 +Final residual = 0.000048 +Average conv. rate = 0.041461 + +* 2 2 1 0.114711E-02 0.475603E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3885 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.58 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.28K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3885 Max w this run +w_max level proc position run w_max level timestep +0.583E+00 23 177 166.9deg W -30.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3886 Model time: 1979-03-22 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043768 + +* 1 1 3 0.100000E+01 0.838459E-04 * +Number of iterations = 2 +Initial residual = 0.014271 +Final residual = 0.000045 +Average conv. rate = 0.055843 + +* 1 2 2 0.142706E-01 0.445016E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094032 +Final residual = 0.000011 +Average conv. rate = 0.049384 + +* 2 1 3 0.940318E-01 0.113252E-04 * +Number of iterations = 1 +Initial residual = 0.001112 +Final residual = 0.000047 +Average conv. rate = 0.042253 + +* 2 2 1 0.111247E-02 0.470047E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3886 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.54 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.16K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3886 Max w this run +w_max level proc position run w_max level timestep +0.625E+00 21 177 166.9deg W -30.6deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3887 Model time: 1979-03-22 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044369 + +* 1 1 3 0.100000E+01 0.873469E-04 * +Number of iterations = 2 +Initial residual = 0.014359 +Final residual = 0.000045 +Average conv. rate = 0.056197 + +* 1 2 2 0.143587E-01 0.453463E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093399 +Final residual = 0.000099 +Average conv. rate = 0.032555 + +* 2 1 2 0.933991E-01 0.989868E-04 * +Number of iterations = 1 +Initial residual = 0.001122 +Final residual = 0.000047 +Average conv. rate = 0.042267 + +* 2 2 1 0.112240E-02 0.474412E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3887 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.61 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.04K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3887 Max w this run +w_max level proc position run w_max level timestep +0.656E+00 22 177 166.9deg W -30.6deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3888 Model time: 1979-03-23 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Copying rp2 to dump headers +update_dpsidt: updating based on existing values +stph_skeb2: Copying SKEB2 data to dump headers +update_pattern: updating coeffc and coeffs +Copying SPT parameters to dump headers +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043548 + +* 1 1 3 0.100000E+01 0.825849E-04 * +Number of iterations = 2 +Initial residual = 0.014340 +Final residual = 0.000046 +Average conv. rate = 0.056668 + +* 1 2 2 0.143405E-01 0.460516E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093216 +Final residual = 0.000098 +Average conv. rate = 0.032498 + +* 2 1 2 0.932160E-01 0.984458E-04 * +Number of iterations = 1 +Initial residual = 0.001099 +Final residual = 0.000047 +Average conv. rate = 0.043085 + +* 2 2 1 0.109899E-02 0.473496E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13056E+25 +tot dry energy 0.13058E+25 +gr( rho cal) 0.38109E+24 +KE( rho cal) 0.82783E+21 +KEu(rho cal) 0.62525E+21 +KEv(rho cal) 0.20258E+21 +KEw(rho cal) 0.12679E+16 +cvT( rho cal) 0.92384E+24 +lq ( rho cal) 0.30790E+23 +lqcf( rho cal) 0.67440E+20 +lqcl( rho cal) 0.44285E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12354E+17 KG +Initial moisture = 0.12367E+17 KG +change in moisture = -0.12980E+14 KG +Moisture added E-P in period = -0.13711E+14 KG +Error in moisture = 0.73146E+12 KG +Error as % of change = -0.56353E+01 +q ( rho cal) 0.12311E+17 +qcf( rho cal) 0.26965E+14 +qcl( rho cal) 0.15621E+14 +FINAL TOTAL ENERGY = 0.13056E+25 J/ +INITIAL TOTAL ENERGY = 0.13056E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.60864E+20 J/ +FLUXES INTO ATM OVER PERIOD = 0.65425E+20 J/ +ERROR IN ENERGY BUDGET = 0.45613E+19 J/ +TEMP CORRECTION OVER A DAY = 0.12385E-02 K +TEMPERATURE CORRECTION RATE = 0.14335E-07 K/S +FLUX CORRECTION (ATM) = 0.10349E+00 W/M2 + +Minimum theta level 1 for timestep 3888 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.83 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3888 Max w this run +w_max level proc position run w_max level timestep +0.602E+00 23 177 166.9deg W -30.6deg S 0.103E+01 24 3737 +Value of iranseed copied to the dump headers 163924006996137 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790323_00 +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.d%z%C +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790323_00 +FILE_MANAGER: : Unit : 45 (portio) +DUMPCTL: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790323_00 on unit 45 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790323_00 to be Opened on Unit 45 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790323_00 Created on Unit 45 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790323_00 on unit 45 + +WRITING UNIFIED MODEL DUMP ON UNIT 45 +##################################### + +Data successfully written +794416694 words written to unit 45 +(Model data) +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790323_00 Closed on Unit 45 +FILE_MANAGER: Released : Unit : 45 (portio) +FILE_MANAGER: Assigned : history_archive/temp_hist.0005 +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +MPPIO: file op: cp::history_archive/temp_hist.0005:thist +file_op: Copy: "history_archive/temp_hist.0005" to "thist" +file_op: Copy: Complete, 12898 bytes +MPPIO: file op completed +FILE_MANAGER: Assigned : history_archive/temp_hist.0006 +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +MPPIO: file op: cp::history_archive/temp_hist.0006:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.xhist +file_op: Copy: "history_archive/temp_hist.0006" to "/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.xhist" +file_op: Copy: Complete, 12898 bytes +MPPIO: file op completed +MPPIO: file op: rm::thist: +file_op: Delete: "thist" +file_op: Delete: File deleted +MPPIO: file op completed +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6060.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6060.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6060.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6060.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6060.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6060.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3889 Model time: 1979-03-23 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043595 + +* 1 1 3 0.100000E+01 0.828539E-04 * +Number of iterations = 2 +Initial residual = 0.014403 +Final residual = 0.000046 +Average conv. rate = 0.056785 + +* 1 2 2 0.144028E-01 0.464421E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094561 +Final residual = 0.000097 +Average conv. rate = 0.032107 + +* 2 1 2 0.945611E-01 0.974801E-04 * +Number of iterations = 1 +Initial residual = 0.001097 +Final residual = 0.000047 +Average conv. rate = 0.043012 + +* 2 2 1 0.109742E-02 0.472019E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3889 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.18 42 118.1deg E -76.3deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3889 Max w this run +w_max level proc position run w_max level timestep +0.687E+00 29 177 165.0deg W -31.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3890 Model time: 1979-03-23 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043195 + +* 1 1 3 0.100000E+01 0.805959E-04 * +Number of iterations = 2 +Initial residual = 0.014371 +Final residual = 0.000046 +Average conv. rate = 0.056544 + +* 1 2 2 0.143711E-01 0.459474E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.096274 +Final residual = 0.000099 +Average conv. rate = 0.032077 + +* 2 1 2 0.962740E-01 0.990575E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000047 +Average conv. rate = 0.040033 + +* 2 2 1 0.118507E-02 0.474415E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3890 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.63 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3890 Max w this run +w_max level proc position run w_max level timestep +0.609E+00 26 177 165.0deg W -31.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3891 Model time: 1979-03-23 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043029 + +* 1 1 3 0.100000E+01 0.796704E-04 * +Number of iterations = 2 +Initial residual = 0.014403 +Final residual = 0.000046 +Average conv. rate = 0.056403 + +* 1 2 2 0.144027E-01 0.458192E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094427 +Final residual = 0.000099 +Average conv. rate = 0.032380 + +* 2 1 2 0.944271E-01 0.990043E-04 * +Number of iterations = 1 +Initial residual = 0.001124 +Final residual = 0.000048 +Average conv. rate = 0.042987 + +* 2 2 1 0.112354E-02 0.482981E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3891 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.41 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.10K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3891 Max w this run +w_max level proc position run w_max level timestep +0.644E+00 24 177 165.0deg W -31.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3892 Model time: 1979-03-23 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043474 + +* 1 1 3 0.100000E+01 0.821654E-04 * +Number of iterations = 2 +Initial residual = 0.014440 +Final residual = 0.000045 +Average conv. rate = 0.055950 + +* 1 2 2 0.144401E-01 0.452036E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094118 +Final residual = 0.000098 +Average conv. rate = 0.032289 + +* 2 1 2 0.941183E-01 0.981243E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000048 +Average conv. rate = 0.042140 + +* 2 2 1 0.114644E-02 0.483106E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3892 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.20 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.25K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3892 Max w this run +w_max level proc position run w_max level timestep +0.704E+00 24 220 39.4deg W -16.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3893 Model time: 1979-03-23 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043181 + +* 1 1 3 0.100000E+01 0.805145E-04 * +Number of iterations = 2 +Initial residual = 0.014554 +Final residual = 0.000045 +Average conv. rate = 0.055556 + +* 1 2 2 0.145536E-01 0.449185E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.096974 +Final residual = 0.000098 +Average conv. rate = 0.031824 + +* 2 1 2 0.969740E-01 0.982130E-04 * +Number of iterations = 1 +Initial residual = 0.001143 +Final residual = 0.000048 +Average conv. rate = 0.042049 + +* 2 2 1 0.114302E-02 0.480623E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3893 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.01 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.39K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3893 Max w this run +w_max level proc position run w_max level timestep +0.762E+00 25 220 39.4deg W -16.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3894 Model time: 1979-03-23 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043722 + +* 1 1 3 0.100000E+01 0.835776E-04 * +Number of iterations = 2 +Initial residual = 0.014466 +Final residual = 0.000046 +Average conv. rate = 0.056521 + +* 1 2 2 0.144657E-01 0.462120E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095466 +Final residual = 0.000099 +Average conv. rate = 0.032245 + +* 2 1 2 0.954665E-01 0.992605E-04 * +Number of iterations = 1 +Initial residual = 0.001182 +Final residual = 0.000048 +Average conv. rate = 0.040529 + +* 2 2 1 0.118219E-02 0.479126E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3894 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.83 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.51K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3894 Max w this run +w_max level proc position run w_max level timestep +0.764E+00 22 177 165.0deg W -31.9deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3895 Model time: 1979-03-23 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044106 + +* 1 1 3 0.100000E+01 0.858039E-04 * +Number of iterations = 2 +Initial residual = 0.014356 +Final residual = 0.000043 +Average conv. rate = 0.054434 + +* 1 2 2 0.143563E-01 0.425382E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095919 +Final residual = 0.000098 +Average conv. rate = 0.031903 + +* 2 1 2 0.959191E-01 0.976296E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000047 +Average conv. rate = 0.041282 + +* 2 2 1 0.114988E-02 0.474698E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3895 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.67 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.63K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3895 Max w this run +w_max level proc position run w_max level timestep +0.759E+00 27 220 39.4deg W -16.9deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3896 Model time: 1979-03-23 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043278 + +* 1 1 3 0.100000E+01 0.810594E-04 * +Number of iterations = 2 +Initial residual = 0.014183 +Final residual = 0.000043 +Average conv. rate = 0.055238 + +* 1 2 2 0.141828E-01 0.432750E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090679 +Final residual = 0.000096 +Average conv. rate = 0.032570 + +* 2 1 2 0.906791E-01 0.961900E-04 * +Number of iterations = 1 +Initial residual = 0.001093 +Final residual = 0.000048 +Average conv. rate = 0.043635 + +* 2 2 1 0.109331E-02 0.477066E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3896 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.52 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.74K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3896 Max w this run +w_max level proc position run w_max level timestep +0.726E+00 27 220 39.4deg W -16.9deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3897 Model time: 1979-03-23 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043910 + +* 1 1 3 0.100000E+01 0.846639E-04 * +Number of iterations = 2 +Initial residual = 0.014221 +Final residual = 0.000043 +Average conv. rate = 0.055248 + +* 1 2 2 0.142213E-01 0.434087E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094983 +Final residual = 0.000098 +Average conv. rate = 0.032084 + +* 2 1 2 0.949835E-01 0.977729E-04 * +Number of iterations = 1 +Initial residual = 0.001123 +Final residual = 0.000047 +Average conv. rate = 0.041860 + +* 2 2 1 0.112340E-02 0.470252E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3897 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.38 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.82K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3897 Max w this run +w_max level proc position run w_max level timestep +0.680E+00 26 177 163.1deg W -33.1deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3898 Model time: 1979-03-23 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043434 + +* 1 1 3 0.100000E+01 0.819381E-04 * +Number of iterations = 2 +Initial residual = 0.014229 +Final residual = 0.000043 +Average conv. rate = 0.054660 + +* 1 2 2 0.142293E-01 0.425129E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092725 +Final residual = 0.000096 +Average conv. rate = 0.032125 + +* 2 1 2 0.927248E-01 0.956961E-04 * +Number of iterations = 1 +Initial residual = 0.001094 +Final residual = 0.000047 +Average conv. rate = 0.042812 + +* 2 2 1 0.109413E-02 0.468417E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3898 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.25 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3898 Max w this run +w_max level proc position run w_max level timestep +0.782E+00 25 177 163.1deg W -33.1deg S 0.103E+01 24 3737 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3899 Model time: 1979-03-23 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043892 + +* 1 1 3 0.100000E+01 0.845610E-04 * +Number of iterations = 2 +Initial residual = 0.014237 +Final residual = 0.000043 +Average conv. rate = 0.054730 + +* 1 2 2 0.142372E-01 0.426464E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095994 +Final residual = 0.000097 +Average conv. rate = 0.031744 + +* 2 1 2 0.959942E-01 0.967306E-04 * +Number of iterations = 1 +Initial residual = 0.001233 +Final residual = 0.000047 +Average conv. rate = 0.037715 + +* 2 2 1 0.123310E-02 0.465063E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3899 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.13 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.84K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3899 Max w this run +w_max level proc position run w_max level timestep +0.907E+00 26 177 163.1deg W -33.1deg S 0.103E+01 24 3737 + +******************************************************************************** + +Atm_Step: Timestep 3900 Model time: 1979-03-23 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043964 + +* 1 1 3 0.100000E+01 0.849769E-04 * +Number of iterations = 2 +Initial residual = 0.014152 +Final residual = 0.000043 +Average conv. rate = 0.054903 + +* 1 2 2 0.141519E-01 0.426591E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091406 +Final residual = 0.000096 +Average conv. rate = 0.032482 + +* 2 1 2 0.914062E-01 0.964415E-04 * +Number of iterations = 1 +Initial residual = 0.001105 +Final residual = 0.000046 +Average conv. rate = 0.041979 + +* 2 2 1 0.110520E-02 0.463950E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3900 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.02 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.78K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3900 Max w this run +w_max level proc position run w_max level timestep +0.978E+00 26 177 163.1deg W -33.1deg S 0.103E+01 24 3737 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3901 Model time: 1979-03-23 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044029 + +* 1 1 3 0.100000E+01 0.853511E-04 * +Number of iterations = 2 +Initial residual = 0.014135 +Final residual = 0.000043 +Average conv. rate = 0.055321 + +* 1 2 2 0.141353E-01 0.432592E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096003 +Final residual = 0.000018 +Average conv. rate = 0.057674 + +* 2 1 3 0.960027E-01 0.184168E-04 * +Number of iterations = 1 +Initial residual = 0.001275 +Final residual = 0.000046 +Average conv. rate = 0.035980 + +* 2 2 1 0.127511E-02 0.458790E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3901 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.92 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.76K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3901 Max w this run +w_max level proc position run w_max level timestep +0.103E+01 26 177 163.1deg W -33.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3902 Model time: 1979-03-23 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044053 + +* 1 1 3 0.100000E+01 0.854938E-04 * +Number of iterations = 2 +Initial residual = 0.014125 +Final residual = 0.000042 +Average conv. rate = 0.054741 + +* 1 2 2 0.141252E-01 0.423276E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.098135 +Final residual = 0.000098 +Average conv. rate = 0.031624 + +* 2 1 2 0.981353E-01 0.981403E-04 * +Number of iterations = 1 +Initial residual = 0.001363 +Final residual = 0.000047 +Average conv. rate = 0.034735 + +* 2 2 1 0.136288E-02 0.473396E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3902 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.82 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.73K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3902 Max w this run +w_max level proc position run w_max level timestep +0.938E+00 25 177 163.1deg W -33.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3903 Model time: 1979-03-23 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044231 + +* 1 1 3 0.100000E+01 0.865335E-04 * +Number of iterations = 2 +Initial residual = 0.014154 +Final residual = 0.000046 +Average conv. rate = 0.056873 + +* 1 2 2 0.141539E-01 0.457809E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093532 +Final residual = 0.000013 +Average conv. rate = 0.052299 + +* 2 1 3 0.935316E-01 0.133794E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000046 +Average conv. rate = 0.040793 + +* 2 2 1 0.113744E-02 0.464001E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3903 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.74 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.63K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3903 Max w this run +w_max level proc position run w_max level timestep +0.903E+00 26 177 163.1deg W -33.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3904 Model time: 1979-03-23 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043324 + +* 1 1 3 0.100000E+01 0.813164E-04 * +Number of iterations = 2 +Initial residual = 0.014141 +Final residual = 0.000042 +Average conv. rate = 0.054631 + +* 1 2 2 0.141407E-01 0.422030E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091936 +Final residual = 0.000100 +Average conv. rate = 0.032924 + +* 2 1 2 0.919364E-01 0.996603E-04 * +Number of iterations = 1 +Initial residual = 0.001119 +Final residual = 0.000047 +Average conv. rate = 0.041734 + +* 2 2 1 0.111902E-02 0.467012E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3904 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.66 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.89K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3904 Max w this run +w_max level proc position run w_max level timestep +0.842E+00 26 177 163.1deg W -33.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3905 Model time: 1979-03-23 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043387 + +* 1 1 3 0.100000E+01 0.816719E-04 * +Number of iterations = 2 +Initial residual = 0.014148 +Final residual = 0.000045 +Average conv. rate = 0.056105 + +* 1 2 2 0.141483E-01 0.445351E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.092942 +Final residual = 0.000099 +Average conv. rate = 0.032693 + +* 2 1 2 0.929420E-01 0.993414E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000046 +Average conv. rate = 0.040159 + +* 2 2 1 0.115720E-02 0.464719E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3905 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.58 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.78K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3905 Max w this run +w_max level proc position run w_max level timestep +0.757E+00 27 177 161.3deg W -33.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3906 Model time: 1979-03-23 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043195 + +* 1 1 3 0.100000E+01 0.805932E-04 * +Number of iterations = 2 +Initial residual = 0.014057 +Final residual = 0.000044 +Average conv. rate = 0.056212 + +* 1 2 2 0.140574E-01 0.444189E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091924 +Final residual = 0.000011 +Average conv. rate = 0.049567 + +* 2 1 3 0.919238E-01 0.111946E-04 * +Number of iterations = 1 +Initial residual = 0.001115 +Final residual = 0.000045 +Average conv. rate = 0.040733 + +* 2 2 1 0.111453E-02 0.453983E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3906 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.51 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.67K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3906 Max w this run +w_max level proc position run w_max level timestep +0.670E+00 27 177 161.3deg W -33.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3907 Model time: 1979-03-23 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044054 + +* 1 1 3 0.100000E+01 0.855000E-04 * +Number of iterations = 2 +Initial residual = 0.014028 +Final residual = 0.000043 +Average conv. rate = 0.055064 + +* 1 2 2 0.140283E-01 0.425338E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093939 +Final residual = 0.000015 +Average conv. rate = 0.053643 + +* 2 1 3 0.939387E-01 0.145009E-04 * +Number of iterations = 1 +Initial residual = 0.001144 +Final residual = 0.000045 +Average conv. rate = 0.039758 + +* 2 2 1 0.114392E-02 0.454800E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3907 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.45 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3907 Max w this run +w_max level proc position run w_max level timestep +0.705E+00 26 145 161.3deg W -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3908 Model time: 1979-03-23 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043418 + +* 1 1 3 0.100000E+01 0.818496E-04 * +Number of iterations = 2 +Initial residual = 0.013881 +Final residual = 0.000043 +Average conv. rate = 0.055529 + +* 1 2 2 0.138814E-01 0.428023E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092458 +Final residual = 0.000017 +Average conv. rate = 0.056725 + +* 2 1 3 0.924577E-01 0.168756E-04 * +Number of iterations = 1 +Initial residual = 0.001133 +Final residual = 0.000045 +Average conv. rate = 0.039806 + +* 2 2 1 0.113336E-02 0.451146E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3908 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.40 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3908 Max w this run +w_max level proc position run w_max level timestep +0.753E+00 26 145 161.3deg W -34.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3909 Model time: 1979-03-23 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044092 + +* 1 1 3 0.100000E+01 0.857207E-04 * +Number of iterations = 2 +Initial residual = 0.013848 +Final residual = 0.000043 +Average conv. rate = 0.056040 + +* 1 2 2 0.138477E-01 0.434880E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097042 +Final residual = 0.000014 +Average conv. rate = 0.052514 + +* 2 1 3 0.970419E-01 0.140535E-04 * +Number of iterations = 1 +Initial residual = 0.001250 +Final residual = 0.000045 +Average conv. rate = 0.036312 + +* 2 2 1 0.124964E-02 0.453776E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3909 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.39 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.41K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3909 Max w this run +w_max level proc position run w_max level timestep +0.911E+00 27 145 161.3deg W -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3910 Model time: 1979-03-23 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043947 + +* 1 1 3 0.100000E+01 0.848772E-04 * +Number of iterations = 2 +Initial residual = 0.013883 +Final residual = 0.000043 +Average conv. rate = 0.055693 + +* 1 2 2 0.138833E-01 0.430620E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094161 +Final residual = 0.000099 +Average conv. rate = 0.032411 + +* 2 1 2 0.941606E-01 0.989115E-04 * +Number of iterations = 1 +Initial residual = 0.001205 +Final residual = 0.000046 +Average conv. rate = 0.038395 + +* 2 2 1 0.120480E-02 0.462578E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3910 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.42 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.21K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3910 Max w this run +w_max level proc position run w_max level timestep +0.844E+00 27 145 161.3deg W -34.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3911 Model time: 1979-03-23 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043675 + +* 1 1 3 0.100000E+01 0.833112E-04 * +Number of iterations = 2 +Initial residual = 0.014046 +Final residual = 0.000043 +Average conv. rate = 0.055250 + +* 1 2 2 0.140465E-01 0.428774E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094220 +Final residual = 0.000100 +Average conv. rate = 0.032537 + +* 2 1 2 0.942202E-01 0.997487E-04 * +Number of iterations = 1 +Initial residual = 0.001122 +Final residual = 0.000046 +Average conv. rate = 0.041399 + +* 2 2 1 0.112198E-02 0.464488E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3911 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.50 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.12K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3911 Max w this run +w_max level proc position run w_max level timestep +0.808E+00 27 145 159.4deg W -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3912 Model time: 1979-03-23 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044498 + +* 1 1 3 0.100000E+01 0.881100E-04 * +Number of iterations = 2 +Initial residual = 0.014078 +Final residual = 0.000043 +Average conv. rate = 0.055084 + +* 1 2 2 0.140776E-01 0.427143E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095252 +Final residual = 0.000099 +Average conv. rate = 0.032272 + +* 2 1 2 0.952520E-01 0.992016E-04 * +Number of iterations = 1 +Initial residual = 0.001140 +Final residual = 0.000046 +Average conv. rate = 0.040661 + +* 2 2 1 0.114023E-02 0.463629E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3912 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.63 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3912 Max w this run +w_max level proc position run w_max level timestep +0.940E+00 26 145 159.4deg W -34.4deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3913 Model time: 1979-03-23 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044033 + +* 1 1 3 0.100000E+01 0.853740E-04 * +Number of iterations = 2 +Initial residual = 0.014108 +Final residual = 0.000043 +Average conv. rate = 0.055240 + +* 1 2 2 0.141079E-01 0.430493E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101895 +Final residual = 0.000014 +Average conv. rate = 0.051406 + +* 2 1 3 0.101895E+00 0.138420E-04 * +Number of iterations = 1 +Initial residual = 0.001534 +Final residual = 0.000045 +Average conv. rate = 0.029394 + +* 2 2 1 0.153384E-02 0.450853E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3913 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.81 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3913 Max w this run +w_max level proc position run w_max level timestep +0.966E+00 26 145 159.4deg W -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3914 Model time: 1979-03-23 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044385 + +* 1 1 3 0.100000E+01 0.874396E-04 * +Number of iterations = 2 +Initial residual = 0.013941 +Final residual = 0.000045 +Average conv. rate = 0.056613 + +* 1 2 2 0.139407E-01 0.446808E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094201 +Final residual = 0.000013 +Average conv. rate = 0.051760 + +* 2 1 3 0.942009E-01 0.130631E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000045 +Average conv. rate = 0.038672 + +* 2 2 1 0.115717E-02 0.447496E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3914 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.94 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.80K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3914 Max w this run +w_max level proc position run w_max level timestep +0.972E+00 26 145 159.4deg W -34.4deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3915 Model time: 1979-03-23 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044159 + +* 1 1 3 0.100000E+01 0.861136E-04 * +Number of iterations = 2 +Initial residual = 0.013908 +Final residual = 0.000045 +Average conv. rate = 0.056588 + +* 1 2 2 0.139077E-01 0.445355E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097472 +Final residual = 0.000012 +Average conv. rate = 0.049094 + +* 2 1 3 0.974716E-01 0.115338E-04 * +Number of iterations = 1 +Initial residual = 0.001215 +Final residual = 0.000044 +Average conv. rate = 0.036392 + +* 2 2 1 0.121533E-02 0.442286E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3915 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.90 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.88K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3915 Max w this run +w_max level proc position run w_max level timestep +0.937E+00 25 145 159.4deg W -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3916 Model time: 1979-03-23 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044635 + +* 1 1 3 0.100000E+01 0.889231E-04 * +Number of iterations = 2 +Initial residual = 0.013895 +Final residual = 0.000044 +Average conv. rate = 0.056406 + +* 1 2 2 0.138951E-01 0.442096E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100503 +Final residual = 0.000014 +Average conv. rate = 0.051392 + +* 2 1 3 0.100503E+00 0.136419E-04 * +Number of iterations = 1 +Initial residual = 0.001250 +Final residual = 0.000044 +Average conv. rate = 0.035176 + +* 2 2 1 0.125004E-02 0.439715E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3916 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.85 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3916 Max w this run +w_max level proc position run w_max level timestep +0.931E+00 25 145 159.4deg W -34.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3917 Model time: 1979-03-23 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044857 + +* 1 1 3 0.100000E+01 0.902601E-04 * +Number of iterations = 2 +Initial residual = 0.013989 +Final residual = 0.000044 +Average conv. rate = 0.056385 + +* 1 2 2 0.139891E-01 0.444755E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092397 +Final residual = 0.000016 +Average conv. rate = 0.056195 + +* 2 1 3 0.923974E-01 0.163965E-04 * +Number of iterations = 1 +Initial residual = 0.001099 +Final residual = 0.000044 +Average conv. rate = 0.040307 + +* 2 2 1 0.109927E-02 0.443086E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3917 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.79 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.87K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3917 Max w this run +w_max level proc position run w_max level timestep +0.892E+00 25 145 159.4deg W -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3918 Model time: 1979-03-23 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044119 + +* 1 1 3 0.100000E+01 0.858762E-04 * +Number of iterations = 2 +Initial residual = 0.013988 +Final residual = 0.000045 +Average conv. rate = 0.056812 + +* 1 2 2 0.139880E-01 0.451472E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098809 +Final residual = 0.000016 +Average conv. rate = 0.055036 + +* 2 1 3 0.988087E-01 0.164719E-04 * +Number of iterations = 1 +Initial residual = 0.001138 +Final residual = 0.000045 +Average conv. rate = 0.039540 + +* 2 2 1 0.113804E-02 0.449978E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3918 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.70 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.94K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3918 Max w this run +w_max level proc position run w_max level timestep +0.865E+00 26 145 159.4deg W -34.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3919 Model time: 1979-03-23 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044776 + +* 1 1 3 0.100000E+01 0.897698E-04 * +Number of iterations = 2 +Initial residual = 0.014072 +Final residual = 0.000045 +Average conv. rate = 0.056375 + +* 1 2 2 0.140722E-01 0.447236E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094508 +Final residual = 0.000015 +Average conv. rate = 0.054447 + +* 2 1 3 0.945078E-01 0.152546E-04 * +Number of iterations = 1 +Initial residual = 0.001144 +Final residual = 0.000045 +Average conv. rate = 0.039619 + +* 2 2 1 0.114437E-02 0.453386E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3919 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.62 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.09K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3919 Max w this run +w_max level proc position run w_max level timestep +0.758E+00 26 145 159.4deg W -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3920 Model time: 1979-03-23 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044013 + +* 1 1 3 0.100000E+01 0.852589E-04 * +Number of iterations = 2 +Initial residual = 0.014077 +Final residual = 0.000045 +Average conv. rate = 0.056498 + +* 1 2 2 0.140767E-01 0.449325E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096937 +Final residual = 0.000015 +Average conv. rate = 0.054192 + +* 2 1 3 0.969368E-01 0.154277E-04 * +Number of iterations = 1 +Initial residual = 0.001202 +Final residual = 0.000046 +Average conv. rate = 0.038408 + +* 2 2 1 0.120202E-02 0.461671E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3920 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.54 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.18K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3920 Max w this run +w_max level proc position run w_max level timestep +0.707E+00 23 146 157.5deg W -34.4deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3921 Model time: 1979-03-23 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043974 + +* 1 1 3 0.100000E+01 0.850331E-04 * +Number of iterations = 2 +Initial residual = 0.014175 +Final residual = 0.000045 +Average conv. rate = 0.056512 + +* 1 2 2 0.141748E-01 0.452684E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098332 +Final residual = 0.000015 +Average conv. rate = 0.053566 + +* 2 1 3 0.983317E-01 0.151137E-04 * +Number of iterations = 1 +Initial residual = 0.001258 +Final residual = 0.000047 +Average conv. rate = 0.037089 + +* 2 2 1 0.125818E-02 0.466648E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3921 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.45 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.32K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3921 Max w this run +w_max level proc position run w_max level timestep +0.686E+00 22 146 157.5deg W -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3922 Model time: 1979-03-23 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043621 + +* 1 1 3 0.100000E+01 0.830018E-04 * +Number of iterations = 2 +Initial residual = 0.014198 +Final residual = 0.000044 +Average conv. rate = 0.055705 + +* 1 2 2 0.141980E-01 0.440574E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091438 +Final residual = 0.000014 +Average conv. rate = 0.053972 + +* 2 1 3 0.914379E-01 0.143757E-04 * +Number of iterations = 1 +Initial residual = 0.001095 +Final residual = 0.000047 +Average conv. rate = 0.042499 + +* 2 2 1 0.109492E-02 0.465325E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3922 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.37 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.41K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3922 Max w this run +w_max level proc position run w_max level timestep +0.657E+00 21 146 157.5deg W -34.4deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3923 Model time: 1979-03-23 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043230 + +* 1 1 3 0.100000E+01 0.807872E-04 * +Number of iterations = 2 +Initial residual = 0.014275 +Final residual = 0.000045 +Average conv. rate = 0.056005 + +* 1 2 2 0.142747E-01 0.447742E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091833 +Final residual = 0.000014 +Average conv. rate = 0.053822 + +* 2 1 3 0.918328E-01 0.143179E-04 * +Number of iterations = 1 +Initial residual = 0.001114 +Final residual = 0.000047 +Average conv. rate = 0.042553 + +* 2 2 1 0.111444E-02 0.474230E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3923 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.30 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3923 Max w this run +w_max level proc position run w_max level timestep +0.639E+00 20 146 157.5deg W -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3924 Model time: 1979-03-23 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044375 + +* 1 1 3 0.100000E+01 0.873826E-04 * +Number of iterations = 2 +Initial residual = 0.014210 +Final residual = 0.000044 +Average conv. rate = 0.055845 + +* 1 2 2 0.142097E-01 0.443158E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090364 +Final residual = 0.000015 +Average conv. rate = 0.055462 + +* 2 1 3 0.903635E-01 0.154165E-04 * +Number of iterations = 1 +Initial residual = 0.001094 +Final residual = 0.000048 +Average conv. rate = 0.043638 + +* 2 2 1 0.109365E-02 0.477243E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3924 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.22 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.47K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3924 Max w this run +w_max level proc position run w_max level timestep +0.629E+00 26 146 155.6deg W -35.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3925 Model time: 1979-03-23 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043696 + +* 1 1 3 0.100000E+01 0.834327E-04 * +Number of iterations = 2 +Initial residual = 0.014244 +Final residual = 0.000044 +Average conv. rate = 0.055892 + +* 1 2 2 0.142441E-01 0.444979E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094649 +Final residual = 0.000015 +Average conv. rate = 0.054585 + +* 2 1 3 0.946494E-01 0.153935E-04 * +Number of iterations = 1 +Initial residual = 0.001154 +Final residual = 0.000047 +Average conv. rate = 0.041090 + +* 2 2 1 0.115420E-02 0.474261E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3925 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.15 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.52K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3925 Max w this run +w_max level proc position run w_max level timestep +0.660E+00 25 146 155.6deg W -35.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3926 Model time: 1979-03-23 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042998 + +* 1 1 3 0.100000E+01 0.794984E-04 * +Number of iterations = 2 +Initial residual = 0.014222 +Final residual = 0.000046 +Average conv. rate = 0.056860 + +* 1 2 2 0.142222E-01 0.459803E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092673 +Final residual = 0.000014 +Average conv. rate = 0.053301 + +* 2 1 3 0.926728E-01 0.140336E-04 * +Number of iterations = 1 +Initial residual = 0.001145 +Final residual = 0.000047 +Average conv. rate = 0.041355 + +* 2 2 1 0.114469E-02 0.473380E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3926 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.08 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3926 Max w this run +w_max level proc position run w_max level timestep +0.774E+00 25 146 155.6deg W -35.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3927 Model time: 1979-03-23 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043933 + +* 1 1 3 0.100000E+01 0.847927E-04 * +Number of iterations = 2 +Initial residual = 0.014360 +Final residual = 0.000046 +Average conv. rate = 0.056893 + +* 1 2 2 0.143596E-01 0.464790E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093252 +Final residual = 0.000014 +Average conv. rate = 0.052763 + +* 2 1 3 0.932523E-01 0.136974E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000047 +Average conv. rate = 0.041392 + +* 2 2 1 0.113732E-02 0.470753E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3927 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.03 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.57K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3927 Max w this run +w_max level proc position run w_max level timestep +0.857E+00 25 146 155.6deg W -35.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3928 Model time: 1979-03-23 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043831 + +* 1 1 3 0.100000E+01 0.842085E-04 * +Number of iterations = 2 +Initial residual = 0.014441 +Final residual = 0.000046 +Average conv. rate = 0.056660 + +* 1 2 2 0.144415E-01 0.463624E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093464 +Final residual = 0.000098 +Average conv. rate = 0.032398 + +* 2 1 2 0.934644E-01 0.981004E-04 * +Number of iterations = 1 +Initial residual = 0.001164 +Final residual = 0.000046 +Average conv. rate = 0.039927 + +* 2 2 1 0.116351E-02 0.464555E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3928 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.04 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.56K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3928 Max w this run +w_max level proc position run w_max level timestep +0.866E+00 24 146 155.6deg W -35.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3929 Model time: 1979-03-23 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043987 + +* 1 1 3 0.100000E+01 0.851081E-04 * +Number of iterations = 2 +Initial residual = 0.014539 +Final residual = 0.000047 +Average conv. rate = 0.056743 + +* 1 2 2 0.145392E-01 0.468137E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092665 +Final residual = 0.000017 +Average conv. rate = 0.056334 + +* 2 1 3 0.926650E-01 0.165668E-04 * +Number of iterations = 1 +Initial residual = 0.001110 +Final residual = 0.000046 +Average conv. rate = 0.041341 + +* 2 2 1 0.111010E-02 0.458932E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3929 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.10 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.44K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3929 Max w this run +w_max level proc position run w_max level timestep +0.820E+00 25 146 155.6deg W -35.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3930 Model time: 1979-03-23 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044233 + +* 1 1 3 0.100000E+01 0.865426E-04 * +Number of iterations = 2 +Initial residual = 0.014446 +Final residual = 0.000044 +Average conv. rate = 0.055409 + +* 1 2 2 0.144462E-01 0.443520E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095675 +Final residual = 0.000015 +Average conv. rate = 0.053817 + +* 2 1 3 0.956750E-01 0.149131E-04 * +Number of iterations = 1 +Initial residual = 0.001180 +Final residual = 0.000046 +Average conv. rate = 0.038675 + +* 2 2 1 0.117980E-02 0.456287E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3930 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.22 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.31K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3930 Max w this run +w_max level proc position run w_max level timestep +0.735E+00 24 146 155.6deg W -35.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3931 Model time: 1979-03-23 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044884 + +* 1 1 3 0.100000E+01 0.904193E-04 * +Number of iterations = 2 +Initial residual = 0.014409 +Final residual = 0.000044 +Average conv. rate = 0.055472 + +* 1 2 2 0.144090E-01 0.443392E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093058 +Final residual = 0.000012 +Average conv. rate = 0.050058 + +* 2 1 3 0.930582E-01 0.116727E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000046 +Average conv. rate = 0.040136 + +* 2 2 1 0.113429E-02 0.455258E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3931 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.73 47 174.4deg E -78.8deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.78K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3931 Max w this run +w_max level proc position run w_max level timestep +0.769E+00 24 146 153.8deg W -35.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3932 Model time: 1979-03-23 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044035 + +* 1 1 3 0.100000E+01 0.853897E-04 * +Number of iterations = 2 +Initial residual = 0.014241 +Final residual = 0.000044 +Average conv. rate = 0.055527 + +* 1 2 2 0.142411E-01 0.439093E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091726 +Final residual = 0.000014 +Average conv. rate = 0.053272 + +* 2 1 3 0.917258E-01 0.138673E-04 * +Number of iterations = 1 +Initial residual = 0.001116 +Final residual = 0.000046 +Average conv. rate = 0.041503 + +* 2 2 1 0.111564E-02 0.463025E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3932 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.64 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.99K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3932 Max w this run +w_max level proc position run w_max level timestep +0.815E+00 24 146 153.8deg W -35.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3933 Model time: 1979-03-23 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043895 + +* 1 1 3 0.100000E+01 0.845775E-04 * +Number of iterations = 2 +Initial residual = 0.014205 +Final residual = 0.000047 +Average conv. rate = 0.057340 + +* 1 2 2 0.142049E-01 0.467033E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093330 +Final residual = 0.000014 +Average conv. rate = 0.052733 + +* 2 1 3 0.933303E-01 0.136861E-04 * +Number of iterations = 1 +Initial residual = 0.001128 +Final residual = 0.000048 +Average conv. rate = 0.042326 + +* 2 2 1 0.112841E-02 0.477604E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3933 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.35 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.50K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3933 Max w this run +w_max level proc position run w_max level timestep +0.836E+00 23 146 153.8deg W -35.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3934 Model time: 1979-03-23 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044412 + +* 1 1 3 0.100000E+01 0.875966E-04 * +Number of iterations = 2 +Initial residual = 0.014146 +Final residual = 0.000046 +Average conv. rate = 0.057053 + +* 1 2 2 0.141456E-01 0.460440E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093456 +Final residual = 0.000013 +Average conv. rate = 0.052080 + +* 2 1 3 0.934563E-01 0.132012E-04 * +Number of iterations = 1 +Initial residual = 0.001130 +Final residual = 0.000048 +Average conv. rate = 0.042408 + +* 2 2 1 0.113011E-02 0.479252E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3934 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.08 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.98K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3934 Max w this run +w_max level proc position run w_max level timestep +0.812E+00 24 146 153.8deg W -35.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3935 Model time: 1979-03-23 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043970 + +* 1 1 3 0.100000E+01 0.850123E-04 * +Number of iterations = 2 +Initial residual = 0.014207 +Final residual = 0.000047 +Average conv. rate = 0.057553 + +* 1 2 2 0.142074E-01 0.470595E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097451 +Final residual = 0.000013 +Average conv. rate = 0.051582 + +* 2 1 3 0.974509E-01 0.133748E-04 * +Number of iterations = 1 +Initial residual = 0.001196 +Final residual = 0.000048 +Average conv. rate = 0.040086 + +* 2 2 1 0.119597E-02 0.479411E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3935 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.81 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.43K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3935 Max w this run +w_max level proc position run w_max level timestep +0.685E+00 24 146 153.8deg W -35.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3936 Model time: 1979-03-24 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043389 + +* 1 1 3 0.100000E+01 0.816832E-04 * +Number of iterations = 2 +Initial residual = 0.014195 +Final residual = 0.000046 +Average conv. rate = 0.056757 + +* 1 2 2 0.141951E-01 0.457271E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090815 +Final residual = 0.000017 +Average conv. rate = 0.056878 + +* 2 1 3 0.908154E-01 0.167108E-04 * +Number of iterations = 1 +Initial residual = 0.001112 +Final residual = 0.000047 +Average conv. rate = 0.042646 + +* 2 2 1 0.111193E-02 0.474192E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13059E+25 +tot dry energy 0.13060E+25 +gr( rho cal) 0.38116E+24 +KE( rho cal) 0.82676E+21 +KEu(rho cal) 0.61238E+21 +KEv(rho cal) 0.21437E+21 +KEw(rho cal) 0.12162E+16 +cvT( rho cal) 0.92401E+24 +lq ( rho cal) 0.30754E+23 +lqcf( rho cal) 0.66508E+20 +lqcl( rho cal) 0.43202E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12339E+17 KG +Initial moisture = 0.12354E+17 KG +change in moisture = -0.14843E+14 KG +Moisture added E-P in period = -0.16667E+14 KG +Error in moisture = 0.18242E+13 KG +Error as % of change = -0.12290E+02 +q ( rho cal) 0.12297E+17 +qcf( rho cal) 0.26592E+14 +qcl( rho cal) 0.15239E+14 +FINAL TOTAL ENERGY = 0.13059E+25 J/ +INITIAL TOTAL ENERGY = 0.13056E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.23587E+21 J/ +FLUXES INTO ATM OVER PERIOD = 0.23847E+21 J/ +ERROR IN ENERGY BUDGET = 0.25991E+19 J/ +TEMP CORRECTION OVER A DAY = 0.70574E-03 K +TEMPERATURE CORRECTION RATE = 0.81683E-08 K/S +FLUX CORRECTION (ATM) = 0.58973E-01 W/M2 + +Minimum theta level 1 for timestep 3936 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.56 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.83K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3936 Max w this run +w_max level proc position run w_max level timestep +0.572E+00 23 146 153.8deg W -35.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6036.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6036.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6036.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6036.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6036.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6036.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3937 Model time: 1979-03-24 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043743 + +* 1 1 3 0.100000E+01 0.837026E-04 * +Number of iterations = 2 +Initial residual = 0.014295 +Final residual = 0.000045 +Average conv. rate = 0.056319 + +* 1 2 2 0.142952E-01 0.453413E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090840 +Final residual = 0.000097 +Average conv. rate = 0.032687 + +* 2 1 2 0.908397E-01 0.970575E-04 * +Number of iterations = 1 +Initial residual = 0.001099 +Final residual = 0.000047 +Average conv. rate = 0.043189 + +* 2 2 1 0.109864E-02 0.474487E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3937 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.32 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.05K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3937 Max w this run +w_max level proc position run w_max level timestep +0.582E+00 20 146 151.9deg W -35.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3938 Model time: 1979-03-24 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043530 + +* 1 1 3 0.100000E+01 0.824842E-04 * +Number of iterations = 2 +Initial residual = 0.014281 +Final residual = 0.000045 +Average conv. rate = 0.056005 + +* 1 2 2 0.142814E-01 0.447950E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090214 +Final residual = 0.000099 +Average conv. rate = 0.033131 + +* 2 1 2 0.902140E-01 0.990230E-04 * +Number of iterations = 1 +Initial residual = 0.001103 +Final residual = 0.000047 +Average conv. rate = 0.042965 + +* 2 2 1 0.110337E-02 0.474057E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3938 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.10 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.22K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3938 Max w this run +w_max level proc position run w_max level timestep +0.606E+00 20 146 151.9deg W -35.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3939 Model time: 1979-03-24 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043183 + +* 1 1 3 0.100000E+01 0.805271E-04 * +Number of iterations = 2 +Initial residual = 0.014266 +Final residual = 0.000045 +Average conv. rate = 0.055869 + +* 1 2 2 0.142664E-01 0.445304E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089346 +Final residual = 0.000097 +Average conv. rate = 0.033034 + +* 2 1 2 0.893462E-01 0.974960E-04 * +Number of iterations = 1 +Initial residual = 0.001093 +Final residual = 0.000047 +Average conv. rate = 0.042872 + +* 2 2 1 0.109332E-02 0.468732E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3939 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.89 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.24K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3939 Max w this run +w_max level proc position run w_max level timestep +0.618E+00 21 146 151.9deg W -35.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3940 Model time: 1979-03-24 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043068 + +* 1 1 3 0.100000E+01 0.798856E-04 * +Number of iterations = 2 +Initial residual = 0.014158 +Final residual = 0.000044 +Average conv. rate = 0.055614 + +* 1 2 2 0.141579E-01 0.437896E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089545 +Final residual = 0.000099 +Average conv. rate = 0.033237 + +* 2 1 2 0.895450E-01 0.989209E-04 * +Number of iterations = 1 +Initial residual = 0.001097 +Final residual = 0.000048 +Average conv. rate = 0.043344 + +* 2 2 1 0.109736E-02 0.475641E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3940 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.69 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.61K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3940 Max w this run +w_max level proc position run w_max level timestep +0.580E+00 21 146 151.9deg W -35.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3941 Model time: 1979-03-24 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043525 + +* 1 1 3 0.100000E+01 0.824532E-04 * +Number of iterations = 2 +Initial residual = 0.014111 +Final residual = 0.000044 +Average conv. rate = 0.055979 + +* 1 2 2 0.141105E-01 0.442171E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089639 +Final residual = 0.000099 +Average conv. rate = 0.033238 + +* 2 1 2 0.896391E-01 0.990274E-04 * +Number of iterations = 1 +Initial residual = 0.001096 +Final residual = 0.000048 +Average conv. rate = 0.043870 + +* 2 2 1 0.109569E-02 0.480680E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3941 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.51 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.31K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3941 Max w this run +w_max level proc position run w_max level timestep +0.499E+00 20 146 151.9deg W -35.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3942 Model time: 1979-03-24 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044094 + +* 1 1 3 0.100000E+01 0.857326E-04 * +Number of iterations = 2 +Initial residual = 0.014012 +Final residual = 0.000045 +Average conv. rate = 0.056596 + +* 1 2 2 0.140116E-01 0.448808E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089642 +Final residual = 0.000098 +Average conv. rate = 0.033068 + +* 2 1 2 0.896424E-01 0.980238E-04 * +Number of iterations = 1 +Initial residual = 0.001086 +Final residual = 0.000048 +Average conv. rate = 0.043995 + +* 2 2 1 0.108586E-02 0.477719E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3942 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.34 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.13K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3942 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 30 188 37.5deg W -23.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3943 Model time: 1979-03-24 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044637 + +* 1 1 3 0.100000E+01 0.889353E-04 * +Number of iterations = 2 +Initial residual = 0.014054 +Final residual = 0.000046 +Average conv. rate = 0.057129 + +* 1 2 2 0.140535E-01 0.458665E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089694 +Final residual = 0.000099 +Average conv. rate = 0.033181 + +* 2 1 2 0.896942E-01 0.987518E-04 * +Number of iterations = 1 +Initial residual = 0.001081 +Final residual = 0.000048 +Average conv. rate = 0.044699 + +* 2 2 1 0.108095E-02 0.483176E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3943 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.21 28 39.4deg W -80.0deg S 223.16 2910 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.93K. At min for run = -13.06K + +Maximum vertical velocity at timestep 3943 Max w this run +w_max level proc position run w_max level timestep +0.544E+00 30 188 37.5deg W -23.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3944 Model time: 1979-03-24 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043434 + +* 1 1 3 0.100000E+01 0.819364E-04 * +Number of iterations = 2 +Initial residual = 0.014047 +Final residual = 0.000047 +Average conv. rate = 0.057836 + +* 1 2 2 0.140473E-01 0.469874E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.088486 +Final residual = 0.000099 +Average conv. rate = 0.033504 + +* 2 1 2 0.884863E-01 0.993278E-04 * +Number of iterations = 1 +Initial residual = 0.001080 +Final residual = 0.000049 +Average conv. rate = 0.045538 + +* 2 2 1 0.107990E-02 0.491761E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3944 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.10 28 39.4deg W -80.0deg S 223.10 3944 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.82K. At min for run = -13.82K + +Maximum vertical velocity at timestep 3944 Max w this run +w_max level proc position run w_max level timestep +0.524E+00 30 188 37.5deg W -23.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3945 Model time: 1979-03-24 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043814 + +* 1 1 3 0.100000E+01 0.841092E-04 * +Number of iterations = 2 +Initial residual = 0.014172 +Final residual = 0.000045 +Average conv. rate = 0.056550 + +* 1 2 2 0.141722E-01 0.453215E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089112 +Final residual = 0.000100 +Average conv. rate = 0.033476 + +* 2 1 2 0.891123E-01 0.998646E-04 * +Number of iterations = 1 +Initial residual = 0.001099 +Final residual = 0.000050 +Average conv. rate = 0.045697 + +* 2 2 1 0.109936E-02 0.502374E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3945 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.03 28 39.4deg W -80.0deg S 223.03 3945 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.73K. At min for run = -13.73K + +Maximum vertical velocity at timestep 3945 Max w this run +w_max level proc position run w_max level timestep +0.543E+00 30 188 37.5deg W -23.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3946 Model time: 1979-03-24 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044077 + +* 1 1 3 0.100000E+01 0.856308E-04 * +Number of iterations = 2 +Initial residual = 0.014211 +Final residual = 0.000046 +Average conv. rate = 0.056809 + +* 1 2 2 0.142111E-01 0.458637E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.088504 +Final residual = 0.000099 +Average conv. rate = 0.033434 + +* 2 1 2 0.885041E-01 0.989304E-04 * +Number of iterations = 1 +Initial residual = 0.001108 +Final residual = 0.000051 +Average conv. rate = 0.045835 + +* 2 2 1 0.110821E-02 0.507947E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3946 +This timestep This run +Min theta1 proc position Min theta1 timestep +222.98 28 39.4deg W -80.0deg S 222.98 3946 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.67K. At min for run = -13.67K + +Maximum vertical velocity at timestep 3946 Max w this run +w_max level proc position run w_max level timestep +0.491E+00 30 188 37.5deg W -23.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3947 Model time: 1979-03-24 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043701 + +* 1 1 3 0.100000E+01 0.834609E-04 * +Number of iterations = 2 +Initial residual = 0.014227 +Final residual = 0.000044 +Average conv. rate = 0.055401 + +* 1 2 2 0.142268E-01 0.436667E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089560 +Final residual = 0.000099 +Average conv. rate = 0.033316 + +* 2 1 2 0.895597E-01 0.994058E-04 * +Number of iterations = 1 +Initial residual = 0.001121 +Final residual = 0.000051 +Average conv. rate = 0.045557 + +* 2 2 1 0.112111E-02 0.510749E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3947 +This timestep This run +Min theta1 proc position Min theta1 timestep +222.96 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.74K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3947 Max w this run +w_max level proc position run w_max level timestep +0.493E+00 29 188 37.5deg W -23.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3948 Model time: 1979-03-24 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043810 + +* 1 1 3 0.100000E+01 0.840854E-04 * +Number of iterations = 2 +Initial residual = 0.014199 +Final residual = 0.000044 +Average conv. rate = 0.055394 + +* 1 2 2 0.141988E-01 0.435688E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089180 +Final residual = 0.000099 +Average conv. rate = 0.033398 + +* 2 1 2 0.891797E-01 0.994742E-04 * +Number of iterations = 1 +Initial residual = 0.001107 +Final residual = 0.000050 +Average conv. rate = 0.045576 + +* 2 2 1 0.110692E-02 0.504491E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3948 +This timestep This run +Min theta1 proc position Min theta1 timestep +222.96 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.78K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3948 Max w this run +w_max level proc position run w_max level timestep +0.469E+00 38 249 76.9deg W -4.4deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3949 Model time: 1979-03-24 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043198 + +* 1 1 3 0.100000E+01 0.806108E-04 * +Number of iterations = 2 +Initial residual = 0.014246 +Final residual = 0.000045 +Average conv. rate = 0.055893 + +* 1 2 2 0.142459E-01 0.445049E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089899 +Final residual = 0.000099 +Average conv. rate = 0.033182 + +* 2 1 2 0.898985E-01 0.989843E-04 * +Number of iterations = 1 +Initial residual = 0.001120 +Final residual = 0.000051 +Average conv. rate = 0.045260 + +* 2 2 1 0.112041E-02 0.507096E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3949 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.00 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.78K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3949 Max w this run +w_max level proc position run w_max level timestep +0.492E+00 39 249 76.9deg W -4.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3950 Model time: 1979-03-24 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043734 + +* 1 1 3 0.100000E+01 0.836467E-04 * +Number of iterations = 2 +Initial residual = 0.014161 +Final residual = 0.000045 +Average conv. rate = 0.056153 + +* 1 2 2 0.141607E-01 0.446501E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089638 +Final residual = 0.000011 +Average conv. rate = 0.050093 + +* 2 1 3 0.896377E-01 0.112671E-04 * +Number of iterations = 1 +Initial residual = 0.001135 +Final residual = 0.000051 +Average conv. rate = 0.044999 + +* 2 2 1 0.113513E-02 0.510798E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3950 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.04 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.77K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3950 Max w this run +w_max level proc position run w_max level timestep +0.525E+00 39 249 76.9deg W -4.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3951 Model time: 1979-03-24 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043217 + +* 1 1 3 0.100000E+01 0.807158E-04 * +Number of iterations = 2 +Initial residual = 0.014104 +Final residual = 0.000045 +Average conv. rate = 0.056471 + +* 1 2 2 0.141038E-01 0.449765E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090132 +Final residual = 0.000016 +Average conv. rate = 0.055707 + +* 2 1 3 0.901324E-01 0.155816E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000052 +Average conv. rate = 0.045938 + +* 2 2 1 0.113666E-02 0.522157E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3951 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.13 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.31K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3951 Max w this run +w_max level proc position run w_max level timestep +0.529E+00 40 249 76.9deg W -4.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3952 Model time: 1979-03-24 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043930 + +* 1 1 3 0.100000E+01 0.847787E-04 * +Number of iterations = 2 +Initial residual = 0.014078 +Final residual = 0.000044 +Average conv. rate = 0.056197 + +* 1 2 2 0.140778E-01 0.444596E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088835 +Final residual = 0.000015 +Average conv. rate = 0.055620 + +* 2 1 3 0.888351E-01 0.152853E-04 * +Number of iterations = 1 +Initial residual = 0.001139 +Final residual = 0.000054 +Average conv. rate = 0.047128 + +* 2 2 1 0.113884E-02 0.536712E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3952 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.23 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.71K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3952 Max w this run +w_max level proc position run w_max level timestep +0.531E+00 40 249 76.9deg W -4.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3953 Model time: 1979-03-24 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043935 + +* 1 1 3 0.100000E+01 0.848072E-04 * +Number of iterations = 2 +Initial residual = 0.014200 +Final residual = 0.000045 +Average conv. rate = 0.056588 + +* 1 2 2 0.142002E-01 0.454725E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089983 +Final residual = 0.000012 +Average conv. rate = 0.051454 + +* 2 1 3 0.899827E-01 0.122576E-04 * +Number of iterations = 1 +Initial residual = 0.001135 +Final residual = 0.000054 +Average conv. rate = 0.047303 + +* 2 2 1 0.113471E-02 0.536751E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3953 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.37 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.01K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3953 Max w this run +w_max level proc position run w_max level timestep +0.547E+00 40 249 76.9deg W -4.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3954 Model time: 1979-03-24 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043628 + +* 1 1 3 0.100000E+01 0.830427E-04 * +Number of iterations = 2 +Initial residual = 0.014202 +Final residual = 0.000045 +Average conv. rate = 0.056545 + +* 1 2 2 0.142023E-01 0.454100E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089898 +Final residual = 0.000016 +Average conv. rate = 0.056457 + +* 2 1 3 0.898984E-01 0.161769E-04 * +Number of iterations = 1 +Initial residual = 0.001126 +Final residual = 0.000053 +Average conv. rate = 0.047479 + +* 2 2 1 0.112646E-02 0.534829E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3954 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.54 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.23K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3954 Max w this run +w_max level proc position run w_max level timestep +0.508E+00 40 249 76.9deg W -4.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3955 Model time: 1979-03-24 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043502 + +* 1 1 3 0.100000E+01 0.823245E-04 * +Number of iterations = 2 +Initial residual = 0.014258 +Final residual = 0.000046 +Average conv. rate = 0.056706 + +* 1 2 2 0.142581E-01 0.458485E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091733 +Final residual = 0.000012 +Average conv. rate = 0.051159 + +* 2 1 3 0.917335E-01 0.122829E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000056 +Average conv. rate = 0.048379 + +* 2 2 1 0.114911E-02 0.555930E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3955 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.76 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.37K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3955 Max w this run +w_max level proc position run w_max level timestep +0.523E+00 26 257 13.1deg E 0.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3956 Model time: 1979-03-24 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043255 + +* 1 1 3 0.100000E+01 0.809296E-04 * +Number of iterations = 2 +Initial residual = 0.014181 +Final residual = 0.000047 +Average conv. rate = 0.057578 + +* 1 2 2 0.141814E-01 0.470144E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090587 +Final residual = 0.000013 +Average conv. rate = 0.051835 + +* 2 1 3 0.905867E-01 0.126161E-04 * +Number of iterations = 1 +Initial residual = 0.001138 +Final residual = 0.000057 +Average conv. rate = 0.050017 + +* 2 2 1 0.113800E-02 0.569193E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3956 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.02 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.45K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3956 Max w this run +w_max level proc position run w_max level timestep +0.550E+00 17 379 48.8deg W 40.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3957 Model time: 1979-03-24 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043206 + +* 1 1 3 0.100000E+01 0.806540E-04 * +Number of iterations = 2 +Initial residual = 0.014265 +Final residual = 0.000048 +Average conv. rate = 0.057809 + +* 1 2 2 0.142652E-01 0.476729E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091081 +Final residual = 0.000011 +Average conv. rate = 0.048689 + +* 2 1 3 0.910807E-01 0.105130E-04 * +Number of iterations = 1 +Initial residual = 0.001151 +Final residual = 0.000057 +Average conv. rate = 0.049606 + +* 2 2 1 0.115080E-02 0.570872E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3957 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.33 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.97K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3957 Max w this run +w_max level proc position run w_max level timestep +0.615E+00 18 379 48.8deg W 40.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3958 Model time: 1979-03-24 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043431 + +* 1 1 3 0.100000E+01 0.819190E-04 * +Number of iterations = 2 +Initial residual = 0.014279 +Final residual = 0.000047 +Average conv. rate = 0.057459 + +* 1 2 2 0.142794E-01 0.471437E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090145 +Final residual = 0.000011 +Average conv. rate = 0.049777 + +* 2 1 3 0.901449E-01 0.111180E-04 * +Number of iterations = 1 +Initial residual = 0.001152 +Final residual = 0.000057 +Average conv. rate = 0.049341 + +* 2 2 1 0.115238E-02 0.568593E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3958 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.84 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.89K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3958 Max w this run +w_max level proc position run w_max level timestep +0.615E+00 18 379 48.8deg W 40.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3959 Model time: 1979-03-24 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044046 + +* 1 1 3 0.100000E+01 0.854503E-04 * +Number of iterations = 2 +Initial residual = 0.014412 +Final residual = 0.000046 +Average conv. rate = 0.056766 + +* 1 2 2 0.144118E-01 0.464409E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090452 +Final residual = 0.000012 +Average conv. rate = 0.050323 + +* 2 1 3 0.904523E-01 0.115269E-04 * +Number of iterations = 1 +Initial residual = 0.001152 +Final residual = 0.000058 +Average conv. rate = 0.050528 + +* 2 2 1 0.115217E-02 0.582170E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3959 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.47 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.69K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3959 Max w this run +w_max level proc position run w_max level timestep +0.581E+00 19 379 48.8deg W 40.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3960 Model time: 1979-03-24 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043694 + +* 1 1 3 0.100000E+01 0.834192E-04 * +Number of iterations = 2 +Initial residual = 0.014418 +Final residual = 0.000046 +Average conv. rate = 0.056670 + +* 1 2 2 0.144178E-01 0.463035E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089925 +Final residual = 0.000011 +Average conv. rate = 0.050059 + +* 2 1 3 0.899255E-01 0.112805E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000058 +Average conv. rate = 0.050475 + +* 2 2 1 0.115536E-02 0.583173E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3960 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.12 28 39.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.46K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3960 Max w this run +w_max level proc position run w_max level timestep +0.503E+00 20 379 48.8deg W 40.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3961 Model time: 1979-03-24 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043889 + +* 1 1 3 0.100000E+01 0.845417E-04 * +Number of iterations = 2 +Initial residual = 0.014455 +Final residual = 0.000048 +Average conv. rate = 0.057494 + +* 1 2 2 0.144551E-01 0.477816E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091198 +Final residual = 0.000014 +Average conv. rate = 0.053126 + +* 2 1 3 0.911981E-01 0.136744E-04 * +Number of iterations = 1 +Initial residual = 0.001175 +Final residual = 0.000058 +Average conv. rate = 0.049571 + +* 2 2 1 0.117526E-02 0.582589E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3961 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.72 47 174.4deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.77K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3961 Max w this run +w_max level proc position run w_max level timestep +0.473E+00 35 249 76.9deg W -5.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3962 Model time: 1979-03-24 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043563 + +* 1 1 3 0.100000E+01 0.826697E-04 * +Number of iterations = 2 +Initial residual = 0.014354 +Final residual = 0.000047 +Average conv. rate = 0.057397 + +* 1 2 2 0.143539E-01 0.472873E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090143 +Final residual = 0.000014 +Average conv. rate = 0.053173 + +* 2 1 3 0.901429E-01 0.135520E-04 * +Number of iterations = 1 +Initial residual = 0.001162 +Final residual = 0.000058 +Average conv. rate = 0.050138 + +* 2 2 1 0.116188E-02 0.582542E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3962 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.80 47 174.4deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.71K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3962 Max w this run +w_max level proc position run w_max level timestep +0.571E+00 36 249 76.9deg W -5.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3963 Model time: 1979-03-24 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043506 + +* 1 1 3 0.100000E+01 0.823473E-04 * +Number of iterations = 2 +Initial residual = 0.014318 +Final residual = 0.000047 +Average conv. rate = 0.057429 + +* 1 2 2 0.143180E-01 0.472216E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091470 +Final residual = 0.000015 +Average conv. rate = 0.054864 + +* 2 1 3 0.914696E-01 0.151053E-04 * +Number of iterations = 1 +Initial residual = 0.001153 +Final residual = 0.000060 +Average conv. rate = 0.052076 + +* 2 2 1 0.115280E-02 0.600337E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3963 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.89 47 174.4deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.69K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3963 Max w this run +w_max level proc position run w_max level timestep +0.530E+00 21 379 46.9deg W 43.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3964 Model time: 1979-03-24 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043708 + +* 1 1 3 0.100000E+01 0.834990E-04 * +Number of iterations = 2 +Initial residual = 0.014275 +Final residual = 0.000047 +Average conv. rate = 0.057593 + +* 1 2 2 0.142749E-01 0.473490E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091142 +Final residual = 0.000014 +Average conv. rate = 0.054026 + +* 2 1 3 0.911421E-01 0.143725E-04 * +Number of iterations = 1 +Initial residual = 0.001171 +Final residual = 0.000062 +Average conv. rate = 0.052598 + +* 2 2 1 0.117053E-02 0.615675E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3964 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.99 47 174.4deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.59K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3964 Max w this run +w_max level proc position run w_max level timestep +0.592E+00 17 379 46.9deg W 41.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3965 Model time: 1979-03-24 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043571 + +* 1 1 3 0.100000E+01 0.827193E-04 * +Number of iterations = 2 +Initial residual = 0.014320 +Final residual = 0.000047 +Average conv. rate = 0.057340 + +* 1 2 2 0.143196E-01 0.470812E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090687 +Final residual = 0.000012 +Average conv. rate = 0.050860 + +* 2 1 3 0.906867E-01 0.119308E-04 * +Number of iterations = 1 +Initial residual = 0.001157 +Final residual = 0.000061 +Average conv. rate = 0.052658 + +* 2 2 1 0.115684E-02 0.609166E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3965 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.11 47 174.4deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.47K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3965 Max w this run +w_max level proc position run w_max level timestep +0.626E+00 18 379 46.9deg W 41.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3966 Model time: 1979-03-24 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043720 + +* 1 1 3 0.100000E+01 0.835701E-04 * +Number of iterations = 2 +Initial residual = 0.014290 +Final residual = 0.000049 +Average conv. rate = 0.058547 + +* 1 2 2 0.142899E-01 0.489831E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091693 +Final residual = 0.000012 +Average conv. rate = 0.050529 + +* 2 1 3 0.916932E-01 0.118295E-04 * +Number of iterations = 1 +Initial residual = 0.001168 +Final residual = 0.000061 +Average conv. rate = 0.052551 + +* 2 2 1 0.116819E-02 0.613891E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3966 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.23 47 174.4deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.38K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3966 Max w this run +w_max level proc position run w_max level timestep +0.529E+00 19 379 46.9deg W 41.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3967 Model time: 1979-03-24 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044115 + +* 1 1 3 0.100000E+01 0.858539E-04 * +Number of iterations = 2 +Initial residual = 0.014329 +Final residual = 0.000047 +Average conv. rate = 0.057411 + +* 1 2 2 0.143291E-01 0.472284E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091129 +Final residual = 0.000015 +Average conv. rate = 0.055401 + +* 2 1 3 0.911288E-01 0.154956E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000064 +Average conv. rate = 0.056379 + +* 2 2 1 0.113406E-02 0.639372E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3967 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.37 47 174.4deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.25K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3967 Max w this run +w_max level proc position run w_max level timestep +0.565E+00 18 380 45.0deg W 44.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3968 Model time: 1979-03-24 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043637 + +* 1 1 3 0.100000E+01 0.830947E-04 * +Number of iterations = 2 +Initial residual = 0.014310 +Final residual = 0.000047 +Average conv. rate = 0.057350 + +* 1 2 2 0.143100E-01 0.470656E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091552 +Final residual = 0.000011 +Average conv. rate = 0.049732 + +* 2 1 3 0.915520E-01 0.112612E-04 * +Number of iterations = 1 +Initial residual = 0.001147 +Final residual = 0.000064 +Average conv. rate = 0.056170 + +* 2 2 1 0.114669E-02 0.644100E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3968 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.51 47 174.4deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.09K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3968 Max w this run +w_max level proc position run w_max level timestep +0.739E+00 19 380 45.0deg W 44.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3969 Model time: 1979-03-24 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043016 + +* 1 1 3 0.100000E+01 0.795961E-04 * +Number of iterations = 2 +Initial residual = 0.014328 +Final residual = 0.000048 +Average conv. rate = 0.057804 + +* 1 2 2 0.143277E-01 0.478731E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094014 +Final residual = 0.000013 +Average conv. rate = 0.051052 + +* 2 1 3 0.940137E-01 0.125090E-04 * +Number of iterations = 1 +Initial residual = 0.001189 +Final residual = 0.000063 +Average conv. rate = 0.053308 + +* 2 2 1 0.118884E-02 0.633746E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3969 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.66 47 174.4deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -22.95K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3969 Max w this run +w_max level proc position run w_max level timestep +0.881E+00 20 380 45.0deg W 44.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3970 Model time: 1979-03-24 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043767 + +* 1 1 3 0.100000E+01 0.838371E-04 * +Number of iterations = 2 +Initial residual = 0.014192 +Final residual = 0.000049 +Average conv. rate = 0.058565 + +* 1 2 2 0.141915E-01 0.486756E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093720 +Final residual = 0.000011 +Average conv. rate = 0.049691 + +* 2 1 3 0.937201E-01 0.114990E-04 * +Number of iterations = 1 +Initial residual = 0.001172 +Final residual = 0.000063 +Average conv. rate = 0.053620 + +* 2 2 1 0.117157E-02 0.628194E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3970 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.79 47 174.4deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -22.89K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3970 Max w this run +w_max level proc position run w_max level timestep +0.910E+00 21 380 45.0deg W 44.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3971 Model time: 1979-03-24 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043862 + +* 1 1 3 0.100000E+01 0.843855E-04 * +Number of iterations = 2 +Initial residual = 0.014174 +Final residual = 0.000049 +Average conv. rate = 0.058740 + +* 1 2 2 0.141739E-01 0.489051E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093925 +Final residual = 0.000013 +Average conv. rate = 0.051728 + +* 2 1 3 0.939249E-01 0.130004E-04 * +Number of iterations = 1 +Initial residual = 0.001224 +Final residual = 0.000065 +Average conv. rate = 0.052699 + +* 2 2 1 0.122437E-02 0.645236E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3971 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.87 17 161.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.10K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3971 Max w this run +w_max level proc position run w_max level timestep +0.877E+00 23 380 45.0deg W 44.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3972 Model time: 1979-03-24 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043796 + +* 1 1 3 0.100000E+01 0.840056E-04 * +Number of iterations = 2 +Initial residual = 0.014156 +Final residual = 0.000048 +Average conv. rate = 0.058527 + +* 1 2 2 0.141559E-01 0.484889E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095812 +Final residual = 0.000013 +Average conv. rate = 0.051204 + +* 2 1 3 0.958123E-01 0.128624E-04 * +Number of iterations = 1 +Initial residual = 0.001376 +Final residual = 0.000065 +Average conv. rate = 0.047012 + +* 2 2 1 0.137595E-02 0.646868E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3972 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.82 17 161.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.57K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3972 Max w this run +w_max level proc position run w_max level timestep +0.695E+00 24 380 45.0deg W 44.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3973 Model time: 1979-03-24 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043310 + +* 1 1 3 0.100000E+01 0.812377E-04 * +Number of iterations = 2 +Initial residual = 0.014251 +Final residual = 0.000049 +Average conv. rate = 0.058449 + +* 1 2 2 0.142510E-01 0.486862E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093427 +Final residual = 0.000014 +Average conv. rate = 0.052593 + +* 2 1 3 0.934272E-01 0.135913E-04 * +Number of iterations = 1 +Initial residual = 0.001178 +Final residual = 0.000064 +Average conv. rate = 0.054083 + +* 2 2 1 0.117809E-02 0.637141E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3973 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.79 17 161.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.90K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3973 Max w this run +w_max level proc position run w_max level timestep +0.431E+00 25 380 45.0deg W 44.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3974 Model time: 1979-03-24 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043380 + +* 1 1 3 0.100000E+01 0.816332E-04 * +Number of iterations = 2 +Initial residual = 0.014315 +Final residual = 0.000047 +Average conv. rate = 0.057138 + +* 1 2 2 0.143151E-01 0.467355E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092331 +Final residual = 0.000016 +Average conv. rate = 0.055620 + +* 2 1 3 0.923310E-01 0.158872E-04 * +Number of iterations = 1 +Initial residual = 0.001145 +Final residual = 0.000064 +Average conv. rate = 0.056141 + +* 2 2 1 0.114547E-02 0.643079E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3974 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.76 17 161.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.68K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3974 Max w this run +w_max level proc position run w_max level timestep +0.413E+00 39 238 157.5deg E -4.4deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3975 Model time: 1979-03-24 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044086 + +* 1 1 3 0.100000E+01 0.856866E-04 * +Number of iterations = 2 +Initial residual = 0.014457 +Final residual = 0.000047 +Average conv. rate = 0.057309 + +* 1 2 2 0.144571E-01 0.474811E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093140 +Final residual = 0.000015 +Average conv. rate = 0.054151 + +* 2 1 3 0.931401E-01 0.147897E-04 * +Number of iterations = 1 +Initial residual = 0.001152 +Final residual = 0.000065 +Average conv. rate = 0.056136 + +* 2 2 1 0.115170E-02 0.646514E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3975 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.76 17 161.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.97K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3975 Max w this run +w_max level proc position run w_max level timestep +0.396E+00 39 238 157.5deg E -4.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3976 Model time: 1979-03-24 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044179 + +* 1 1 3 0.100000E+01 0.862295E-04 * +Number of iterations = 2 +Initial residual = 0.014497 +Final residual = 0.000047 +Average conv. rate = 0.056885 + +* 1 2 2 0.144970E-01 0.469103E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093912 +Final residual = 0.000015 +Average conv. rate = 0.054191 + +* 2 1 3 0.939120E-01 0.149454E-04 * +Number of iterations = 1 +Initial residual = 0.001152 +Final residual = 0.000063 +Average conv. rate = 0.054741 + +* 2 2 1 0.115229E-02 0.630773E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3976 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.78 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.16K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3976 Max w this run +w_max level proc position run w_max level timestep +0.464E+00 24 412 43.1deg W 46.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3977 Model time: 1979-03-24 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044233 + +* 1 1 3 0.100000E+01 0.865464E-04 * +Number of iterations = 2 +Initial residual = 0.014631 +Final residual = 0.000048 +Average conv. rate = 0.057320 + +* 1 2 2 0.146314E-01 0.480721E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094123 +Final residual = 0.000015 +Average conv. rate = 0.053643 + +* 2 1 3 0.941234E-01 0.145294E-04 * +Number of iterations = 1 +Initial residual = 0.001161 +Final residual = 0.000063 +Average conv. rate = 0.054305 + +* 2 2 1 0.116110E-02 0.630543E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3977 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.81 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.24K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3977 Max w this run +w_max level proc position run w_max level timestep +0.556E+00 23 412 43.1deg W 46.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3978 Model time: 1979-03-24 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044707 + +* 1 1 3 0.100000E+01 0.893585E-04 * +Number of iterations = 2 +Initial residual = 0.014555 +Final residual = 0.000047 +Average conv. rate = 0.057012 + +* 1 2 2 0.145550E-01 0.473086E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094003 +Final residual = 0.000014 +Average conv. rate = 0.052958 + +* 2 1 3 0.940034E-01 0.139614E-04 * +Number of iterations = 1 +Initial residual = 0.001168 +Final residual = 0.000063 +Average conv. rate = 0.053782 + +* 2 2 1 0.116784E-02 0.628083E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3978 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.87 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.32K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3978 Max w this run +w_max level proc position run w_max level timestep +0.631E+00 22 412 43.1deg W 46.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3979 Model time: 1979-03-24 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043832 + +* 1 1 3 0.100000E+01 0.842116E-04 * +Number of iterations = 2 +Initial residual = 0.014521 +Final residual = 0.000047 +Average conv. rate = 0.057032 + +* 1 2 2 0.145210E-01 0.472325E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096831 +Final residual = 0.000013 +Average conv. rate = 0.051433 + +* 2 1 3 0.968314E-01 0.131750E-04 * +Number of iterations = 1 +Initial residual = 0.001193 +Final residual = 0.000063 +Average conv. rate = 0.052782 + +* 2 2 1 0.119279E-02 0.629582E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3979 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.96 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.41K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3979 Max w this run +w_max level proc position run w_max level timestep +0.672E+00 23 412 43.1deg W 46.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3980 Model time: 1979-03-24 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044111 + +* 1 1 3 0.100000E+01 0.858291E-04 * +Number of iterations = 2 +Initial residual = 0.014385 +Final residual = 0.000047 +Average conv. rate = 0.057283 + +* 1 2 2 0.143847E-01 0.472014E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098535 +Final residual = 0.000013 +Average conv. rate = 0.050377 + +* 2 1 3 0.985350E-01 0.125975E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000062 +Average conv. rate = 0.051210 + +* 2 2 1 0.120843E-02 0.618835E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3980 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.06 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.48K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3980 Max w this run +w_max level proc position run w_max level timestep +0.653E+00 23 412 43.1deg W 46.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3981 Model time: 1979-03-24 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043590 + +* 1 1 3 0.100000E+01 0.828252E-04 * +Number of iterations = 2 +Initial residual = 0.014360 +Final residual = 0.000047 +Average conv. rate = 0.057162 + +* 1 2 2 0.143601E-01 0.469209E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098906 +Final residual = 0.000014 +Average conv. rate = 0.051576 + +* 2 1 3 0.989063E-01 0.135696E-04 * +Number of iterations = 1 +Initial residual = 0.001239 +Final residual = 0.000063 +Average conv. rate = 0.051003 + +* 2 2 1 0.123856E-02 0.631696E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3981 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.15 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.56K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3981 Max w this run +w_max level proc position run w_max level timestep +0.505E+00 24 188 35.6deg W -24.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3982 Model time: 1979-03-24 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043341 + +* 1 1 3 0.100000E+01 0.814157E-04 * +Number of iterations = 2 +Initial residual = 0.014217 +Final residual = 0.000047 +Average conv. rate = 0.057241 + +* 1 2 2 0.142168E-01 0.465818E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097371 +Final residual = 0.000015 +Average conv. rate = 0.053347 + +* 2 1 3 0.973713E-01 0.147831E-04 * +Number of iterations = 1 +Initial residual = 0.001183 +Final residual = 0.000063 +Average conv. rate = 0.053552 + +* 2 2 1 0.118274E-02 0.633379E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3982 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.25 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.60K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3982 Max w this run +w_max level proc position run w_max level timestep +0.516E+00 39 220 39.4deg W -16.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3983 Model time: 1979-03-24 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043955 + +* 1 1 3 0.100000E+01 0.849248E-04 * +Number of iterations = 2 +Initial residual = 0.014230 +Final residual = 0.000047 +Average conv. rate = 0.057480 + +* 1 2 2 0.142303E-01 0.470158E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096415 +Final residual = 0.000015 +Average conv. rate = 0.053957 + +* 2 1 3 0.964148E-01 0.151460E-04 * +Number of iterations = 1 +Initial residual = 0.001169 +Final residual = 0.000062 +Average conv. rate = 0.052887 + +* 2 2 1 0.116940E-02 0.618463E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3983 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.33 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.61K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3983 Max w this run +w_max level proc position run w_max level timestep +0.518E+00 24 188 35.6deg W -24.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3984 Model time: 1979-03-25 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043485 + +* 1 1 3 0.100000E+01 0.822279E-04 * +Number of iterations = 2 +Initial residual = 0.014174 +Final residual = 0.000046 +Average conv. rate = 0.057215 + +* 1 2 2 0.141745E-01 0.464016E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095447 +Final residual = 0.000015 +Average conv. rate = 0.053849 + +* 2 1 3 0.954466E-01 0.149038E-04 * +Number of iterations = 1 +Initial residual = 0.001184 +Final residual = 0.000062 +Average conv. rate = 0.052348 + +* 2 2 1 0.118391E-02 0.619757E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13060E+25 +tot dry energy 0.13061E+25 +gr( rho cal) 0.38118E+24 +KE( rho cal) 0.82227E+21 +KEu(rho cal) 0.61452E+21 +KEv(rho cal) 0.20774E+21 +KEw(rho cal) 0.12291E+16 +cvT( rho cal) 0.92406E+24 +lq ( rho cal) 0.30801E+23 +lqcf( rho cal) 0.63039E+20 +lqcl( rho cal) 0.45607E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12357E+17 KG +Initial moisture = 0.12339E+17 KG +change in moisture = 0.18086E+14 KG +Moisture added E-P in period = 0.17735E+14 KG +Error in moisture = 0.35165E+12 KG +Error as % of change = 0.19443E+01 +q ( rho cal) 0.12315E+17 +qcf( rho cal) 0.25205E+14 +qcl( rho cal) 0.16087E+14 +FINAL TOTAL ENERGY = 0.13060E+25 J/ +INITIAL TOTAL ENERGY = 0.13059E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.73876E+20 J/ +FLUXES INTO ATM OVER PERIOD = 0.70836E+20 J/ +ERROR IN ENERGY BUDGET = -0.30401E+19 J/ +TEMP CORRECTION OVER A DAY = -0.82550E-03 K +TEMPERATURE CORRECTION RATE = -0.95544E-08 K/S +FLUX CORRECTION (ATM) = -0.68980E-01 W/M2 + +Minimum theta level 1 for timestep 3984 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.41 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.59K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3984 Max w this run +w_max level proc position run w_max level timestep +0.516E+00 23 188 35.6deg W -24.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -6012.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -6012.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -6012.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -6012.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -6012.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -6012.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 3985 Model time: 1979-03-25 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043510 + +* 1 1 3 0.100000E+01 0.823690E-04 * +Number of iterations = 2 +Initial residual = 0.014212 +Final residual = 0.000046 +Average conv. rate = 0.056974 + +* 1 2 2 0.142124E-01 0.461340E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096665 +Final residual = 0.000015 +Average conv. rate = 0.054153 + +* 2 1 3 0.966645E-01 0.153508E-04 * +Number of iterations = 1 +Initial residual = 0.001190 +Final residual = 0.000063 +Average conv. rate = 0.053214 + +* 2 2 1 0.118998E-02 0.633235E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3985 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.47 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.53K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3985 Max w this run +w_max level proc position run w_max level timestep +0.519E+00 40 258 22.5deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3986 Model time: 1979-03-25 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043505 + +* 1 1 3 0.100000E+01 0.823391E-04 * +Number of iterations = 2 +Initial residual = 0.014139 +Final residual = 0.000045 +Average conv. rate = 0.056194 + +* 1 2 2 0.141393E-01 0.446481E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097059 +Final residual = 0.000015 +Average conv. rate = 0.053408 + +* 2 1 3 0.970590E-01 0.147859E-04 * +Number of iterations = 1 +Initial residual = 0.001187 +Final residual = 0.000061 +Average conv. rate = 0.051658 + +* 2 2 1 0.118720E-02 0.613289E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3986 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.52 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.46K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3986 Max w this run +w_max level proc position run w_max level timestep +0.515E+00 22 188 35.6deg W -24.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3987 Model time: 1979-03-25 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043479 + +* 1 1 3 0.100000E+01 0.821947E-04 * +Number of iterations = 2 +Initial residual = 0.014121 +Final residual = 0.000044 +Average conv. rate = 0.056076 + +* 1 2 2 0.141211E-01 0.444035E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097017 +Final residual = 0.000015 +Average conv. rate = 0.054129 + +* 2 1 3 0.970170E-01 0.153865E-04 * +Number of iterations = 1 +Initial residual = 0.001187 +Final residual = 0.000062 +Average conv. rate = 0.052415 + +* 2 2 1 0.118670E-02 0.622009E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3987 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.57 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.38K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3987 Max w this run +w_max level proc position run w_max level timestep +0.519E+00 22 188 35.6deg W -24.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3988 Model time: 1979-03-25 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043496 + +* 1 1 3 0.100000E+01 0.822881E-04 * +Number of iterations = 2 +Initial residual = 0.014047 +Final residual = 0.000044 +Average conv. rate = 0.056274 + +* 1 2 2 0.140468E-01 0.444823E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095757 +Final residual = 0.000015 +Average conv. rate = 0.053326 + +* 2 1 3 0.957565E-01 0.145205E-04 * +Number of iterations = 1 +Initial residual = 0.001196 +Final residual = 0.000064 +Average conv. rate = 0.053226 + +* 2 2 1 0.119580E-02 0.636481E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3988 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.63 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.27K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3988 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 22 188 35.6deg W -24.4deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3989 Model time: 1979-03-25 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043156 + +* 1 1 3 0.100000E+01 0.803778E-04 * +Number of iterations = 2 +Initial residual = 0.014097 +Final residual = 0.000048 +Average conv. rate = 0.058048 + +* 1 2 2 0.140974E-01 0.475021E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097155 +Final residual = 0.000014 +Average conv. rate = 0.052095 + +* 2 1 3 0.971546E-01 0.137358E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000065 +Average conv. rate = 0.053608 + +* 2 2 1 0.120355E-02 0.645198E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3989 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.72 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.06K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3989 Max w this run +w_max level proc position run w_max level timestep +0.509E+00 22 188 35.6deg W -24.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3990 Model time: 1979-03-25 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043161 + +* 1 1 3 0.100000E+01 0.804053E-04 * +Number of iterations = 2 +Initial residual = 0.014130 +Final residual = 0.000045 +Average conv. rate = 0.056518 + +* 1 2 2 0.141297E-01 0.451339E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097073 +Final residual = 0.000013 +Average conv. rate = 0.051793 + +* 2 1 3 0.970726E-01 0.134868E-04 * +Number of iterations = 1 +Initial residual = 0.001204 +Final residual = 0.000068 +Average conv. rate = 0.056622 + +* 2 2 1 0.120408E-02 0.681779E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3990 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.83 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.78K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3990 Max w this run +w_max level proc position run w_max level timestep +0.511E+00 25 220 39.4deg W -16.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3991 Model time: 1979-03-25 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043744 + +* 1 1 3 0.100000E+01 0.837078E-04 * +Number of iterations = 2 +Initial residual = 0.014326 +Final residual = 0.000047 +Average conv. rate = 0.056977 + +* 1 2 2 0.143260E-01 0.465070E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096960 +Final residual = 0.000012 +Average conv. rate = 0.050217 + +* 2 1 3 0.969602E-01 0.122782E-04 * +Number of iterations = 1 +Initial residual = 0.001206 +Final residual = 0.000068 +Average conv. rate = 0.056188 + +* 2 2 1 0.120635E-02 0.677829E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3991 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.96 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.68K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3991 Max w this run +w_max level proc position run w_max level timestep +0.531E+00 26 220 39.4deg W -16.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3992 Model time: 1979-03-25 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043333 + +* 1 1 3 0.100000E+01 0.813685E-04 * +Number of iterations = 2 +Initial residual = 0.014487 +Final residual = 0.000046 +Average conv. rate = 0.056220 + +* 1 2 2 0.144866E-01 0.457878E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096691 +Final residual = 0.000012 +Average conv. rate = 0.050190 + +* 2 1 3 0.966908E-01 0.122248E-04 * +Number of iterations = 1 +Initial residual = 0.001220 +Final residual = 0.000069 +Average conv. rate = 0.056703 + +* 2 2 1 0.122031E-02 0.691949E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3992 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.12 17 159.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.35K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3992 Max w this run +w_max level proc position run w_max level timestep +0.574E+00 27 220 39.4deg W -16.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3993 Model time: 1979-03-25 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043862 + +* 1 1 3 0.100000E+01 0.843829E-04 * +Number of iterations = 2 +Initial residual = 0.014621 +Final residual = 0.000047 +Average conv. rate = 0.056438 + +* 1 2 2 0.146213E-01 0.465717E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096879 +Final residual = 0.000012 +Average conv. rate = 0.049568 + +* 2 1 3 0.968791E-01 0.117984E-04 * +Number of iterations = 1 +Initial residual = 0.001217 +Final residual = 0.000069 +Average conv. rate = 0.056636 + +* 2 2 1 0.121675E-02 0.689118E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3993 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.14 16 178.1deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.36K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3993 Max w this run +w_max level proc position run w_max level timestep +0.604E+00 28 220 39.4deg W -16.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3994 Model time: 1979-03-25 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043170 + +* 1 1 3 0.100000E+01 0.804512E-04 * +Number of iterations = 2 +Initial residual = 0.014569 +Final residual = 0.000045 +Average conv. rate = 0.055872 + +* 1 2 2 0.145687E-01 0.454787E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095433 +Final residual = 0.000016 +Average conv. rate = 0.055089 + +* 2 1 3 0.954330E-01 0.159548E-04 * +Number of iterations = 1 +Initial residual = 0.001201 +Final residual = 0.000071 +Average conv. rate = 0.058989 + +* 2 2 1 0.120110E-02 0.708513E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3994 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.02 16 178.1deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.47K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3994 Max w this run +w_max level proc position run w_max level timestep +0.626E+00 29 220 39.4deg W -16.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3995 Model time: 1979-03-25 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043155 + +* 1 1 3 0.100000E+01 0.803708E-04 * +Number of iterations = 2 +Initial residual = 0.014518 +Final residual = 0.000046 +Average conv. rate = 0.055986 + +* 1 2 2 0.145181E-01 0.455061E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098013 +Final residual = 0.000010 +Average conv. rate = 0.047445 + +* 2 1 3 0.980129E-01 0.104679E-04 * +Number of iterations = 1 +Initial residual = 0.001215 +Final residual = 0.000072 +Average conv. rate = 0.059118 + +* 2 2 1 0.121525E-02 0.718434E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3995 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.86 16 178.1deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.60K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3995 Max w this run +w_max level proc position run w_max level timestep +0.624E+00 29 220 39.4deg W -16.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3996 Model time: 1979-03-25 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043447 + +* 1 1 3 0.100000E+01 0.820139E-04 * +Number of iterations = 2 +Initial residual = 0.014368 +Final residual = 0.000046 +Average conv. rate = 0.056329 + +* 1 2 2 0.143684E-01 0.455900E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097100 +Final residual = 0.000011 +Average conv. rate = 0.048044 + +* 2 1 3 0.971003E-01 0.107684E-04 * +Number of iterations = 1 +Initial residual = 0.001213 +Final residual = 0.000072 +Average conv. rate = 0.059693 + +* 2 2 1 0.121296E-02 0.724053E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3996 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.69 16 178.1deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.73K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3996 Max w this run +w_max level proc position run w_max level timestep +0.588E+00 29 220 39.4deg W -16.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3997 Model time: 1979-03-25 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043761 + +* 1 1 3 0.100000E+01 0.838025E-04 * +Number of iterations = 2 +Initial residual = 0.014296 +Final residual = 0.000046 +Average conv. rate = 0.057009 + +* 1 2 2 0.142956E-01 0.464616E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098730 +Final residual = 0.000014 +Average conv. rate = 0.052616 + +* 2 1 3 0.987300E-01 0.143818E-04 * +Number of iterations = 1 +Initial residual = 0.001235 +Final residual = 0.000073 +Average conv. rate = 0.058945 + +* 2 2 1 0.123536E-02 0.728181E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3997 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.51 16 178.1deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.85K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3997 Max w this run +w_max level proc position run w_max level timestep +0.492E+00 40 220 39.4deg W -15.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 3998 Model time: 1979-03-25 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043570 + +* 1 1 3 0.100000E+01 0.827080E-04 * +Number of iterations = 2 +Initial residual = 0.014191 +Final residual = 0.000047 +Average conv. rate = 0.057253 + +* 1 2 2 0.141905E-01 0.465149E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096085 +Final residual = 0.000011 +Average conv. rate = 0.048353 + +* 2 1 3 0.960851E-01 0.108621E-04 * +Number of iterations = 1 +Initial residual = 0.001192 +Final residual = 0.000075 +Average conv. rate = 0.062597 + +* 2 2 1 0.119225E-02 0.746315E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3998 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.34 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.38K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3998 Max w this run +w_max level proc position run w_max level timestep +0.479E+00 40 220 39.4deg W -15.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 3999 Model time: 1979-03-25 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043696 + +* 1 1 3 0.100000E+01 0.834300E-04 * +Number of iterations = 2 +Initial residual = 0.014138 +Final residual = 0.000047 +Average conv. rate = 0.057792 + +* 1 2 2 0.141379E-01 0.472201E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096475 +Final residual = 0.000012 +Average conv. rate = 0.049997 + +* 2 1 3 0.964755E-01 0.120569E-04 * +Number of iterations = 1 +Initial residual = 0.001190 +Final residual = 0.000074 +Average conv. rate = 0.062458 + +* 2 2 1 0.118996E-02 0.743230E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 3999 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.18 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.57K. At min for run = -13.74K + +Maximum vertical velocity at timestep 3999 Max w this run +w_max level proc position run w_max level timestep +0.549E+00 39 249 71.3deg W -4.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4000 Model time: 1979-03-25 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043804 + +* 1 1 3 0.100000E+01 0.840486E-04 * +Number of iterations = 2 +Initial residual = 0.014085 +Final residual = 0.000046 +Average conv. rate = 0.057080 + +* 1 2 2 0.140850E-01 0.458914E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096351 +Final residual = 0.000011 +Average conv. rate = 0.048181 + +* 2 1 3 0.963512E-01 0.107767E-04 * +Number of iterations = 1 +Initial residual = 0.001183 +Final residual = 0.000074 +Average conv. rate = 0.062303 + +* 2 2 1 0.118288E-02 0.736969E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4000 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.02 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.74K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4000 Max w this run +w_max level proc position run w_max level timestep +0.621E+00 39 249 71.3deg W -4.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4001 Model time: 1979-03-25 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043365 + +* 1 1 3 0.100000E+01 0.815505E-04 * +Number of iterations = 2 +Initial residual = 0.014183 +Final residual = 0.000046 +Average conv. rate = 0.056840 + +* 1 2 2 0.141829E-01 0.458224E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097658 +Final residual = 0.000011 +Average conv. rate = 0.047838 + +* 2 1 3 0.976578E-01 0.106915E-04 * +Number of iterations = 1 +Initial residual = 0.001198 +Final residual = 0.000074 +Average conv. rate = 0.062118 + +* 2 2 1 0.119774E-02 0.744011E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4001 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.88 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.89K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4001 Max w this run +w_max level proc position run w_max level timestep +0.592E+00 39 249 71.3deg W -4.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4002 Model time: 1979-03-25 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043212 + +* 1 1 3 0.100000E+01 0.806868E-04 * +Number of iterations = 2 +Initial residual = 0.014210 +Final residual = 0.000045 +Average conv. rate = 0.056566 + +* 1 2 2 0.142098E-01 0.454668E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097856 +Final residual = 0.000011 +Average conv. rate = 0.048200 + +* 2 1 3 0.978561E-01 0.109578E-04 * +Number of iterations = 1 +Initial residual = 0.001190 +Final residual = 0.000072 +Average conv. rate = 0.060940 + +* 2 2 1 0.118954E-02 0.724908E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4002 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.75 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.03K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4002 Max w this run +w_max level proc position run w_max level timestep +0.527E+00 39 249 71.3deg W -4.4deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4003 Model time: 1979-03-25 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043551 + +* 1 1 3 0.100000E+01 0.826032E-04 * +Number of iterations = 2 +Initial residual = 0.014238 +Final residual = 0.000045 +Average conv. rate = 0.056155 + +* 1 2 2 0.142378E-01 0.448969E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097657 +Final residual = 0.000011 +Average conv. rate = 0.047765 + +* 2 1 3 0.976574E-01 0.106423E-04 * +Number of iterations = 1 +Initial residual = 0.001198 +Final residual = 0.000072 +Average conv. rate = 0.059996 + +* 2 2 1 0.119781E-02 0.718635E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4003 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.62 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.16K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4003 Max w this run +w_max level proc position run w_max level timestep +0.506E+00 39 220 39.4deg W -15.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4004 Model time: 1979-03-25 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043412 + +* 1 1 3 0.100000E+01 0.818154E-04 * +Number of iterations = 2 +Initial residual = 0.014170 +Final residual = 0.000044 +Average conv. rate = 0.055698 + +* 1 2 2 0.141705E-01 0.439608E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097404 +Final residual = 0.000017 +Average conv. rate = 0.055798 + +* 2 1 3 0.974037E-01 0.169216E-04 * +Number of iterations = 1 +Initial residual = 0.001191 +Final residual = 0.000070 +Average conv. rate = 0.058726 + +* 2 2 1 0.119143E-02 0.699682E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4004 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.50 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.29K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4004 Max w this run +w_max level proc position run w_max level timestep +0.492E+00 38 220 39.4deg W -15.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4005 Model time: 1979-03-25 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043881 + +* 1 1 3 0.100000E+01 0.844938E-04 * +Number of iterations = 2 +Initial residual = 0.014318 +Final residual = 0.000044 +Average conv. rate = 0.055578 + +* 1 2 2 0.143179E-01 0.442276E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097509 +Final residual = 0.000013 +Average conv. rate = 0.050884 + +* 2 1 3 0.975085E-01 0.128469E-04 * +Number of iterations = 1 +Initial residual = 0.001191 +Final residual = 0.000068 +Average conv. rate = 0.057502 + +* 2 2 1 0.119078E-02 0.684728E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4005 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.38 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.42K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4005 Max w this run +w_max level proc position run w_max level timestep +0.499E+00 34 220 39.4deg W -15.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4006 Model time: 1979-03-25 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043661 + +* 1 1 3 0.100000E+01 0.832323E-04 * +Number of iterations = 2 +Initial residual = 0.014268 +Final residual = 0.000044 +Average conv. rate = 0.055536 + +* 1 2 2 0.142680E-01 0.440054E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096360 +Final residual = 0.000012 +Average conv. rate = 0.049599 + +* 2 1 3 0.963598E-01 0.117574E-04 * +Number of iterations = 1 +Initial residual = 0.001189 +Final residual = 0.000068 +Average conv. rate = 0.057266 + +* 2 2 1 0.118899E-02 0.680883E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4006 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.26 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.57K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4006 Max w this run +w_max level proc position run w_max level timestep +0.547E+00 38 233 110.6deg E -1.9deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4007 Model time: 1979-03-25 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043622 + +* 1 1 3 0.100000E+01 0.830065E-04 * +Number of iterations = 2 +Initial residual = 0.014209 +Final residual = 0.000044 +Average conv. rate = 0.055689 + +* 1 2 2 0.142089E-01 0.440663E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097921 +Final residual = 0.000016 +Average conv. rate = 0.054550 + +* 2 1 3 0.979206E-01 0.158951E-04 * +Number of iterations = 1 +Initial residual = 0.001200 +Final residual = 0.000069 +Average conv. rate = 0.057275 + +* 2 2 1 0.119974E-02 0.687148E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4007 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.14 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.73K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4007 Max w this run +w_max level proc position run w_max level timestep +0.606E+00 39 233 110.6deg E -1.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4008 Model time: 1979-03-25 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043591 + +* 1 1 3 0.100000E+01 0.828295E-04 * +Number of iterations = 2 +Initial residual = 0.014210 +Final residual = 0.000043 +Average conv. rate = 0.055309 + +* 1 2 2 0.142100E-01 0.434701E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095963 +Final residual = 0.000018 +Average conv. rate = 0.057333 + +* 2 1 3 0.959632E-01 0.180851E-04 * +Number of iterations = 1 +Initial residual = 0.001175 +Final residual = 0.000067 +Average conv. rate = 0.057249 + +* 2 2 1 0.117461E-02 0.672456E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4008 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.02 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.91K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4008 Max w this run +w_max level proc position run w_max level timestep +0.472E+00 39 233 110.6deg E -1.9deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4009 Model time: 1979-03-25 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043975 + +* 1 1 3 0.100000E+01 0.850363E-04 * +Number of iterations = 2 +Initial residual = 0.014244 +Final residual = 0.000044 +Average conv. rate = 0.055364 + +* 1 2 2 0.142439E-01 0.436602E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096989 +Final residual = 0.000011 +Average conv. rate = 0.049097 + +* 2 1 3 0.969889E-01 0.114787E-04 * +Number of iterations = 1 +Initial residual = 0.001177 +Final residual = 0.000067 +Average conv. rate = 0.056787 + +* 2 2 1 0.117657E-02 0.668133E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4009 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.92 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.09K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4009 Max w this run +w_max level proc position run w_max level timestep +0.409E+00 27 220 39.4deg W -15.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4010 Model time: 1979-03-25 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043454 + +* 1 1 3 0.100000E+01 0.820522E-04 * +Number of iterations = 2 +Initial residual = 0.014145 +Final residual = 0.000047 +Average conv. rate = 0.057449 + +* 1 2 2 0.141447E-01 0.466826E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095563 +Final residual = 0.000012 +Average conv. rate = 0.050074 + +* 2 1 3 0.955626E-01 0.119987E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000069 +Average conv. rate = 0.057995 + +* 2 2 1 0.118483E-02 0.687148E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4010 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.83 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.12K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4010 Max w this run +w_max level proc position run w_max level timestep +0.421E+00 24 330 112.5deg E 28.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4011 Model time: 1979-03-25 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043501 + +* 1 1 3 0.100000E+01 0.823195E-04 * +Number of iterations = 2 +Initial residual = 0.014249 +Final residual = 0.000047 +Average conv. rate = 0.057160 + +* 1 2 2 0.142491E-01 0.465563E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096569 +Final residual = 0.000013 +Average conv. rate = 0.050746 + +* 2 1 3 0.965686E-01 0.126198E-04 * +Number of iterations = 1 +Initial residual = 0.001191 +Final residual = 0.000065 +Average conv. rate = 0.054687 + +* 2 2 1 0.119052E-02 0.651065E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4011 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.75 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.75K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4011 Max w this run +w_max level proc position run w_max level timestep +0.493E+00 24 330 112.5deg E 28.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4012 Model time: 1979-03-25 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042900 + +* 1 1 3 0.100000E+01 0.789561E-04 * +Number of iterations = 2 +Initial residual = 0.014338 +Final residual = 0.000046 +Average conv. rate = 0.056766 + +* 1 2 2 0.143380E-01 0.462029E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094509 +Final residual = 0.000015 +Average conv. rate = 0.054710 + +* 2 1 3 0.945091E-01 0.154770E-04 * +Number of iterations = 1 +Initial residual = 0.001173 +Final residual = 0.000068 +Average conv. rate = 0.057562 + +* 2 2 1 0.117309E-02 0.675248E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4012 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.68 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.73K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4012 Max w this run +w_max level proc position run w_max level timestep +0.529E+00 25 330 112.5deg E 28.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4013 Model time: 1979-03-25 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043211 + +* 1 1 3 0.100000E+01 0.806819E-04 * +Number of iterations = 2 +Initial residual = 0.014393 +Final residual = 0.000046 +Average conv. rate = 0.056631 + +* 1 2 2 0.143925E-01 0.461574E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094050 +Final residual = 0.000012 +Average conv. rate = 0.050830 + +* 2 1 3 0.940496E-01 0.123517E-04 * +Number of iterations = 1 +Initial residual = 0.001177 +Final residual = 0.000068 +Average conv. rate = 0.058079 + +* 2 2 1 0.117732E-02 0.683777E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4013 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.61 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.74K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4013 Max w this run +w_max level proc position run w_max level timestep +0.515E+00 25 330 112.5deg E 28.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4014 Model time: 1979-03-25 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043951 + +* 1 1 3 0.100000E+01 0.848973E-04 * +Number of iterations = 2 +Initial residual = 0.014400 +Final residual = 0.000045 +Average conv. rate = 0.056072 + +* 1 2 2 0.144004E-01 0.452758E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094904 +Final residual = 0.000018 +Average conv. rate = 0.057484 + +* 2 1 3 0.949043E-01 0.180270E-04 * +Number of iterations = 1 +Initial residual = 0.001187 +Final residual = 0.000071 +Average conv. rate = 0.059444 + +* 2 2 1 0.118662E-02 0.705379E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4014 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.55 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.75K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4014 Max w this run +w_max level proc position run w_max level timestep +0.462E+00 25 330 112.5deg E 28.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4015 Model time: 1979-03-25 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044526 + +* 1 1 3 0.100000E+01 0.882737E-04 * +Number of iterations = 2 +Initial residual = 0.014499 +Final residual = 0.000045 +Average conv. rate = 0.055710 + +* 1 2 2 0.144990E-01 0.449998E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095405 +Final residual = 0.000016 +Average conv. rate = 0.054895 + +* 2 1 3 0.954047E-01 0.157824E-04 * +Number of iterations = 1 +Initial residual = 0.001194 +Final residual = 0.000072 +Average conv. rate = 0.060263 + +* 2 2 1 0.119421E-02 0.719672E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4015 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.50 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.72K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4015 Max w this run +w_max level proc position run w_max level timestep +0.438E+00 26 330 112.5deg E 28.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4016 Model time: 1979-03-25 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043616 + +* 1 1 3 0.100000E+01 0.829744E-04 * +Number of iterations = 2 +Initial residual = 0.014534 +Final residual = 0.000044 +Average conv. rate = 0.055222 + +* 1 2 2 0.145341E-01 0.443207E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095136 +Final residual = 0.000017 +Average conv. rate = 0.056453 + +* 2 1 3 0.951363E-01 0.171164E-04 * +Number of iterations = 1 +Initial residual = 0.001188 +Final residual = 0.000072 +Average conv. rate = 0.060187 + +* 2 2 1 0.118826E-02 0.715175E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4016 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.46 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.71K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4016 Max w this run +w_max level proc position run w_max level timestep +0.441E+00 27 330 114.4deg E 28.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4017 Model time: 1979-03-25 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044171 + +* 1 1 3 0.100000E+01 0.861822E-04 * +Number of iterations = 2 +Initial residual = 0.014643 +Final residual = 0.000045 +Average conv. rate = 0.055281 + +* 1 2 2 0.146433E-01 0.447494E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095558 +Final residual = 0.000013 +Average conv. rate = 0.052060 + +* 2 1 3 0.955581E-01 0.134830E-04 * +Number of iterations = 1 +Initial residual = 0.001191 +Final residual = 0.000072 +Average conv. rate = 0.060892 + +* 2 2 1 0.119057E-02 0.724962E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4017 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.42 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.82K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4017 Max w this run +w_max level proc position run w_max level timestep +0.475E+00 27 330 114.4deg E 28.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4018 Model time: 1979-03-25 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043852 + +* 1 1 3 0.100000E+01 0.843263E-04 * +Number of iterations = 2 +Initial residual = 0.014659 +Final residual = 0.000045 +Average conv. rate = 0.055166 + +* 1 2 2 0.146592E-01 0.446127E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094804 +Final residual = 0.000015 +Average conv. rate = 0.053975 + +* 2 1 3 0.948038E-01 0.149075E-04 * +Number of iterations = 1 +Initial residual = 0.001179 +Final residual = 0.000073 +Average conv. rate = 0.061613 + +* 2 2 1 0.117921E-02 0.726544E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4018 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.38 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -20.94K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4018 Max w this run +w_max level proc position run w_max level timestep +0.449E+00 35 220 35.6deg W -18.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4019 Model time: 1979-03-25 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043539 + +* 1 1 3 0.100000E+01 0.825345E-04 * +Number of iterations = 2 +Initial residual = 0.014666 +Final residual = 0.000044 +Average conv. rate = 0.055080 + +* 1 2 2 0.146656E-01 0.444928E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095113 +Final residual = 0.000014 +Average conv. rate = 0.052409 + +* 2 1 3 0.951129E-01 0.136919E-04 * +Number of iterations = 1 +Initial residual = 0.001173 +Final residual = 0.000072 +Average conv. rate = 0.061734 + +* 2 2 1 0.117305E-02 0.724167E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4019 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.35 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -21.06K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4019 Max w this run +w_max level proc position run w_max level timestep +0.469E+00 35 220 35.6deg W -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4020 Model time: 1979-03-25 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043725 + +* 1 1 3 0.100000E+01 0.835974E-04 * +Number of iterations = 2 +Initial residual = 0.014524 +Final residual = 0.000044 +Average conv. rate = 0.055284 + +* 1 2 2 0.145243E-01 0.443904E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094610 +Final residual = 0.000020 +Average conv. rate = 0.059123 + +* 2 1 3 0.946098E-01 0.195525E-04 * +Number of iterations = 1 +Initial residual = 0.001169 +Final residual = 0.000071 +Average conv. rate = 0.061133 + +* 2 2 1 0.116936E-02 0.714869E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4020 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.32 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -21.20K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4020 Max w this run +w_max level proc position run w_max level timestep +0.429E+00 41 236 144.4deg E -4.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4021 Model time: 1979-03-25 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044553 + +* 1 1 3 0.100000E+01 0.884361E-04 * +Number of iterations = 2 +Initial residual = 0.014443 +Final residual = 0.000045 +Average conv. rate = 0.055583 + +* 1 2 2 0.144427E-01 0.446197E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094539 +Final residual = 0.000015 +Average conv. rate = 0.053850 + +* 2 1 3 0.945391E-01 0.147630E-04 * +Number of iterations = 1 +Initial residual = 0.001173 +Final residual = 0.000072 +Average conv. rate = 0.061322 + +* 2 2 1 0.117287E-02 0.719234E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4021 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.29 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -21.36K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4021 Max w this run +w_max level proc position run w_max level timestep +0.441E+00 40 208 178.1deg W -14.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4022 Model time: 1979-03-25 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043873 + +* 1 1 3 0.100000E+01 0.844493E-04 * +Number of iterations = 2 +Initial residual = 0.014323 +Final residual = 0.000044 +Average conv. rate = 0.055589 + +* 1 2 2 0.143228E-01 0.442598E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094867 +Final residual = 0.000014 +Average conv. rate = 0.052447 + +* 2 1 3 0.948672E-01 0.136859E-04 * +Number of iterations = 1 +Initial residual = 0.001174 +Final residual = 0.000071 +Average conv. rate = 0.060322 + +* 2 2 1 0.117399E-02 0.708177E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4022 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.27 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -21.52K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4022 Max w this run +w_max level proc position run w_max level timestep +0.450E+00 37 225 18.7deg E -6.9deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4023 Model time: 1979-03-25 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044392 + +* 1 1 3 0.100000E+01 0.874796E-04 * +Number of iterations = 2 +Initial residual = 0.014302 +Final residual = 0.000044 +Average conv. rate = 0.055737 + +* 1 2 2 0.143021E-01 0.444311E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095456 +Final residual = 0.000014 +Average conv. rate = 0.052567 + +* 2 1 3 0.954560E-01 0.138659E-04 * +Number of iterations = 1 +Initial residual = 0.001183 +Final residual = 0.000070 +Average conv. rate = 0.059413 + +* 2 2 1 0.118303E-02 0.702878E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4023 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.26 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -21.65K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4023 Max w this run +w_max level proc position run w_max level timestep +0.517E+00 26 269 146.3deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4024 Model time: 1979-03-25 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043852 + +* 1 1 3 0.100000E+01 0.843256E-04 * +Number of iterations = 2 +Initial residual = 0.014283 +Final residual = 0.000045 +Average conv. rate = 0.055914 + +* 1 2 2 0.142827E-01 0.446529E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095658 +Final residual = 0.000013 +Average conv. rate = 0.051899 + +* 2 1 3 0.956577E-01 0.133720E-04 * +Number of iterations = 1 +Initial residual = 0.001186 +Final residual = 0.000070 +Average conv. rate = 0.058680 + +* 2 2 1 0.118582E-02 0.695834E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4024 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.26 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -21.80K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4024 Max w this run +w_max level proc position run w_max level timestep +0.603E+00 27 269 146.3deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4025 Model time: 1979-03-25 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044025 + +* 1 1 3 0.100000E+01 0.853307E-04 * +Number of iterations = 2 +Initial residual = 0.014329 +Final residual = 0.000043 +Average conv. rate = 0.054712 + +* 1 2 2 0.143292E-01 0.428936E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098612 +Final residual = 0.000014 +Average conv. rate = 0.051775 + +* 2 1 3 0.986116E-01 0.136861E-04 * +Number of iterations = 1 +Initial residual = 0.001238 +Final residual = 0.000068 +Average conv. rate = 0.054873 + +* 2 2 1 0.123799E-02 0.679319E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4025 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.28 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -21.97K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4025 Max w this run +w_max level proc position run w_max level timestep +0.567E+00 27 269 146.3deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4026 Model time: 1979-03-25 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043777 + +* 1 1 3 0.100000E+01 0.838944E-04 * +Number of iterations = 2 +Initial residual = 0.014279 +Final residual = 0.000047 +Average conv. rate = 0.057120 + +* 1 2 2 0.142794E-01 0.465890E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098056 +Final residual = 0.000016 +Average conv. rate = 0.054167 + +* 2 1 3 0.980557E-01 0.155835E-04 * +Number of iterations = 1 +Initial residual = 0.001207 +Final residual = 0.000068 +Average conv. rate = 0.056410 + +* 2 2 1 0.120679E-02 0.680746E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4026 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.31 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -22.16K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4026 Max w this run +w_max level proc position run w_max level timestep +0.606E+00 30 269 146.3deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4027 Model time: 1979-03-25 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043751 + +* 1 1 3 0.100000E+01 0.837466E-04 * +Number of iterations = 2 +Initial residual = 0.014374 +Final residual = 0.000047 +Average conv. rate = 0.056878 + +* 1 2 2 0.143740E-01 0.465009E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097515 +Final residual = 0.000014 +Average conv. rate = 0.051758 + +* 2 1 3 0.975147E-01 0.135204E-04 * +Number of iterations = 1 +Initial residual = 0.001190 +Final residual = 0.000067 +Average conv. rate = 0.056464 + +* 2 2 1 0.119035E-02 0.672120E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4027 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.34 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -22.41K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4027 Max w this run +w_max level proc position run w_max level timestep +0.685E+00 28 269 146.3deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4028 Model time: 1979-03-25 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000091 +Average conv. rate = 0.045060 + +* 1 1 3 0.100000E+01 0.914913E-04 * +Number of iterations = 2 +Initial residual = 0.014305 +Final residual = 0.000047 +Average conv. rate = 0.057615 + +* 1 2 2 0.143055E-01 0.474870E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098267 +Final residual = 0.000017 +Average conv. rate = 0.055547 + +* 2 1 3 0.982668E-01 0.168418E-04 * +Number of iterations = 1 +Initial residual = 0.001193 +Final residual = 0.000066 +Average conv. rate = 0.055687 + +* 2 2 1 0.119279E-02 0.664231E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4028 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.38 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -22.74K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4028 Max w this run +w_max level proc position run w_max level timestep +0.796E+00 32 269 146.3deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4029 Model time: 1979-03-25 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000091 +Average conv. rate = 0.045027 + +* 1 1 3 0.100000E+01 0.912905E-04 * +Number of iterations = 2 +Initial residual = 0.014284 +Final residual = 0.000042 +Average conv. rate = 0.054185 + +* 1 2 2 0.142841E-01 0.419378E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097603 +Final residual = 0.000014 +Average conv. rate = 0.052195 + +* 2 1 3 0.976025E-01 0.138784E-04 * +Number of iterations = 1 +Initial residual = 0.001185 +Final residual = 0.000066 +Average conv. rate = 0.055431 + +* 2 2 1 0.118507E-02 0.656893E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4029 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.43 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.09K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4029 Max w this run +w_max level proc position run w_max level timestep +0.807E+00 30 269 146.3deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4030 Model time: 1979-03-25 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045126 + +* 1 1 3 0.100000E+01 0.918916E-04 * +Number of iterations = 2 +Initial residual = 0.014204 +Final residual = 0.000042 +Average conv. rate = 0.054331 + +* 1 2 2 0.142041E-01 0.419291E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097303 +Final residual = 0.000013 +Average conv. rate = 0.051738 + +* 2 1 3 0.973035E-01 0.134763E-04 * +Number of iterations = 1 +Initial residual = 0.001256 +Final residual = 0.000066 +Average conv. rate = 0.052444 + +* 2 2 1 0.125643E-02 0.658919E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4030 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.48 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.45K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4030 Max w this run +w_max level proc position run w_max level timestep +0.724E+00 30 269 146.3deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4031 Model time: 1979-03-25 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000096 +Average conv. rate = 0.045743 + +* 1 1 3 0.100000E+01 0.957153E-04 * +Number of iterations = 2 +Initial residual = 0.014218 +Final residual = 0.000042 +Average conv. rate = 0.054461 + +* 1 2 2 0.142183E-01 0.421715E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096783 +Final residual = 0.000016 +Average conv. rate = 0.055099 + +* 2 1 3 0.967827E-01 0.161890E-04 * +Number of iterations = 1 +Initial residual = 0.001210 +Final residual = 0.000068 +Average conv. rate = 0.055993 + +* 2 2 1 0.121023E-02 0.677647E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4031 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.54 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.80K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4031 Max w this run +w_max level proc position run w_max level timestep +0.639E+00 30 269 146.3deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4032 Model time: 1979-03-26 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000093 +Average conv. rate = 0.045269 + +* 1 1 3 0.100000E+01 0.927707E-04 * +Number of iterations = 2 +Initial residual = 0.014144 +Final residual = 0.000043 +Average conv. rate = 0.055160 + +* 1 2 2 0.141436E-01 0.430342E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096342 +Final residual = 0.000015 +Average conv. rate = 0.053772 + +* 2 1 3 0.963422E-01 0.149792E-04 * +Number of iterations = 1 +Initial residual = 0.001197 +Final residual = 0.000068 +Average conv. rate = 0.057053 + +* 2 2 1 0.119737E-02 0.683136E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13062E+25 +tot dry energy 0.13063E+25 +gr( rho cal) 0.38124E+24 +KE( rho cal) 0.82891E+21 +KEu(rho cal) 0.62640E+21 +KEv(rho cal) 0.20251E+21 +KEw(rho cal) 0.12953E+16 +cvT( rho cal) 0.92421E+24 +lq ( rho cal) 0.30742E+23 +lqcf( rho cal) 0.67632E+20 +lqcl( rho cal) 0.45506E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12335E+17 KG +Initial moisture = 0.12357E+17 KG +change in moisture = -0.21800E+14 KG +Moisture added E-P in period = -0.21161E+14 KG +Error in moisture = -0.63837E+12 KG +Error as % of change = 0.29284E+01 +q ( rho cal) 0.12292E+17 +qcf( rho cal) 0.27042E+14 +qcl( rho cal) 0.16052E+14 +FINAL TOTAL ENERGY = 0.13062E+25 J/ +INITIAL TOTAL ENERGY = 0.13060E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.20907E+21 J/ +FLUXES INTO ATM OVER PERIOD = 0.21710E+21 J/ +ERROR IN ENERGY BUDGET = 0.80284E+19 J/ +TEMP CORRECTION OVER A DAY = 0.21800E-02 K +TEMPERATURE CORRECTION RATE = 0.25231E-07 K/S +FLUX CORRECTION (ATM) = 0.18216E+00 W/M2 + +Minimum theta level 1 for timestep 4032 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.60 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.18K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4032 Max w this run +w_max level proc position run w_max level timestep +0.567E+00 29 269 146.3deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -5988.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -5988.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD5 +REPLANCA - time interpolation for ancillary field, stashcode 216 +targ_time,time1,time2 -5940.00000 -12396.00000 -3636.00000 +hours,int,period -32768 12 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1162 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 9 Number of steps129 +STASH code in dataset 216 STASH code requested 216 +'start' position of lookup tables for dataset 4in overall lookup array 182173 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -5988.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -5988.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -5988.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -5988.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 4033 Model time: 1979-03-26 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044180 + +* 1 1 3 0.100000E+01 0.862343E-04 * +Number of iterations = 2 +Initial residual = 0.014224 +Final residual = 0.000042 +Average conv. rate = 0.054559 + +* 1 2 2 0.142238E-01 0.423400E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096719 +Final residual = 0.000014 +Average conv. rate = 0.052633 + +* 2 1 3 0.967191E-01 0.141026E-04 * +Number of iterations = 1 +Initial residual = 0.001190 +Final residual = 0.000065 +Average conv. rate = 0.055029 + +* 2 2 1 0.118956E-02 0.654610E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4033 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.69 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.50K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4033 Max w this run +w_max level proc position run w_max level timestep +0.569E+00 33 269 146.3deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4034 Model time: 1979-03-26 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044438 + +* 1 1 3 0.100000E+01 0.877550E-04 * +Number of iterations = 2 +Initial residual = 0.014187 +Final residual = 0.000045 +Average conv. rate = 0.056487 + +* 1 2 2 0.141871E-01 0.452676E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095612 +Final residual = 0.000016 +Average conv. rate = 0.055625 + +* 2 1 3 0.956120E-01 0.164562E-04 * +Number of iterations = 1 +Initial residual = 0.001180 +Final residual = 0.000065 +Average conv. rate = 0.054707 + +* 2 2 1 0.117968E-02 0.645363E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4034 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.75 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.82K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4034 Max w this run +w_max level proc position run w_max level timestep +0.566E+00 28 220 39.4deg W -13.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4035 Model time: 1979-03-26 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044093 + +* 1 1 3 0.100000E+01 0.857226E-04 * +Number of iterations = 2 +Initial residual = 0.014158 +Final residual = 0.000045 +Average conv. rate = 0.056088 + +* 1 2 2 0.141584E-01 0.445401E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094920 +Final residual = 0.000012 +Average conv. rate = 0.049960 + +* 2 1 3 0.949204E-01 0.118362E-04 * +Number of iterations = 1 +Initial residual = 0.001161 +Final residual = 0.000062 +Average conv. rate = 0.053671 + +* 2 2 1 0.116142E-02 0.623343E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4035 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.81 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.08K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4035 Max w this run +w_max level proc position run w_max level timestep +0.599E+00 33 269 146.3deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4036 Model time: 1979-03-26 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044239 + +* 1 1 3 0.100000E+01 0.865781E-04 * +Number of iterations = 2 +Initial residual = 0.014083 +Final residual = 0.000042 +Average conv. rate = 0.054342 + +* 1 2 2 0.140826E-01 0.415873E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095005 +Final residual = 0.000012 +Average conv. rate = 0.049515 + +* 2 1 3 0.950049E-01 0.115332E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000061 +Average conv. rate = 0.052638 + +* 2 2 1 0.115546E-02 0.608212E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4036 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.85 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.42K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4036 Max w this run +w_max level proc position run w_max level timestep +0.582E+00 33 269 146.3deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4037 Model time: 1979-03-26 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044373 + +* 1 1 3 0.100000E+01 0.873673E-04 * +Number of iterations = 2 +Initial residual = 0.014094 +Final residual = 0.000042 +Average conv. rate = 0.054759 + +* 1 2 2 0.140940E-01 0.422622E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097596 +Final residual = 0.000017 +Average conv. rate = 0.055704 + +* 2 1 3 0.975964E-01 0.168688E-04 * +Number of iterations = 1 +Initial residual = 0.001170 +Final residual = 0.000060 +Average conv. rate = 0.051392 + +* 2 2 1 0.117022E-02 0.601402E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4037 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.88 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.80K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4037 Max w this run +w_max level proc position run w_max level timestep +0.589E+00 34 269 146.3deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4038 Model time: 1979-03-26 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043298 + +* 1 1 3 0.100000E+01 0.811718E-04 * +Number of iterations = 2 +Initial residual = 0.014027 +Final residual = 0.000045 +Average conv. rate = 0.056881 + +* 1 2 2 0.140269E-01 0.453838E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097885 +Final residual = 0.000015 +Average conv. rate = 0.053013 + +* 2 1 3 0.978846E-01 0.145832E-04 * +Number of iterations = 1 +Initial residual = 0.001162 +Final residual = 0.000060 +Average conv. rate = 0.051710 + +* 2 2 1 0.116196E-02 0.600847E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4038 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.91 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -26.18K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4038 Max w this run +w_max level proc position run w_max level timestep +0.510E+00 33 269 146.3deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4039 Model time: 1979-03-26 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043977 + +* 1 1 3 0.100000E+01 0.850489E-04 * +Number of iterations = 2 +Initial residual = 0.014167 +Final residual = 0.000044 +Average conv. rate = 0.055699 + +* 1 2 2 0.141669E-01 0.439504E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097374 +Final residual = 0.000014 +Average conv. rate = 0.052890 + +* 2 1 3 0.973740E-01 0.144065E-04 * +Number of iterations = 1 +Initial residual = 0.001162 +Final residual = 0.000062 +Average conv. rate = 0.052945 + +* 2 2 1 0.116169E-02 0.615056E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4039 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.92 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -26.53K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4039 Max w this run +w_max level proc position run w_max level timestep +0.481E+00 36 269 146.3deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4040 Model time: 1979-03-26 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043832 + +* 1 1 3 0.100000E+01 0.842096E-04 * +Number of iterations = 2 +Initial residual = 0.014229 +Final residual = 0.000043 +Average conv. rate = 0.054898 + +* 1 2 2 0.142286E-01 0.428825E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096635 +Final residual = 0.000014 +Average conv. rate = 0.052670 + +* 2 1 3 0.966351E-01 0.141199E-04 * +Number of iterations = 1 +Initial residual = 0.001176 +Final residual = 0.000061 +Average conv. rate = 0.051880 + +* 2 2 1 0.117580E-02 0.610007E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4040 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.93 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -26.83K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4040 Max w this run +w_max level proc position run w_max level timestep +0.449E+00 41 269 148.1deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4041 Model time: 1979-03-26 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043213 + +* 1 1 3 0.100000E+01 0.806916E-04 * +Number of iterations = 2 +Initial residual = 0.014372 +Final residual = 0.000043 +Average conv. rate = 0.054689 + +* 1 2 2 0.143721E-01 0.429856E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094731 +Final residual = 0.000013 +Average conv. rate = 0.052181 + +* 2 1 3 0.947310E-01 0.134597E-04 * +Number of iterations = 1 +Initial residual = 0.001178 +Final residual = 0.000062 +Average conv. rate = 0.052643 + +* 2 2 1 0.117822E-02 0.620248E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4041 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.91 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -27.10K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4041 Max w this run +w_max level proc position run w_max level timestep +0.503E+00 41 269 148.1deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4042 Model time: 1979-03-26 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043397 + +* 1 1 3 0.100000E+01 0.817286E-04 * +Number of iterations = 2 +Initial residual = 0.014426 +Final residual = 0.000044 +Average conv. rate = 0.055201 + +* 1 2 2 0.144260E-01 0.439586E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094834 +Final residual = 0.000016 +Average conv. rate = 0.054797 + +* 2 1 3 0.948337E-01 0.156039E-04 * +Number of iterations = 1 +Initial residual = 0.001181 +Final residual = 0.000061 +Average conv. rate = 0.052038 + +* 2 2 1 0.118054E-02 0.614336E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4042 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.89 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -27.38K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4042 Max w this run +w_max level proc position run w_max level timestep +0.480E+00 40 269 148.1deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4043 Model time: 1979-03-26 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043275 + +* 1 1 3 0.100000E+01 0.810410E-04 * +Number of iterations = 2 +Initial residual = 0.014548 +Final residual = 0.000041 +Average conv. rate = 0.052905 + +* 1 2 2 0.145481E-01 0.407199E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095143 +Final residual = 0.000017 +Average conv. rate = 0.056496 + +* 2 1 3 0.951428E-01 0.171566E-04 * +Number of iterations = 1 +Initial residual = 0.001166 +Final residual = 0.000061 +Average conv. rate = 0.052362 + +* 2 2 1 0.116555E-02 0.610302E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4043 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.84 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -27.71K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4043 Max w this run +w_max level proc position run w_max level timestep +0.470E+00 37 250 63.8deg W -5.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4044 Model time: 1979-03-26 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043976 + +* 1 1 3 0.100000E+01 0.850470E-04 * +Number of iterations = 2 +Initial residual = 0.014500 +Final residual = 0.000042 +Average conv. rate = 0.053629 + +* 1 2 2 0.145000E-01 0.417030E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093804 +Final residual = 0.000016 +Average conv. rate = 0.055781 + +* 2 1 3 0.938041E-01 0.162810E-04 * +Number of iterations = 1 +Initial residual = 0.001174 +Final residual = 0.000060 +Average conv. rate = 0.050700 + +* 2 2 1 0.117358E-02 0.595009E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4044 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.78 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -28.02K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4044 Max w this run +w_max level proc position run w_max level timestep +0.514E+00 37 250 63.8deg W -5.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4045 Model time: 1979-03-26 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044354 + +* 1 1 3 0.100000E+01 0.872569E-04 * +Number of iterations = 2 +Initial residual = 0.014439 +Final residual = 0.000042 +Average conv. rate = 0.053726 + +* 1 2 2 0.144395E-01 0.416791E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093549 +Final residual = 0.000013 +Average conv. rate = 0.051984 + +* 2 1 3 0.935491E-01 0.131420E-04 * +Number of iterations = 1 +Initial residual = 0.001165 +Final residual = 0.000059 +Average conv. rate = 0.050468 + +* 2 2 1 0.116517E-02 0.588044E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4045 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.71 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -28.38K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4045 Max w this run +w_max level proc position run w_max level timestep +0.485E+00 38 250 63.8deg W -5.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4046 Model time: 1979-03-26 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043578 + +* 1 1 3 0.100000E+01 0.827559E-04 * +Number of iterations = 2 +Initial residual = 0.014258 +Final residual = 0.000046 +Average conv. rate = 0.056753 + +* 1 2 2 0.142583E-01 0.459245E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093142 +Final residual = 0.000012 +Average conv. rate = 0.050513 + +* 2 1 3 0.931419E-01 0.120047E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000059 +Average conv. rate = 0.051478 + +* 2 2 1 0.114974E-02 0.591867E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4046 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.63 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -28.77K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4046 Max w this run +w_max level proc position run w_max level timestep +0.493E+00 26 331 123.7deg E 30.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4047 Model time: 1979-03-26 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044455 + +* 1 1 3 0.100000E+01 0.878516E-04 * +Number of iterations = 2 +Initial residual = 0.014072 +Final residual = 0.000046 +Average conv. rate = 0.057010 + +* 1 2 2 0.140720E-01 0.457367E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094532 +Final residual = 0.000015 +Average conv. rate = 0.054354 + +* 2 1 3 0.945317E-01 0.151800E-04 * +Number of iterations = 1 +Initial residual = 0.001163 +Final residual = 0.000062 +Average conv. rate = 0.053136 + +* 2 2 1 0.116350E-02 0.618238E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4047 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.54 16 174.4deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -29.16K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4047 Max w this run +w_max level proc position run w_max level timestep +0.510E+00 38 257 20.6deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4048 Model time: 1979-03-26 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043423 + +* 1 1 3 0.100000E+01 0.818782E-04 * +Number of iterations = 2 +Initial residual = 0.013899 +Final residual = 0.000042 +Average conv. rate = 0.054650 + +* 1 2 2 0.138992E-01 0.415122E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093752 +Final residual = 0.000012 +Average conv. rate = 0.050107 + +* 2 1 3 0.937523E-01 0.117942E-04 * +Number of iterations = 1 +Initial residual = 0.001135 +Final residual = 0.000058 +Average conv. rate = 0.050965 + +* 2 2 1 0.113496E-02 0.578433E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4048 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.39 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.61K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4048 Max w this run +w_max level proc position run w_max level timestep +0.541E+00 26 331 123.7deg E 30.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4049 Model time: 1979-03-26 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043593 + +* 1 1 3 0.100000E+01 0.828399E-04 * +Number of iterations = 2 +Initial residual = 0.013916 +Final residual = 0.000044 +Average conv. rate = 0.055975 + +* 1 2 2 0.139160E-01 0.436018E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095090 +Final residual = 0.000018 +Average conv. rate = 0.057718 + +* 2 1 3 0.950904E-01 0.182842E-04 * +Number of iterations = 1 +Initial residual = 0.001140 +Final residual = 0.000058 +Average conv. rate = 0.050484 + +* 2 2 1 0.113963E-02 0.575328E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4049 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.24 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.88K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4049 Max w this run +w_max level proc position run w_max level timestep +0.539E+00 27 331 123.7deg E 30.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4050 Model time: 1979-03-26 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043759 + +* 1 1 3 0.100000E+01 0.837908E-04 * +Number of iterations = 2 +Initial residual = 0.013894 +Final residual = 0.000042 +Average conv. rate = 0.055055 + +* 1 2 2 0.138944E-01 0.421151E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094764 +Final residual = 0.000016 +Average conv. rate = 0.055785 + +* 2 1 3 0.947639E-01 0.164515E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000058 +Average conv. rate = 0.050205 + +* 2 2 1 0.114602E-02 0.575364E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4050 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.11 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.18K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4050 Max w this run +w_max level proc position run w_max level timestep +0.557E+00 27 331 123.7deg E 30.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4051 Model time: 1979-03-26 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043351 + +* 1 1 3 0.100000E+01 0.814685E-04 * +Number of iterations = 2 +Initial residual = 0.013934 +Final residual = 0.000043 +Average conv. rate = 0.055868 + +* 1 2 2 0.139337E-01 0.434904E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095561 +Final residual = 0.000017 +Average conv. rate = 0.056067 + +* 2 1 3 0.955606E-01 0.168427E-04 * +Number of iterations = 1 +Initial residual = 0.001141 +Final residual = 0.000058 +Average conv. rate = 0.050646 + +* 2 2 1 0.114070E-02 0.577717E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4051 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.00 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.54K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4051 Max w this run +w_max level proc position run w_max level timestep +0.570E+00 33 269 148.1deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4052 Model time: 1979-03-26 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044232 + +* 1 1 3 0.100000E+01 0.865402E-04 * +Number of iterations = 2 +Initial residual = 0.013889 +Final residual = 0.000043 +Average conv. rate = 0.055569 + +* 1 2 2 0.138895E-01 0.428897E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095351 +Final residual = 0.000018 +Average conv. rate = 0.057354 + +* 2 1 3 0.953512E-01 0.179890E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000058 +Average conv. rate = 0.050391 + +* 2 2 1 0.114641E-02 0.577686E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4052 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.90 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.93K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4052 Max w this run +w_max level proc position run w_max level timestep +0.579E+00 28 331 123.7deg E 30.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4053 Model time: 1979-03-26 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042891 + +* 1 1 3 0.100000E+01 0.789035E-04 * +Number of iterations = 2 +Initial residual = 0.014046 +Final residual = 0.000042 +Average conv. rate = 0.054605 + +* 1 2 2 0.140456E-01 0.418803E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095237 +Final residual = 0.000016 +Average conv. rate = 0.055658 + +* 2 1 3 0.952370E-01 0.164209E-04 * +Number of iterations = 1 +Initial residual = 0.001153 +Final residual = 0.000059 +Average conv. rate = 0.050765 + +* 2 2 1 0.115342E-02 0.585532E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4053 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.84 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -26.16K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4053 Max w this run +w_max level proc position run w_max level timestep +0.526E+00 27 331 123.7deg E 30.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4054 Model time: 1979-03-26 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043766 + +* 1 1 3 0.100000E+01 0.838297E-04 * +Number of iterations = 2 +Initial residual = 0.014101 +Final residual = 0.000042 +Average conv. rate = 0.054722 + +* 1 2 2 0.141007E-01 0.422249E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094194 +Final residual = 0.000011 +Average conv. rate = 0.049283 + +* 2 1 3 0.941938E-01 0.112751E-04 * +Number of iterations = 1 +Initial residual = 0.001135 +Final residual = 0.000058 +Average conv. rate = 0.051078 + +* 2 2 1 0.113522E-02 0.579843E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4054 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.82 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -26.42K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4054 Max w this run +w_max level proc position run w_max level timestep +0.532E+00 34 269 148.1deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4055 Model time: 1979-03-26 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043621 + +* 1 1 3 0.100000E+01 0.829995E-04 * +Number of iterations = 2 +Initial residual = 0.014146 +Final residual = 0.000045 +Average conv. rate = 0.056282 + +* 1 2 2 0.141458E-01 0.448091E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093823 +Final residual = 0.000018 +Average conv. rate = 0.057148 + +* 2 1 3 0.938233E-01 0.175111E-04 * +Number of iterations = 1 +Initial residual = 0.001136 +Final residual = 0.000059 +Average conv. rate = 0.051615 + +* 2 2 1 0.113635E-02 0.586525E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4055 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.82 16 176.3deg W -80.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -26.79K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4055 Max w this run +w_max level proc position run w_max level timestep +0.538E+00 34 269 148.1deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4056 Model time: 1979-03-26 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043729 + +* 1 1 3 0.100000E+01 0.836171E-04 * +Number of iterations = 2 +Initial residual = 0.014107 +Final residual = 0.000043 +Average conv. rate = 0.055129 + +* 1 2 2 0.141073E-01 0.428744E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095244 +Final residual = 0.000016 +Average conv. rate = 0.055148 + +* 2 1 3 0.952443E-01 0.159746E-04 * +Number of iterations = 1 +Initial residual = 0.001153 +Final residual = 0.000058 +Average conv. rate = 0.050321 + +* 2 2 1 0.115257E-02 0.579987E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4056 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.50 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.76K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4056 Max w this run +w_max level proc position run w_max level timestep +0.602E+00 22 331 125.6deg E 30.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4057 Model time: 1979-03-26 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043172 + +* 1 1 3 0.100000E+01 0.804624E-04 * +Number of iterations = 2 +Initial residual = 0.014194 +Final residual = 0.000044 +Average conv. rate = 0.055430 + +* 1 2 2 0.141941E-01 0.436112E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094897 +Final residual = 0.000015 +Average conv. rate = 0.053605 + +* 2 1 3 0.948969E-01 0.146173E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000056 +Average conv. rate = 0.049475 + +* 2 2 1 0.113700E-02 0.562530E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4057 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.13 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.08K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4057 Max w this run +w_max level proc position run w_max level timestep +0.667E+00 23 331 125.6deg E 30.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4058 Model time: 1979-03-26 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043778 + +* 1 1 3 0.100000E+01 0.839033E-04 * +Number of iterations = 2 +Initial residual = 0.014141 +Final residual = 0.000045 +Average conv. rate = 0.056609 + +* 1 2 2 0.141406E-01 0.453145E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092838 +Final residual = 0.000016 +Average conv. rate = 0.055588 + +* 2 1 3 0.928383E-01 0.159463E-04 * +Number of iterations = 1 +Initial residual = 0.001129 +Final residual = 0.000055 +Average conv. rate = 0.048751 + +* 2 2 1 0.112941E-02 0.550595E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4058 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.78 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.43K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4058 Max w this run +w_max level proc position run w_max level timestep +0.721E+00 23 331 125.6deg E 30.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4059 Model time: 1979-03-26 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044455 + +* 1 1 3 0.100000E+01 0.878515E-04 * +Number of iterations = 2 +Initial residual = 0.014152 +Final residual = 0.000044 +Average conv. rate = 0.055820 + +* 1 2 2 0.141520E-01 0.440954E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094387 +Final residual = 0.000016 +Average conv. rate = 0.055270 + +* 2 1 3 0.943873E-01 0.159364E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000056 +Average conv. rate = 0.048355 + +* 2 2 1 0.114996E-02 0.556060E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4059 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.47 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.64K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4059 Max w this run +w_max level proc position run w_max level timestep +0.695E+00 24 331 125.6deg E 30.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4060 Model time: 1979-03-26 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043851 + +* 1 1 3 0.100000E+01 0.843222E-04 * +Number of iterations = 2 +Initial residual = 0.014123 +Final residual = 0.000043 +Average conv. rate = 0.055367 + +* 1 2 2 0.141231E-01 0.432942E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093787 +Final residual = 0.000015 +Average conv. rate = 0.054465 + +* 2 1 3 0.937872E-01 0.151532E-04 * +Number of iterations = 1 +Initial residual = 0.001132 +Final residual = 0.000055 +Average conv. rate = 0.048605 + +* 2 2 1 0.113161E-02 0.550022E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4060 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.19 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.83K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4060 Max w this run +w_max level proc position run w_max level timestep +0.648E+00 24 331 125.6deg E 30.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4061 Model time: 1979-03-26 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044007 + +* 1 1 3 0.100000E+01 0.852254E-04 * +Number of iterations = 2 +Initial residual = 0.014151 +Final residual = 0.000044 +Average conv. rate = 0.055494 + +* 1 2 2 0.141508E-01 0.435780E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094476 +Final residual = 0.000017 +Average conv. rate = 0.056929 + +* 2 1 3 0.944760E-01 0.174309E-04 * +Number of iterations = 1 +Initial residual = 0.001143 +Final residual = 0.000056 +Average conv. rate = 0.048958 + +* 2 2 1 0.114299E-02 0.559588E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4061 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.96 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.78K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4061 Max w this run +w_max level proc position run w_max level timestep +0.533E+00 21 331 127.5deg E 30.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4062 Model time: 1979-03-26 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044170 + +* 1 1 3 0.100000E+01 0.861733E-04 * +Number of iterations = 2 +Initial residual = 0.014136 +Final residual = 0.000043 +Average conv. rate = 0.055048 + +* 1 2 2 0.141357E-01 0.428357E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096485 +Final residual = 0.000018 +Average conv. rate = 0.057558 + +* 2 1 3 0.964850E-01 0.183979E-04 * +Number of iterations = 1 +Initial residual = 0.001165 +Final residual = 0.000056 +Average conv. rate = 0.048018 + +* 2 2 1 0.116487E-02 0.559349E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4062 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.77 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.92K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4062 Max w this run +w_max level proc position run w_max level timestep +0.624E+00 21 331 127.5deg E 30.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4063 Model time: 1979-03-26 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000092 +Average conv. rate = 0.045116 + +* 1 1 3 0.100000E+01 0.918298E-04 * +Number of iterations = 2 +Initial residual = 0.014258 +Final residual = 0.000044 +Average conv. rate = 0.055506 + +* 1 2 2 0.142577E-01 0.439261E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093627 +Final residual = 0.000018 +Average conv. rate = 0.057856 + +* 2 1 3 0.936274E-01 0.181321E-04 * +Number of iterations = 1 +Initial residual = 0.001136 +Final residual = 0.000056 +Average conv. rate = 0.048919 + +* 2 2 1 0.113615E-02 0.555788E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4063 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.61 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.01K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4063 Max w this run +w_max level proc position run w_max level timestep +0.719E+00 23 331 127.5deg E 30.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4064 Model time: 1979-03-26 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044392 + +* 1 1 3 0.100000E+01 0.874837E-04 * +Number of iterations = 2 +Initial residual = 0.014275 +Final residual = 0.000044 +Average conv. rate = 0.055381 + +* 1 2 2 0.142752E-01 0.437829E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094289 +Final residual = 0.000011 +Average conv. rate = 0.049179 + +* 2 1 3 0.942887E-01 0.112147E-04 * +Number of iterations = 1 +Initial residual = 0.001164 +Final residual = 0.000054 +Average conv. rate = 0.046106 + +* 2 2 1 0.116399E-02 0.536666E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4064 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.49 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.06K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4064 Max w this run +w_max level proc position run w_max level timestep +0.698E+00 22 331 127.5deg E 30.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4065 Model time: 1979-03-26 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044071 + +* 1 1 3 0.100000E+01 0.855962E-04 * +Number of iterations = 2 +Initial residual = 0.014311 +Final residual = 0.000044 +Average conv. rate = 0.055403 + +* 1 2 2 0.143111E-01 0.439278E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095049 +Final residual = 0.000018 +Average conv. rate = 0.057131 + +* 2 1 3 0.950490E-01 0.177239E-04 * +Number of iterations = 1 +Initial residual = 0.001158 +Final residual = 0.000055 +Average conv. rate = 0.047475 + +* 2 2 1 0.115828E-02 0.549892E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4065 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.42 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.03K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4065 Max w this run +w_max level proc position run w_max level timestep +0.675E+00 24 331 127.5deg E 30.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4066 Model time: 1979-03-26 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044497 + +* 1 1 3 0.100000E+01 0.881037E-04 * +Number of iterations = 2 +Initial residual = 0.014172 +Final residual = 0.000042 +Average conv. rate = 0.054589 + +* 1 2 2 0.141722E-01 0.422330E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093776 +Final residual = 0.000014 +Average conv. rate = 0.053152 + +* 2 1 3 0.937762E-01 0.140812E-04 * +Number of iterations = 1 +Initial residual = 0.001155 +Final residual = 0.000054 +Average conv. rate = 0.046956 + +* 2 2 1 0.115519E-02 0.542437E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4066 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.38 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.06K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4066 Max w this run +w_max level proc position run w_max level timestep +0.581E+00 23 331 127.5deg E 30.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4067 Model time: 1979-03-26 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043975 + +* 1 1 3 0.100000E+01 0.850387E-04 * +Number of iterations = 2 +Initial residual = 0.014104 +Final residual = 0.000045 +Average conv. rate = 0.056199 + +* 1 2 2 0.141042E-01 0.445460E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094501 +Final residual = 0.000014 +Average conv. rate = 0.053397 + +* 2 1 3 0.945006E-01 0.143874E-04 * +Number of iterations = 1 +Initial residual = 0.001160 +Final residual = 0.000055 +Average conv. rate = 0.047281 + +* 2 2 1 0.115994E-02 0.548433E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4067 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.39 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -25.07K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4067 Max w this run +w_max level proc position run w_max level timestep +0.515E+00 23 331 127.5deg E 30.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4068 Model time: 1979-03-26 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044503 + +* 1 1 3 0.100000E+01 0.881361E-04 * +Number of iterations = 2 +Initial residual = 0.014090 +Final residual = 0.000044 +Average conv. rate = 0.055755 + +* 1 2 2 0.140904E-01 0.438023E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094342 +Final residual = 0.000014 +Average conv. rate = 0.053380 + +* 2 1 3 0.943418E-01 0.143499E-04 * +Number of iterations = 1 +Initial residual = 0.001160 +Final residual = 0.000055 +Average conv. rate = 0.047333 + +* 2 2 1 0.116012E-02 0.549119E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4068 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.44 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.82K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4068 Max w this run +w_max level proc position run w_max level timestep +0.628E+00 40 225 16.9deg E -0.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4069 Model time: 1979-03-26 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044281 + +* 1 1 3 0.100000E+01 0.868278E-04 * +Number of iterations = 2 +Initial residual = 0.014158 +Final residual = 0.000044 +Average conv. rate = 0.056011 + +* 1 2 2 0.141584E-01 0.444189E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094276 +Final residual = 0.000016 +Average conv. rate = 0.055372 + +* 2 1 3 0.942757E-01 0.160056E-04 * +Number of iterations = 1 +Initial residual = 0.001131 +Final residual = 0.000055 +Average conv. rate = 0.048964 + +* 2 2 1 0.113057E-02 0.553570E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4069 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.57 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.79K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4069 Max w this run +w_max level proc position run w_max level timestep +0.596E+00 41 225 16.9deg E -0.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4070 Model time: 1979-03-26 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043553 + +* 1 1 3 0.100000E+01 0.826119E-04 * +Number of iterations = 2 +Initial residual = 0.014111 +Final residual = 0.000044 +Average conv. rate = 0.056001 + +* 1 2 2 0.141111E-01 0.442531E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094678 +Final residual = 0.000018 +Average conv. rate = 0.057759 + +* 2 1 3 0.946783E-01 0.182435E-04 * +Number of iterations = 1 +Initial residual = 0.001122 +Final residual = 0.000055 +Average conv. rate = 0.049068 + +* 2 2 1 0.112205E-02 0.550570E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4070 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.76 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.68K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4070 Max w this run +w_max level proc position run w_max level timestep +0.559E+00 42 225 16.9deg E -0.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4071 Model time: 1979-03-26 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044457 + +* 1 1 3 0.100000E+01 0.878650E-04 * +Number of iterations = 2 +Initial residual = 0.014144 +Final residual = 0.000045 +Average conv. rate = 0.056094 + +* 1 2 2 0.141444E-01 0.445066E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094312 +Final residual = 0.000016 +Average conv. rate = 0.055787 + +* 2 1 3 0.943118E-01 0.163740E-04 * +Number of iterations = 1 +Initial residual = 0.001119 +Final residual = 0.000055 +Average conv. rate = 0.048969 + +* 2 2 1 0.111861E-02 0.547766E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4071 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.06 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.44K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4071 Max w this run +w_max level proc position run w_max level timestep +0.513E+00 36 176 172.5deg W -25.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4072 Model time: 1979-03-26 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043718 + +* 1 1 3 0.100000E+01 0.835587E-04 * +Number of iterations = 2 +Initial residual = 0.014194 +Final residual = 0.000045 +Average conv. rate = 0.056217 + +* 1 2 2 0.141937E-01 0.448570E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094678 +Final residual = 0.000016 +Average conv. rate = 0.054828 + +* 2 1 3 0.946778E-01 0.156046E-04 * +Number of iterations = 1 +Initial residual = 0.001133 +Final residual = 0.000055 +Average conv. rate = 0.048418 + +* 2 2 1 0.113312E-02 0.548630E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4072 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.47 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -24.20K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4072 Max w this run +w_max level proc position run w_max level timestep +0.472E+00 37 176 172.5deg W -25.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4073 Model time: 1979-03-26 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044304 + +* 1 1 3 0.100000E+01 0.869594E-04 * +Number of iterations = 2 +Initial residual = 0.014273 +Final residual = 0.000045 +Average conv. rate = 0.056289 + +* 1 2 2 0.142730E-01 0.452235E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095617 +Final residual = 0.000019 +Average conv. rate = 0.058131 + +* 2 1 3 0.956167E-01 0.187822E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000055 +Average conv. rate = 0.048460 + +* 2 2 1 0.113724E-02 0.551103E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4073 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.07 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.69K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4073 Max w this run +w_max level proc position run w_max level timestep +0.496E+00 22 331 131.2deg E 31.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4074 Model time: 1979-03-26 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043789 + +* 1 1 3 0.100000E+01 0.839617E-04 * +Number of iterations = 2 +Initial residual = 0.014163 +Final residual = 0.000045 +Average conv. rate = 0.056478 + +* 1 2 2 0.141629E-01 0.451754E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097374 +Final residual = 0.000018 +Average conv. rate = 0.057210 + +* 2 1 3 0.973737E-01 0.182329E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000054 +Average conv. rate = 0.047344 + +* 2 2 1 0.114938E-02 0.544161E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4074 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.72 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -23.17K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4074 Max w this run +w_max level proc position run w_max level timestep +0.537E+00 21 331 131.2deg E 31.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4075 Model time: 1979-03-26 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044369 + +* 1 1 3 0.100000E+01 0.873480E-04 * +Number of iterations = 2 +Initial residual = 0.014066 +Final residual = 0.000046 +Average conv. rate = 0.057026 + +* 1 2 2 0.140659E-01 0.457422E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097440 +Final residual = 0.000018 +Average conv. rate = 0.056613 + +* 2 1 3 0.974400E-01 0.176800E-04 * +Number of iterations = 1 +Initial residual = 0.001165 +Final residual = 0.000055 +Average conv. rate = 0.047076 + +* 2 2 1 0.116546E-02 0.548659E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4075 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.59 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -22.39K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4075 Max w this run +w_max level proc position run w_max level timestep +0.612E+00 22 331 131.2deg E 31.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4076 Model time: 1979-03-26 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044240 + +* 1 1 3 0.100000E+01 0.865855E-04 * +Number of iterations = 2 +Initial residual = 0.013961 +Final residual = 0.000046 +Average conv. rate = 0.057157 + +* 1 2 2 0.139610E-01 0.456096E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097299 +Final residual = 0.000018 +Average conv. rate = 0.056818 + +* 2 1 3 0.972993E-01 0.178475E-04 * +Number of iterations = 1 +Initial residual = 0.001172 +Final residual = 0.000055 +Average conv. rate = 0.046653 + +* 2 2 1 0.117226E-02 0.546888E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4076 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.46 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -21.58K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4076 Max w this run +w_max level proc position run w_max level timestep +0.702E+00 36 226 22.5deg E -5.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4077 Model time: 1979-03-26 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043632 + +* 1 1 3 0.100000E+01 0.830662E-04 * +Number of iterations = 2 +Initial residual = 0.014029 +Final residual = 0.000046 +Average conv. rate = 0.057002 + +* 1 2 2 0.140288E-01 0.455824E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102713 +Final residual = 0.000017 +Average conv. rate = 0.055251 + +* 2 1 3 0.102713E+00 0.173242E-04 * +Number of iterations = 1 +Initial residual = 0.001227 +Final residual = 0.000055 +Average conv. rate = 0.044926 + +* 2 2 1 0.122680E-02 0.551154E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4077 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.40 47 172.5deg E -78.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -19.62K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4077 Max w this run +w_max level proc position run w_max level timestep +0.744E+00 23 331 131.2deg E 31.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4078 Model time: 1979-03-26 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044198 + +* 1 1 3 0.100000E+01 0.863382E-04 * +Number of iterations = 2 +Initial residual = 0.014018 +Final residual = 0.000045 +Average conv. rate = 0.056772 + +* 1 2 2 0.140176E-01 0.451795E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101287 +Final residual = 0.000018 +Average conv. rate = 0.055889 + +* 2 1 3 0.101287E+00 0.176822E-04 * +Number of iterations = 1 +Initial residual = 0.001243 +Final residual = 0.000055 +Average conv. rate = 0.043925 + +* 2 2 1 0.124279E-02 0.545897E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4078 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.75 17 165.0deg W -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.22K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4078 Max w this run +w_max level proc position run w_max level timestep +0.709E+00 24 331 131.2deg E 31.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4079 Model time: 1979-03-26 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044299 + +* 1 1 3 0.100000E+01 0.869303E-04 * +Number of iterations = 2 +Initial residual = 0.014043 +Final residual = 0.000046 +Average conv. rate = 0.057110 + +* 1 2 2 0.140434E-01 0.458032E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.103527 +Final residual = 0.000018 +Average conv. rate = 0.055841 + +* 2 1 3 0.103527E+00 0.180265E-04 * +Number of iterations = 1 +Initial residual = 0.001270 +Final residual = 0.000054 +Average conv. rate = 0.042820 + +* 2 2 1 0.126970E-02 0.543679E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4079 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.06 17 165.0deg W -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.40K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4079 Max w this run +w_max level proc position run w_max level timestep +0.609E+00 22 331 133.1deg E 31.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4080 Model time: 1979-03-27 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043333 + +* 1 1 3 0.100000E+01 0.813670E-04 * +Number of iterations = 2 +Initial residual = 0.014000 +Final residual = 0.000046 +Average conv. rate = 0.057041 + +* 1 2 2 0.140001E-01 0.455522E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101012 +Final residual = 0.000018 +Average conv. rate = 0.056154 + +* 2 1 3 0.101012E+00 0.178856E-04 * +Number of iterations = 1 +Initial residual = 0.001275 +Final residual = 0.000053 +Average conv. rate = 0.041911 + +* 2 2 1 0.127472E-02 0.534245E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51419E+19 +Tot energy 0.13062E+25 +tot dry energy 0.13063E+25 +gr( rho cal) 0.38128E+24 +KE( rho cal) 0.82026E+21 +KEu(rho cal) 0.61561E+21 +KEv(rho cal) 0.20465E+21 +KEw(rho cal) 0.13288E+16 +cvT( rho cal) 0.92425E+24 +lq ( rho cal) 0.30863E+23 +lqcf( rho cal) 0.66897E+20 +lqcl( rho cal) 0.44225E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12383E+17 KG +Initial moisture = 0.12335E+17 KG +change in moisture = 0.47628E+14 KG +Moisture added E-P in period = 0.45798E+14 KG +Error in moisture = 0.18304E+13 KG +Error as % of change = 0.38431E+01 +q ( rho cal) 0.12340E+17 +qcf( rho cal) 0.26748E+14 +qcl( rho cal) 0.15600E+14 +FINAL TOTAL ENERGY = 0.13062E+25 J/ +INITIAL TOTAL ENERGY = 0.13062E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.67489E+20 J/ +FLUXES INTO ATM OVER PERIOD = 0.67509E+20 J/ +ERROR IN ENERGY BUDGET = 0.19893E+17 J/ +TEMP CORRECTION OVER A DAY = 0.54016E-05 K +TEMPERATURE CORRECTION RATE = 0.62519E-10 K/S +FLUX CORRECTION (ATM) = 0.45137E-03 W/M2 + +Minimum theta level 1 for timestep 4080 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.44 17 165.0deg W -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.56K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4080 Max w this run +w_max level proc position run w_max level timestep +0.695E+00 22 331 133.1deg E 31.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -5964.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -5964.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -5964.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -5964.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -5964.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -5964.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 4081 Model time: 1979-03-27 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043052 + +* 1 1 3 0.100000E+01 0.797984E-04 * +Number of iterations = 2 +Initial residual = 0.014099 +Final residual = 0.000046 +Average conv. rate = 0.056959 + +* 1 2 2 0.140987E-01 0.457415E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101212 +Final residual = 0.000018 +Average conv. rate = 0.055871 + +* 2 1 3 0.101212E+00 0.176517E-04 * +Number of iterations = 1 +Initial residual = 0.001251 +Final residual = 0.000053 +Average conv. rate = 0.042286 + +* 2 2 1 0.125101E-02 0.529005E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4081 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.73 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.83K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4081 Max w this run +w_max level proc position run w_max level timestep +0.734E+00 22 331 133.1deg E 31.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4082 Model time: 1979-03-27 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043187 + +* 1 1 3 0.100000E+01 0.805510E-04 * +Number of iterations = 2 +Initial residual = 0.014059 +Final residual = 0.000045 +Average conv. rate = 0.056813 + +* 1 2 2 0.140588E-01 0.453783E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102113 +Final residual = 0.000018 +Average conv. rate = 0.056080 + +* 2 1 3 0.102113E+00 0.180096E-04 * +Number of iterations = 1 +Initial residual = 0.001276 +Final residual = 0.000053 +Average conv. rate = 0.041771 + +* 2 2 1 0.127625E-02 0.533098E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4082 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.69 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.60K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4082 Max w this run +w_max level proc position run w_max level timestep +0.681E+00 23 331 133.1deg E 31.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4083 Model time: 1979-03-27 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043290 + +* 1 1 3 0.100000E+01 0.811278E-04 * +Number of iterations = 2 +Initial residual = 0.014082 +Final residual = 0.000046 +Average conv. rate = 0.057031 + +* 1 2 2 0.140816E-01 0.458017E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.102498 +Final residual = 0.000016 +Average conv. rate = 0.053462 + +* 2 1 3 0.102498E+00 0.156618E-04 * +Number of iterations = 1 +Initial residual = 0.001291 +Final residual = 0.000053 +Average conv. rate = 0.041072 + +* 2 2 1 0.129105E-02 0.530260E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4083 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.64 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.33K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4083 Max w this run +w_max level proc position run w_max level timestep +0.622E+00 23 331 133.1deg E 31.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4084 Model time: 1979-03-27 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043224 + +* 1 1 3 0.100000E+01 0.807551E-04 * +Number of iterations = 2 +Initial residual = 0.014032 +Final residual = 0.000045 +Average conv. rate = 0.056419 + +* 1 2 2 0.140323E-01 0.446662E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100709 +Final residual = 0.000016 +Average conv. rate = 0.054578 + +* 2 1 3 0.100709E+00 0.163725E-04 * +Number of iterations = 1 +Initial residual = 0.001273 +Final residual = 0.000052 +Average conv. rate = 0.041057 + +* 2 2 1 0.127339E-02 0.522817E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4084 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.62 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.07K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4084 Max w this run +w_max level proc position run w_max level timestep +0.553E+00 21 332 135.0deg E 31.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4085 Model time: 1979-03-27 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043116 + +* 1 1 3 0.100000E+01 0.801500E-04 * +Number of iterations = 2 +Initial residual = 0.014028 +Final residual = 0.000044 +Average conv. rate = 0.056277 + +* 1 2 2 0.140281E-01 0.444285E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100907 +Final residual = 0.000017 +Average conv. rate = 0.055310 + +* 2 1 3 0.100907E+00 0.170742E-04 * +Number of iterations = 1 +Initial residual = 0.001231 +Final residual = 0.000053 +Average conv. rate = 0.042780 + +* 2 2 1 0.123092E-02 0.526583E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4085 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.62 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.91K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4085 Max w this run +w_max level proc position run w_max level timestep +0.611E+00 20 332 135.0deg E 31.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4086 Model time: 1979-03-27 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043399 + +* 1 1 3 0.100000E+01 0.817421E-04 * +Number of iterations = 2 +Initial residual = 0.013970 +Final residual = 0.000045 +Average conv. rate = 0.056652 + +* 1 2 2 0.139703E-01 0.448365E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098477 +Final residual = 0.000016 +Average conv. rate = 0.054117 + +* 2 1 3 0.984772E-01 0.156078E-04 * +Number of iterations = 1 +Initial residual = 0.001207 +Final residual = 0.000052 +Average conv. rate = 0.043011 + +* 2 2 1 0.120651E-02 0.518934E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4086 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.65 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.80K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4086 Max w this run +w_max level proc position run w_max level timestep +0.649E+00 20 332 135.0deg E 31.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4087 Model time: 1979-03-27 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042885 + +* 1 1 3 0.100000E+01 0.788701E-04 * +Number of iterations = 2 +Initial residual = 0.014113 +Final residual = 0.000045 +Average conv. rate = 0.056231 + +* 1 2 2 0.141130E-01 0.446246E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099875 +Final residual = 0.000016 +Average conv. rate = 0.053934 + +* 2 1 3 0.998753E-01 0.156696E-04 * +Number of iterations = 1 +Initial residual = 0.001208 +Final residual = 0.000052 +Average conv. rate = 0.042895 + +* 2 2 1 0.120827E-02 0.518291E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4087 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.68 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.67K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4087 Max w this run +w_max level proc position run w_max level timestep +0.641E+00 21 332 135.0deg E 31.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4088 Model time: 1979-03-27 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042921 + +* 1 1 3 0.100000E+01 0.790688E-04 * +Number of iterations = 2 +Initial residual = 0.014152 +Final residual = 0.000044 +Average conv. rate = 0.055569 + +* 1 2 2 0.141516E-01 0.436995E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098899 +Final residual = 0.000017 +Average conv. rate = 0.055186 + +* 2 1 3 0.988993E-01 0.166215E-04 * +Number of iterations = 1 +Initial residual = 0.001196 +Final residual = 0.000052 +Average conv. rate = 0.043228 + +* 2 2 1 0.119632E-02 0.517139E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4088 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.72 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.51K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4088 Max w this run +w_max level proc position run w_max level timestep +0.561E+00 21 332 135.0deg E 31.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4089 Model time: 1979-03-27 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043496 + +* 1 1 3 0.100000E+01 0.822925E-04 * +Number of iterations = 2 +Initial residual = 0.014172 +Final residual = 0.000044 +Average conv. rate = 0.055986 + +* 1 2 2 0.141716E-01 0.444199E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101023 +Final residual = 0.000017 +Average conv. rate = 0.054666 + +* 2 1 3 0.101023E+00 0.165034E-04 * +Number of iterations = 1 +Initial residual = 0.001251 +Final residual = 0.000052 +Average conv. rate = 0.041330 + +* 2 2 1 0.125118E-02 0.517114E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4089 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.76 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.35K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4089 Max w this run +w_max level proc position run w_max level timestep +0.518E+00 30 343 95.6deg W 33.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4090 Model time: 1979-03-27 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042531 + +* 1 1 3 0.100000E+01 0.769320E-04 * +Number of iterations = 2 +Initial residual = 0.014104 +Final residual = 0.000044 +Average conv. rate = 0.055567 + +* 1 2 2 0.141042E-01 0.435495E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097688 +Final residual = 0.000012 +Average conv. rate = 0.049569 + +* 2 1 3 0.976881E-01 0.118982E-04 * +Number of iterations = 1 +Initial residual = 0.001246 +Final residual = 0.000051 +Average conv. rate = 0.040807 + +* 2 2 1 0.124585E-02 0.508396E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4090 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.82 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.17K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4090 Max w this run +w_max level proc position run w_max level timestep +0.592E+00 31 343 95.6deg W 33.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4091 Model time: 1979-03-27 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042735 + +* 1 1 3 0.100000E+01 0.780478E-04 * +Number of iterations = 2 +Initial residual = 0.014180 +Final residual = 0.000043 +Average conv. rate = 0.055085 + +* 1 2 2 0.141800E-01 0.430278E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098454 +Final residual = 0.000016 +Average conv. rate = 0.054118 + +* 2 1 3 0.984541E-01 0.156046E-04 * +Number of iterations = 1 +Initial residual = 0.001282 +Final residual = 0.000051 +Average conv. rate = 0.039657 + +* 2 2 1 0.128233E-02 0.508540E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4091 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.89 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.04K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4091 Max w this run +w_max level proc position run w_max level timestep +0.593E+00 30 343 95.6deg W 33.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4092 Model time: 1979-03-27 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042950 + +* 1 1 3 0.100000E+01 0.792309E-04 * +Number of iterations = 2 +Initial residual = 0.014225 +Final residual = 0.000042 +Average conv. rate = 0.054242 + +* 1 2 2 0.142248E-01 0.418527E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096771 +Final residual = 0.000015 +Average conv. rate = 0.053585 + +* 2 1 3 0.967705E-01 0.148892E-04 * +Number of iterations = 1 +Initial residual = 0.001292 +Final residual = 0.000050 +Average conv. rate = 0.038800 + +* 2 2 1 0.129249E-02 0.501481E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4092 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.96 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.89K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4092 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 29 343 95.6deg W 33.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4093 Model time: 1979-03-27 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042991 + +* 1 1 3 0.100000E+01 0.794545E-04 * +Number of iterations = 2 +Initial residual = 0.014323 +Final residual = 0.000042 +Average conv. rate = 0.054236 + +* 1 2 2 0.143233E-01 0.421332E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096476 +Final residual = 0.000015 +Average conv. rate = 0.053792 + +* 2 1 3 0.964760E-01 0.150165E-04 * +Number of iterations = 1 +Initial residual = 0.001275 +Final residual = 0.000049 +Average conv. rate = 0.038552 + +* 2 2 1 0.127452E-02 0.491349E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4093 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.04 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.63K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4093 Max w this run +w_max level proc position run w_max level timestep +0.480E+00 27 176 170.6deg W -26.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4094 Model time: 1979-03-27 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000075 +Average conv. rate = 0.042254 + +* 1 1 3 0.100000E+01 0.754400E-04 * +Number of iterations = 2 +Initial residual = 0.014296 +Final residual = 0.000043 +Average conv. rate = 0.055002 + +* 1 2 2 0.142962E-01 0.432489E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095853 +Final residual = 0.000016 +Average conv. rate = 0.054612 + +* 2 1 3 0.958530E-01 0.156127E-04 * +Number of iterations = 1 +Initial residual = 0.001270 +Final residual = 0.000049 +Average conv. rate = 0.038523 + +* 2 2 1 0.127031E-02 0.489356E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4094 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.10 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.33K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4094 Max w this run +w_max level proc position run w_max level timestep +0.589E+00 29 176 170.6deg W -26.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4095 Model time: 1979-03-27 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000076 +Average conv. rate = 0.042303 + +* 1 1 3 0.100000E+01 0.757037E-04 * +Number of iterations = 2 +Initial residual = 0.014251 +Final residual = 0.000044 +Average conv. rate = 0.055753 + +* 1 2 2 0.142513E-01 0.442989E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.097635 +Final residual = 0.000099 +Average conv. rate = 0.031905 + +* 2 1 2 0.976354E-01 0.993887E-04 * +Number of iterations = 1 +Initial residual = 0.001246 +Final residual = 0.000050 +Average conv. rate = 0.040431 + +* 2 2 1 0.124603E-02 0.503789E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4095 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.17 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.97K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4095 Max w this run +w_max level proc position run w_max level timestep +0.633E+00 30 176 170.6deg W -26.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4096 Model time: 1979-03-27 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000075 +Average conv. rate = 0.042179 + +* 1 1 3 0.100000E+01 0.750387E-04 * +Number of iterations = 2 +Initial residual = 0.014119 +Final residual = 0.000044 +Average conv. rate = 0.055627 + +* 1 2 2 0.141189E-01 0.436897E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.096797 +Final residual = 0.000098 +Average conv. rate = 0.031881 + +* 2 1 2 0.967972E-01 0.983856E-04 * +Number of iterations = 1 +Initial residual = 0.001244 +Final residual = 0.000050 +Average conv. rate = 0.040472 + +* 2 2 1 0.124423E-02 0.503567E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4096 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.24 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.65K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4096 Max w this run +w_max level proc position run w_max level timestep +0.662E+00 31 176 170.6deg W -26.9deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4097 Model time: 1979-03-27 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042626 + +* 1 1 3 0.100000E+01 0.774493E-04 * +Number of iterations = 2 +Initial residual = 0.014083 +Final residual = 0.000043 +Average conv. rate = 0.055403 + +* 1 2 2 0.140828E-01 0.432269E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098734 +Final residual = 0.000014 +Average conv. rate = 0.052192 + +* 2 1 3 0.987342E-01 0.140375E-04 * +Number of iterations = 1 +Initial residual = 0.001275 +Final residual = 0.000049 +Average conv. rate = 0.038073 + +* 2 2 1 0.127506E-02 0.485454E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4097 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.29 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.49K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4097 Max w this run +w_max level proc position run w_max level timestep +0.548E+00 25 196 48.7deg E -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4098 Model time: 1979-03-27 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000075 +Average conv. rate = 0.042221 + +* 1 1 3 0.100000E+01 0.752618E-04 * +Number of iterations = 2 +Initial residual = 0.014050 +Final residual = 0.000043 +Average conv. rate = 0.055008 + +* 1 2 2 0.140497E-01 0.425121E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.096727 +Final residual = 0.000099 +Average conv. rate = 0.032032 + +* 2 1 2 0.967271E-01 0.992490E-04 * +Number of iterations = 1 +Initial residual = 0.001255 +Final residual = 0.000049 +Average conv. rate = 0.039414 + +* 2 2 1 0.125498E-02 0.494640E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4098 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.33 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.31K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4098 Max w this run +w_max level proc position run w_max level timestep +0.551E+00 26 196 48.7deg E -18.1deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4099 Model time: 1979-03-27 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042686 + +* 1 1 3 0.100000E+01 0.777795E-04 * +Number of iterations = 2 +Initial residual = 0.014090 +Final residual = 0.000041 +Average conv. rate = 0.054153 + +* 1 2 2 0.140896E-01 0.413176E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.097083 +Final residual = 0.000099 +Average conv. rate = 0.031997 + +* 2 1 2 0.970831E-01 0.993920E-04 * +Number of iterations = 1 +Initial residual = 0.001290 +Final residual = 0.000051 +Average conv. rate = 0.039507 + +* 2 2 1 0.128999E-02 0.509635E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4099 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.36 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.91K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4099 Max w this run +w_max level proc position run w_max level timestep +0.576E+00 26 196 48.7deg E -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4100 Model time: 1979-03-27 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042647 + +* 1 1 3 0.100000E+01 0.775642E-04 * +Number of iterations = 2 +Initial residual = 0.014101 +Final residual = 0.000042 +Average conv. rate = 0.054385 + +* 1 2 2 0.141015E-01 0.417078E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097268 +Final residual = 0.000015 +Average conv. rate = 0.053501 + +* 2 1 3 0.972676E-01 0.148951E-04 * +Number of iterations = 1 +Initial residual = 0.001268 +Final residual = 0.000049 +Average conv. rate = 0.038366 + +* 2 2 1 0.126847E-02 0.486664E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4100 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.37 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.55K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4100 Max w this run +w_max level proc position run w_max level timestep +0.583E+00 27 196 48.7deg E -18.1deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4101 Model time: 1979-03-27 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043400 + +* 1 1 3 0.100000E+01 0.817446E-04 * +Number of iterations = 2 +Initial residual = 0.014159 +Final residual = 0.000043 +Average conv. rate = 0.054848 + +* 1 2 2 0.141592E-01 0.425953E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096844 +Final residual = 0.000016 +Average conv. rate = 0.054294 + +* 2 1 3 0.968435E-01 0.155001E-04 * +Number of iterations = 1 +Initial residual = 0.001312 +Final residual = 0.000049 +Average conv. rate = 0.037427 + +* 2 2 1 0.131224E-02 0.491126E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4101 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.37 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.27K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4101 Max w this run +w_max level proc position run w_max level timestep +0.553E+00 27 196 48.7deg E -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4102 Model time: 1979-03-27 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042522 + +* 1 1 3 0.100000E+01 0.768847E-04 * +Number of iterations = 2 +Initial residual = 0.014202 +Final residual = 0.000042 +Average conv. rate = 0.054196 + +* 1 2 2 0.142018E-01 0.417136E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096628 +Final residual = 0.000015 +Average conv. rate = 0.053846 + +* 2 1 3 0.966282E-01 0.150854E-04 * +Number of iterations = 1 +Initial residual = 0.001302 +Final residual = 0.000049 +Average conv. rate = 0.037904 + +* 2 2 1 0.130155E-02 0.493338E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4102 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.37 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.09K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4102 Max w this run +w_max level proc position run w_max level timestep +0.489E+00 27 196 48.7deg E -18.1deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4103 Model time: 1979-03-27 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042809 + +* 1 1 3 0.100000E+01 0.784517E-04 * +Number of iterations = 2 +Initial residual = 0.014305 +Final residual = 0.000042 +Average conv. rate = 0.054066 + +* 1 2 2 0.143048E-01 0.418147E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096537 +Final residual = 0.000015 +Average conv. rate = 0.054153 + +* 2 1 3 0.965368E-01 0.153304E-04 * +Number of iterations = 1 +Initial residual = 0.001287 +Final residual = 0.000050 +Average conv. rate = 0.038521 + +* 2 2 1 0.128656E-02 0.495595E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4103 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.38 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.93K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4103 Max w this run +w_max level proc position run w_max level timestep +0.454E+00 27 196 48.7deg E -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4104 Model time: 1979-03-27 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043267 + +* 1 1 3 0.100000E+01 0.809967E-04 * +Number of iterations = 2 +Initial residual = 0.014224 +Final residual = 0.000042 +Average conv. rate = 0.054603 + +* 1 2 2 0.142245E-01 0.424093E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096757 +Final residual = 0.000015 +Average conv. rate = 0.053215 + +* 2 1 3 0.967570E-01 0.145809E-04 * +Number of iterations = 1 +Initial residual = 0.001294 +Final residual = 0.000049 +Average conv. rate = 0.037849 + +* 2 2 1 0.129369E-02 0.489654E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4104 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.40 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.88K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4104 Max w this run +w_max level proc position run w_max level timestep +0.403E+00 27 196 48.7deg E -18.1deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4105 Model time: 1979-03-27 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043709 + +* 1 1 3 0.100000E+01 0.835052E-04 * +Number of iterations = 2 +Initial residual = 0.014205 +Final residual = 0.000042 +Average conv. rate = 0.054255 + +* 1 2 2 0.142052E-01 0.418139E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097551 +Final residual = 0.000015 +Average conv. rate = 0.053988 + +* 2 1 3 0.975514E-01 0.153510E-04 * +Number of iterations = 1 +Initial residual = 0.001304 +Final residual = 0.000049 +Average conv. rate = 0.037772 + +* 2 2 1 0.130445E-02 0.492720E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4105 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.44 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.98K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4105 Max w this run +w_max level proc position run w_max level timestep +0.434E+00 33 180 131.3deg W -28.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4106 Model time: 1979-03-27 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042763 + +* 1 1 3 0.100000E+01 0.781998E-04 * +Number of iterations = 2 +Initial residual = 0.014165 +Final residual = 0.000040 +Average conv. rate = 0.052986 + +* 1 2 2 0.141646E-01 0.397667E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096069 +Final residual = 0.000016 +Average conv. rate = 0.054531 + +* 2 1 3 0.960688E-01 0.155782E-04 * +Number of iterations = 1 +Initial residual = 0.001307 +Final residual = 0.000049 +Average conv. rate = 0.037677 + +* 2 2 1 0.130747E-02 0.492608E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4106 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.51 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.11K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4106 Max w this run +w_max level proc position run w_max level timestep +0.457E+00 32 180 129.4deg W -30.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4107 Model time: 1979-03-27 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042947 + +* 1 1 3 0.100000E+01 0.792138E-04 * +Number of iterations = 2 +Initial residual = 0.014275 +Final residual = 0.000039 +Average conv. rate = 0.052176 + +* 1 2 2 0.142755E-01 0.388619E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097586 +Final residual = 0.000017 +Average conv. rate = 0.055405 + +* 2 1 3 0.975862E-01 0.165975E-04 * +Number of iterations = 1 +Initial residual = 0.001331 +Final residual = 0.000050 +Average conv. rate = 0.037536 + +* 2 2 1 0.133089E-02 0.499568E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4107 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.60 17 163.1deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.24K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4107 Max w this run +w_max level proc position run w_max level timestep +0.484E+00 32 180 129.4deg W -30.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4108 Model time: 1979-03-27 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043617 + +* 1 1 3 0.100000E+01 0.829766E-04 * +Number of iterations = 2 +Initial residual = 0.014238 +Final residual = 0.000039 +Average conv. rate = 0.052247 + +* 1 2 2 0.142384E-01 0.388676E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096667 +Final residual = 0.000017 +Average conv. rate = 0.056136 + +* 2 1 3 0.966672E-01 0.171002E-04 * +Number of iterations = 1 +Initial residual = 0.001369 +Final residual = 0.000050 +Average conv. rate = 0.036238 + +* 2 2 1 0.136891E-02 0.496067E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4108 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.67 17 161.3deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.80K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4108 Max w this run +w_max level proc position run w_max level timestep +0.499E+00 32 180 129.4deg W -30.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4109 Model time: 1979-03-27 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043451 + +* 1 1 3 0.100000E+01 0.820344E-04 * +Number of iterations = 2 +Initial residual = 0.014246 +Final residual = 0.000042 +Average conv. rate = 0.054546 + +* 1 2 2 0.142463E-01 0.423869E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096767 +Final residual = 0.000015 +Average conv. rate = 0.054067 + +* 2 1 3 0.967667E-01 0.152939E-04 * +Number of iterations = 1 +Initial residual = 0.001403 +Final residual = 0.000050 +Average conv. rate = 0.035627 + +* 2 2 1 0.140314E-02 0.499894E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4109 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.71 17 161.3deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.01K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4109 Max w this run +w_max level proc position run w_max level timestep +0.505E+00 32 180 129.4deg W -30.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4110 Model time: 1979-03-27 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043530 + +* 1 1 3 0.100000E+01 0.824860E-04 * +Number of iterations = 2 +Initial residual = 0.014222 +Final residual = 0.000043 +Average conv. rate = 0.055067 + +* 1 2 2 0.142220E-01 0.431262E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095420 +Final residual = 0.000016 +Average conv. rate = 0.054915 + +* 2 1 3 0.954200E-01 0.158017E-04 * +Number of iterations = 1 +Initial residual = 0.001275 +Final residual = 0.000049 +Average conv. rate = 0.038792 + +* 2 2 1 0.127511E-02 0.494643E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4110 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.77 17 161.3deg W -83.8deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.26K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4110 Max w this run +w_max level proc position run w_max level timestep +0.536E+00 32 180 129.4deg W -30.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4111 Model time: 1979-03-27 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044337 + +* 1 1 3 0.100000E+01 0.871545E-04 * +Number of iterations = 2 +Initial residual = 0.014381 +Final residual = 0.000039 +Average conv. rate = 0.052356 + +* 1 2 2 0.143812E-01 0.394215E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096786 +Final residual = 0.000016 +Average conv. rate = 0.055402 + +* 2 1 3 0.967857E-01 0.164583E-04 * +Number of iterations = 1 +Initial residual = 0.001328 +Final residual = 0.000050 +Average conv. rate = 0.037662 + +* 2 2 1 0.132835E-02 0.500288E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4111 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.84 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.89K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4111 Max w this run +w_max level proc position run w_max level timestep +0.601E+00 32 180 129.4deg W -30.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4112 Model time: 1979-03-27 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044475 + +* 1 1 3 0.100000E+01 0.879753E-04 * +Number of iterations = 2 +Initial residual = 0.014361 +Final residual = 0.000039 +Average conv. rate = 0.052189 + +* 1 2 2 0.143614E-01 0.391165E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096329 +Final residual = 0.000018 +Average conv. rate = 0.056833 + +* 2 1 3 0.963293E-01 0.176835E-04 * +Number of iterations = 1 +Initial residual = 0.001308 +Final residual = 0.000050 +Average conv. rate = 0.038185 + +* 2 2 1 0.130772E-02 0.499349E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4112 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.81 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.84K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4112 Max w this run +w_max level proc position run w_max level timestep +0.586E+00 32 180 129.4deg W -30.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4113 Model time: 1979-03-27 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043838 + +* 1 1 3 0.100000E+01 0.842437E-04 * +Number of iterations = 2 +Initial residual = 0.014395 +Final residual = 0.000039 +Average conv. rate = 0.052369 + +* 1 2 2 0.143947E-01 0.394771E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097188 +Final residual = 0.000017 +Average conv. rate = 0.056314 + +* 2 1 3 0.971880E-01 0.173566E-04 * +Number of iterations = 1 +Initial residual = 0.001277 +Final residual = 0.000050 +Average conv. rate = 0.039289 + +* 2 2 1 0.127738E-02 0.501865E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4113 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.78 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.75K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4113 Max w this run +w_max level proc position run w_max level timestep +0.591E+00 32 180 129.4deg W -30.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4114 Model time: 1979-03-27 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043125 + +* 1 1 3 0.100000E+01 0.802013E-04 * +Number of iterations = 2 +Initial residual = 0.014383 +Final residual = 0.000040 +Average conv. rate = 0.052414 + +* 1 2 2 0.143826E-01 0.395116E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097321 +Final residual = 0.000016 +Average conv. rate = 0.055001 + +* 2 1 3 0.973208E-01 0.161930E-04 * +Number of iterations = 1 +Initial residual = 0.001268 +Final residual = 0.000049 +Average conv. rate = 0.038370 + +* 2 2 1 0.126809E-02 0.486570E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4114 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.76 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.65K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4114 Max w this run +w_max level proc position run w_max level timestep +0.622E+00 32 180 129.4deg W -30.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4115 Model time: 1979-03-27 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043072 + +* 1 1 3 0.100000E+01 0.799067E-04 * +Number of iterations = 2 +Initial residual = 0.014378 +Final residual = 0.000041 +Average conv. rate = 0.053721 + +* 1 2 2 0.143778E-01 0.414939E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097838 +Final residual = 0.000013 +Average conv. rate = 0.051420 + +* 2 1 3 0.978382E-01 0.133017E-04 * +Number of iterations = 1 +Initial residual = 0.001237 +Final residual = 0.000048 +Average conv. rate = 0.038992 + +* 2 2 1 0.123739E-02 0.482481E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4115 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.72 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.53K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4115 Max w this run +w_max level proc position run w_max level timestep +0.586E+00 31 180 129.4deg W -30.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4116 Model time: 1979-03-27 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043205 + +* 1 1 3 0.100000E+01 0.806482E-04 * +Number of iterations = 2 +Initial residual = 0.014366 +Final residual = 0.000042 +Average conv. rate = 0.053752 + +* 1 2 2 0.143662E-01 0.415081E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098587 +Final residual = 0.000016 +Average conv. rate = 0.054106 + +* 2 1 3 0.985873E-01 0.156155E-04 * +Number of iterations = 1 +Initial residual = 0.001282 +Final residual = 0.000048 +Average conv. rate = 0.037344 + +* 2 2 1 0.128225E-02 0.478848E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4116 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.69 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.41K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4116 Max w this run +w_max level proc position run w_max level timestep +0.559E+00 40 258 22.5deg E 6.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4117 Model time: 1979-03-27 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043461 + +* 1 1 3 0.100000E+01 0.820900E-04 * +Number of iterations = 2 +Initial residual = 0.014412 +Final residual = 0.000041 +Average conv. rate = 0.053384 + +* 1 2 2 0.144116E-01 0.410712E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098826 +Final residual = 0.000016 +Average conv. rate = 0.054417 + +* 2 1 3 0.988263E-01 0.159247E-04 * +Number of iterations = 1 +Initial residual = 0.001284 +Final residual = 0.000049 +Average conv. rate = 0.037994 + +* 2 2 1 0.128382E-02 0.487781E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4117 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.66 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.27K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4117 Max w this run +w_max level proc position run w_max level timestep +0.562E+00 31 180 129.4deg W -30.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4118 Model time: 1979-03-27 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043728 + +* 1 1 3 0.100000E+01 0.836162E-04 * +Number of iterations = 2 +Initial residual = 0.014328 +Final residual = 0.000041 +Average conv. rate = 0.053518 + +* 1 2 2 0.143277E-01 0.410370E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098035 +Final residual = 0.000016 +Average conv. rate = 0.054985 + +* 2 1 3 0.980353E-01 0.162972E-04 * +Number of iterations = 1 +Initial residual = 0.001252 +Final residual = 0.000048 +Average conv. rate = 0.038651 + +* 2 2 1 0.125163E-02 0.483764E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4118 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.64 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.13K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4118 Max w this run +w_max level proc position run w_max level timestep +0.543E+00 31 180 129.4deg W -30.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4119 Model time: 1979-03-27 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043540 + +* 1 1 3 0.100000E+01 0.825406E-04 * +Number of iterations = 2 +Initial residual = 0.014341 +Final residual = 0.000041 +Average conv. rate = 0.053699 + +* 1 2 2 0.143412E-01 0.413534E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099078 +Final residual = 0.000014 +Average conv. rate = 0.051743 + +* 2 1 3 0.990776E-01 0.137258E-04 * +Number of iterations = 1 +Initial residual = 0.001255 +Final residual = 0.000047 +Average conv. rate = 0.037714 + +* 2 2 1 0.125505E-02 0.473332E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4119 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.64 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.99K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4119 Max w this run +w_max level proc position run w_max level timestep +0.539E+00 31 180 129.4deg W -31.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4120 Model time: 1979-03-27 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043610 + +* 1 1 3 0.100000E+01 0.829380E-04 * +Number of iterations = 2 +Initial residual = 0.014290 +Final residual = 0.000041 +Average conv. rate = 0.053786 + +* 1 2 2 0.142903E-01 0.413403E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098926 +Final residual = 0.000014 +Average conv. rate = 0.052213 + +* 2 1 3 0.989260E-01 0.140817E-04 * +Number of iterations = 1 +Initial residual = 0.001281 +Final residual = 0.000047 +Average conv. rate = 0.036917 + +* 2 2 1 0.128103E-02 0.472920E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4120 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.66 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.86K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4120 Max w this run +w_max level proc position run w_max level timestep +0.597E+00 32 180 129.4deg W -31.9deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4121 Model time: 1979-03-27 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044275 + +* 1 1 3 0.100000E+01 0.867935E-04 * +Number of iterations = 2 +Initial residual = 0.014225 +Final residual = 0.000044 +Average conv. rate = 0.055326 + +* 1 2 2 0.142246E-01 0.435411E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099637 +Final residual = 0.000016 +Average conv. rate = 0.054040 + +* 2 1 3 0.996373E-01 0.157242E-04 * +Number of iterations = 1 +Initial residual = 0.001283 +Final residual = 0.000048 +Average conv. rate = 0.037329 + +* 2 2 1 0.128259E-02 0.478773E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4121 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.69 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.72K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4121 Max w this run +w_max level proc position run w_max level timestep +0.626E+00 32 180 129.4deg W -31.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4122 Model time: 1979-03-27 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044015 + +* 1 1 3 0.100000E+01 0.852706E-04 * +Number of iterations = 2 +Initial residual = 0.014106 +Final residual = 0.000041 +Average conv. rate = 0.053974 + +* 1 2 2 0.141064E-01 0.410947E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099959 +Final residual = 0.000014 +Average conv. rate = 0.051341 + +* 2 1 3 0.999590E-01 0.135275E-04 * +Number of iterations = 1 +Initial residual = 0.001272 +Final residual = 0.000047 +Average conv. rate = 0.037204 + +* 2 2 1 0.127213E-02 0.473286E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4122 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.75 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.60K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4122 Max w this run +w_max level proc position run w_max level timestep +0.611E+00 32 180 129.4deg W -31.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4123 Model time: 1979-03-27 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043828 + +* 1 1 3 0.100000E+01 0.841915E-04 * +Number of iterations = 2 +Initial residual = 0.014089 +Final residual = 0.000044 +Average conv. rate = 0.055949 + +* 1 2 2 0.140886E-01 0.441021E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100376 +Final residual = 0.000012 +Average conv. rate = 0.048711 + +* 2 1 3 0.100376E+00 0.116017E-04 * +Number of iterations = 1 +Initial residual = 0.001326 +Final residual = 0.000047 +Average conv. rate = 0.035767 + +* 2 2 1 0.132601E-02 0.474276E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4123 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.82 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.75K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4123 Max w this run +w_max level proc position run w_max level timestep +0.640E+00 32 180 129.4deg W -31.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4124 Model time: 1979-03-27 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044305 + +* 1 1 3 0.100000E+01 0.869671E-04 * +Number of iterations = 2 +Initial residual = 0.014031 +Final residual = 0.000043 +Average conv. rate = 0.055237 + +* 1 2 2 0.140306E-01 0.428100E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100203 +Final residual = 0.000014 +Average conv. rate = 0.051323 + +* 2 1 3 0.100203E+00 0.135465E-04 * +Number of iterations = 1 +Initial residual = 0.001325 +Final residual = 0.000048 +Average conv. rate = 0.036216 + +* 2 2 1 0.132538E-02 0.479998E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4124 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.89 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.97K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4124 Max w this run +w_max level proc position run w_max level timestep +0.624E+00 30 180 129.4deg W -31.9deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4125 Model time: 1979-03-27 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044156 + +* 1 1 3 0.100000E+01 0.860913E-04 * +Number of iterations = 2 +Initial residual = 0.014165 +Final residual = 0.000042 +Average conv. rate = 0.054619 + +* 1 2 2 0.141648E-01 0.422571E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.101524 +Final residual = 0.000016 +Average conv. rate = 0.054454 + +* 2 1 3 0.101524E+00 0.163930E-04 * +Number of iterations = 1 +Initial residual = 0.001328 +Final residual = 0.000048 +Average conv. rate = 0.036425 + +* 2 2 1 0.132751E-02 0.483544E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4125 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.97 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.23K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4125 Max w this run +w_max level proc position run w_max level timestep +0.585E+00 31 180 129.4deg W -31.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4126 Model time: 1979-03-27 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043485 + +* 1 1 3 0.100000E+01 0.822270E-04 * +Number of iterations = 2 +Initial residual = 0.014135 +Final residual = 0.000043 +Average conv. rate = 0.055221 + +* 1 2 2 0.141347E-01 0.431025E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100339 +Final residual = 0.000011 +Average conv. rate = 0.047641 + +* 2 1 3 0.100339E+00 0.108494E-04 * +Number of iterations = 1 +Initial residual = 0.001316 +Final residual = 0.000047 +Average conv. rate = 0.035919 + +* 2 2 1 0.131642E-02 0.472837E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4126 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.05 17 165.0deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.62K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4126 Max w this run +w_max level proc position run w_max level timestep +0.583E+00 32 180 129.4deg W -31.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4127 Model time: 1979-03-27 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043861 + +* 1 1 3 0.100000E+01 0.843776E-04 * +Number of iterations = 2 +Initial residual = 0.014106 +Final residual = 0.000046 +Average conv. rate = 0.056850 + +* 1 2 2 0.141056E-01 0.455877E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.100820 +Final residual = 0.000011 +Average conv. rate = 0.047955 + +* 2 1 3 0.100820E+00 0.111184E-04 * +Number of iterations = 1 +Initial residual = 0.001336 +Final residual = 0.000047 +Average conv. rate = 0.035421 + +* 2 2 1 0.133635E-02 0.473350E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4127 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.14 17 163.1deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.34K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4127 Max w this run +w_max level proc position run w_max level timestep +0.571E+00 26 196 48.7deg E -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4128 Model time: 1979-03-28 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043802 + +* 1 1 3 0.100000E+01 0.840407E-04 * +Number of iterations = 2 +Initial residual = 0.013964 +Final residual = 0.000043 +Average conv. rate = 0.055711 + +* 1 2 2 0.139641E-01 0.433414E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099894 +Final residual = 0.000011 +Average conv. rate = 0.047355 + +* 2 1 3 0.998942E-01 0.106081E-04 * +Number of iterations = 1 +Initial residual = 0.001326 +Final residual = 0.000047 +Average conv. rate = 0.035429 + +* 2 2 1 0.132621E-02 0.469858E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51420E+19 +Tot energy 0.13061E+25 +tot dry energy 0.13063E+25 +gr( rho cal) 0.38126E+24 +KE( rho cal) 0.81457E+21 +KEu(rho cal) 0.60477E+21 +KEv(rho cal) 0.20980E+21 +KEw(rho cal) 0.12442E+16 +cvT( rho cal) 0.92418E+24 +lq ( rho cal) 0.31043E+23 +lqcf( rho cal) 0.64329E+20 +lqcl( rho cal) 0.42930E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12453E+17 KG +Initial moisture = 0.12383E+17 KG +change in moisture = 0.70684E+14 KG +Moisture added E-P in period = 0.71425E+14 KG +Error in moisture = -0.74098E+12 KG +Error as % of change = -0.10483E+01 +q ( rho cal) 0.12412E+17 +qcf( rho cal) 0.25721E+14 +qcl( rho cal) 0.15143E+14 +FINAL TOTAL ENERGY = 0.13061E+25 J/ +INITIAL TOTAL ENERGY = 0.13062E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.86099E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.91826E+20 J/ +ERROR IN ENERGY BUDGET = -0.57266E+19 J/ +TEMP CORRECTION OVER A DAY = -0.15550E-02 K +TEMPERATURE CORRECTION RATE = -0.17997E-07 K/S +FLUX CORRECTION (ATM) = -0.12994E+00 W/M2 + +Minimum theta level 1 for timestep 4128 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.18 17 163.1deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.41K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4128 Max w this run +w_max level proc position run w_max level timestep +0.660E+00 26 196 48.7deg E -18.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -5940.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -5940.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -5940.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -5940.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -5940.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -5940.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 4129 Model time: 1979-03-28 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044051 + +* 1 1 3 0.100000E+01 0.854829E-04 * +Number of iterations = 2 +Initial residual = 0.013960 +Final residual = 0.000044 +Average conv. rate = 0.055986 + +* 1 2 2 0.139603E-01 0.437577E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.098304 +Final residual = 0.000016 +Average conv. rate = 0.054689 + +* 2 1 3 0.983038E-01 0.160791E-04 * +Number of iterations = 1 +Initial residual = 0.001272 +Final residual = 0.000047 +Average conv. rate = 0.036699 + +* 2 2 1 0.127221E-02 0.466885E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4129 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.20 17 163.1deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.85K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4129 Max w this run +w_max level proc position run w_max level timestep +0.701E+00 28 196 48.7deg E -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4130 Model time: 1979-03-28 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043816 + +* 1 1 3 0.100000E+01 0.841225E-04 * +Number of iterations = 2 +Initial residual = 0.013931 +Final residual = 0.000044 +Average conv. rate = 0.056139 + +* 1 2 2 0.139312E-01 0.439060E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.099639 +Final residual = 0.000014 +Average conv. rate = 0.052220 + +* 2 1 3 0.996392E-01 0.141890E-04 * +Number of iterations = 1 +Initial residual = 0.001172 +Final residual = 0.000047 +Average conv. rate = 0.039995 + +* 2 2 1 0.117220E-02 0.468826E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4130 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.21 17 163.1deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.35K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4130 Max w this run +w_max level proc position run w_max level timestep +0.675E+00 28 196 48.7deg E -18.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4131 Model time: 1979-03-28 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043988 + +* 1 1 3 0.100000E+01 0.851149E-04 * +Number of iterations = 2 +Initial residual = 0.014043 +Final residual = 0.000044 +Average conv. rate = 0.056016 + +* 1 2 2 0.140434E-01 0.440649E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095443 +Final residual = 0.000013 +Average conv. rate = 0.051686 + +* 2 1 3 0.954433E-01 0.131787E-04 * +Number of iterations = 1 +Initial residual = 0.001120 +Final residual = 0.000046 +Average conv. rate = 0.041284 + +* 2 2 1 0.112034E-02 0.462519E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4131 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.21 17 163.1deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.84K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4131 Max w this run +w_max level proc position run w_max level timestep +0.611E+00 29 196 48.7deg E -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4132 Model time: 1979-03-28 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043438 + +* 1 1 3 0.100000E+01 0.819627E-04 * +Number of iterations = 2 +Initial residual = 0.014023 +Final residual = 0.000044 +Average conv. rate = 0.055780 + +* 1 2 2 0.140231E-01 0.436315E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093781 +Final residual = 0.000099 +Average conv. rate = 0.032521 + +* 2 1 2 0.937814E-01 0.991853E-04 * +Number of iterations = 1 +Initial residual = 0.001104 +Final residual = 0.000048 +Average conv. rate = 0.043302 + +* 2 2 1 0.110357E-02 0.477867E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4132 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.22 17 163.1deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.31K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4132 Max w this run +w_max level proc position run w_max level timestep +0.541E+00 30 196 48.7deg E -18.1deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4133 Model time: 1979-03-28 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043279 + +* 1 1 3 0.100000E+01 0.810658E-04 * +Number of iterations = 2 +Initial residual = 0.014069 +Final residual = 0.000044 +Average conv. rate = 0.055984 + +* 1 2 2 0.140686E-01 0.440948E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095304 +Final residual = 0.000098 +Average conv. rate = 0.032068 + +* 2 1 2 0.953035E-01 0.980038E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000047 +Average conv. rate = 0.041528 + +* 2 2 1 0.113446E-02 0.471113E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4133 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.26 17 163.1deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.71K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4133 Max w this run +w_max level proc position run w_max level timestep +0.512E+00 24 376 84.4deg W 35.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4134 Model time: 1979-03-28 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043952 + +* 1 1 3 0.100000E+01 0.849070E-04 * +Number of iterations = 2 +Initial residual = 0.014060 +Final residual = 0.000045 +Average conv. rate = 0.056651 + +* 1 2 2 0.140604E-01 0.451249E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093981 +Final residual = 0.000100 +Average conv. rate = 0.032543 + +* 2 1 2 0.939810E-01 0.995311E-04 * +Number of iterations = 1 +Initial residual = 0.001124 +Final residual = 0.000048 +Average conv. rate = 0.043040 + +* 2 2 1 0.112391E-02 0.483737E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4134 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.31 17 163.1deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.08K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4134 Max w this run +w_max level proc position run w_max level timestep +0.524E+00 25 376 84.4deg W 35.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4135 Model time: 1979-03-28 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043391 + +* 1 1 3 0.100000E+01 0.816979E-04 * +Number of iterations = 2 +Initial residual = 0.014138 +Final residual = 0.000043 +Average conv. rate = 0.055435 + +* 1 2 2 0.141379E-01 0.434466E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.094554 +Final residual = 0.000100 +Average conv. rate = 0.032453 + +* 2 1 2 0.945544E-01 0.995872E-04 * +Number of iterations = 1 +Initial residual = 0.001159 +Final residual = 0.000048 +Average conv. rate = 0.041787 + +* 2 2 1 0.115925E-02 0.484414E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4135 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.30 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.66K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4135 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 31 148 127.5deg W -35.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4136 Model time: 1979-03-28 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043302 + +* 1 1 3 0.100000E+01 0.811917E-04 * +Number of iterations = 2 +Initial residual = 0.014057 +Final residual = 0.000043 +Average conv. rate = 0.055283 + +* 1 2 2 0.140566E-01 0.429604E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094160 +Final residual = 0.000015 +Average conv. rate = 0.053903 + +* 2 1 3 0.941599E-01 0.147472E-04 * +Number of iterations = 1 +Initial residual = 0.001176 +Final residual = 0.000048 +Average conv. rate = 0.041196 + +* 2 2 1 0.117592E-02 0.484435E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4136 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.21 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.11K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4136 Max w this run +w_max level proc position run w_max level timestep +0.472E+00 31 148 127.5deg W -35.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4137 Model time: 1979-03-28 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043323 + +* 1 1 3 0.100000E+01 0.813139E-04 * +Number of iterations = 2 +Initial residual = 0.014144 +Final residual = 0.000044 +Average conv. rate = 0.055576 + +* 1 2 2 0.141436E-01 0.436861E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095067 +Final residual = 0.000013 +Average conv. rate = 0.051316 + +* 2 1 3 0.950670E-01 0.128466E-04 * +Number of iterations = 1 +Initial residual = 0.001196 +Final residual = 0.000049 +Average conv. rate = 0.040625 + +* 2 2 1 0.119568E-02 0.485744E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4137 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.15 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.47K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4137 Max w this run +w_max level proc position run w_max level timestep +0.513E+00 35 196 48.7deg E -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4138 Model time: 1979-03-28 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043041 + +* 1 1 3 0.100000E+01 0.797346E-04 * +Number of iterations = 2 +Initial residual = 0.014335 +Final residual = 0.000043 +Average conv. rate = 0.054806 + +* 1 2 2 0.143351E-01 0.430591E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091995 +Final residual = 0.000099 +Average conv. rate = 0.032857 + +* 2 1 2 0.919954E-01 0.993163E-04 * +Number of iterations = 1 +Initial residual = 0.001141 +Final residual = 0.000049 +Average conv. rate = 0.042590 + +* 2 2 1 0.114115E-02 0.486010E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4138 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.11 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.81K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4138 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 35 196 48.7deg E -18.1deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4139 Model time: 1979-03-28 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043354 + +* 1 1 3 0.100000E+01 0.814861E-04 * +Number of iterations = 2 +Initial residual = 0.014601 +Final residual = 0.000043 +Average conv. rate = 0.054416 + +* 1 2 2 0.146013E-01 0.432364E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093557 +Final residual = 0.000099 +Average conv. rate = 0.032601 + +* 2 1 2 0.935567E-01 0.994319E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000048 +Average conv. rate = 0.042250 + +* 2 2 1 0.113417E-02 0.479189E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4139 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.10 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.11K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4139 Max w this run +w_max level proc position run w_max level timestep +0.451E+00 37 196 48.7deg E -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4140 Model time: 1979-03-28 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043211 + +* 1 1 3 0.100000E+01 0.806848E-04 * +Number of iterations = 2 +Initial residual = 0.014642 +Final residual = 0.000043 +Average conv. rate = 0.054153 + +* 1 2 2 0.146424E-01 0.429394E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091607 +Final residual = 0.000099 +Average conv. rate = 0.032942 + +* 2 1 2 0.916067E-01 0.994107E-04 * +Number of iterations = 1 +Initial residual = 0.001130 +Final residual = 0.000048 +Average conv. rate = 0.042706 + +* 2 2 1 0.113025E-02 0.482687E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4140 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.10 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.40K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4140 Max w this run +w_max level proc position run w_max level timestep +0.440E+00 37 249 71.3deg W -1.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4141 Model time: 1979-03-28 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043253 + +* 1 1 3 0.100000E+01 0.809207E-04 * +Number of iterations = 2 +Initial residual = 0.014540 +Final residual = 0.000043 +Average conv. rate = 0.054374 + +* 1 2 2 0.145402E-01 0.429885E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093449 +Final residual = 0.000012 +Average conv. rate = 0.050582 + +* 2 1 3 0.934486E-01 0.120937E-04 * +Number of iterations = 1 +Initial residual = 0.001139 +Final residual = 0.000048 +Average conv. rate = 0.041909 + +* 2 2 1 0.113905E-02 0.477369E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4141 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.13 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.64K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4141 Max w this run +w_max level proc position run w_max level timestep +0.476E+00 38 249 71.3deg W -1.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4142 Model time: 1979-03-28 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043158 + +* 1 1 3 0.100000E+01 0.803849E-04 * +Number of iterations = 2 +Initial residual = 0.014296 +Final residual = 0.000042 +Average conv. rate = 0.054348 + +* 1 2 2 0.142960E-01 0.422257E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.093149 +Final residual = 0.000100 +Average conv. rate = 0.032696 + +* 2 1 2 0.931493E-01 0.995767E-04 * +Number of iterations = 1 +Initial residual = 0.001130 +Final residual = 0.000049 +Average conv. rate = 0.043609 + +* 2 2 1 0.113025E-02 0.492893E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4142 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.17 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.85K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4142 Max w this run +w_max level proc position run w_max level timestep +0.469E+00 83 201 103.1deg E -14.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4143 Model time: 1979-03-28 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043132 + +* 1 1 3 0.100000E+01 0.802434E-04 * +Number of iterations = 2 +Initial residual = 0.014194 +Final residual = 0.000041 +Average conv. rate = 0.053985 + +* 1 2 2 0.141938E-01 0.413653E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.095093 +Final residual = 0.000100 +Average conv. rate = 0.032413 + +* 2 1 2 0.950932E-01 0.999031E-04 * +Number of iterations = 1 +Initial residual = 0.001137 +Final residual = 0.000050 +Average conv. rate = 0.043849 + +* 2 2 1 0.113666E-02 0.498410E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4143 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.22 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.99K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4143 Max w this run +w_max level proc position run w_max level timestep +0.437E+00 38 196 48.7deg E -18.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4144 Model time: 1979-03-28 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042790 + +* 1 1 3 0.100000E+01 0.783496E-04 * +Number of iterations = 2 +Initial residual = 0.014115 +Final residual = 0.000042 +Average conv. rate = 0.054264 + +* 1 2 2 0.141149E-01 0.415618E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092720 +Final residual = 0.000012 +Average conv. rate = 0.050033 + +* 2 1 3 0.927198E-01 0.116127E-04 * +Number of iterations = 1 +Initial residual = 0.001115 +Final residual = 0.000049 +Average conv. rate = 0.043543 + +* 2 2 1 0.111472E-02 0.485380E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4144 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.28 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.13K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4144 Max w this run +w_max level proc position run w_max level timestep +0.434E+00 31 180 129.4deg W -30.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4145 Model time: 1979-03-28 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043869 + +* 1 1 3 0.100000E+01 0.844274E-04 * +Number of iterations = 2 +Initial residual = 0.014096 +Final residual = 0.000041 +Average conv. rate = 0.054005 + +* 1 2 2 0.140964E-01 0.411135E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093684 +Final residual = 0.000012 +Average conv. rate = 0.050239 + +* 2 1 3 0.936844E-01 0.118791E-04 * +Number of iterations = 1 +Initial residual = 0.001109 +Final residual = 0.000049 +Average conv. rate = 0.043787 + +* 2 2 1 0.110913E-02 0.485651E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4145 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.35 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.28K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4145 Max w this run +w_max level proc position run w_max level timestep +0.442E+00 27 130 26.3deg E -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4146 Model time: 1979-03-28 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043431 + +* 1 1 3 0.100000E+01 0.819232E-04 * +Number of iterations = 2 +Initial residual = 0.014033 +Final residual = 0.000043 +Average conv. rate = 0.055084 + +* 1 2 2 0.140330E-01 0.425799E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092530 +Final residual = 0.000011 +Average conv. rate = 0.049156 + +* 2 1 3 0.925302E-01 0.109906E-04 * +Number of iterations = 1 +Initial residual = 0.001103 +Final residual = 0.000048 +Average conv. rate = 0.043847 + +* 2 2 1 0.110252E-02 0.483422E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4146 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.44 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.38K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4146 Max w this run +w_max level proc position run w_max level timestep +0.421E+00 33 324 52.5deg E 26.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4147 Model time: 1979-03-28 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043789 + +* 1 1 3 0.100000E+01 0.839617E-04 * +Number of iterations = 2 +Initial residual = 0.014095 +Final residual = 0.000042 +Average conv. rate = 0.054676 + +* 1 2 2 0.140952E-01 0.421376E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092852 +Final residual = 0.000011 +Average conv. rate = 0.049736 + +* 2 1 3 0.928525E-01 0.114237E-04 * +Number of iterations = 1 +Initial residual = 0.001101 +Final residual = 0.000049 +Average conv. rate = 0.044287 + +* 2 2 1 0.110115E-02 0.487661E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4147 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.54 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.34K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4147 Max w this run +w_max level proc position run w_max level timestep +0.429E+00 33 324 52.5deg E 26.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4148 Model time: 1979-03-28 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043014 + +* 1 1 3 0.100000E+01 0.795847E-04 * +Number of iterations = 2 +Initial residual = 0.014105 +Final residual = 0.000042 +Average conv. rate = 0.054358 + +* 1 2 2 0.141048E-01 0.416769E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091760 +Final residual = 0.000011 +Average conv. rate = 0.049525 + +* 2 1 3 0.917604E-01 0.111463E-04 * +Number of iterations = 1 +Initial residual = 0.001086 +Final residual = 0.000048 +Average conv. rate = 0.044272 + +* 2 2 1 0.108632E-02 0.480943E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4148 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.65 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.27K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4148 Max w this run +w_max level proc position run w_max level timestep +0.419E+00 34 324 52.5deg E 26.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4149 Model time: 1979-03-28 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043044 + +* 1 1 3 0.100000E+01 0.797510E-04 * +Number of iterations = 2 +Initial residual = 0.014186 +Final residual = 0.000042 +Average conv. rate = 0.054295 + +* 1 2 2 0.141858E-01 0.418196E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092434 +Final residual = 0.000011 +Average conv. rate = 0.048740 + +* 2 1 3 0.924336E-01 0.107025E-04 * +Number of iterations = 1 +Initial residual = 0.001094 +Final residual = 0.000048 +Average conv. rate = 0.044058 + +* 2 2 1 0.109366E-02 0.481851E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4149 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.77 17 161.3deg W -82.5deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.17K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4149 Max w this run +w_max level proc position run w_max level timestep +0.401E+00 30 180 129.4deg W -30.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4150 Model time: 1979-03-28 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043268 + +* 1 1 3 0.100000E+01 0.810007E-04 * +Number of iterations = 2 +Initial residual = 0.014163 +Final residual = 0.000041 +Average conv. rate = 0.053490 + +* 1 2 2 0.141632E-01 0.405235E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091470 +Final residual = 0.000014 +Average conv. rate = 0.052957 + +* 2 1 3 0.914704E-01 0.135848E-04 * +Number of iterations = 1 +Initial residual = 0.001079 +Final residual = 0.000048 +Average conv. rate = 0.044630 + +* 2 2 1 0.107936E-02 0.481717E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4150 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.87 18 157.5deg W -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.13K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4150 Max w this run +w_max level proc position run w_max level timestep +0.410E+00 26 145 165.0deg W -36.9deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4151 Model time: 1979-03-28 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043439 + +* 1 1 3 0.100000E+01 0.819657E-04 * +Number of iterations = 2 +Initial residual = 0.014219 +Final residual = 0.000040 +Average conv. rate = 0.053269 + +* 1 2 2 0.142187E-01 0.403465E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090440 +Final residual = 0.000012 +Average conv. rate = 0.051080 + +* 2 1 3 0.904401E-01 0.120533E-04 * +Number of iterations = 1 +Initial residual = 0.001064 +Final residual = 0.000047 +Average conv. rate = 0.044531 + +* 2 2 1 0.106362E-02 0.473641E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4151 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.76 18 157.5deg W -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.40K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4151 Max w this run +w_max level proc position run w_max level timestep +0.443E+00 37 257 18.7deg E 6.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4152 Model time: 1979-03-28 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043345 + +* 1 1 3 0.100000E+01 0.814340E-04 * +Number of iterations = 2 +Initial residual = 0.014210 +Final residual = 0.000040 +Average conv. rate = 0.052950 + +* 1 2 2 0.142097E-01 0.398399E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090262 +Final residual = 0.000099 +Average conv. rate = 0.033180 + +* 2 1 2 0.902622E-01 0.993727E-04 * +Number of iterations = 1 +Initial residual = 0.001065 +Final residual = 0.000047 +Average conv. rate = 0.044277 + +* 2 2 1 0.106493E-02 0.471519E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4152 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.64 18 157.5deg W -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.71K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4152 Max w this run +w_max level proc position run w_max level timestep +0.514E+00 38 257 18.7deg E 6.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4153 Model time: 1979-03-28 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043318 + +* 1 1 3 0.100000E+01 0.812859E-04 * +Number of iterations = 2 +Initial residual = 0.014277 +Final residual = 0.000040 +Average conv. rate = 0.052830 + +* 1 2 2 0.142773E-01 0.398473E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090934 +Final residual = 0.000013 +Average conv. rate = 0.052287 + +* 2 1 3 0.909343E-01 0.129991E-04 * +Number of iterations = 1 +Initial residual = 0.001069 +Final residual = 0.000047 +Average conv. rate = 0.044430 + +* 2 2 1 0.106888E-02 0.474905E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4153 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.51 18 157.5deg W -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.03K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4153 Max w this run +w_max level proc position run w_max level timestep +0.470E+00 33 324 52.5deg E 25.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4154 Model time: 1979-03-28 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043209 + +* 1 1 3 0.100000E+01 0.806710E-04 * +Number of iterations = 2 +Initial residual = 0.014288 +Final residual = 0.000040 +Average conv. rate = 0.052921 + +* 1 2 2 0.142880E-01 0.400146E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089692 +Final residual = 0.000100 +Average conv. rate = 0.033361 + +* 2 1 2 0.896922E-01 0.998208E-04 * +Number of iterations = 1 +Initial residual = 0.001071 +Final residual = 0.000048 +Average conv. rate = 0.044734 + +* 2 2 1 0.107051E-02 0.478885E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4154 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.24 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.80K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4154 Max w this run +w_max level proc position run w_max level timestep +0.533E+00 32 324 52.5deg E 25.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4155 Model time: 1979-03-28 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043142 + +* 1 1 3 0.100000E+01 0.802968E-04 * +Number of iterations = 2 +Initial residual = 0.014392 +Final residual = 0.000041 +Average conv. rate = 0.053591 + +* 1 2 2 0.143921E-01 0.413340E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089827 +Final residual = 0.000010 +Average conv. rate = 0.048410 + +* 2 1 3 0.898274E-01 0.101909E-04 * +Number of iterations = 1 +Initial residual = 0.001086 +Final residual = 0.000047 +Average conv. rate = 0.043487 + +* 2 2 1 0.108590E-02 0.472227E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4155 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.94 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.65K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4155 Max w this run +w_max level proc position run w_max level timestep +0.555E+00 32 324 52.5deg E 25.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4156 Model time: 1979-03-28 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043123 + +* 1 1 3 0.100000E+01 0.801924E-04 * +Number of iterations = 2 +Initial residual = 0.014386 +Final residual = 0.000041 +Average conv. rate = 0.053374 + +* 1 2 2 0.143857E-01 0.409823E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089723 +Final residual = 0.000010 +Average conv. rate = 0.048844 + +* 2 1 3 0.897234E-01 0.104553E-04 * +Number of iterations = 1 +Initial residual = 0.001102 +Final residual = 0.000047 +Average conv. rate = 0.042805 + +* 2 2 1 0.110228E-02 0.471827E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4156 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.66 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.61K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4156 Max w this run +w_max level proc position run w_max level timestep +0.567E+00 32 324 52.5deg E 25.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4157 Model time: 1979-03-28 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043488 + +* 1 1 3 0.100000E+01 0.822436E-04 * +Number of iterations = 2 +Initial residual = 0.014368 +Final residual = 0.000041 +Average conv. rate = 0.053493 + +* 1 2 2 0.143684E-01 0.411149E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090286 +Final residual = 0.000017 +Average conv. rate = 0.057793 + +* 2 1 3 0.902863E-01 0.174279E-04 * +Number of iterations = 1 +Initial residual = 0.001102 +Final residual = 0.000048 +Average conv. rate = 0.043481 + +* 2 2 1 0.110156E-02 0.478974E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4157 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.40 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.64K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4157 Max w this run +w_max level proc position run w_max level timestep +0.545E+00 34 324 54.4deg E 25.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4158 Model time: 1979-03-28 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043529 + +* 1 1 3 0.100000E+01 0.824774E-04 * +Number of iterations = 2 +Initial residual = 0.014313 +Final residual = 0.000041 +Average conv. rate = 0.053397 + +* 1 2 2 0.143133E-01 0.408114E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089549 +Final residual = 0.000016 +Average conv. rate = 0.056358 + +* 2 1 3 0.895487E-01 0.160296E-04 * +Number of iterations = 1 +Initial residual = 0.001083 +Final residual = 0.000047 +Average conv. rate = 0.043532 + +* 2 2 1 0.108295E-02 0.471430E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4158 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.17 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.68K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4158 Max w this run +w_max level proc position run w_max level timestep +0.556E+00 34 324 54.4deg E 25.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4159 Model time: 1979-03-28 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043685 + +* 1 1 3 0.100000E+01 0.833666E-04 * +Number of iterations = 2 +Initial residual = 0.014343 +Final residual = 0.000041 +Average conv. rate = 0.053625 + +* 1 2 2 0.143430E-01 0.412453E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090921 +Final residual = 0.000010 +Average conv. rate = 0.048486 + +* 2 1 3 0.909207E-01 0.103638E-04 * +Number of iterations = 1 +Initial residual = 0.001082 +Final residual = 0.000047 +Average conv. rate = 0.043245 + +* 2 2 1 0.108222E-02 0.468004E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4159 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.95 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.72K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4159 Max w this run +w_max level proc position run w_max level timestep +0.536E+00 34 324 54.4deg E 25.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4160 Model time: 1979-03-28 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043575 + +* 1 1 3 0.100000E+01 0.827409E-04 * +Number of iterations = 2 +Initial residual = 0.014339 +Final residual = 0.000041 +Average conv. rate = 0.053388 + +* 1 2 2 0.143391E-01 0.408704E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090140 +Final residual = 0.000016 +Average conv. rate = 0.056105 + +* 2 1 3 0.901400E-01 0.159190E-04 * +Number of iterations = 1 +Initial residual = 0.001062 +Final residual = 0.000047 +Average conv. rate = 0.043950 + +* 2 2 1 0.106244E-02 0.466946E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4160 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.74 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.76K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4160 Max w this run +w_max level proc position run w_max level timestep +0.431E+00 34 324 54.4deg E 25.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4161 Model time: 1979-03-28 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043478 + +* 1 1 3 0.100000E+01 0.821908E-04 * +Number of iterations = 2 +Initial residual = 0.014381 +Final residual = 0.000041 +Average conv. rate = 0.053711 + +* 1 2 2 0.143811E-01 0.414876E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091212 +Final residual = 0.000011 +Average conv. rate = 0.049551 + +* 2 1 3 0.912119E-01 0.110970E-04 * +Number of iterations = 1 +Initial residual = 0.001068 +Final residual = 0.000047 +Average conv. rate = 0.043655 + +* 2 2 1 0.106761E-02 0.466070E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4161 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.55 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.79K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4161 Max w this run +w_max level proc position run w_max level timestep +0.584E+00 34 324 54.4deg E 24.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4162 Model time: 1979-03-28 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043177 + +* 1 1 3 0.100000E+01 0.804945E-04 * +Number of iterations = 2 +Initial residual = 0.014259 +Final residual = 0.000041 +Average conv. rate = 0.053548 + +* 1 2 2 0.142590E-01 0.408864E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091463 +Final residual = 0.000015 +Average conv. rate = 0.054940 + +* 2 1 3 0.914626E-01 0.151671E-04 * +Number of iterations = 1 +Initial residual = 0.001066 +Final residual = 0.000047 +Average conv. rate = 0.044503 + +* 2 2 1 0.106613E-02 0.474462E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4162 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.36 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.83K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4162 Max w this run +w_max level proc position run w_max level timestep +0.624E+00 33 324 54.4deg E 24.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4163 Model time: 1979-03-28 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043301 + +* 1 1 3 0.100000E+01 0.811908E-04 * +Number of iterations = 2 +Initial residual = 0.014196 +Final residual = 0.000041 +Average conv. rate = 0.053785 + +* 1 2 2 0.141956E-01 0.410651E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092601 +Final residual = 0.000011 +Average conv. rate = 0.049491 + +* 2 1 3 0.926007E-01 0.112252E-04 * +Number of iterations = 1 +Initial residual = 0.001072 +Final residual = 0.000048 +Average conv. rate = 0.044982 + +* 2 2 1 0.107163E-02 0.482042E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4163 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.18 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.87K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4163 Max w this run +w_max level proc position run w_max level timestep +0.579E+00 33 324 54.4deg E 24.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4164 Model time: 1979-03-28 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042786 + +* 1 1 3 0.100000E+01 0.783265E-04 * +Number of iterations = 2 +Initial residual = 0.014100 +Final residual = 0.000041 +Average conv. rate = 0.053842 + +* 1 2 2 0.140996E-01 0.408737E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092272 +Final residual = 0.000011 +Average conv. rate = 0.049548 + +* 2 1 3 0.922718E-01 0.112241E-04 * +Number of iterations = 1 +Initial residual = 0.001080 +Final residual = 0.000049 +Average conv. rate = 0.045017 + +* 2 2 1 0.108005E-02 0.486200E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4164 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.01 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.90K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4164 Max w this run +w_max level proc position run w_max level timestep +0.581E+00 33 324 54.4deg E 24.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4165 Model time: 1979-03-28 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043445 + +* 1 1 3 0.100000E+01 0.820037E-04 * +Number of iterations = 2 +Initial residual = 0.014128 +Final residual = 0.000040 +Average conv. rate = 0.053295 + +* 1 2 2 0.141275E-01 0.401268E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093433 +Final residual = 0.000019 +Average conv. rate = 0.059186 + +* 2 1 3 0.934328E-01 0.193709E-04 * +Number of iterations = 1 +Initial residual = 0.001089 +Final residual = 0.000049 +Average conv. rate = 0.044800 + +* 2 2 1 0.108901E-02 0.487879E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4165 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.85 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.94K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4165 Max w this run +w_max level proc position run w_max level timestep +0.581E+00 34 324 54.4deg E 24.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4166 Model time: 1979-03-28 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043267 + +* 1 1 3 0.100000E+01 0.809953E-04 * +Number of iterations = 2 +Initial residual = 0.014103 +Final residual = 0.000038 +Average conv. rate = 0.052151 + +* 1 2 2 0.141032E-01 0.383575E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092705 +Final residual = 0.000017 +Average conv. rate = 0.056648 + +* 2 1 3 0.927050E-01 0.168522E-04 * +Number of iterations = 1 +Initial residual = 0.001096 +Final residual = 0.000049 +Average conv. rate = 0.044330 + +* 2 2 1 0.109600E-02 0.485854E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4166 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.69 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -2.99K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4166 Max w this run +w_max level proc position run w_max level timestep +0.601E+00 34 324 54.4deg E 24.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4167 Model time: 1979-03-28 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043880 + +* 1 1 3 0.100000E+01 0.844867E-04 * +Number of iterations = 2 +Initial residual = 0.014224 +Final residual = 0.000039 +Average conv. rate = 0.052309 + +* 1 2 2 0.142244E-01 0.389214E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095140 +Final residual = 0.000017 +Average conv. rate = 0.056282 + +* 2 1 3 0.951404E-01 0.169615E-04 * +Number of iterations = 1 +Initial residual = 0.001110 +Final residual = 0.000049 +Average conv. rate = 0.044285 + +* 2 2 1 0.111034E-02 0.491717E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4167 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.54 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.04K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4167 Max w this run +w_max level proc position run w_max level timestep +0.507E+00 32 324 54.4deg E 24.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4168 Model time: 1979-03-28 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043802 + +* 1 1 3 0.100000E+01 0.840408E-04 * +Number of iterations = 2 +Initial residual = 0.014223 +Final residual = 0.000041 +Average conv. rate = 0.053406 + +* 1 2 2 0.142232E-01 0.405667E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093697 +Final residual = 0.000015 +Average conv. rate = 0.053888 + +* 2 1 3 0.936968E-01 0.146624E-04 * +Number of iterations = 1 +Initial residual = 0.001103 +Final residual = 0.000049 +Average conv. rate = 0.044028 + +* 2 2 1 0.110315E-02 0.485691E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4168 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.39 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.09K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4168 Max w this run +w_max level proc position run w_max level timestep +0.501E+00 32 324 54.4deg E 24.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4169 Model time: 1979-03-28 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043579 + +* 1 1 3 0.100000E+01 0.827598E-04 * +Number of iterations = 2 +Initial residual = 0.014301 +Final residual = 0.000041 +Average conv. rate = 0.053766 + +* 1 2 2 0.143009E-01 0.413414E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094013 +Final residual = 0.000019 +Average conv. rate = 0.058748 + +* 2 1 3 0.940129E-01 0.190623E-04 * +Number of iterations = 1 +Initial residual = 0.001113 +Final residual = 0.000049 +Average conv. rate = 0.043907 + +* 2 2 1 0.111340E-02 0.488864E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4169 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.24 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.15K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4169 Max w this run +w_max level proc position run w_max level timestep +0.471E+00 22 324 54.4deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4170 Model time: 1979-03-28 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044360 + +* 1 1 3 0.100000E+01 0.872942E-04 * +Number of iterations = 2 +Initial residual = 0.014284 +Final residual = 0.000041 +Average conv. rate = 0.053271 + +* 1 2 2 0.142845E-01 0.405363E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094874 +Final residual = 0.000020 +Average conv. rate = 0.059510 + +* 2 1 3 0.948740E-01 0.199944E-04 * +Number of iterations = 1 +Initial residual = 0.001115 +Final residual = 0.000049 +Average conv. rate = 0.043762 + +* 2 2 1 0.111502E-02 0.487953E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4170 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.10 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.22K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4170 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 33 325 56.2deg E 24.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4171 Model time: 1979-03-28 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043625 + +* 1 1 3 0.100000E+01 0.830251E-04 * +Number of iterations = 2 +Initial residual = 0.014305 +Final residual = 0.000041 +Average conv. rate = 0.053333 + +* 1 2 2 0.143051E-01 0.406896E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095570 +Final residual = 0.000020 +Average conv. rate = 0.059120 + +* 2 1 3 0.955701E-01 0.197484E-04 * +Number of iterations = 1 +Initial residual = 0.001109 +Final residual = 0.000049 +Average conv. rate = 0.044165 + +* 2 2 1 0.110942E-02 0.489977E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4171 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.97 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.29K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4171 Max w this run +w_max level proc position run w_max level timestep +0.524E+00 25 324 54.4deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4172 Model time: 1979-03-28 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043780 + +* 1 1 3 0.100000E+01 0.839110E-04 * +Number of iterations = 2 +Initial residual = 0.014249 +Final residual = 0.000040 +Average conv. rate = 0.052855 + +* 1 2 2 0.142487E-01 0.398053E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094477 +Final residual = 0.000018 +Average conv. rate = 0.058048 + +* 2 1 3 0.944768E-01 0.184791E-04 * +Number of iterations = 1 +Initial residual = 0.001101 +Final residual = 0.000048 +Average conv. rate = 0.044010 + +* 2 2 1 0.110111E-02 0.484596E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4172 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.84 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.37K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4172 Max w this run +w_max level proc position run w_max level timestep +0.532E+00 26 324 54.4deg E 23.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4173 Model time: 1979-03-28 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043755 + +* 1 1 3 0.100000E+01 0.837717E-04 * +Number of iterations = 2 +Initial residual = 0.014245 +Final residual = 0.000040 +Average conv. rate = 0.053228 + +* 1 2 2 0.142454E-01 0.403609E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095322 +Final residual = 0.000017 +Average conv. rate = 0.055752 + +* 2 1 3 0.953224E-01 0.165189E-04 * +Number of iterations = 1 +Initial residual = 0.001103 +Final residual = 0.000048 +Average conv. rate = 0.043628 + +* 2 2 1 0.110345E-02 0.481411E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4173 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.71 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.45K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4173 Max w this run +w_max level proc position run w_max level timestep +0.581E+00 26 324 54.4deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4174 Model time: 1979-03-28 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043631 + +* 1 1 3 0.100000E+01 0.830583E-04 * +Number of iterations = 2 +Initial residual = 0.014091 +Final residual = 0.000040 +Average conv. rate = 0.053464 + +* 1 2 2 0.140914E-01 0.402783E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094733 +Final residual = 0.000016 +Average conv. rate = 0.055491 + +* 2 1 3 0.947335E-01 0.161875E-04 * +Number of iterations = 1 +Initial residual = 0.001100 +Final residual = 0.000048 +Average conv. rate = 0.044030 + +* 2 2 1 0.109988E-02 0.484280E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4174 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.60 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.53K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4174 Max w this run +w_max level proc position run w_max level timestep +0.630E+00 27 324 54.4deg E 23.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4175 Model time: 1979-03-28 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043437 + +* 1 1 3 0.100000E+01 0.819584E-04 * +Number of iterations = 2 +Initial residual = 0.014072 +Final residual = 0.000042 +Average conv. rate = 0.054932 + +* 1 2 2 0.140718E-01 0.424628E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095250 +Final residual = 0.000016 +Average conv. rate = 0.055255 + +* 2 1 3 0.952504E-01 0.160685E-04 * +Number of iterations = 1 +Initial residual = 0.001109 +Final residual = 0.000048 +Average conv. rate = 0.043336 + +* 2 2 1 0.110931E-02 0.480728E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4175 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.49 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.63K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4175 Max w this run +w_max level proc position run w_max level timestep +0.600E+00 28 324 54.4deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4176 Model time: 1979-03-29 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042491 + +* 1 1 3 0.100000E+01 0.767151E-04 * +Number of iterations = 2 +Initial residual = 0.014099 +Final residual = 0.000044 +Average conv. rate = 0.055825 + +* 1 2 2 0.140988E-01 0.439382E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094210 +Final residual = 0.000011 +Average conv. rate = 0.049518 + +* 2 1 3 0.942099E-01 0.114388E-04 * +Number of iterations = 1 +Initial residual = 0.001116 +Final residual = 0.000048 +Average conv. rate = 0.043359 + +* 2 2 1 0.111561E-02 0.483715E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51421E+19 +Tot energy 0.13060E+25 +tot dry energy 0.13061E+25 +gr( rho cal) 0.38123E+24 +KE( rho cal) 0.81269E+21 +KEu(rho cal) 0.58867E+21 +KEv(rho cal) 0.22402E+21 +KEw(rho cal) 0.10485E+16 +cvT( rho cal) 0.92410E+24 +lq ( rho cal) 0.31232E+23 +lqcf( rho cal) 0.64160E+20 +lqcl( rho cal) 0.41240E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12528E+17 KG +Initial moisture = 0.12453E+17 KG +change in moisture = 0.74715E+14 KG +Moisture added E-P in period = 0.74138E+14 KG +Error in moisture = 0.57754E+12 KG +Error as % of change = 0.77298E+00 +q ( rho cal) 0.12488E+17 +qcf( rho cal) 0.25654E+14 +qcl( rho cal) 0.14547E+14 +FINAL TOTAL ENERGY = 0.13060E+25 J/ +INITIAL TOTAL ENERGY = 0.13061E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.11324E+21 J/ +FLUXES INTO ATM OVER PERIOD = -0.12020E+21 J/ +ERROR IN ENERGY BUDGET = -0.69595E+19 J/ +TEMP CORRECTION OVER A DAY = -0.18897E-02 K +TEMPERATURE CORRECTION RATE = -0.21872E-07 K/S +FLUX CORRECTION (ATM) = -0.15791E+00 W/M2 + +Minimum theta level 1 for timestep 4176 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.41 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.76K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4176 Max w this run +w_max level proc position run w_max level timestep +0.526E+00 30 324 54.4deg E 23.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -5916.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -5916.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -5916.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -5916.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -5916.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -5916.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 4177 Model time: 1979-03-29 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042769 + +* 1 1 3 0.100000E+01 0.782328E-04 * +Number of iterations = 2 +Initial residual = 0.014206 +Final residual = 0.000041 +Average conv. rate = 0.053536 + +* 1 2 2 0.142061E-01 0.407156E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093846 +Final residual = 0.000017 +Average conv. rate = 0.056138 + +* 2 1 3 0.938460E-01 0.166029E-04 * +Number of iterations = 1 +Initial residual = 0.001115 +Final residual = 0.000048 +Average conv. rate = 0.043296 + +* 2 2 1 0.111497E-02 0.482734E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4177 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.40 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -3.92K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4177 Max w this run +w_max level proc position run w_max level timestep +0.476E+00 38 226 26.3deg E -3.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4178 Model time: 1979-03-29 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042790 + +* 1 1 3 0.100000E+01 0.783493E-04 * +Number of iterations = 2 +Initial residual = 0.014128 +Final residual = 0.000040 +Average conv. rate = 0.053365 + +* 1 2 2 0.141275E-01 0.402326E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094215 +Final residual = 0.000015 +Average conv. rate = 0.054772 + +* 2 1 3 0.942151E-01 0.154808E-04 * +Number of iterations = 1 +Initial residual = 0.001130 +Final residual = 0.000050 +Average conv. rate = 0.044019 + +* 2 2 1 0.112966E-02 0.497266E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4178 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.44 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.10K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4178 Max w this run +w_max level proc position run w_max level timestep +0.623E+00 27 325 56.2deg E 23.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4179 Model time: 1979-03-29 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042688 + +* 1 1 3 0.100000E+01 0.777885E-04 * +Number of iterations = 2 +Initial residual = 0.014088 +Final residual = 0.000040 +Average conv. rate = 0.053391 + +* 1 2 2 0.140882E-01 0.401600E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094882 +Final residual = 0.000015 +Average conv. rate = 0.054525 + +* 2 1 3 0.948822E-01 0.153809E-04 * +Number of iterations = 1 +Initial residual = 0.001140 +Final residual = 0.000050 +Average conv. rate = 0.044065 + +* 2 2 1 0.114005E-02 0.502358E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4179 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.58 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.28K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4179 Max w this run +w_max level proc position run w_max level timestep +0.716E+00 27 325 56.2deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4180 Model time: 1979-03-29 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042468 + +* 1 1 3 0.100000E+01 0.765926E-04 * +Number of iterations = 2 +Initial residual = 0.014034 +Final residual = 0.000041 +Average conv. rate = 0.053976 + +* 1 2 2 0.140344E-01 0.408873E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094152 +Final residual = 0.000016 +Average conv. rate = 0.055681 + +* 2 1 3 0.941524E-01 0.162539E-04 * +Number of iterations = 1 +Initial residual = 0.001145 +Final residual = 0.000051 +Average conv. rate = 0.044280 + +* 2 2 1 0.114499E-02 0.507005E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4180 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.80 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.44K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4180 Max w this run +w_max level proc position run w_max level timestep +0.798E+00 27 325 56.2deg E 23.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4181 Model time: 1979-03-29 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043034 + +* 1 1 3 0.100000E+01 0.796940E-04 * +Number of iterations = 2 +Initial residual = 0.014100 +Final residual = 0.000040 +Average conv. rate = 0.053288 + +* 1 2 2 0.140999E-01 0.400382E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093829 +Final residual = 0.000015 +Average conv. rate = 0.054758 + +* 2 1 3 0.938294E-01 0.154060E-04 * +Number of iterations = 1 +Initial residual = 0.001147 +Final residual = 0.000050 +Average conv. rate = 0.043803 + +* 2 2 1 0.114720E-02 0.502508E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4181 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.18 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.51K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4181 Max w this run +w_max level proc position run w_max level timestep +0.857E+00 27 325 56.2deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4182 Model time: 1979-03-29 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043276 + +* 1 1 3 0.100000E+01 0.810473E-04 * +Number of iterations = 2 +Initial residual = 0.014117 +Final residual = 0.000039 +Average conv. rate = 0.052870 + +* 1 2 2 0.141166E-01 0.394592E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093293 +Final residual = 0.000016 +Average conv. rate = 0.055985 + +* 2 1 3 0.932927E-01 0.163708E-04 * +Number of iterations = 1 +Initial residual = 0.001142 +Final residual = 0.000049 +Average conv. rate = 0.043251 + +* 2 2 1 0.114182E-02 0.493844E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4182 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.68 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.46K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4182 Max w this run +w_max level proc position run w_max level timestep +0.903E+00 28 325 56.2deg E 23.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4183 Model time: 1979-03-29 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042582 + +* 1 1 3 0.100000E+01 0.772131E-04 * +Number of iterations = 2 +Initial residual = 0.014191 +Final residual = 0.000039 +Average conv. rate = 0.052521 + +* 1 2 2 0.141906E-01 0.391445E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094447 +Final residual = 0.000015 +Average conv. rate = 0.053899 + +* 2 1 3 0.944474E-01 0.147890E-04 * +Number of iterations = 1 +Initial residual = 0.001207 +Final residual = 0.000049 +Average conv. rate = 0.040827 + +* 2 2 1 0.120655E-02 0.492602E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4183 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.25 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.37K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4183 Max w this run +w_max level proc position run w_max level timestep +0.901E+00 29 325 56.2deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4184 Model time: 1979-03-29 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000077 +Average conv. rate = 0.042568 + +* 1 1 3 0.100000E+01 0.771354E-04 * +Number of iterations = 2 +Initial residual = 0.014168 +Final residual = 0.000040 +Average conv. rate = 0.053394 + +* 1 2 2 0.141684E-01 0.403922E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091735 +Final residual = 0.000013 +Average conv. rate = 0.052638 + +* 2 1 3 0.917352E-01 0.133790E-04 * +Number of iterations = 1 +Initial residual = 0.001163 +Final residual = 0.000050 +Average conv. rate = 0.042705 + +* 2 2 1 0.116266E-02 0.496507E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4184 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.81 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.31K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4184 Max w this run +w_max level proc position run w_max level timestep +0.773E+00 29 325 56.2deg E 23.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4185 Model time: 1979-03-29 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043252 + +* 1 1 3 0.100000E+01 0.809143E-04 * +Number of iterations = 2 +Initial residual = 0.014202 +Final residual = 0.000041 +Average conv. rate = 0.053624 + +* 1 2 2 0.142020E-01 0.408387E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093258 +Final residual = 0.000013 +Average conv. rate = 0.051881 + +* 2 1 3 0.932585E-01 0.130230E-04 * +Number of iterations = 1 +Initial residual = 0.001156 +Final residual = 0.000050 +Average conv. rate = 0.043010 + +* 2 2 1 0.115639E-02 0.497363E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4185 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.33 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.28K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4185 Max w this run +w_max level proc position run w_max level timestep +0.675E+00 31 325 56.2deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4186 Model time: 1979-03-29 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042849 + +* 1 1 3 0.100000E+01 0.786739E-04 * +Number of iterations = 2 +Initial residual = 0.014199 +Final residual = 0.000043 +Average conv. rate = 0.054758 + +* 1 2 2 0.141986E-01 0.425733E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090758 +Final residual = 0.000012 +Average conv. rate = 0.051268 + +* 2 1 3 0.907576E-01 0.122296E-04 * +Number of iterations = 1 +Initial residual = 0.001127 +Final residual = 0.000050 +Average conv. rate = 0.044463 + +* 2 2 1 0.112698E-02 0.501093E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4186 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.76 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.32K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4186 Max w this run +w_max level proc position run w_max level timestep +0.536E+00 31 325 56.2deg E 23.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4187 Model time: 1979-03-29 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042835 + +* 1 1 3 0.100000E+01 0.785977E-04 * +Number of iterations = 2 +Initial residual = 0.014205 +Final residual = 0.000041 +Average conv. rate = 0.054024 + +* 1 2 2 0.142048E-01 0.414582E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091172 +Final residual = 0.000012 +Average conv. rate = 0.050859 + +* 2 1 3 0.911718E-01 0.119937E-04 * +Number of iterations = 1 +Initial residual = 0.001124 +Final residual = 0.000050 +Average conv. rate = 0.044071 + +* 2 2 1 0.112413E-02 0.495412E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4187 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.07 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.42K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4187 Max w this run +w_max level proc position run w_max level timestep +0.526E+00 31 325 58.1deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4188 Model time: 1979-03-29 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043164 + +* 1 1 3 0.100000E+01 0.804174E-04 * +Number of iterations = 2 +Initial residual = 0.014069 +Final residual = 0.000041 +Average conv. rate = 0.054184 + +* 1 2 2 0.140693E-01 0.413056E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090398 +Final residual = 0.000013 +Average conv. rate = 0.052222 + +* 2 1 3 0.903976E-01 0.128739E-04 * +Number of iterations = 1 +Initial residual = 0.001126 +Final residual = 0.000050 +Average conv. rate = 0.044148 + +* 2 2 1 0.112639E-02 0.497277E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4188 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.18 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.67K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4188 Max w this run +w_max level proc position run w_max level timestep +0.509E+00 30 325 58.1deg E 23.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4189 Model time: 1979-03-29 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000078 +Average conv. rate = 0.042808 + +* 1 1 3 0.100000E+01 0.784491E-04 * +Number of iterations = 2 +Initial residual = 0.014034 +Final residual = 0.000044 +Average conv. rate = 0.055814 + +* 1 2 2 0.140335E-01 0.437178E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090554 +Final residual = 0.000013 +Average conv. rate = 0.052377 + +* 2 1 3 0.905537E-01 0.130114E-04 * +Number of iterations = 1 +Initial residual = 0.001100 +Final residual = 0.000050 +Average conv. rate = 0.045034 + +* 2 2 1 0.109961E-02 0.495201E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4189 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.25 42 118.1deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.89K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4189 Max w this run +w_max level proc position run w_max level timestep +0.526E+00 29 325 58.1deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4190 Model time: 1979-03-29 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043393 + +* 1 1 3 0.100000E+01 0.817086E-04 * +Number of iterations = 2 +Initial residual = 0.013952 +Final residual = 0.000045 +Average conv. rate = 0.056887 + +* 1 2 2 0.139524E-01 0.451512E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089863 +Final residual = 0.000013 +Average conv. rate = 0.052350 + +* 2 1 3 0.898627E-01 0.128926E-04 * +Number of iterations = 1 +Initial residual = 0.001082 +Final residual = 0.000049 +Average conv. rate = 0.045541 + +* 2 2 1 0.108162E-02 0.492579E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4190 +This timestep This run +Min theta1 proc position Min theta1 timestep +232.25 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.11K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4190 Max w this run +w_max level proc position run w_max level timestep +0.513E+00 29 325 58.1deg E 23.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4191 Model time: 1979-03-29 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043069 + +* 1 1 3 0.100000E+01 0.798930E-04 * +Number of iterations = 2 +Initial residual = 0.013933 +Final residual = 0.000045 +Average conv. rate = 0.057021 + +* 1 2 2 0.139330E-01 0.453014E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090852 +Final residual = 0.000013 +Average conv. rate = 0.052135 + +* 2 1 3 0.908521E-01 0.128745E-04 * +Number of iterations = 1 +Initial residual = 0.001084 +Final residual = 0.000050 +Average conv. rate = 0.045777 + +* 2 2 1 0.108391E-02 0.496179E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4191 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.93 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.37K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4191 Max w this run +w_max level proc position run w_max level timestep +0.511E+00 29 325 58.1deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4192 Model time: 1979-03-29 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043725 + +* 1 1 3 0.100000E+01 0.835993E-04 * +Number of iterations = 2 +Initial residual = 0.013854 +Final residual = 0.000044 +Average conv. rate = 0.056650 + +* 1 2 2 0.138540E-01 0.444611E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090112 +Final residual = 0.000013 +Average conv. rate = 0.052254 + +* 2 1 3 0.901124E-01 0.128574E-04 * +Number of iterations = 1 +Initial residual = 0.001089 +Final residual = 0.000050 +Average conv. rate = 0.045827 + +* 2 2 1 0.108858E-02 0.498861E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4192 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.64 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.59K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4192 Max w this run +w_max level proc position run w_max level timestep +0.515E+00 28 325 58.1deg E 23.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4193 Model time: 1979-03-29 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043495 + +* 1 1 3 0.100000E+01 0.822863E-04 * +Number of iterations = 2 +Initial residual = 0.013837 +Final residual = 0.000046 +Average conv. rate = 0.057373 + +* 1 2 2 0.138375E-01 0.455478E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091264 +Final residual = 0.000013 +Average conv. rate = 0.052613 + +* 2 1 3 0.912640E-01 0.132917E-04 * +Number of iterations = 1 +Initial residual = 0.001091 +Final residual = 0.000050 +Average conv. rate = 0.045538 + +* 2 2 1 0.109109E-02 0.496860E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4193 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.36 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.77K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4193 Max w this run +w_max level proc position run w_max level timestep +0.519E+00 29 325 58.1deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4194 Model time: 1979-03-29 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043663 + +* 1 1 3 0.100000E+01 0.832389E-04 * +Number of iterations = 2 +Initial residual = 0.013825 +Final residual = 0.000039 +Average conv. rate = 0.053087 + +* 1 2 2 0.138251E-01 0.389623E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091990 +Final residual = 0.000013 +Average conv. rate = 0.051849 + +* 2 1 3 0.919901E-01 0.128221E-04 * +Number of iterations = 1 +Initial residual = 0.001099 +Final residual = 0.000049 +Average conv. rate = 0.044903 + +* 2 2 1 0.109914E-02 0.493547E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4194 +This timestep This run +Min theta1 proc position Min theta1 timestep +231.10 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.12K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4194 Max w this run +w_max level proc position run w_max level timestep +0.524E+00 30 325 58.1deg E 23.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4195 Model time: 1979-03-29 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043632 + +* 1 1 3 0.100000E+01 0.830622E-04 * +Number of iterations = 2 +Initial residual = 0.013970 +Final residual = 0.000040 +Average conv. rate = 0.053218 + +* 1 2 2 0.139699E-01 0.395643E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091803 +Final residual = 0.000013 +Average conv. rate = 0.051457 + +* 2 1 3 0.918029E-01 0.125083E-04 * +Number of iterations = 1 +Initial residual = 0.001093 +Final residual = 0.000049 +Average conv. rate = 0.045234 + +* 2 2 1 0.109286E-02 0.494342E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4195 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.83 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.34K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4195 Max w this run +w_max level proc position run w_max level timestep +0.490E+00 30 325 58.1deg E 23.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4196 Model time: 1979-03-29 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043474 + +* 1 1 3 0.100000E+01 0.821626E-04 * +Number of iterations = 2 +Initial residual = 0.013968 +Final residual = 0.000039 +Average conv. rate = 0.053065 + +* 1 2 2 0.139681E-01 0.393336E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091337 +Final residual = 0.000013 +Average conv. rate = 0.051648 + +* 2 1 3 0.913366E-01 0.125834E-04 * +Number of iterations = 1 +Initial residual = 0.001096 +Final residual = 0.000049 +Average conv. rate = 0.044615 + +* 2 2 1 0.109644E-02 0.489173E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4196 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.59 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.49K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4196 Max w this run +w_max level proc position run w_max level timestep +0.426E+00 31 325 58.1deg E 23.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4197 Model time: 1979-03-29 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043508 + +* 1 1 3 0.100000E+01 0.823556E-04 * +Number of iterations = 2 +Initial residual = 0.014017 +Final residual = 0.000040 +Average conv. rate = 0.053099 + +* 1 2 2 0.140172E-01 0.395217E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091578 +Final residual = 0.000013 +Average conv. rate = 0.052024 + +* 2 1 3 0.915784E-01 0.128946E-04 * +Number of iterations = 1 +Initial residual = 0.001112 +Final residual = 0.000050 +Average conv. rate = 0.044618 + +* 2 2 1 0.111152E-02 0.495936E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4197 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.35 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.69K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4197 Max w this run +w_max level proc position run w_max level timestep +0.403E+00 42 270 161.3deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4198 Model time: 1979-03-29 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044145 + +* 1 1 3 0.100000E+01 0.860268E-04 * +Number of iterations = 2 +Initial residual = 0.014104 +Final residual = 0.000039 +Average conv. rate = 0.052829 + +* 1 2 2 0.141044E-01 0.393645E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090479 +Final residual = 0.000013 +Average conv. rate = 0.052562 + +* 2 1 3 0.904787E-01 0.131392E-04 * +Number of iterations = 1 +Initial residual = 0.001095 +Final residual = 0.000049 +Average conv. rate = 0.045189 + +* 2 2 1 0.109459E-02 0.494637E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4198 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.11 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.91K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4198 Max w this run +w_max level proc position run w_max level timestep +0.411E+00 34 293 58.1deg E 21.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4199 Model time: 1979-03-29 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044047 + +* 1 1 3 0.100000E+01 0.854582E-04 * +Number of iterations = 2 +Initial residual = 0.014136 +Final residual = 0.000039 +Average conv. rate = 0.052611 + +* 1 2 2 0.141355E-01 0.391256E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090484 +Final residual = 0.000014 +Average conv. rate = 0.053265 + +* 2 1 3 0.904839E-01 0.136738E-04 * +Number of iterations = 1 +Initial residual = 0.001082 +Final residual = 0.000049 +Average conv. rate = 0.045684 + +* 2 2 1 0.108215E-02 0.494362E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4199 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.87 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.15K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4199 Max w this run +w_max level proc position run w_max level timestep +0.453E+00 36 258 26.3deg E 0.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4200 Model time: 1979-03-29 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043860 + +* 1 1 3 0.100000E+01 0.843755E-04 * +Number of iterations = 2 +Initial residual = 0.013993 +Final residual = 0.000040 +Average conv. rate = 0.053235 + +* 1 2 2 0.139928E-01 0.396548E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090128 +Final residual = 0.000012 +Average conv. rate = 0.051726 + +* 2 1 3 0.901275E-01 0.124736E-04 * +Number of iterations = 1 +Initial residual = 0.001084 +Final residual = 0.000050 +Average conv. rate = 0.046131 + +* 2 2 1 0.108358E-02 0.499862E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4200 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.63 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.21K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4200 Max w this run +w_max level proc position run w_max level timestep +0.479E+00 37 258 26.3deg E 0.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4201 Model time: 1979-03-29 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043811 + +* 1 1 3 0.100000E+01 0.840932E-04 * +Number of iterations = 2 +Initial residual = 0.013921 +Final residual = 0.000038 +Average conv. rate = 0.052558 + +* 1 2 2 0.139209E-01 0.384540E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090963 +Final residual = 0.000013 +Average conv. rate = 0.052351 + +* 2 1 3 0.909629E-01 0.130509E-04 * +Number of iterations = 1 +Initial residual = 0.001094 +Final residual = 0.000050 +Average conv. rate = 0.046116 + +* 2 2 1 0.109434E-02 0.504671E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4201 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.37 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.47K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4201 Max w this run +w_max level proc position run w_max level timestep +0.428E+00 34 293 58.1deg E 21.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4202 Model time: 1979-03-29 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043547 + +* 1 1 3 0.100000E+01 0.825796E-04 * +Number of iterations = 2 +Initial residual = 0.013817 +Final residual = 0.000038 +Average conv. rate = 0.052462 + +* 1 2 2 0.138166E-01 0.380275E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090735 +Final residual = 0.000012 +Average conv. rate = 0.051268 + +* 2 1 3 0.907347E-01 0.122269E-04 * +Number of iterations = 1 +Initial residual = 0.001085 +Final residual = 0.000051 +Average conv. rate = 0.046838 + +* 2 2 1 0.108538E-02 0.508368E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4202 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.12 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.72K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4202 Max w this run +w_max level proc position run w_max level timestep +0.411E+00 43 270 161.3deg E 1.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4203 Model time: 1979-03-29 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043303 + +* 1 1 3 0.100000E+01 0.812011E-04 * +Number of iterations = 2 +Initial residual = 0.013785 +Final residual = 0.000039 +Average conv. rate = 0.053502 + +* 1 2 2 0.137845E-01 0.394584E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091042 +Final residual = 0.000013 +Average conv. rate = 0.052364 + +* 2 1 3 0.910418E-01 0.130718E-04 * +Number of iterations = 1 +Initial residual = 0.001073 +Final residual = 0.000050 +Average conv. rate = 0.046882 + +* 2 2 1 0.107330E-02 0.503187E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4203 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.87 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.94K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4203 Max w this run +w_max level proc position run w_max level timestep +0.446E+00 38 233 101.2deg E -1.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4204 Model time: 1979-03-29 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044071 + +* 1 1 3 0.100000E+01 0.855991E-04 * +Number of iterations = 2 +Initial residual = 0.013703 +Final residual = 0.000039 +Average conv. rate = 0.053133 + +* 1 2 2 0.137028E-01 0.386847E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089822 +Final residual = 0.000013 +Average conv. rate = 0.052552 + +* 2 1 3 0.898223E-01 0.130361E-04 * +Number of iterations = 1 +Initial residual = 0.001067 +Final residual = 0.000050 +Average conv. rate = 0.046429 + +* 2 2 1 0.106708E-02 0.495433E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4204 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.63 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.17K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4204 Max w this run +w_max level proc position run w_max level timestep +0.426E+00 37 218 67.5deg W -11.9deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4205 Model time: 1979-03-29 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043496 + +* 1 1 3 0.100000E+01 0.822906E-04 * +Number of iterations = 2 +Initial residual = 0.013811 +Final residual = 0.000039 +Average conv. rate = 0.053332 + +* 1 2 2 0.138111E-01 0.392834E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090628 +Final residual = 0.000013 +Average conv. rate = 0.052084 + +* 2 1 3 0.906278E-01 0.128052E-04 * +Number of iterations = 1 +Initial residual = 0.001060 +Final residual = 0.000049 +Average conv. rate = 0.045843 + +* 2 2 1 0.105975E-02 0.485820E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4205 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.39 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.42K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4205 Max w this run +w_max level proc position run w_max level timestep +0.428E+00 24 270 161.3deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4206 Model time: 1979-03-29 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043578 + +* 1 1 3 0.100000E+01 0.827584E-04 * +Number of iterations = 2 +Initial residual = 0.013918 +Final residual = 0.000040 +Average conv. rate = 0.053427 + +* 1 2 2 0.139177E-01 0.397275E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089716 +Final residual = 0.000013 +Average conv. rate = 0.052115 + +* 2 1 3 0.897161E-01 0.126983E-04 * +Number of iterations = 1 +Initial residual = 0.001040 +Final residual = 0.000048 +Average conv. rate = 0.046004 + +* 2 2 1 0.104012E-02 0.478493E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4206 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.16 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.65K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4206 Max w this run +w_max level proc position run w_max level timestep +0.456E+00 25 270 161.3deg E 1.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4207 Model time: 1979-03-29 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043813 + +* 1 1 3 0.100000E+01 0.841043E-04 * +Number of iterations = 2 +Initial residual = 0.014090 +Final residual = 0.000041 +Average conv. rate = 0.053807 + +* 1 2 2 0.140900E-01 0.407937E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089428 +Final residual = 0.000013 +Average conv. rate = 0.051939 + +* 2 1 3 0.894280E-01 0.125301E-04 * +Number of iterations = 1 +Initial residual = 0.001036 +Final residual = 0.000048 +Average conv. rate = 0.046544 + +* 2 2 1 0.103611E-02 0.482248E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4207 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.93 11 131.2deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.89K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4207 Max w this run +w_max level proc position run w_max level timestep +0.429E+00 25 270 161.3deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4208 Model time: 1979-03-29 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043316 + +* 1 1 3 0.100000E+01 0.812738E-04 * +Number of iterations = 2 +Initial residual = 0.014097 +Final residual = 0.000038 +Average conv. rate = 0.051669 + +* 1 2 2 0.140971E-01 0.376354E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088094 +Final residual = 0.000012 +Average conv. rate = 0.051994 + +* 2 1 3 0.880942E-01 0.123823E-04 * +Number of iterations = 1 +Initial residual = 0.001028 +Final residual = 0.000048 +Average conv. rate = 0.046367 + +* 2 2 1 0.102799E-02 0.476644E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4208 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.70 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.31K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4208 Max w this run +w_max level proc position run w_max level timestep +0.474E+00 26 270 161.3deg E 1.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4209 Model time: 1979-03-29 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043629 + +* 1 1 3 0.100000E+01 0.830488E-04 * +Number of iterations = 2 +Initial residual = 0.014158 +Final residual = 0.000038 +Average conv. rate = 0.051664 + +* 1 2 2 0.141575E-01 0.377892E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088381 +Final residual = 0.000013 +Average conv. rate = 0.052218 + +* 2 1 3 0.883808E-01 0.125839E-04 * +Number of iterations = 1 +Initial residual = 0.001031 +Final residual = 0.000047 +Average conv. rate = 0.045657 + +* 2 2 1 0.103135E-02 0.470882E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4209 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.48 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.55K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4209 Max w this run +w_max level proc position run w_max level timestep +0.510E+00 27 270 161.3deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4210 Model time: 1979-03-29 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043639 + +* 1 1 3 0.100000E+01 0.831058E-04 * +Number of iterations = 2 +Initial residual = 0.014182 +Final residual = 0.000042 +Average conv. rate = 0.054243 + +* 1 2 2 0.141821E-01 0.417280E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088823 +Final residual = 0.000013 +Average conv. rate = 0.052838 + +* 2 1 3 0.888230E-01 0.131028E-04 * +Number of iterations = 1 +Initial residual = 0.001019 +Final residual = 0.000047 +Average conv. rate = 0.045844 + +* 2 2 1 0.101946E-02 0.467363E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4210 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.27 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.79K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4210 Max w this run +w_max level proc position run w_max level timestep +0.613E+00 28 270 161.3deg E 1.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4211 Model time: 1979-03-29 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044092 + +* 1 1 3 0.100000E+01 0.857174E-04 * +Number of iterations = 2 +Initial residual = 0.014207 +Final residual = 0.000041 +Average conv. rate = 0.053395 + +* 1 2 2 0.142066E-01 0.405032E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.087356 +Final residual = 0.000013 +Average conv. rate = 0.052603 + +* 2 1 3 0.873565E-01 0.127154E-04 * +Number of iterations = 1 +Initial residual = 0.001037 +Final residual = 0.000047 +Average conv. rate = 0.045392 + +* 2 2 1 0.103684E-02 0.470636E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4211 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.08 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.00K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4211 Max w this run +w_max level proc position run w_max level timestep +0.612E+00 28 270 161.3deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4212 Model time: 1979-03-29 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044102 + +* 1 1 3 0.100000E+01 0.857774E-04 * +Number of iterations = 2 +Initial residual = 0.014077 +Final residual = 0.000042 +Average conv. rate = 0.054787 + +* 1 2 2 0.140765E-01 0.422521E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088871 +Final residual = 0.000014 +Average conv. rate = 0.053943 + +* 2 1 3 0.888706E-01 0.139497E-04 * +Number of iterations = 1 +Initial residual = 0.001080 +Final residual = 0.000047 +Average conv. rate = 0.043741 + +* 2 2 1 0.107961E-02 0.472229E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4212 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.89 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.20K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4212 Max w this run +w_max level proc position run w_max level timestep +0.604E+00 28 270 161.3deg E 1.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4213 Model time: 1979-03-29 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044761 + +* 1 1 3 0.100000E+01 0.896791E-04 * +Number of iterations = 2 +Initial residual = 0.014055 +Final residual = 0.000039 +Average conv. rate = 0.052543 + +* 1 2 2 0.140546E-01 0.388010E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089490 +Final residual = 0.000012 +Average conv. rate = 0.051765 + +* 2 1 3 0.894899E-01 0.124135E-04 * +Number of iterations = 1 +Initial residual = 0.001063 +Final residual = 0.000048 +Average conv. rate = 0.045138 + +* 2 2 1 0.106266E-02 0.479668E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4213 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.71 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.40K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4213 Max w this run +w_max level proc position run w_max level timestep +0.563E+00 31 270 161.3deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4214 Model time: 1979-03-29 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044168 + +* 1 1 3 0.100000E+01 0.861626E-04 * +Number of iterations = 2 +Initial residual = 0.014038 +Final residual = 0.000043 +Average conv. rate = 0.055039 + +* 1 2 2 0.140380E-01 0.425255E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088692 +Final residual = 0.000013 +Average conv. rate = 0.053094 + +* 2 1 3 0.886917E-01 0.132748E-04 * +Number of iterations = 1 +Initial residual = 0.001038 +Final residual = 0.000048 +Average conv. rate = 0.046094 + +* 2 2 1 0.103767E-02 0.478302E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4214 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.54 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.57K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4214 Max w this run +w_max level proc position run w_max level timestep +0.665E+00 31 270 161.3deg E 1.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4215 Model time: 1979-03-29 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044469 + +* 1 1 3 0.100000E+01 0.879357E-04 * +Number of iterations = 2 +Initial residual = 0.014080 +Final residual = 0.000041 +Average conv. rate = 0.053780 + +* 1 2 2 0.140802E-01 0.407245E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089430 +Final residual = 0.000013 +Average conv. rate = 0.052709 + +* 2 1 3 0.894297E-01 0.130956E-04 * +Number of iterations = 1 +Initial residual = 0.001051 +Final residual = 0.000049 +Average conv. rate = 0.046270 + +* 2 2 1 0.105103E-02 0.486311E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4215 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.37 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.74K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4215 Max w this run +w_max level proc position run w_max level timestep +0.597E+00 31 270 161.3deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4216 Model time: 1979-03-29 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043805 + +* 1 1 3 0.100000E+01 0.840552E-04 * +Number of iterations = 2 +Initial residual = 0.013997 +Final residual = 0.000041 +Average conv. rate = 0.054004 + +* 1 2 2 0.139971E-01 0.408211E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090334 +Final residual = 0.000011 +Average conv. rate = 0.050089 + +* 2 1 3 0.903337E-01 0.113519E-04 * +Number of iterations = 1 +Initial residual = 0.001060 +Final residual = 0.000048 +Average conv. rate = 0.045516 + +* 2 2 1 0.105987E-02 0.482408E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4216 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.21 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.92K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4216 Max w this run +w_max level proc position run w_max level timestep +0.608E+00 35 270 161.3deg E 1.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4217 Model time: 1979-03-29 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043880 + +* 1 1 3 0.100000E+01 0.844878E-04 * +Number of iterations = 2 +Initial residual = 0.013955 +Final residual = 0.000039 +Average conv. rate = 0.053039 + +* 1 2 2 0.139550E-01 0.392569E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091356 +Final residual = 0.000013 +Average conv. rate = 0.051793 + +* 2 1 3 0.913558E-01 0.126922E-04 * +Number of iterations = 1 +Initial residual = 0.001073 +Final residual = 0.000048 +Average conv. rate = 0.044953 + +* 2 2 1 0.107274E-02 0.482233E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4217 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.06 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.10K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4217 Max w this run +w_max level proc position run w_max level timestep +0.528E+00 33 270 161.3deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4218 Model time: 1979-03-29 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043794 + +* 1 1 3 0.100000E+01 0.839933E-04 * +Number of iterations = 2 +Initial residual = 0.013878 +Final residual = 0.000039 +Average conv. rate = 0.053050 + +* 1 2 2 0.138775E-01 0.390556E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090016 +Final residual = 0.000013 +Average conv. rate = 0.052820 + +* 2 1 3 0.900157E-01 0.132655E-04 * +Number of iterations = 1 +Initial residual = 0.001064 +Final residual = 0.000048 +Average conv. rate = 0.045282 + +* 2 2 1 0.106362E-02 0.481630E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4218 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.91 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.27K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4218 Max w this run +w_max level proc position run w_max level timestep +0.527E+00 33 270 161.3deg E 1.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4219 Model time: 1979-03-29 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043849 + +* 1 1 3 0.100000E+01 0.843124E-04 * +Number of iterations = 2 +Initial residual = 0.013853 +Final residual = 0.000039 +Average conv. rate = 0.053270 + +* 1 2 2 0.138533E-01 0.393114E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091728 +Final residual = 0.000015 +Average conv. rate = 0.054114 + +* 2 1 3 0.917276E-01 0.145356E-04 * +Number of iterations = 1 +Initial residual = 0.001076 +Final residual = 0.000049 +Average conv. rate = 0.045288 + +* 2 2 1 0.107641E-02 0.487478E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4219 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.76 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.43K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4219 Max w this run +w_max level proc position run w_max level timestep +0.502E+00 37 258 24.4deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4220 Model time: 1979-03-29 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043946 + +* 1 1 3 0.100000E+01 0.848681E-04 * +Number of iterations = 2 +Initial residual = 0.013751 +Final residual = 0.000042 +Average conv. rate = 0.055353 + +* 1 2 2 0.137514E-01 0.421336E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091885 +Final residual = 0.000014 +Average conv. rate = 0.052895 + +* 2 1 3 0.918852E-01 0.135984E-04 * +Number of iterations = 1 +Initial residual = 0.001067 +Final residual = 0.000048 +Average conv. rate = 0.044866 + +* 2 2 1 0.106651E-02 0.478497E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4220 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.61 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.57K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4220 Max w this run +w_max level proc position run w_max level timestep +0.484E+00 37 258 24.4deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4221 Model time: 1979-03-29 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043731 + +* 1 1 3 0.100000E+01 0.836320E-04 * +Number of iterations = 2 +Initial residual = 0.013792 +Final residual = 0.000040 +Average conv. rate = 0.053699 + +* 1 2 2 0.137922E-01 0.397713E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092294 +Final residual = 0.000013 +Average conv. rate = 0.052222 + +* 2 1 3 0.922943E-01 0.131441E-04 * +Number of iterations = 1 +Initial residual = 0.001060 +Final residual = 0.000047 +Average conv. rate = 0.044088 + +* 2 2 1 0.105954E-02 0.467131E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4221 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.47 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.73K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4221 Max w this run +w_max level proc position run w_max level timestep +0.485E+00 39 258 22.5deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4222 Model time: 1979-03-29 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044174 + +* 1 1 3 0.100000E+01 0.861962E-04 * +Number of iterations = 2 +Initial residual = 0.013786 +Final residual = 0.000041 +Average conv. rate = 0.054727 + +* 1 2 2 0.137862E-01 0.412896E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092151 +Final residual = 0.000013 +Average conv. rate = 0.052333 + +* 2 1 3 0.921514E-01 0.132080E-04 * +Number of iterations = 1 +Initial residual = 0.001058 +Final residual = 0.000046 +Average conv. rate = 0.043267 + +* 2 2 1 0.105821E-02 0.457852E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4222 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.32 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.88K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4222 Max w this run +w_max level proc position run w_max level timestep +0.446E+00 35 258 24.4deg E 4.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4223 Model time: 1979-03-29 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044201 + +* 1 1 3 0.100000E+01 0.863543E-04 * +Number of iterations = 2 +Initial residual = 0.013904 +Final residual = 0.000042 +Average conv. rate = 0.055177 + +* 1 2 2 0.139044E-01 0.423324E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093256 +Final residual = 0.000013 +Average conv. rate = 0.052386 + +* 2 1 3 0.932564E-01 0.134065E-04 * +Number of iterations = 1 +Initial residual = 0.001060 +Final residual = 0.000046 +Average conv. rate = 0.043281 + +* 2 2 1 0.106020E-02 0.458865E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4223 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.19 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.04K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4223 Max w this run +w_max level proc position run w_max level timestep +0.510E+00 37 250 60.0deg W -9.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4224 Model time: 1979-03-30 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043810 + +* 1 1 3 0.100000E+01 0.840837E-04 * +Number of iterations = 2 +Initial residual = 0.013956 +Final residual = 0.000043 +Average conv. rate = 0.055221 + +* 1 2 2 0.139560E-01 0.425568E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092289 +Final residual = 0.000013 +Average conv. rate = 0.051690 + +* 2 1 3 0.922893E-01 0.127462E-04 * +Number of iterations = 1 +Initial residual = 0.001065 +Final residual = 0.000047 +Average conv. rate = 0.044278 + +* 2 2 1 0.106456E-02 0.471363E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51422E+19 +Tot energy 0.13059E+25 +tot dry energy 0.13061E+25 +gr( rho cal) 0.38120E+24 +KE( rho cal) 0.81920E+21 +KEu(rho cal) 0.59542E+21 +KEv(rho cal) 0.22378E+21 +KEw(rho cal) 0.10710E+16 +cvT( rho cal) 0.92404E+24 +lq ( rho cal) 0.31456E+23 +lqcf( rho cal) 0.60787E+20 +lqcl( rho cal) 0.41853E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12616E+17 KG +Initial moisture = 0.12528E+17 KG +change in moisture = 0.88414E+14 KG +Moisture added E-P in period = 0.87574E+14 KG +Error in moisture = 0.83940E+12 KG +Error as % of change = 0.94940E+00 +q ( rho cal) 0.12577E+17 +qcf( rho cal) 0.24305E+14 +qcl( rho cal) 0.14763E+14 +FINAL TOTAL ENERGY = 0.13059E+25 J/ +INITIAL TOTAL ENERGY = 0.13060E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.87703E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.94001E+20 J/ +ERROR IN ENERGY BUDGET = -0.62977E+19 J/ +TEMP CORRECTION OVER A DAY = -0.17101E-02 K +TEMPERATURE CORRECTION RATE = -0.19792E-07 K/S +FLUX CORRECTION (ATM) = -0.14289E+00 W/M2 + +Minimum theta level 1 for timestep 4224 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.05 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.19K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4224 Max w this run +w_max level proc position run w_max level timestep +0.515E+00 38 258 22.5deg E 4.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -5892.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -5892.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -5892.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -5892.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -5892.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -5892.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 4225 Model time: 1979-03-30 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043470 + +* 1 1 3 0.100000E+01 0.821403E-04 * +Number of iterations = 2 +Initial residual = 0.013975 +Final residual = 0.000041 +Average conv. rate = 0.053946 + +* 1 2 2 0.139747E-01 0.406687E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093238 +Final residual = 0.000012 +Average conv. rate = 0.050588 + +* 2 1 3 0.932384E-01 0.120706E-04 * +Number of iterations = 1 +Initial residual = 0.001079 +Final residual = 0.000048 +Average conv. rate = 0.044350 + +* 2 2 1 0.107949E-02 0.478752E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4225 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.92 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.33K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4225 Max w this run +w_max level proc position run w_max level timestep +0.579E+00 34 258 22.5deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4226 Model time: 1979-03-30 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043234 + +* 1 1 3 0.100000E+01 0.808110E-04 * +Number of iterations = 2 +Initial residual = 0.013907 +Final residual = 0.000041 +Average conv. rate = 0.054005 + +* 1 2 2 0.139065E-01 0.405591E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092293 +Final residual = 0.000012 +Average conv. rate = 0.051170 + +* 2 1 3 0.922934E-01 0.123660E-04 * +Number of iterations = 1 +Initial residual = 0.001088 +Final residual = 0.000048 +Average conv. rate = 0.044443 + +* 2 2 1 0.108788E-02 0.483490E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4226 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.80 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.46K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4226 Max w this run +w_max level proc position run w_max level timestep +0.565E+00 35 258 22.5deg E 4.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4227 Model time: 1979-03-30 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043382 + +* 1 1 3 0.100000E+01 0.816439E-04 * +Number of iterations = 2 +Initial residual = 0.013985 +Final residual = 0.000041 +Average conv. rate = 0.053958 + +* 1 2 2 0.139855E-01 0.407177E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092926 +Final residual = 0.000013 +Average conv. rate = 0.051511 + +* 2 1 3 0.929257E-01 0.127010E-04 * +Number of iterations = 1 +Initial residual = 0.001092 +Final residual = 0.000048 +Average conv. rate = 0.043857 + +* 2 2 1 0.109237E-02 0.479085E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4227 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.69 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.59K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4227 Max w this run +w_max level proc position run w_max level timestep +0.609E+00 36 258 22.5deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4228 Model time: 1979-03-30 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043266 + +* 1 1 3 0.100000E+01 0.809939E-04 * +Number of iterations = 2 +Initial residual = 0.013990 +Final residual = 0.000044 +Average conv. rate = 0.056032 + +* 1 2 2 0.139900E-01 0.439235E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090701 +Final residual = 0.000014 +Average conv. rate = 0.054003 + +* 2 1 3 0.907009E-01 0.142846E-04 * +Number of iterations = 1 +Initial residual = 0.001082 +Final residual = 0.000048 +Average conv. rate = 0.044236 + +* 2 2 1 0.108206E-02 0.478659E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4228 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.59 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.71K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4228 Max w this run +w_max level proc position run w_max level timestep +0.637E+00 37 258 22.5deg E 4.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4229 Model time: 1979-03-30 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043325 + +* 1 1 3 0.100000E+01 0.813220E-04 * +Number of iterations = 2 +Initial residual = 0.014026 +Final residual = 0.000043 +Average conv. rate = 0.055126 + +* 1 2 2 0.140261E-01 0.426241E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091085 +Final residual = 0.000014 +Average conv. rate = 0.053406 + +* 2 1 3 0.910849E-01 0.138746E-04 * +Number of iterations = 1 +Initial residual = 0.001089 +Final residual = 0.000047 +Average conv. rate = 0.043483 + +* 2 2 1 0.108896E-02 0.473514E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4229 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.50 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.79K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4229 Max w this run +w_max level proc position run w_max level timestep +0.621E+00 37 258 22.5deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4230 Model time: 1979-03-30 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043208 + +* 1 1 3 0.100000E+01 0.806671E-04 * +Number of iterations = 2 +Initial residual = 0.013939 +Final residual = 0.000042 +Average conv. rate = 0.054651 + +* 1 2 2 0.139386E-01 0.416308E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090852 +Final residual = 0.000014 +Average conv. rate = 0.053159 + +* 2 1 3 0.908519E-01 0.136475E-04 * +Number of iterations = 1 +Initial residual = 0.001103 +Final residual = 0.000048 +Average conv. rate = 0.043559 + +* 2 2 1 0.110331E-02 0.480586E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4230 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.41 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.88K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4230 Max w this run +w_max level proc position run w_max level timestep +0.607E+00 37 258 22.5deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4231 Model time: 1979-03-30 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043011 + +* 1 1 3 0.100000E+01 0.795666E-04 * +Number of iterations = 2 +Initial residual = 0.013930 +Final residual = 0.000043 +Average conv. rate = 0.055411 + +* 1 2 2 0.139302E-01 0.427703E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090907 +Final residual = 0.000014 +Average conv. rate = 0.053027 + +* 2 1 3 0.909070E-01 0.135546E-04 * +Number of iterations = 1 +Initial residual = 0.001104 +Final residual = 0.000049 +Average conv. rate = 0.044519 + +* 2 2 1 0.110400E-02 0.491495E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4231 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.34 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.96K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4231 Max w this run +w_max level proc position run w_max level timestep +0.625E+00 29 258 22.5deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4232 Model time: 1979-03-30 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043663 + +* 1 1 3 0.100000E+01 0.832442E-04 * +Number of iterations = 2 +Initial residual = 0.013867 +Final residual = 0.000041 +Average conv. rate = 0.054370 + +* 1 2 2 0.138666E-01 0.409902E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089863 +Final residual = 0.000014 +Average conv. rate = 0.054241 + +* 2 1 3 0.898632E-01 0.143402E-04 * +Number of iterations = 1 +Initial residual = 0.001120 +Final residual = 0.000050 +Average conv. rate = 0.044724 + +* 2 2 1 0.111992E-02 0.500870E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4232 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.27 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.03K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4232 Max w this run +w_max level proc position run w_max level timestep +0.644E+00 30 258 22.5deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4233 Model time: 1979-03-30 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043555 + +* 1 1 3 0.100000E+01 0.826235E-04 * +Number of iterations = 2 +Initial residual = 0.013881 +Final residual = 0.000041 +Average conv. rate = 0.054033 + +* 1 2 2 0.138810E-01 0.405261E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088995 +Final residual = 0.000013 +Average conv. rate = 0.052672 + +* 2 1 3 0.889949E-01 0.130045E-04 * +Number of iterations = 1 +Initial residual = 0.001100 +Final residual = 0.000051 +Average conv. rate = 0.046328 + +* 2 2 1 0.110046E-02 0.509823E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4233 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.20 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.09K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4233 Max w this run +w_max level proc position run w_max level timestep +0.590E+00 31 258 22.5deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4234 Model time: 1979-03-30 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043105 + +* 1 1 3 0.100000E+01 0.800909E-04 * +Number of iterations = 2 +Initial residual = 0.013841 +Final residual = 0.000041 +Average conv. rate = 0.054194 + +* 1 2 2 0.138408E-01 0.406501E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.088618 +Final residual = 0.000099 +Average conv. rate = 0.033464 + +* 2 1 2 0.886177E-01 0.992397E-04 * +Number of iterations = 1 +Initial residual = 0.001111 +Final residual = 0.000052 +Average conv. rate = 0.046609 + +* 2 2 1 0.111142E-02 0.518018E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4234 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.14 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.14K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4234 Max w this run +w_max level proc position run w_max level timestep +0.612E+00 32 258 22.5deg E 4.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4235 Model time: 1979-03-30 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043455 + +* 1 1 3 0.100000E+01 0.820555E-04 * +Number of iterations = 2 +Initial residual = 0.013832 +Final residual = 0.000042 +Average conv. rate = 0.054999 + +* 1 2 2 0.138319E-01 0.418398E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088520 +Final residual = 0.000013 +Average conv. rate = 0.052209 + +* 2 1 3 0.885197E-01 0.125971E-04 * +Number of iterations = 1 +Initial residual = 0.001081 +Final residual = 0.000050 +Average conv. rate = 0.046602 + +* 2 2 1 0.108100E-02 0.503763E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4235 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.07 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.20K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4235 Max w this run +w_max level proc position run w_max level timestep +0.555E+00 32 258 22.5deg E 4.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4236 Model time: 1979-03-30 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000079 +Average conv. rate = 0.042869 + +* 1 1 3 0.100000E+01 0.787832E-04 * +Number of iterations = 2 +Initial residual = 0.013750 +Final residual = 0.000042 +Average conv. rate = 0.055344 + +* 1 2 2 0.137495E-01 0.421139E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.087362 +Final residual = 0.000012 +Average conv. rate = 0.052144 + +* 2 1 3 0.873623E-01 0.123861E-04 * +Number of iterations = 1 +Initial residual = 0.001064 +Final residual = 0.000049 +Average conv. rate = 0.045606 + +* 2 2 1 0.106448E-02 0.485462E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4236 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.01 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.27K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4236 Max w this run +w_max level proc position run w_max level timestep +0.492E+00 39 250 63.8deg W -6.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4237 Model time: 1979-03-30 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043115 + +* 1 1 3 0.100000E+01 0.801442E-04 * +Number of iterations = 2 +Initial residual = 0.013730 +Final residual = 0.000043 +Average conv. rate = 0.056279 + +* 1 2 2 0.137297E-01 0.434863E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.087395 +Final residual = 0.000100 +Average conv. rate = 0.033774 + +* 2 1 2 0.873949E-01 0.996912E-04 * +Number of iterations = 1 +Initial residual = 0.001063 +Final residual = 0.000049 +Average conv. rate = 0.045855 + +* 2 2 1 0.106256E-02 0.487233E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4237 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.94 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.35K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4237 Max w this run +w_max level proc position run w_max level timestep +0.464E+00 39 250 63.8deg W -6.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4238 Model time: 1979-03-30 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043306 + +* 1 1 3 0.100000E+01 0.812190E-04 * +Number of iterations = 2 +Initial residual = 0.013662 +Final residual = 0.000045 +Average conv. rate = 0.057363 + +* 1 2 2 0.136617E-01 0.449542E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.087663 +Final residual = 0.000098 +Average conv. rate = 0.033438 + +* 2 1 2 0.876627E-01 0.980154E-04 * +Number of iterations = 1 +Initial residual = 0.001056 +Final residual = 0.000049 +Average conv. rate = 0.045926 + +* 2 2 1 0.105632E-02 0.485124E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4238 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.87 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.44K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4238 Max w this run +w_max level proc position run w_max level timestep +0.402E+00 41 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4239 Model time: 1979-03-30 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043126 + +* 1 1 3 0.100000E+01 0.802071E-04 * +Number of iterations = 2 +Initial residual = 0.013662 +Final residual = 0.000044 +Average conv. rate = 0.056985 + +* 1 2 2 0.136623E-01 0.443663E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.088304 +Final residual = 0.000098 +Average conv. rate = 0.033368 + +* 2 1 2 0.883039E-01 0.983221E-04 * +Number of iterations = 1 +Initial residual = 0.001053 +Final residual = 0.000048 +Average conv. rate = 0.045835 + +* 2 2 1 0.105316E-02 0.482720E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4239 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.80 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.51K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4239 Max w this run +w_max level proc position run w_max level timestep +0.432E+00 41 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4240 Model time: 1979-03-30 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043038 + +* 1 1 3 0.100000E+01 0.797157E-04 * +Number of iterations = 2 +Initial residual = 0.013641 +Final residual = 0.000044 +Average conv. rate = 0.056724 + +* 1 2 2 0.136414E-01 0.438928E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.087907 +Final residual = 0.000099 +Average conv. rate = 0.033533 + +* 2 1 2 0.879070E-01 0.988510E-04 * +Number of iterations = 1 +Initial residual = 0.001056 +Final residual = 0.000049 +Average conv. rate = 0.046184 + +* 2 2 1 0.105579E-02 0.487605E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4240 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.73 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.59K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4240 Max w this run +w_max level proc position run w_max level timestep +0.487E+00 40 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4241 Model time: 1979-03-30 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043055 + +* 1 1 3 0.100000E+01 0.798127E-04 * +Number of iterations = 2 +Initial residual = 0.013712 +Final residual = 0.000045 +Average conv. rate = 0.057318 + +* 1 2 2 0.137123E-01 0.450503E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.089034 +Final residual = 0.000100 +Average conv. rate = 0.033453 + +* 2 1 2 0.890344E-01 0.996386E-04 * +Number of iterations = 1 +Initial residual = 0.001058 +Final residual = 0.000049 +Average conv. rate = 0.046177 + +* 2 2 1 0.105841E-02 0.488744E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4241 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.66 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.68K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4241 Max w this run +w_max level proc position run w_max level timestep +0.608E+00 34 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4242 Model time: 1979-03-30 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000081 +Average conv. rate = 0.043304 + +* 1 1 3 0.100000E+01 0.812045E-04 * +Number of iterations = 2 +Initial residual = 0.013757 +Final residual = 0.000044 +Average conv. rate = 0.056609 + +* 1 2 2 0.137567E-01 0.440841E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.090761 +Final residual = 0.000099 +Average conv. rate = 0.033101 + +* 2 1 2 0.907612E-01 0.994474E-04 * +Number of iterations = 1 +Initial residual = 0.001101 +Final residual = 0.000048 +Average conv. rate = 0.043255 + +* 2 2 1 0.110086E-02 0.476176E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4242 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.58 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.77K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4242 Max w this run +w_max level proc position run w_max level timestep +0.579E+00 32 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4243 Model time: 1979-03-30 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043368 + +* 1 1 3 0.100000E+01 0.815659E-04 * +Number of iterations = 2 +Initial residual = 0.013807 +Final residual = 0.000044 +Average conv. rate = 0.056195 + +* 1 2 2 0.138066E-01 0.435991E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090410 +Final residual = 0.000012 +Average conv. rate = 0.051257 + +* 2 1 3 0.904098E-01 0.121754E-04 * +Number of iterations = 1 +Initial residual = 0.001076 +Final residual = 0.000047 +Average conv. rate = 0.043850 + +* 2 2 1 0.107603E-02 0.471843E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4243 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.51 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.85K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4243 Max w this run +w_max level proc position run w_max level timestep +0.559E+00 38 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4244 Model time: 1979-03-30 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044055 + +* 1 1 3 0.100000E+01 0.855014E-04 * +Number of iterations = 2 +Initial residual = 0.013775 +Final residual = 0.000043 +Average conv. rate = 0.055717 + +* 1 2 2 0.137750E-01 0.427635E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089064 +Final residual = 0.000012 +Average conv. rate = 0.050858 + +* 2 1 3 0.890637E-01 0.117160E-04 * +Number of iterations = 1 +Initial residual = 0.001083 +Final residual = 0.000047 +Average conv. rate = 0.043795 + +* 2 2 1 0.108265E-02 0.474146E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4244 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.45 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.93K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4244 Max w this run +w_max level proc position run w_max level timestep +0.489E+00 35 155 56.3deg W -35.6deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4245 Model time: 1979-03-30 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043404 + +* 1 1 3 0.100000E+01 0.817673E-04 * +Number of iterations = 2 +Initial residual = 0.013892 +Final residual = 0.000043 +Average conv. rate = 0.055466 + +* 1 2 2 0.138919E-01 0.427388E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089396 +Final residual = 0.000012 +Average conv. rate = 0.051074 + +* 2 1 3 0.893963E-01 0.119102E-04 * +Number of iterations = 1 +Initial residual = 0.001096 +Final residual = 0.000048 +Average conv. rate = 0.043592 + +* 2 2 1 0.109562E-02 0.477606E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4245 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.39 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.99K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4245 Max w this run +w_max level proc position run w_max level timestep +0.534E+00 41 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4246 Model time: 1979-03-30 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043774 + +* 1 1 3 0.100000E+01 0.838807E-04 * +Number of iterations = 2 +Initial residual = 0.014029 +Final residual = 0.000042 +Average conv. rate = 0.054774 + +* 1 2 2 0.140288E-01 0.420884E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088985 +Final residual = 0.000014 +Average conv. rate = 0.054225 + +* 2 1 3 0.889852E-01 0.141881E-04 * +Number of iterations = 1 +Initial residual = 0.001100 +Final residual = 0.000048 +Average conv. rate = 0.043484 + +* 2 2 1 0.110033E-02 0.478465E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4246 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.35 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.05K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4246 Max w this run +w_max level proc position run w_max level timestep +0.560E+00 39 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4247 Model time: 1979-03-30 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043687 + +* 1 1 3 0.100000E+01 0.833790E-04 * +Number of iterations = 2 +Initial residual = 0.014192 +Final residual = 0.000042 +Average conv. rate = 0.054620 + +* 1 2 2 0.141920E-01 0.423393E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091151 +Final residual = 0.000014 +Average conv. rate = 0.052920 + +* 2 1 3 0.911507E-01 0.135089E-04 * +Number of iterations = 1 +Initial residual = 0.001099 +Final residual = 0.000048 +Average conv. rate = 0.043485 + +* 2 2 1 0.109862E-02 0.477734E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4247 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.31 11 133.1deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.09K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4247 Max w this run +w_max level proc position run w_max level timestep +0.673E+00 35 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4248 Model time: 1979-03-30 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043494 + +* 1 1 3 0.100000E+01 0.822778E-04 * +Number of iterations = 2 +Initial residual = 0.014090 +Final residual = 0.000043 +Average conv. rate = 0.055510 + +* 1 2 2 0.140903E-01 0.434169E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093746 +Final residual = 0.000012 +Average conv. rate = 0.051063 + +* 2 1 3 0.937458E-01 0.124814E-04 * +Number of iterations = 1 +Initial residual = 0.001114 +Final residual = 0.000047 +Average conv. rate = 0.042433 + +* 2 2 1 0.111448E-02 0.472908E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4248 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.28 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.33K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4248 Max w this run +w_max level proc position run w_max level timestep +0.600E+00 35 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4249 Model time: 1979-03-30 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043663 + +* 1 1 3 0.100000E+01 0.832396E-04 * +Number of iterations = 2 +Initial residual = 0.014064 +Final residual = 0.000044 +Average conv. rate = 0.055842 + +* 1 2 2 0.140643E-01 0.438571E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090842 +Final residual = 0.000012 +Average conv. rate = 0.051107 + +* 2 1 3 0.908418E-01 0.121259E-04 * +Number of iterations = 1 +Initial residual = 0.001096 +Final residual = 0.000048 +Average conv. rate = 0.043328 + +* 2 2 1 0.109635E-02 0.475026E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4249 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.26 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.36K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4249 Max w this run +w_max level proc position run w_max level timestep +0.698E+00 37 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4250 Model time: 1979-03-30 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043753 + +* 1 1 3 0.100000E+01 0.837581E-04 * +Number of iterations = 2 +Initial residual = 0.013970 +Final residual = 0.000043 +Average conv. rate = 0.055460 + +* 1 2 2 0.139699E-01 0.429693E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090602 +Final residual = 0.000012 +Average conv. rate = 0.051164 + +* 2 1 3 0.906025E-01 0.121350E-04 * +Number of iterations = 1 +Initial residual = 0.001105 +Final residual = 0.000048 +Average conv. rate = 0.043493 + +* 2 2 1 0.110487E-02 0.480546E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4250 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.24 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.39K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4250 Max w this run +w_max level proc position run w_max level timestep +0.661E+00 35 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4251 Model time: 1979-03-30 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043711 + +* 1 1 3 0.100000E+01 0.835165E-04 * +Number of iterations = 2 +Initial residual = 0.013917 +Final residual = 0.000045 +Average conv. rate = 0.056783 + +* 1 2 2 0.139169E-01 0.448723E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090471 +Final residual = 0.000013 +Average conv. rate = 0.052235 + +* 2 1 3 0.904713E-01 0.128944E-04 * +Number of iterations = 1 +Initial residual = 0.001099 +Final residual = 0.000048 +Average conv. rate = 0.043759 + +* 2 2 1 0.109922E-02 0.481011E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4251 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.22 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.41K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4251 Max w this run +w_max level proc position run w_max level timestep +0.667E+00 37 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4252 Model time: 1979-03-30 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044165 + +* 1 1 3 0.100000E+01 0.861463E-04 * +Number of iterations = 2 +Initial residual = 0.013947 +Final residual = 0.000042 +Average conv. rate = 0.055102 + +* 1 2 2 0.139474E-01 0.423481E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090149 +Final residual = 0.000011 +Average conv. rate = 0.049563 + +* 2 1 3 0.901485E-01 0.109755E-04 * +Number of iterations = 1 +Initial residual = 0.001078 +Final residual = 0.000047 +Average conv. rate = 0.043907 + +* 2 2 1 0.107772E-02 0.473188E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4252 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.21 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.44K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4252 Max w this run +w_max level proc position run w_max level timestep +0.624E+00 38 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4253 Model time: 1979-03-30 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044431 + +* 1 1 3 0.100000E+01 0.877120E-04 * +Number of iterations = 2 +Initial residual = 0.014089 +Final residual = 0.000044 +Average conv. rate = 0.055569 + +* 1 2 2 0.140891E-01 0.435058E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089643 +Final residual = 0.000012 +Average conv. rate = 0.050863 + +* 2 1 3 0.896427E-01 0.117958E-04 * +Number of iterations = 1 +Initial residual = 0.001073 +Final residual = 0.000047 +Average conv. rate = 0.044215 + +* 2 2 1 0.107278E-02 0.474332E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4253 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.19 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.47K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4253 Max w this run +w_max level proc position run w_max level timestep +0.617E+00 38 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4254 Model time: 1979-03-30 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044374 + +* 1 1 3 0.100000E+01 0.873722E-04 * +Number of iterations = 2 +Initial residual = 0.014120 +Final residual = 0.000044 +Average conv. rate = 0.055647 + +* 1 2 2 0.141198E-01 0.437225E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089416 +Final residual = 0.000012 +Average conv. rate = 0.051091 + +* 2 1 3 0.894160E-01 0.119247E-04 * +Number of iterations = 1 +Initial residual = 0.001075 +Final residual = 0.000048 +Average conv. rate = 0.044356 + +* 2 2 1 0.107516E-02 0.476901E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4254 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.19 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.48K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4254 Max w this run +w_max level proc position run w_max level timestep +0.501E+00 39 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4255 Model time: 1979-03-30 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044726 + +* 1 1 3 0.100000E+01 0.894697E-04 * +Number of iterations = 2 +Initial residual = 0.014170 +Final residual = 0.000044 +Average conv. rate = 0.055658 + +* 1 2 2 0.141699E-01 0.438959E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089901 +Final residual = 0.000012 +Average conv. rate = 0.050820 + +* 2 1 3 0.899009E-01 0.117996E-04 * +Number of iterations = 1 +Initial residual = 0.001083 +Final residual = 0.000048 +Average conv. rate = 0.043954 + +* 2 2 1 0.108326E-02 0.476135E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4255 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.19 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.46K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4255 Max w this run +w_max level proc position run w_max level timestep +0.509E+00 40 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4256 Model time: 1979-03-30 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000089 +Average conv. rate = 0.044683 + +* 1 1 3 0.100000E+01 0.892145E-04 * +Number of iterations = 2 +Initial residual = 0.014125 +Final residual = 0.000042 +Average conv. rate = 0.054752 + +* 1 2 2 0.141245E-01 0.423418E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088404 +Final residual = 0.000011 +Average conv. rate = 0.050325 + +* 2 1 3 0.884039E-01 0.112675E-04 * +Number of iterations = 1 +Initial residual = 0.001081 +Final residual = 0.000047 +Average conv. rate = 0.043454 + +* 2 2 1 0.108072E-02 0.469610E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4256 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.22 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.42K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4256 Max w this run +w_max level proc position run w_max level timestep +0.442E+00 32 328 90.0deg E 25.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4257 Model time: 1979-03-30 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044159 + +* 1 1 3 0.100000E+01 0.861131E-04 * +Number of iterations = 2 +Initial residual = 0.014144 +Final residual = 0.000043 +Average conv. rate = 0.055197 + +* 1 2 2 0.141444E-01 0.430946E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089006 +Final residual = 0.000012 +Average conv. rate = 0.050866 + +* 2 1 3 0.890058E-01 0.117141E-04 * +Number of iterations = 1 +Initial residual = 0.001079 +Final residual = 0.000047 +Average conv. rate = 0.043121 + +* 2 2 1 0.107863E-02 0.465110E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4257 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.25 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.37K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4257 Max w this run +w_max level proc position run w_max level timestep +0.467E+00 33 328 91.9deg E 25.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4258 Model time: 1979-03-30 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044031 + +* 1 1 3 0.100000E+01 0.853644E-04 * +Number of iterations = 2 +Initial residual = 0.014097 +Final residual = 0.000043 +Average conv. rate = 0.055005 + +* 1 2 2 0.140975E-01 0.426524E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.088525 +Final residual = 0.000011 +Average conv. rate = 0.050117 + +* 2 1 3 0.885252E-01 0.111437E-04 * +Number of iterations = 1 +Initial residual = 0.001066 +Final residual = 0.000047 +Average conv. rate = 0.043929 + +* 2 2 1 0.106588E-02 0.468228E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4258 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.29 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.30K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4258 Max w this run +w_max level proc position run w_max level timestep +0.528E+00 33 328 91.9deg E 25.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4259 Model time: 1979-03-30 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044813 + +* 1 1 3 0.100000E+01 0.899931E-04 * +Number of iterations = 2 +Initial residual = 0.014141 +Final residual = 0.000043 +Average conv. rate = 0.055223 + +* 1 2 2 0.141413E-01 0.431253E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089634 +Final residual = 0.000011 +Average conv. rate = 0.049257 + +* 2 1 3 0.896339E-01 0.107123E-04 * +Number of iterations = 1 +Initial residual = 0.001065 +Final residual = 0.000048 +Average conv. rate = 0.044688 + +* 2 2 1 0.106477E-02 0.475823E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4259 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.33 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.24K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4259 Max w this run +w_max level proc position run w_max level timestep +0.537E+00 34 328 91.9deg E 25.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4260 Model time: 1979-03-30 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044293 + +* 1 1 3 0.100000E+01 0.868961E-04 * +Number of iterations = 2 +Initial residual = 0.014071 +Final residual = 0.000043 +Average conv. rate = 0.055120 + +* 1 2 2 0.140709E-01 0.427510E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089882 +Final residual = 0.000011 +Average conv. rate = 0.049305 + +* 2 1 3 0.898816E-01 0.107730E-04 * +Number of iterations = 1 +Initial residual = 0.001064 +Final residual = 0.000048 +Average conv. rate = 0.044669 + +* 2 2 1 0.106440E-02 0.475459E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4260 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.37 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.17K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4260 Max w this run +w_max level proc position run w_max level timestep +0.467E+00 34 328 91.9deg E 25.6deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4261 Model time: 1979-03-30 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044170 + +* 1 1 3 0.100000E+01 0.861732E-04 * +Number of iterations = 2 +Initial residual = 0.014041 +Final residual = 0.000043 +Average conv. rate = 0.055544 + +* 1 2 2 0.140410E-01 0.433185E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 2 +Initial residual = 0.091589 +Final residual = 0.000100 +Average conv. rate = 0.033026 + +* 2 1 2 0.915891E-01 0.999005E-04 * +Number of iterations = 1 +Initial residual = 0.001074 +Final residual = 0.000049 +Average conv. rate = 0.045410 + +* 2 2 1 0.107396E-02 0.487687E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4261 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.42 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.10K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4261 Max w this run +w_max level proc position run w_max level timestep +0.450E+00 25 153 73.1deg W -36.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4262 Model time: 1979-03-30 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044119 + +* 1 1 3 0.100000E+01 0.858749E-04 * +Number of iterations = 2 +Initial residual = 0.013923 +Final residual = 0.000045 +Average conv. rate = 0.056904 + +* 1 2 2 0.139229E-01 0.450838E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091873 +Final residual = 0.000012 +Average conv. rate = 0.050898 + +* 2 1 3 0.918726E-01 0.121137E-04 * +Number of iterations = 1 +Initial residual = 0.001091 +Final residual = 0.000049 +Average conv. rate = 0.045203 + +* 2 2 1 0.109061E-02 0.492992E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4262 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.51 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -18.01K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4262 Max w this run +w_max level proc position run w_max level timestep +0.449E+00 25 153 73.1deg W -36.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4263 Model time: 1979-03-30 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044364 + +* 1 1 3 0.100000E+01 0.873140E-04 * +Number of iterations = 2 +Initial residual = 0.013936 +Final residual = 0.000046 +Average conv. rate = 0.057466 + +* 1 2 2 0.139355E-01 0.460204E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092737 +Final residual = 0.000012 +Average conv. rate = 0.051172 + +* 2 1 3 0.927366E-01 0.124265E-04 * +Number of iterations = 1 +Initial residual = 0.001096 +Final residual = 0.000050 +Average conv. rate = 0.045193 + +* 2 2 1 0.109590E-02 0.495270E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4263 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.64 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.86K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4263 Max w this run +w_max level proc position run w_max level timestep +0.494E+00 39 268 140.6deg E 0.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4264 Model time: 1979-03-30 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044551 + +* 1 1 3 0.100000E+01 0.884237E-04 * +Number of iterations = 2 +Initial residual = 0.013909 +Final residual = 0.000046 +Average conv. rate = 0.057307 + +* 1 2 2 0.139092E-01 0.456790E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094167 +Final residual = 0.000013 +Average conv. rate = 0.051700 + +* 2 1 3 0.941668E-01 0.130126E-04 * +Number of iterations = 1 +Initial residual = 0.001093 +Final residual = 0.000049 +Average conv. rate = 0.044654 + +* 2 2 1 0.109305E-02 0.488088E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4264 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.82 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.87K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4264 Max w this run +w_max level proc position run w_max level timestep +0.472E+00 39 268 140.6deg E 0.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4265 Model time: 1979-03-30 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043403 + +* 1 1 3 0.100000E+01 0.817616E-04 * +Number of iterations = 2 +Initial residual = 0.014066 +Final residual = 0.000047 +Average conv. rate = 0.057584 + +* 1 2 2 0.140663E-01 0.466421E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094168 +Final residual = 0.000014 +Average conv. rate = 0.053131 + +* 2 1 3 0.941680E-01 0.141240E-04 * +Number of iterations = 1 +Initial residual = 0.001077 +Final residual = 0.000048 +Average conv. rate = 0.044216 + +* 2 2 1 0.107675E-02 0.476093E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4265 +This timestep This run +Min theta1 proc position Min theta1 timestep +223.98 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.70K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4265 Max w this run +w_max level proc position run w_max level timestep +0.453E+00 25 153 73.1deg W -36.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4266 Model time: 1979-03-30 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044039 + +* 1 1 3 0.100000E+01 0.854130E-04 * +Number of iterations = 2 +Initial residual = 0.014096 +Final residual = 0.000043 +Average conv. rate = 0.055024 + +* 1 2 2 0.140957E-01 0.426763E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093163 +Final residual = 0.000012 +Average conv. rate = 0.050078 + +* 2 1 3 0.931632E-01 0.117002E-04 * +Number of iterations = 1 +Initial residual = 0.001078 +Final residual = 0.000047 +Average conv. rate = 0.043690 + +* 2 2 1 0.107787E-02 0.470919E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4266 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.09 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.58K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4266 Max w this run +w_max level proc position run w_max level timestep +0.450E+00 25 153 73.1deg W -36.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4267 Model time: 1979-03-30 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043687 + +* 1 1 3 0.100000E+01 0.833809E-04 * +Number of iterations = 2 +Initial residual = 0.014131 +Final residual = 0.000043 +Average conv. rate = 0.055112 + +* 1 2 2 0.141307E-01 0.429190E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094031 +Final residual = 0.000011 +Average conv. rate = 0.048719 + +* 2 1 3 0.940311E-01 0.108735E-04 * +Number of iterations = 1 +Initial residual = 0.001099 +Final residual = 0.000048 +Average conv. rate = 0.043341 + +* 2 2 1 0.109860E-02 0.476148E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4267 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.17 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.50K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4267 Max w this run +w_max level proc position run w_max level timestep +0.451E+00 37 236 136.9deg E -6.9deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4268 Model time: 1979-03-30 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043841 + +* 1 1 3 0.100000E+01 0.842647E-04 * +Number of iterations = 2 +Initial residual = 0.014050 +Final residual = 0.000043 +Average conv. rate = 0.055556 + +* 1 2 2 0.140497E-01 0.433636E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093049 +Final residual = 0.000013 +Average conv. rate = 0.052228 + +* 2 1 3 0.930490E-01 0.132559E-04 * +Number of iterations = 1 +Initial residual = 0.001111 +Final residual = 0.000049 +Average conv. rate = 0.043663 + +* 2 2 1 0.111139E-02 0.485266E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4268 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.29 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.37K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4268 Max w this run +w_max level proc position run w_max level timestep +0.489E+00 37 236 136.9deg E -6.9deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4269 Model time: 1979-03-30 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044017 + +* 1 1 3 0.100000E+01 0.852817E-04 * +Number of iterations = 2 +Initial residual = 0.014079 +Final residual = 0.000043 +Average conv. rate = 0.055551 + +* 1 2 2 0.140794E-01 0.434474E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094916 +Final residual = 0.000012 +Average conv. rate = 0.050077 + +* 2 1 3 0.949157E-01 0.119196E-04 * +Number of iterations = 1 +Initial residual = 0.001120 +Final residual = 0.000048 +Average conv. rate = 0.043066 + +* 2 2 1 0.111993E-02 0.482306E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4269 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.45 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -17.00K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4269 Max w this run +w_max level proc position run w_max level timestep +0.467E+00 37 257 13.1deg E 5.6deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4270 Model time: 1979-03-30 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043677 + +* 1 1 3 0.100000E+01 0.833215E-04 * +Number of iterations = 2 +Initial residual = 0.014087 +Final residual = 0.000043 +Average conv. rate = 0.055112 + +* 1 2 2 0.140870E-01 0.427873E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092863 +Final residual = 0.000013 +Average conv. rate = 0.051469 + +* 2 1 3 0.928633E-01 0.126614E-04 * +Number of iterations = 1 +Initial residual = 0.001110 +Final residual = 0.000048 +Average conv. rate = 0.043290 + +* 2 2 1 0.111005E-02 0.480538E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4270 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.61 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.84K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4270 Max w this run +w_max level proc position run w_max level timestep +0.445E+00 37 258 31.9deg E 5.6deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4271 Model time: 1979-03-30 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043922 + +* 1 1 3 0.100000E+01 0.847323E-04 * +Number of iterations = 2 +Initial residual = 0.014143 +Final residual = 0.000044 +Average conv. rate = 0.055507 + +* 1 2 2 0.141427E-01 0.435744E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093392 +Final residual = 0.000012 +Average conv. rate = 0.049883 + +* 2 1 3 0.933917E-01 0.115925E-04 * +Number of iterations = 1 +Initial residual = 0.001114 +Final residual = 0.000048 +Average conv. rate = 0.043246 + +* 2 2 1 0.111412E-02 0.481812E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4271 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.79 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.67K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4271 Max w this run +w_max level proc position run w_max level timestep +0.522E+00 41 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4272 Model time: 1979-03-31 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043816 + +* 1 1 3 0.100000E+01 0.841196E-04 * +Number of iterations = 2 +Initial residual = 0.014115 +Final residual = 0.000045 +Average conv. rate = 0.056533 + +* 1 2 2 0.141152E-01 0.451117E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093016 +Final residual = 0.000014 +Average conv. rate = 0.052615 + +* 2 1 3 0.930165E-01 0.135486E-04 * +Number of iterations = 1 +Initial residual = 0.001120 +Final residual = 0.000049 +Average conv. rate = 0.043659 + +* 2 2 1 0.111958E-02 0.488802E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51423E+19 +Tot energy 0.13059E+25 +tot dry energy 0.13060E+25 +gr( rho cal) 0.38118E+24 +KE( rho cal) 0.81574E+21 +KEu(rho cal) 0.61349E+21 +KEv(rho cal) 0.20225E+21 +KEw(rho cal) 0.11190E+16 +cvT( rho cal) 0.92402E+24 +lq ( rho cal) 0.31669E+23 +lqcf( rho cal) 0.63825E+20 +lqcl( rho cal) 0.41341E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12702E+17 KG +Initial moisture = 0.12616E+17 KG +change in moisture = 0.86028E+14 KG +Moisture added E-P in period = 0.84348E+14 KG +Error in moisture = 0.16795E+13 KG +Error as % of change = 0.19522E+01 +q ( rho cal) 0.12662E+17 +qcf( rho cal) 0.25520E+14 +qcl( rho cal) 0.14582E+14 +FINAL TOTAL ENERGY = 0.13059E+25 J/ +INITIAL TOTAL ENERGY = 0.13059E+25 J/ +CHG IN TOTAL ENERGY O. P. = -0.34196E+20 J/ +FLUXES INTO ATM OVER PERIOD = -0.35963E+20 J/ +ERROR IN ENERGY BUDGET = -0.17672E+19 J/ +TEMP CORRECTION OVER A DAY = -0.47985E-03 K +TEMPERATURE CORRECTION RATE = -0.55538E-08 K/S +FLUX CORRECTION (ATM) = -0.40097E-01 W/M2 + +Minimum theta level 1 for timestep 4272 +This timestep This run +Min theta1 proc position Min theta1 timestep +224.99 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.47K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4272 Max w this run +w_max level proc position run w_max level timestep +0.466E+00 41 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 +REPLANCA: UPDATE REQUIRED FOR FIELD2 +REPLANCA - time interpolation for ancillary field, stashcode 31 +targ_time,time1,time2 -5868.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 31 STASH code requested 31 +'start' position of lookup tables for dataset 2in overall lookup array 178501 +REPLANCA: UPDATE REQUIRED FOR FIELD3 +REPLANCA - time interpolation for ancillary field, stashcode 24 +targ_time,time1,time2 -5868.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1311 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps1310 +STASH code in dataset 24 STASH code requested 24 +'start' position of lookup tables for dataset 3in overall lookup array 180337 +REPLANCA: UPDATE REQUIRED FOR FIELD5 +REPLANCA - time interpolation for ancillary field, stashcode 216 +targ_time,time1,time2 -5820.00000 -12396.00000 -3636.00000 +hours,int,period -32768 12 -1 +Information used in checking ancillary data set: position of lookup table in dataset:1162 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 9 Number of steps129 +STASH code in dataset 216 STASH code requested 216 +'start' position of lookup tables for dataset 4in overall lookup array 182173 +REPLANCA: UPDATE REQUIRED FOR FIELD6 +REPLANCA - time interpolation for ancillary field, stashcode 217 +targ_time,time1,time2 -5868.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:26 +Position of first lookup table referring to data type 6 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 217 STASH code requested 217 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD7 +REPLANCA - time interpolation for ancillary field, stashcode 218 +targ_time,time1,time2 -5868.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:21 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 10 Number of steps2 +STASH code in dataset 218 STASH code requested 218 +'start' position of lookup tables for dataset 5in overall lookup array 183757 +REPLANCA: UPDATE REQUIRED FOR FIELD8 +REPLANCA - time interpolation for ancillary field, stashcode 132 +targ_time,time1,time2 -5868.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 132 STASH code requested 132 +'start' position of lookup tables for dataset 6in overall lookup array 183877 +REPLANCA: UPDATE REQUIRED FOR FIELD9 +REPLANCA - time interpolation for ancillary field, stashcode 96 +targ_time,time1,time2 -5868.00000 -6228.00000 -5484.00000 +hours,int,period -32768 1 12 +Information used in checking ancillary data set: position of lookup table in dataset:3 +Position of first lookup table referring to data type 1 +Interval between lookup tables referring to data type 1 Number of steps2 +STASH code in dataset 96 STASH code requested 96 +'start' position of lookup tables for dataset 7in overall lookup array 183889 + +******************************************************************************** + +Atm_Step: Timestep 4273 Model time: 1979-03-31 00:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043991 + +* 1 1 3 0.100000E+01 0.851314E-04 * +Number of iterations = 2 +Initial residual = 0.014205 +Final residual = 0.000044 +Average conv. rate = 0.055519 + +* 1 2 2 0.142049E-01 0.437853E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092442 +Final residual = 0.000014 +Average conv. rate = 0.052782 + +* 2 1 3 0.924425E-01 0.135933E-04 * +Number of iterations = 1 +Initial residual = 0.001105 +Final residual = 0.000049 +Average conv. rate = 0.044136 + +* 2 2 1 0.110489E-02 0.487658E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4273 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.21 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -16.25K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4273 Max w this run +w_max level proc position run w_max level timestep +0.572E+00 41 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4274 Model time: 1979-03-31 01:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044235 + +* 1 1 3 0.100000E+01 0.865579E-04 * +Number of iterations = 2 +Initial residual = 0.014214 +Final residual = 0.000044 +Average conv. rate = 0.055424 + +* 1 2 2 0.142143E-01 0.436645E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091566 +Final residual = 0.000012 +Average conv. rate = 0.051270 + +* 2 1 3 0.915665E-01 0.123401E-04 * +Number of iterations = 1 +Initial residual = 0.001112 +Final residual = 0.000049 +Average conv. rate = 0.044160 + +* 2 2 1 0.111191E-02 0.491021E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4274 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.47 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.97K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4274 Max w this run +w_max level proc position run w_max level timestep +0.513E+00 37 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4275 Model time: 1979-03-31 01:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043990 + +* 1 1 3 0.100000E+01 0.851248E-04 * +Number of iterations = 2 +Initial residual = 0.014238 +Final residual = 0.000044 +Average conv. rate = 0.055691 + +* 1 2 2 0.142381E-01 0.441593E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092255 +Final residual = 0.000013 +Average conv. rate = 0.051737 + +* 2 1 3 0.922550E-01 0.127756E-04 * +Number of iterations = 1 +Initial residual = 0.001112 +Final residual = 0.000050 +Average conv. rate = 0.044531 + +* 2 2 1 0.111214E-02 0.495251E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4275 +This timestep This run +Min theta1 proc position Min theta1 timestep +225.76 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.66K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4275 Max w this run +w_max level proc position run w_max level timestep +0.582E+00 37 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4276 Model time: 1979-03-31 02:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044165 + +* 1 1 3 0.100000E+01 0.861450E-04 * +Number of iterations = 2 +Initial residual = 0.014183 +Final residual = 0.000044 +Average conv. rate = 0.055946 + +* 1 2 2 0.141832E-01 0.443930E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091636 +Final residual = 0.000014 +Average conv. rate = 0.053200 + +* 2 1 3 0.916365E-01 0.137973E-04 * +Number of iterations = 1 +Initial residual = 0.001125 +Final residual = 0.000050 +Average conv. rate = 0.044108 + +* 2 2 1 0.112509E-02 0.496254E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4276 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.04 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.35K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4276 Max w this run +w_max level proc position run w_max level timestep +0.506E+00 37 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4277 Model time: 1979-03-31 02:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044149 + +* 1 1 3 0.100000E+01 0.860533E-04 * +Number of iterations = 2 +Initial residual = 0.014232 +Final residual = 0.000046 +Average conv. rate = 0.056649 + +* 1 2 2 0.142316E-01 0.456713E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091444 +Final residual = 0.000017 +Average conv. rate = 0.056707 + +* 2 1 3 0.914440E-01 0.166754E-04 * +Number of iterations = 1 +Initial residual = 0.001122 +Final residual = 0.000049 +Average conv. rate = 0.043511 + +* 2 2 1 0.112195E-02 0.488176E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4277 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.28 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -15.07K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4277 Max w this run +w_max level proc position run w_max level timestep +0.574E+00 38 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4278 Model time: 1979-03-31 03:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043549 + +* 1 1 3 0.100000E+01 0.825929E-04 * +Number of iterations = 2 +Initial residual = 0.014252 +Final residual = 0.000045 +Average conv. rate = 0.055904 + +* 1 2 2 0.142523E-01 0.445414E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089973 +Final residual = 0.000016 +Average conv. rate = 0.056205 + +* 2 1 3 0.899735E-01 0.159752E-04 * +Number of iterations = 1 +Initial residual = 0.001114 +Final residual = 0.000049 +Average conv. rate = 0.044138 + +* 2 2 1 0.111408E-02 0.491736E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4278 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.51 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.80K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4278 Max w this run +w_max level proc position run w_max level timestep +0.466E+00 39 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4279 Model time: 1979-03-31 03:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044008 + +* 1 1 3 0.100000E+01 0.852308E-04 * +Number of iterations = 2 +Initial residual = 0.014387 +Final residual = 0.000046 +Average conv. rate = 0.056338 + +* 1 2 2 0.143868E-01 0.456642E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089566 +Final residual = 0.000013 +Average conv. rate = 0.052343 + +* 2 1 3 0.895662E-01 0.128446E-04 * +Number of iterations = 1 +Initial residual = 0.001102 +Final residual = 0.000048 +Average conv. rate = 0.043612 + +* 2 2 1 0.110224E-02 0.480706E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4279 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.74 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.52K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4279 Max w this run +w_max level proc position run w_max level timestep +0.552E+00 39 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4280 Model time: 1979-03-31 04:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043887 + +* 1 1 3 0.100000E+01 0.845290E-04 * +Number of iterations = 2 +Initial residual = 0.014334 +Final residual = 0.000045 +Average conv. rate = 0.055848 + +* 1 2 2 0.143341E-01 0.447087E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089248 +Final residual = 0.000016 +Average conv. rate = 0.056320 + +* 2 1 3 0.892478E-01 0.159437E-04 * +Number of iterations = 1 +Initial residual = 0.001116 +Final residual = 0.000049 +Average conv. rate = 0.043818 + +* 2 2 1 0.111611E-02 0.489060E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4280 +This timestep This run +Min theta1 proc position Min theta1 timestep +226.96 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.25K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4280 Max w this run +w_max level proc position run w_max level timestep +0.510E+00 39 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4281 Model time: 1979-03-31 04:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000080 +Average conv. rate = 0.043126 + +* 1 1 3 0.100000E+01 0.802064E-04 * +Number of iterations = 2 +Initial residual = 0.014296 +Final residual = 0.000045 +Average conv. rate = 0.055894 + +* 1 2 2 0.142959E-01 0.446619E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089164 +Final residual = 0.000016 +Average conv. rate = 0.056629 + +* 2 1 3 0.891644E-01 0.161926E-04 * +Number of iterations = 1 +Initial residual = 0.001126 +Final residual = 0.000050 +Average conv. rate = 0.043986 + +* 2 2 1 0.112605E-02 0.495301E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4281 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.17 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -14.00K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4281 Max w this run +w_max level proc position run w_max level timestep +0.539E+00 40 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4282 Model time: 1979-03-31 05:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043623 + +* 1 1 3 0.100000E+01 0.830132E-04 * +Number of iterations = 2 +Initial residual = 0.014206 +Final residual = 0.000045 +Average conv. rate = 0.056323 + +* 1 2 2 0.142057E-01 0.450643E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089529 +Final residual = 0.000012 +Average conv. rate = 0.051733 + +* 2 1 3 0.895288E-01 0.123955E-04 * +Number of iterations = 1 +Initial residual = 0.001125 +Final residual = 0.000050 +Average conv. rate = 0.044048 + +* 2 2 1 0.112507E-02 0.495570E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4282 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.34 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.78K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4282 Max w this run +w_max level proc position run w_max level timestep +0.498E+00 40 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4283 Model time: 1979-03-31 05:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043434 + +* 1 1 3 0.100000E+01 0.819406E-04 * +Number of iterations = 2 +Initial residual = 0.014205 +Final residual = 0.000045 +Average conv. rate = 0.056243 + +* 1 2 2 0.142045E-01 0.449331E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090090 +Final residual = 0.000012 +Average conv. rate = 0.051262 + +* 2 1 3 0.900898E-01 0.121358E-04 * +Number of iterations = 1 +Initial residual = 0.001134 +Final residual = 0.000050 +Average conv. rate = 0.044385 + +* 2 2 1 0.113417E-02 0.503395E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4283 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.49 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.56K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4283 Max w this run +w_max level proc position run w_max level timestep +0.496E+00 41 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4284 Model time: 1979-03-31 06:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000083 +Average conv. rate = 0.043616 + +* 1 1 3 0.100000E+01 0.829734E-04 * +Number of iterations = 2 +Initial residual = 0.014209 +Final residual = 0.000044 +Average conv. rate = 0.055531 + +* 1 2 2 0.142089E-01 0.438161E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089447 +Final residual = 0.000014 +Average conv. rate = 0.053890 + +* 2 1 3 0.894475E-01 0.139987E-04 * +Number of iterations = 1 +Initial residual = 0.001123 +Final residual = 0.000050 +Average conv. rate = 0.044699 + +* 2 2 1 0.112318E-02 0.502048E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4284 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.67 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.33K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4284 Max w this run +w_max level proc position run w_max level timestep +0.476E+00 40 268 140.6deg E 3.1deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4285 Model time: 1979-03-31 06:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043509 + +* 1 1 3 0.100000E+01 0.823660E-04 * +Number of iterations = 2 +Initial residual = 0.014263 +Final residual = 0.000044 +Average conv. rate = 0.055636 + +* 1 2 2 0.142631E-01 0.441497E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090205 +Final residual = 0.000015 +Average conv. rate = 0.055184 + +* 2 1 3 0.902051E-01 0.151592E-04 * +Number of iterations = 1 +Initial residual = 0.001116 +Final residual = 0.000050 +Average conv. rate = 0.044588 + +* 2 2 1 0.111558E-02 0.497418E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4285 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.89 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -13.11K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4285 Max w this run +w_max level proc position run w_max level timestep +0.456E+00 40 268 140.6deg E 3.1deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4286 Model time: 1979-03-31 07:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043904 + +* 1 1 3 0.100000E+01 0.846250E-04 * +Number of iterations = 2 +Initial residual = 0.014224 +Final residual = 0.000044 +Average conv. rate = 0.055757 + +* 1 2 2 0.142240E-01 0.442202E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089666 +Final residual = 0.000016 +Average conv. rate = 0.056448 + +* 2 1 3 0.896658E-01 0.161276E-04 * +Number of iterations = 1 +Initial residual = 0.001122 +Final residual = 0.000050 +Average conv. rate = 0.044971 + +* 2 2 1 0.112233E-02 0.504730E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4286 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.12 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.88K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4286 Max w this run +w_max level proc position run w_max level timestep +0.452E+00 21 332 136.9deg E 24.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4287 Model time: 1979-03-31 07:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043408 + +* 1 1 3 0.100000E+01 0.817906E-04 * +Number of iterations = 2 +Initial residual = 0.014219 +Final residual = 0.000045 +Average conv. rate = 0.056150 + +* 1 2 2 0.142194E-01 0.448318E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.089663 +Final residual = 0.000015 +Average conv. rate = 0.055483 + +* 2 1 3 0.896633E-01 0.153143E-04 * +Number of iterations = 1 +Initial residual = 0.001130 +Final residual = 0.000051 +Average conv. rate = 0.045004 + +* 2 2 1 0.113042E-02 0.508732E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4287 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.40 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.84K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4287 Max w this run +w_max level proc position run w_max level timestep +0.467E+00 20 332 136.9deg E 24.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4288 Model time: 1979-03-31 08:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.044002 + +* 1 1 3 0.100000E+01 0.851970E-04 * +Number of iterations = 2 +Initial residual = 0.014141 +Final residual = 0.000045 +Average conv. rate = 0.056135 + +* 1 2 2 0.141414E-01 0.445614E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.090153 +Final residual = 0.000014 +Average conv. rate = 0.053221 + +* 2 1 3 0.901530E-01 0.135904E-04 * +Number of iterations = 1 +Initial residual = 0.001135 +Final residual = 0.000051 +Average conv. rate = 0.044644 + +* 2 2 1 0.113549E-02 0.506927E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4288 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.58 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.67K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4288 Max w this run +w_max level proc position run w_max level timestep +0.500E+00 20 332 136.9deg E 24.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4289 Model time: 1979-03-31 08:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000082 +Average conv. rate = 0.043522 + +* 1 1 3 0.100000E+01 0.824397E-04 * +Number of iterations = 2 +Initial residual = 0.014143 +Final residual = 0.000044 +Average conv. rate = 0.056073 + +* 1 2 2 0.141435E-01 0.444697E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092091 +Final residual = 0.000015 +Average conv. rate = 0.054146 + +* 2 1 3 0.920909E-01 0.146191E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000051 +Average conv. rate = 0.044511 + +* 2 2 1 0.114953E-02 0.511663E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4289 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.08 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.15K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4289 Max w this run +w_max level proc position run w_max level timestep +0.469E+00 20 332 136.9deg E 24.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4290 Model time: 1979-03-31 09:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044208 + +* 1 1 3 0.100000E+01 0.863985E-04 * +Number of iterations = 2 +Initial residual = 0.014071 +Final residual = 0.000045 +Average conv. rate = 0.056382 + +* 1 2 2 0.140710E-01 0.447304E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.091884 +Final residual = 0.000013 +Average conv. rate = 0.052332 + +* 2 1 3 0.918842E-01 0.131687E-04 * +Number of iterations = 1 +Initial residual = 0.001171 +Final residual = 0.000052 +Average conv. rate = 0.044393 + +* 2 2 1 0.117086E-02 0.519782E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4290 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.34 12 135.0deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.73K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4290 Max w this run +w_max level proc position run w_max level timestep +0.446E+00 20 332 136.9deg E 24.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4291 Model time: 1979-03-31 09:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044104 + +* 1 1 3 0.100000E+01 0.857869E-04 * +Number of iterations = 2 +Initial residual = 0.014087 +Final residual = 0.000046 +Average conv. rate = 0.056903 + +* 1 2 2 0.140873E-01 0.456132E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092445 +Final residual = 0.000014 +Average conv. rate = 0.053238 + +* 2 1 3 0.924454E-01 0.139491E-04 * +Number of iterations = 1 +Initial residual = 0.001151 +Final residual = 0.000051 +Average conv. rate = 0.044567 + +* 2 2 1 0.115094E-02 0.512939E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4291 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.54 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.69K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4291 Max w this run +w_max level proc position run w_max level timestep +0.474E+00 38 250 63.8deg W -8.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4292 Model time: 1979-03-31 10:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043929 + +* 1 1 3 0.100000E+01 0.847743E-04 * +Number of iterations = 2 +Initial residual = 0.014053 +Final residual = 0.000046 +Average conv. rate = 0.057047 + +* 1 2 2 0.140531E-01 0.457339E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092072 +Final residual = 0.000011 +Average conv. rate = 0.049641 + +* 2 1 3 0.920724E-01 0.112631E-04 * +Number of iterations = 1 +Initial residual = 0.001146 +Final residual = 0.000050 +Average conv. rate = 0.043804 + +* 2 2 1 0.114598E-02 0.501986E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4292 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.73 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.53K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4292 Max w this run +w_max level proc position run w_max level timestep +0.485E+00 35 154 61.9deg W -39.4deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4293 Model time: 1979-03-31 10:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044091 + +* 1 1 3 0.100000E+01 0.857165E-04 * +Number of iterations = 2 +Initial residual = 0.014111 +Final residual = 0.000046 +Average conv. rate = 0.057367 + +* 1 2 2 0.141110E-01 0.464398E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093308 +Final residual = 0.000012 +Average conv. rate = 0.049935 + +* 2 1 3 0.933082E-01 0.116179E-04 * +Number of iterations = 1 +Initial residual = 0.001152 +Final residual = 0.000051 +Average conv. rate = 0.044351 + +* 2 2 1 0.115230E-02 0.511058E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4293 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.05 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.27K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4293 Max w this run +w_max level proc position run w_max level timestep +0.415E+00 37 250 67.5deg W -10.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4294 Model time: 1979-03-31 11:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043749 + +* 1 1 3 0.100000E+01 0.837360E-04 * +Number of iterations = 2 +Initial residual = 0.014078 +Final residual = 0.000047 +Average conv. rate = 0.057843 + +* 1 2 2 0.140785E-01 0.471032E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093299 +Final residual = 0.000011 +Average conv. rate = 0.049023 + +* 2 1 3 0.932990E-01 0.109921E-04 * +Number of iterations = 1 +Initial residual = 0.001150 +Final residual = 0.000051 +Average conv. rate = 0.044112 + +* 2 2 1 0.115000E-02 0.507291E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4294 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.39 12 136.9deg E -90.0deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.98K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4294 Max w this run +w_max level proc position run w_max level timestep +0.512E+00 35 154 60.0deg W -39.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4295 Model time: 1979-03-31 11:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044873 + +* 1 1 3 0.100000E+01 0.903540E-04 * +Number of iterations = 2 +Initial residual = 0.014117 +Final residual = 0.000048 +Average conv. rate = 0.058236 + +* 1 2 2 0.141170E-01 0.478772E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093037 +Final residual = 0.000011 +Average conv. rate = 0.049192 + +* 2 1 3 0.930370E-01 0.110748E-04 * +Number of iterations = 1 +Initial residual = 0.001139 +Final residual = 0.000050 +Average conv. rate = 0.043915 + +* 2 2 1 0.113901E-02 0.500195E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4295 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.67 27 56.3deg W -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.01K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4295 Max w this run +w_max level proc position run w_max level timestep +0.514E+00 34 154 61.9deg W -38.1deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4296 Model time: 1979-03-31 12:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044461 + +* 1 1 3 0.100000E+01 0.878902E-04 * +Number of iterations = 2 +Initial residual = 0.014070 +Final residual = 0.000046 +Average conv. rate = 0.057310 + +* 1 2 2 0.140698E-01 0.462114E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093526 +Final residual = 0.000011 +Average conv. rate = 0.048766 + +* 2 1 3 0.935261E-01 0.108463E-04 * +Number of iterations = 1 +Initial residual = 0.001148 +Final residual = 0.000050 +Average conv. rate = 0.043716 + +* 2 2 1 0.114765E-02 0.501702E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4296 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.73 27 56.3deg W -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.01K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4296 Max w this run +w_max level proc position run w_max level timestep +0.471E+00 20 332 138.8deg E 24.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4297 Model time: 1979-03-31 12:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044180 + +* 1 1 3 0.100000E+01 0.862339E-04 * +Number of iterations = 2 +Initial residual = 0.014170 +Final residual = 0.000046 +Average conv. rate = 0.056673 + +* 1 2 2 0.141697E-01 0.455105E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094004 +Final residual = 0.000012 +Average conv. rate = 0.050603 + +* 2 1 3 0.940042E-01 0.121808E-04 * +Number of iterations = 1 +Initial residual = 0.001158 +Final residual = 0.000051 +Average conv. rate = 0.043622 + +* 2 2 1 0.115805E-02 0.505168E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4297 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.96 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.59K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4297 Max w this run +w_max level proc position run w_max level timestep +0.488E+00 20 332 138.8deg E 24.4deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4298 Model time: 1979-03-31 13:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044458 + +* 1 1 3 0.100000E+01 0.878746E-04 * +Number of iterations = 2 +Initial residual = 0.014177 +Final residual = 0.000045 +Average conv. rate = 0.056089 + +* 1 2 2 0.141770E-01 0.446014E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.092839 +Final residual = 0.000015 +Average conv. rate = 0.054687 + +* 2 1 3 0.928388E-01 0.151836E-04 * +Number of iterations = 1 +Initial residual = 0.001149 +Final residual = 0.000050 +Average conv. rate = 0.043621 + +* 2 2 1 0.114893E-02 0.501169E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4298 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.85 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.41K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4298 Max w this run +w_max level proc position run w_max level timestep +0.495E+00 20 332 138.8deg E 24.4deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4299 Model time: 1979-03-31 13:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044550 + +* 1 1 3 0.100000E+01 0.884188E-04 * +Number of iterations = 2 +Initial residual = 0.014139 +Final residual = 0.000045 +Average conv. rate = 0.056268 + +* 1 2 2 0.141390E-01 0.447654E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094125 +Final residual = 0.000012 +Average conv. rate = 0.050195 + +* 2 1 3 0.941248E-01 0.119041E-04 * +Number of iterations = 1 +Initial residual = 0.001141 +Final residual = 0.000049 +Average conv. rate = 0.042696 + +* 2 2 1 0.114102E-02 0.487163E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4299 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.74 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.24K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4299 Max w this run +w_max level proc position run w_max level timestep +0.471E+00 41 268 140.6deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4300 Model time: 1979-03-31 14:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044318 + +* 1 1 3 0.100000E+01 0.870417E-04 * +Number of iterations = 2 +Initial residual = 0.014091 +Final residual = 0.000044 +Average conv. rate = 0.056028 + +* 1 2 2 0.140914E-01 0.442354E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093002 +Final residual = 0.000015 +Average conv. rate = 0.054544 + +* 2 1 3 0.930019E-01 0.150914E-04 * +Number of iterations = 1 +Initial residual = 0.001123 +Final residual = 0.000048 +Average conv. rate = 0.043143 + +* 2 2 1 0.112282E-02 0.484417E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4300 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.63 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.11K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4300 Max w this run +w_max level proc position run w_max level timestep +0.451E+00 20 332 138.8deg E 24.4deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4301 Model time: 1979-03-31 14:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043938 + +* 1 1 3 0.100000E+01 0.848219E-04 * +Number of iterations = 2 +Initial residual = 0.014108 +Final residual = 0.000044 +Average conv. rate = 0.055988 + +* 1 2 2 0.141080E-01 0.442238E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093126 +Final residual = 0.000011 +Average conv. rate = 0.049522 + +* 2 1 3 0.931257E-01 0.113100E-04 * +Number of iterations = 1 +Initial residual = 0.001117 +Final residual = 0.000048 +Average conv. rate = 0.043209 + +* 2 2 1 0.111655E-02 0.482447E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4301 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.53 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.96K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4301 Max w this run +w_max level proc position run w_max level timestep +0.476E+00 41 268 140.6deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4302 Model time: 1979-03-31 15:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044298 + +* 1 1 3 0.100000E+01 0.869293E-04 * +Number of iterations = 2 +Initial residual = 0.013987 +Final residual = 0.000044 +Average conv. rate = 0.056246 + +* 1 2 2 0.139867E-01 0.442482E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093226 +Final residual = 0.000011 +Average conv. rate = 0.049592 + +* 2 1 3 0.932257E-01 0.113701E-04 * +Number of iterations = 1 +Initial residual = 0.001104 +Final residual = 0.000048 +Average conv. rate = 0.043044 + +* 2 2 1 0.110423E-02 0.475299E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4302 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.42 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.84K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4302 Max w this run +w_max level proc position run w_max level timestep +0.467E+00 36 154 60.0deg W -39.4deg S 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4303 Model time: 1979-03-31 15:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000090 +Average conv. rate = 0.044868 + +* 1 1 3 0.100000E+01 0.903283E-04 * +Number of iterations = 2 +Initial residual = 0.013950 +Final residual = 0.000045 +Average conv. rate = 0.056695 + +* 1 2 2 0.139496E-01 0.448381E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093865 +Final residual = 0.000016 +Average conv. rate = 0.055049 + +* 2 1 3 0.938652E-01 0.156585E-04 * +Number of iterations = 1 +Initial residual = 0.001102 +Final residual = 0.000048 +Average conv. rate = 0.043646 + +* 2 2 1 0.110154E-02 0.480778E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4303 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.32 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.79K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4303 Max w this run +w_max level proc position run w_max level timestep +0.486E+00 41 268 140.6deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4304 Model time: 1979-03-31 16:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044451 + +* 1 1 3 0.100000E+01 0.878331E-04 * +Number of iterations = 2 +Initial residual = 0.013919 +Final residual = 0.000049 +Average conv. rate = 0.059628 + +* 1 2 2 0.139187E-01 0.494886E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094348 +Final residual = 0.000011 +Average conv. rate = 0.049002 + +* 2 1 3 0.943480E-01 0.111011E-04 * +Number of iterations = 1 +Initial residual = 0.001091 +Final residual = 0.000047 +Average conv. rate = 0.043424 + +* 2 2 1 0.109125E-02 0.473862E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4304 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.22 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.72K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4304 Max w this run +w_max level proc position run w_max level timestep +0.484E+00 25 268 140.6deg E 1.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4305 Model time: 1979-03-31 16:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044383 + +* 1 1 3 0.100000E+01 0.874257E-04 * +Number of iterations = 2 +Initial residual = 0.014042 +Final residual = 0.000049 +Average conv. rate = 0.058786 + +* 1 2 2 0.140419E-01 0.485258E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095885 +Final residual = 0.000012 +Average conv. rate = 0.049590 + +* 2 1 3 0.958848E-01 0.116930E-04 * +Number of iterations = 1 +Initial residual = 0.001097 +Final residual = 0.000048 +Average conv. rate = 0.044106 + +* 2 2 1 0.109690E-02 0.483801E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4305 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.13 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.67K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4305 Max w this run +w_max level proc position run w_max level timestep +0.604E+00 27 268 140.6deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4306 Model time: 1979-03-31 17:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044380 + +* 1 1 3 0.100000E+01 0.874078E-04 * +Number of iterations = 2 +Initial residual = 0.013985 +Final residual = 0.000048 +Average conv. rate = 0.058327 + +* 1 2 2 0.139852E-01 0.475779E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095603 +Final residual = 0.000015 +Average conv. rate = 0.054527 + +* 2 1 3 0.956026E-01 0.154990E-04 * +Number of iterations = 1 +Initial residual = 0.001123 +Final residual = 0.000049 +Average conv. rate = 0.044053 + +* 2 2 1 0.112308E-02 0.494754E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4306 +This timestep This run +Min theta1 proc position Min theta1 timestep +230.05 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.63K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4306 Max w this run +w_max level proc position run w_max level timestep +0.631E+00 27 268 140.6deg E 1.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4307 Model time: 1979-03-31 17:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044115 + +* 1 1 3 0.100000E+01 0.858510E-04 * +Number of iterations = 2 +Initial residual = 0.013958 +Final residual = 0.000047 +Average conv. rate = 0.058328 + +* 1 2 2 0.139578E-01 0.474869E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.096336 +Final residual = 0.000011 +Average conv. rate = 0.048608 + +* 2 1 3 0.963364E-01 0.110640E-04 * +Number of iterations = 1 +Initial residual = 0.001138 +Final residual = 0.000049 +Average conv. rate = 0.043195 + +* 2 2 1 0.113764E-02 0.491403E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4307 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.97 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.73K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4307 Max w this run +w_max level proc position run w_max level timestep +0.654E+00 28 268 140.6deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4308 Model time: 1979-03-31 18:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043894 + +* 1 1 3 0.100000E+01 0.845678E-04 * +Number of iterations = 2 +Initial residual = 0.013929 +Final residual = 0.000046 +Average conv. rate = 0.057403 + +* 1 2 2 0.139285E-01 0.458955E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095510 +Final residual = 0.000015 +Average conv. rate = 0.054203 + +* 2 1 3 0.955098E-01 0.152095E-04 * +Number of iterations = 1 +Initial residual = 0.001116 +Final residual = 0.000049 +Average conv. rate = 0.043840 + +* 2 2 1 0.111635E-02 0.489408E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4308 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.89 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.85K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4308 Max w this run +w_max level proc position run w_max level timestep +0.671E+00 29 268 140.6deg E 1.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4309 Model time: 1979-03-31 18:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044301 + +* 1 1 3 0.100000E+01 0.869426E-04 * +Number of iterations = 2 +Initial residual = 0.013936 +Final residual = 0.000043 +Average conv. rate = 0.055648 + +* 1 2 2 0.139363E-01 0.431571E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095577 +Final residual = 0.000012 +Average conv. rate = 0.050713 + +* 2 1 3 0.955766E-01 0.124658E-04 * +Number of iterations = 1 +Initial residual = 0.001124 +Final residual = 0.000049 +Average conv. rate = 0.043782 + +* 2 2 1 0.112439E-02 0.492284E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4309 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.82 15 176.2deg E -81.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.70K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4309 Max w this run +w_max level proc position run w_max level timestep +0.708E+00 31 268 140.6deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4310 Model time: 1979-03-31 19:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044286 + +* 1 1 3 0.100000E+01 0.868550E-04 * +Number of iterations = 2 +Initial residual = 0.013782 +Final residual = 0.000043 +Average conv. rate = 0.055622 + +* 1 2 2 0.137822E-01 0.426401E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.097228 +Final residual = 0.000010 +Average conv. rate = 0.047577 + +* 2 1 3 0.972278E-01 0.104706E-04 * +Number of iterations = 1 +Initial residual = 0.001135 +Final residual = 0.000049 +Average conv. rate = 0.042849 + +* 2 2 1 0.113466E-02 0.486193E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4310 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.63 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -12.27K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4310 Max w this run +w_max level proc position run w_max level timestep +0.625E+00 33 268 140.6deg E 1.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4311 Model time: 1979-03-31 19:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044280 + +* 1 1 3 0.100000E+01 0.868194E-04 * +Number of iterations = 2 +Initial residual = 0.013735 +Final residual = 0.000044 +Average conv. rate = 0.056687 + +* 1 2 2 0.137347E-01 0.441359E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095862 +Final residual = 0.000011 +Average conv. rate = 0.048400 + +* 2 1 3 0.958621E-01 0.108688E-04 * +Number of iterations = 1 +Initial residual = 0.001097 +Final residual = 0.000048 +Average conv. rate = 0.043505 + +* 2 2 1 0.109670E-02 0.477121E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4311 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.38 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -11.51K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4311 Max w this run +w_max level proc position run w_max level timestep +0.649E+00 32 268 140.6deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4312 Model time: 1979-03-31 20:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044173 + +* 1 1 3 0.100000E+01 0.861916E-04 * +Number of iterations = 2 +Initial residual = 0.013692 +Final residual = 0.000044 +Average conv. rate = 0.056397 + +* 1 2 2 0.136922E-01 0.435498E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094436 +Final residual = 0.000011 +Average conv. rate = 0.048773 + +* 2 1 3 0.944364E-01 0.109564E-04 * +Number of iterations = 1 +Initial residual = 0.001100 +Final residual = 0.000049 +Average conv. rate = 0.044146 + +* 2 2 1 0.109992E-02 0.485576E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4312 +This timestep This run +Min theta1 proc position Min theta1 timestep +229.13 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -10.70K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4312 Max w this run +w_max level proc position run w_max level timestep +0.586E+00 28 268 140.6deg E 1.9deg N 0.103E+01 26 3901 +[0] AERO_CTL: Segments are not uniform +[1] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4313 Model time: 1979-03-31 20:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044352 + +* 1 1 3 0.100000E+01 0.872450E-04 * +Number of iterations = 2 +Initial residual = 0.013752 +Final residual = 0.000044 +Average conv. rate = 0.056250 + +* 1 2 2 0.137518E-01 0.435123E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095414 +Final residual = 0.000011 +Average conv. rate = 0.048580 + +* 2 1 3 0.954137E-01 0.109389E-04 * +Number of iterations = 1 +Initial residual = 0.001110 +Final residual = 0.000049 +Average conv. rate = 0.044446 + +* 2 2 1 0.110995E-02 0.493327E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4313 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.86 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.89K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4313 Max w this run +w_max level proc position run w_max level timestep +0.649E+00 32 268 140.6deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4314 Model time: 1979-03-31 21:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000088 +Average conv. rate = 0.044518 + +* 1 1 3 0.100000E+01 0.882260E-04 * +Number of iterations = 2 +Initial residual = 0.013793 +Final residual = 0.000042 +Average conv. rate = 0.055046 + +* 1 2 2 0.137925E-01 0.417918E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094203 +Final residual = 0.000015 +Average conv. rate = 0.053801 + +* 2 1 3 0.942031E-01 0.146704E-04 * +Number of iterations = 1 +Initial residual = 0.001118 +Final residual = 0.000050 +Average conv. rate = 0.044844 + +* 2 2 1 0.111835E-02 0.501516E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4314 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.59 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -9.05K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4314 Max w this run +w_max level proc position run w_max level timestep +0.624E+00 31 268 140.6deg E 1.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4315 Model time: 1979-03-31 21:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +CALLING RANDOM PARAMETERS2 +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000087 +Average conv. rate = 0.044242 + +* 1 1 3 0.100000E+01 0.865991E-04 * +Number of iterations = 2 +Initial residual = 0.013995 +Final residual = 0.000042 +Average conv. rate = 0.054868 + +* 1 2 2 0.139950E-01 0.421321E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094680 +Final residual = 0.000016 +Average conv. rate = 0.055055 + +* 2 1 3 0.946796E-01 0.157993E-04 * +Number of iterations = 1 +Initial residual = 0.001113 +Final residual = 0.000050 +Average conv. rate = 0.044581 + +* 2 2 1 0.111306E-02 0.496217E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4315 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.32 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -8.21K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4315 Max w this run +w_max level proc position run w_max level timestep +0.638E+00 29 268 140.6deg E 1.9deg N 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4316 Model time: 1979-03-31 22:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043980 + +* 1 1 3 0.100000E+01 0.850658E-04 * +Number of iterations = 2 +Initial residual = 0.014086 +Final residual = 0.000042 +Average conv. rate = 0.054641 + +* 1 2 2 0.140863E-01 0.420568E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.095184 +Final residual = 0.000012 +Average conv. rate = 0.049826 + +* 2 1 3 0.951842E-01 0.117742E-04 * +Number of iterations = 1 +Initial residual = 0.001143 +Final residual = 0.000048 +Average conv. rate = 0.042343 + +* 2 2 1 0.114310E-02 0.484018E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4316 +This timestep This run +Min theta1 proc position Min theta1 timestep +228.06 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -7.37K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4316 Max w this run +w_max level proc position run w_max level timestep +0.608E+00 28 268 140.6deg E 1.9deg N 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[1] 2 4 14 +[0] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4317 Model time: 1979-03-31 22:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044091 + +* 1 1 3 0.100000E+01 0.857125E-04 * +Number of iterations = 2 +Initial residual = 0.014148 +Final residual = 0.000042 +Average conv. rate = 0.054754 + +* 1 2 2 0.141484E-01 0.424168E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094337 +Final residual = 0.000012 +Average conv. rate = 0.049892 + +* 2 1 3 0.943372E-01 0.117161E-04 * +Number of iterations = 1 +Initial residual = 0.001119 +Final residual = 0.000048 +Average conv. rate = 0.043311 + +* 2 2 1 0.111882E-02 0.484571E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4317 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.81 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -6.57K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4317 Max w this run +w_max level proc position run w_max level timestep +0.628E+00 31 194 28.1deg E -15.6deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4318 Model time: 1979-03-31 23:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000086 +Average conv. rate = 0.044163 + +* 1 1 3 0.100000E+01 0.861324E-04 * +Number of iterations = 2 +Initial residual = 0.014013 +Final residual = 0.000042 +Average conv. rate = 0.054922 + +* 1 2 2 0.140128E-01 0.422691E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094808 +Final residual = 0.000013 +Average conv. rate = 0.051796 + +* 2 1 3 0.948081E-01 0.131741E-04 * +Number of iterations = 1 +Initial residual = 0.001138 +Final residual = 0.000049 +Average conv. rate = 0.043312 + +* 2 2 1 0.113835E-02 0.493046E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4318 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.57 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.81K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4318 Max w this run +w_max level proc position run w_max level timestep +0.635E+00 29 194 28.1deg E -15.6deg S 0.103E+01 26 3901 +[1] AERO_CTL: Segments are not uniform +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] 2 4 14 + +******************************************************************************** + +Atm_Step: Timestep 4319 Model time: 1979-03-31 23:30:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Setting solar spectral variation at look-up time: 1979-03-01 : 0 sec +Solar constant: 1.362727905E+03 +Band : Band Fraction : Rayleigh coeff : Fraction per k-term +1 : 2.005919800E-02 : 1.485682015E-04 : 2.204393107E-02 3.505137202E-02 4.828370852E-02 1.409269788E-01 2.968094441E-01 4.568845655E-01 +2 : 2.063846313E-01 : 3.116089123E-05 : 2.894725993E-01 7.105274007E-01 +3 : 2.363349547E-01 : 7.475185331E-06 +4 : 3.198113468E-01 : 1.642797977E-06 +5 : 1.791276288E-01 : 1.781904115E-07 +6 : 3.828224039E-02 : 1.080532449E-08 +update_dpsidt: updating based on existing values +update_pattern: updating coeffc and coeffs +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000085 +Average conv. rate = 0.043987 + +* 1 1 3 0.100000E+01 0.851101E-04 * +Number of iterations = 2 +Initial residual = 0.013909 +Final residual = 0.000045 +Average conv. rate = 0.057180 + +* 1 2 2 0.139085E-01 0.454745E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.094066 +Final residual = 0.000015 +Average conv. rate = 0.054580 + +* 2 1 3 0.940665E-01 0.152947E-04 * +Number of iterations = 1 +Initial residual = 0.001139 +Final residual = 0.000050 +Average conv. rate = 0.043627 + +* 2 2 1 0.113859E-02 0.496733E-04 * +*************************************************************** + + +Minimum theta level 1 for timestep 4319 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.34 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -5.12K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4319 Max w this run +w_max level proc position run w_max level timestep +0.650E+00 36 154 58.1deg W -34.4deg S 0.103E+01 26 3901 + +******************************************************************************** + +Atm_Step: Timestep 4320 Model time: 1979-04-01 00:00:00 +EG_SISL_Resetcon: calculate reference profile +Constructing Helmholtz operator... +NOT CALLING RANDOM PARAMETERS2 +This routine is only called every 10800 seconds +Copying rp2 to dump headers +update_dpsidt: updating based on existing values +stph_skeb2: Copying SKEB2 data to dump headers +update_pattern: updating coeffc and coeffs +Copying SPT parameters to dump headers +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 1.000000 +Final residual = 0.000084 +Average conv. rate = 0.043766 + +* 1 1 3 0.100000E+01 0.838339E-04 * +Number of iterations = 2 +Initial residual = 0.013781 +Final residual = 0.000044 +Average conv. rate = 0.056378 + +* 1 2 2 0.137814E-01 0.438043E-04 * +*************************************************************** + +*************************************************************** +* Linear solve for Helmholtz problem * +* Outer Inner Iterations InitialError FinalError * +Number of iterations = 3 +Initial residual = 0.093247 +Final residual = 0.000010 +Average conv. rate = 0.048181 + +* 2 1 3 0.932475E-01 0.104294E-04 * +Number of iterations = 1 +Initial residual = 0.001133 +Final residual = 0.000048 +Average conv. rate = 0.042726 + +* 2 2 1 0.113341E-02 0.484267E-04 * +*************************************************************** + +Tot dry mass 0.51296E+19 +Tot mass 0.51423E+19 +Tot energy 0.13061E+25 +tot dry energy 0.13062E+25 +gr( rho cal) 0.38123E+24 +KE( rho cal) 0.81955E+21 +KEu(rho cal) 0.62519E+21 +KEv(rho cal) 0.19435E+21 +KEw(rho cal) 0.13722E+16 +cvT( rho cal) 0.92413E+24 +lq ( rho cal) 0.31716E+23 +lqcf( rho cal) 0.70302E+20 +lqcl( rho cal) 0.41131E+20 +Final dry mass of atmosphere = 0.51296E+19 KG +Initial dry mass of atmosphere= 0.51296E+19 KG +Correction factor for rho_dry = 0.10000E+01 +Final moisture = 0.12724E+17 KG +Initial moisture = 0.12702E+17 KG +change in moisture = 0.21540E+14 KG +Moisture added E-P in period = 0.20312E+14 KG +Error in moisture = 0.12274E+13 KG +Error as % of change = 0.56982E+01 +q ( rho cal) 0.12681E+17 +qcf( rho cal) 0.28109E+14 +qcl( rho cal) 0.14508E+14 +FINAL TOTAL ENERGY = 0.13061E+25 J/ +INITIAL TOTAL ENERGY = 0.13059E+25 J/ +CHG IN TOTAL ENERGY O. P. = 0.15939E+21 J/ +FLUXES INTO ATM OVER PERIOD = 0.16130E+21 J/ +ERROR IN ENERGY BUDGET = 0.19124E+19 J/ +TEMP CORRECTION OVER A DAY = 0.51928E-03 K +TEMPERATURE CORRECTION RATE = 0.60102E-08 K/S +FLUX CORRECTION (ATM) = 0.43392E-01 W/M2 + +Minimum theta level 1 for timestep 4320 +This timestep This run +Min theta1 proc position Min theta1 timestep +227.15 42 112.5deg E -76.3deg S 222.96 3947 +Largest negative delta theta1 at minimum theta1 +This timestep = -4.46K. At min for run = -13.74K + +Maximum vertical velocity at timestep 4320 Max w this run +w_max level proc position run w_max level timestep +0.651E+00 31 194 28.1deg E -15.6deg S 0.103E+01 26 3901 +Value of iranseed copied to the dump headers 37234461158025 +[0] AERO_CTL: Segments are not uniform +[0] 2 4 14 +[1] AERO_CTL: Segments are not uniform +[1] 2 4 14 +GET_FILENAME: Generated filename:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790401_00 +GET_FILENAME: (From): /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.d%z%C +FILE_MANAGER: Assigned : /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790401_00 +FILE_MANAGER: : Unit : 45 (portio) +DUMPCTL: Opening new file /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790401_00 on unit 45 +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790401_00 to be Opened on Unit 45 does not Exist +OPEN: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790401_00 Created on Unit 45 +IO: Open: /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790401_00 on unit 45 + +WRITING UNIFIED MODEL DUMP ON UNIT 45 +##################################### + +Data successfully written +794416694 words written to unit 45 +(Model data) +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.da19790401_00 Closed on Unit 45 +FILE_MANAGER: Released : Unit : 45 (portio) +FILE_MANAGER: Assigned : history_archive/temp_hist.0007 +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +MPPIO: file op: cp::history_archive/temp_hist.0007:thist +file_op: Copy: "history_archive/temp_hist.0007" to "thist" +file_op: Copy: Complete, 12912 bytes +MPPIO: file op completed +FILE_MANAGER: Assigned : history_archive/temp_hist.0008 +FILE_MANAGER: : Unit : 15 (fortran) +FILE_MANAGER: Released : Unit : 15 (fortran) +MPPIO: file op: cp::history_archive/temp_hist.0008:/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.xhist +file_op: Copy: "history_archive/temp_hist.0008" to "/home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testi.xhist" +file_op: Copy: Complete, 12912 bytes +MPPIO: file op completed +MPPIO: file op: rm::thist: +file_op: Delete: "thist" +file_op: Delete: File deleted +MPPIO: file op completed +Unit 10 is closed +Managed unit 11 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pm1979mar Closed on Unit 11 +FILE_MANAGER: Released : Unit : 11 (portio) +Managed unit 12 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pa1979mar Closed on Unit 12 +FILE_MANAGER: Released : Unit : 12 (portio) +Managed unit 13 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pb1979jan Closed on Unit 13 +FILE_MANAGER: Released : Unit : 13 (portio) +Managed unit 14 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pk1979mar Closed on Unit 14 +FILE_MANAGER: Released : Unit : 14 (portio) +Managed unit 15 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pl1979mar Closed on Unit 15 +FILE_MANAGER: Released : Unit : 15 (portio) +Managed unit 16 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p11979mar Closed on Unit 16 +FILE_MANAGER: Released : Unit : 16 (portio) +Managed unit 17 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p21979mar Closed on Unit 17 +FILE_MANAGER: Released : Unit : 17 (portio) +Managed unit 18 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p31979mar Closed on Unit 18 +FILE_MANAGER: Released : Unit : 18 (portio) +Managed unit 19 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p41979mar Closed on Unit 19 +FILE_MANAGER: Released : Unit : 19 (portio) +Managed unit 20 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p51979mar Closed on Unit 20 +FILE_MANAGER: Released : Unit : 20 (portio) +Managed unit 21 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p61979mar Closed on Unit 21 +FILE_MANAGER: Released : Unit : 21 (portio) +Managed unit 22 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p71979mar Closed on Unit 22 +FILE_MANAGER: Released : Unit : 22 (portio) +Managed unit 23 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p81979mar Closed on Unit 23 +FILE_MANAGER: Released : Unit : 23 (portio) +Managed unit 24 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pn1979mar Closed on Unit 24 +FILE_MANAGER: Released : Unit : 24 (portio) +Managed unit 25 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.p91979mar Closed on Unit 25 +FILE_MANAGER: Released : Unit : 25 (portio) +Managed unit 26 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pt1979mar Closed on Unit 26 +FILE_MANAGER: Released : Unit : 26 (portio) +Managed unit 27 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pu1979mar Closed on Unit 27 +FILE_MANAGER: Released : Unit : 27 (portio) +Managed unit 28 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pv1979mar Closed on Unit 28 +FILE_MANAGER: Released : Unit : 28 (portio) +Managed unit 29 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pc1979jan Closed on Unit 29 +FILE_MANAGER: Released : Unit : 29 (portio) +Managed unit 30 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pd1979mar Closed on Unit 30 +FILE_MANAGER: Released : Unit : 30 (portio) +Managed unit 31 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pe1979mar Closed on Unit 31 +FILE_MANAGER: Released : Unit : 31 (portio) +Managed unit 32 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pf1979jan Closed on Unit 32 +FILE_MANAGER: Released : Unit : 32 (portio) +Managed unit 33 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pg1979jan Closed on Unit 33 +FILE_MANAGER: Released : Unit : 33 (portio) +Managed unit 34 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.ph1979mar Closed on Unit 34 +FILE_MANAGER: Released : Unit : 34 (portio) +Managed unit 35 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pi1979jan Closed on Unit 35 +FILE_MANAGER: Released : Unit : 35 (portio) +Managed unit 36 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pj1979jan Closed on Unit 36 +FILE_MANAGER: Released : Unit : 36 (portio) +Managed unit 37 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/History_Data/testia.pz1979mar Closed on Unit 37 +FILE_MANAGER: Released : Unit : 37 (portio) +Managed unit 38 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.ozone Closed on Unit 38 +FILE_MANAGER: Released : Unit : 38 (portio) +Managed unit 39 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.seaice Closed on Unit 39 +FILE_MANAGER: Released : Unit : 39 (portio) +Managed unit 40 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sst Closed on Unit 40 +FILE_MANAGER: Released : Unit : 40 (portio) +Managed unit 41 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.frac Closed on Unit 41 +FILE_MANAGER: Released : Unit : 41 (portio) +Managed unit 42 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrparm.veg.func Closed on Unit 42 +FILE_MANAGER: Released : Unit : 42 (portio) +Managed unit 43 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sulpdms Closed on Unit 43 +FILE_MANAGER: Released : Unit : 43 (portio) +Managed unit 44 is open at end of run, closing +CLOSE: File /home/users/erica.neininger/cylc-run/MOCI-testing/u-dx886_GAL9_N96/run6/share/data/etc/ancil/qrclim.sea Closed on Unit 44 +FILE_MANAGER: Released : Unit : 44 (portio) +FILE_MANAGER: Released : Unit : 13 (fortran) +FILE_MANAGER: Released : Unit : 14 (fortran) +FILE_MANAGER: Released : Unit : 11 (fortran) +FILE_MANAGER: Released : Unit : 12 (fortran) + +******************************************************************************* +**************** End of UM RUN Job : 23:15:48 on 26/03/2026 ***************** +**************** Based upon UM release vn13.8 ***************** +******************************************************************************* + + +****************************************** + +END OF RUN - TIMER OUTPUT +Timer information is for whole run +PE 0 Elapsed CPU Time: 3227.994 seconds +PE 0 Elapsed Wallclock Time: 1875.794 seconds + +Total Elapsed CPU Time: 1699339.706 seconds +Maximum Elapsed Wallclock Time: 1875.795 seconds +Speedup: 905.93 +-------------------------------------------- +Non-Inclusive Timer Summary for PE 0 +N ROUTINE CALLS TOT CPU AVERAGE TOT WALL AVERAGE % CPU % WALL SPEED-UP +01 UM_SHELL 1 3227.99 3227.99 1875.79 1875.79 100.00 100.00 1.72 + +MPP Timing information : +512 processors in atmosphere configuration 32 x 16 +Number of OMP threads : 2 + +MPP : Non Inclusive timer summary + +WALLCLOCK TIMES +N ROUTINE MEAN MEDIAN SD % of mean MAX (PE) MIN (PE) +01 UM_SHELL 3.66 0.00 82.82 ******% 1875.79 ( 0) 0.00 ( 1) + +CPU TIMES (sorted by wallclock times) +N ROUTINE MEAN MEDIAN SD % of mean MAX (PE) MIN (PE) +01 UM_SHELL 6.30 0.00 142.52 ******% 3227.99 ( 0) 0.00 ( 1) + +END OF RUN - TIMER OUTPUT +Timer information is for whole run +Inclusive Timer Summary for PE 0 +N ROUTINE CALLS TOT CPU AVERAGE TOT WALL AVERAGE SPEED-UP +01 U_MODEL_4A 1 3225.78 3225.78 1874.06 1874.06 1.72 +02 Atm_Step_4A (AS) 1488 3143.31 2.11 1814.71 1.22 1.73 +03 AS Atmos_Phys1 (AP1) 1488 2252.86 1.51 1332.48 0.90 1.69 +04 AP1 COSP 2976 459.88 0.15 230.62 0.08 1.99 +05 AS UKCA_MAIN1 1488 336.19 0.23 179.26 0.12 1.88 +06 AP1 Radiation (AP1R) 1488 176.83 0.12 92.11 0.06 1.92 +07 AP1R Rad_Ctl 1488 176.20 0.12 91.77 0.06 1.92 +08 AS S-L Advect (AA) 7440 134.06 0.02 73.73 0.01 1.82 +09 AS STASH 8928 129.01 0.01 70.57 0.01 1.83 +10 AS Solver 5952 124.77 0.02 63.77 0.01 1.96 +11 AS Atmos_Phys2 (AP2) 8928 96.97 0.01 55.46 0.01 1.75 +12 AP1R LW Rad 1488 105.19 0.07 52.68 0.04 2.00 +13 AS End TStep Diags 1488 88.43 0.06 48.51 0.03 1.82 +14 UKCA AEROSOL MODEL 744 95.08 0.13 47.74 0.06 1.99 +15 DUMPCTL 4 58.67 14.67 42.65 10.66 1.38 +16 AP1 Microphys (AP1M) 1488 61.88 0.04 31.19 0.02 1.98 +17 AP1M LS Rain 1488 57.57 0.04 28.87 0.02 1.99 +18 AP1 GLOMAP 1488 32.48 0.02 24.14 0.02 1.35 +19 AP1R SW Rad 1488 45.07 0.03 22.73 0.02 1.98 +20 AA SL_Tracer 2976 38.70 0.01 21.77 0.01 1.78 +21 AS Correct_Tracers 1488 28.92 0.02 15.15 0.01 1.91 +22 AA SL_Full_Wind 2976 27.84 0.01 14.63 0.00 1.90 +23 AP2 Convection 5952 28.03 0.00 14.35 0.00 1.95 +24 UKCA CHEMISTRY MODEL 1488 27.52 0.02 14.07 0.01 1.96 +25 INITIAL 1 14.53 14.53 9.90 9.90 1.47 +26 AS Stochastic_Phys 4464 16.80 0.00 9.37 0.00 1.79 +27 AP2 Boundary Layer (AP2B) 8928 15.94 0.00 8.72 0.00 1.83 +28 AP2B Implicit BL 5952 12.68 0.00 6.92 0.00 1.83 +29 AA SL_Moisture 2976 11.87 0.00 6.27 0.00 1.89 +30 AP1 G-wave Drag 1488 8.92 0.01 4.72 0.00 1.89 +31 AA SL_Rho 2976 7.09 0.00 3.82 0.00 1.85 +32 AS Convert 16368 6.06 0.00 3.17 0.00 1.91 +33 AP2 JULES_Flux 1488 3.75 0.00 2.01 0.00 1.87 +34 AP2B Explicit BL 2976 2.95 0.00 1.64 0.00 1.80 +35 AS Correct_Moisture 1488 2.98 0.00 1.63 0.00 1.82 +36 AP2 Land_Surf 1488 2.83 0.00 1.61 0.00 1.76 +37 AA SL_Thermo 2976 2.80 0.00 1.48 0.00 1.89 +38 AS Aerosol Modelling 1488 2.39 0.00 1.40 0.00 1.70 +39 AP1M LS Cloud 1488 2.01 0.00 1.05 0.00 1.91 +40 TIMER 275295 0.88 0.00 0.62 0.00 1.42 +41 AS Diagnostics 1488 0.98 0.00 0.62 0.00 1.58 +42 AP1 NI_methox 1488 0.12 0.00 0.07 0.00 1.60 +43 AP2 Conv_Diag 1488 0.07 0.00 0.05 0.00 1.44 +44 AS Energy Mass 1488 0.06 0.00 0.04 0.00 1.38 +45 AP1 Energy Correct. 1488 0.09 0.00 0.04 0.00 2.22 +46 AS Assimilation 2976 0.01 0.00 0.01 0.00 1.30 +47 AP1 Conv Eng Corr 1488 0.02 0.00 0.01 0.00 1.79 +48 AP2 Conv Eng Corr 1488 0.01 0.00 0.01 0.00 0.83 +49 Init_Atm_Step (FS) 1 0.01 0.01 0.01 0.01 0.95 +50 AP1 Arcl 1488 0.01 0.00 0.01 0.00 1.96 + +MPP Timing information : +512 processors in atmosphere configuration 32 x 16 +Number of OMP threads : 2 + +MPP : Inclusive timer summary + +WALLCLOCK TIMES +N ROUTINE MEAN MEDIAN SD % of mean MAX (PE) MIN (PE) +01 U_MODEL_4A 1874.02 1874.02 0.00 0.00% 1874.06 ( 0) 1874.02 (274) +02 Atm_Step_4A (AS) 1814.70 1814.64 0.27 0.01% 1815.41 ( 51) 1814.19 (396) +03 AS Atmos_Phys1 (AP1) 1331.69 1330.90 1.57 0.12% 1334.73 (128) 1329.32 (451) +04 AP1 COSP 410.09 402.12 137.51 33.53% 898.62 (237) 173.51 (290) +05 AS UKCA_MAIN1 179.24 179.19 0.27 0.15% 179.96 ( 51) 178.74 (396) +06 AP1 Radiation (AP1R) 94.57 94.71 1.86 1.97% 99.71 (226) 90.12 ( 37) +07 AP1R Rad_Ctl 94.23 94.37 1.86 1.98% 99.37 (226) 89.78 ( 37) +08 AS S-L Advect (AA) 72.77 72.69 0.25 0.35% 73.73 ( 0) 72.37 (372) +09 AS STASH 62.64 62.41 1.02 1.63% 70.57 ( 0) 61.73 (136) +10 AS Solver 63.05 63.02 0.11 0.18% 63.77 ( 0) 62.86 (368) +11 AP1R LW Rad 55.16 55.30 1.87 3.39% 60.31 (226) 50.71 ( 37) +12 AS Atmos_Phys2 (AP2) 55.16 55.20 0.30 0.54% 55.65 (390) 54.06 (511) +13 UKCA AEROSOL MODEL 48.49 48.48 0.58 1.21% 54.00 (368) 47.13 (508) +14 AS End TStep Diags 47.86 47.81 0.24 0.49% 48.51 ( 0) 47.33 (152) +15 DUMPCTL 42.59 42.59 0.00 0.01% 42.65 ( 0) 42.59 ( 75) +16 AP1 Microphys (AP1M) 28.74 28.88 6.11 21.26% 40.19 (385) 11.12 (290) +17 AP1M LS Rain 26.44 26.58 6.11 23.12% 37.90 (385) 8.82 (290) +18 AP2 Convection 18.06 18.07 3.32 18.37% 25.37 (214) 13.57 (476) +19 AP1 GLOMAP 23.85 23.84 0.06 0.24% 24.14 ( 0) 23.65 (131) +20 AP1R SW Rad 19.19 19.28 1.73 9.01% 23.94 ( 22) 14.68 (508) +21 AA SL_Tracer 22.39 22.37 0.31 1.40% 23.15 (143) 21.60 ( 56) +22 AA SL_Full_Wind 14.14 13.69 1.47 10.38% 16.99 (507) 12.55 (268) +23 AS Correct_Tracers 15.21 15.21 0.04 0.25% 15.36 (230) 15.12 (204) +24 UKCA CHEMISTRY MODEL 14.25 14.23 0.36 2.56% 15.23 (378) 13.30 (476) +25 INITIAL 9.90 9.90 0.00 0.00% 9.90 (213) 9.90 (511) +26 AS Stochastic_Phys 8.50 8.55 0.16 1.90% 9.37 ( 0) 8.03 ( 60) +27 AP2 Boundary Layer (AP2B) 8.78 8.80 0.18 2.09% 9.34 ( 48) 8.27 (492) +28 AP2B Implicit BL 6.88 6.89 0.12 1.72% 7.14 ( 92) 6.56 (431) +29 AA SL_Moisture 5.96 5.87 0.24 4.05% 6.74 (506) 5.67 (372) +30 AP1 G-wave Drag 3.60 3.52 0.57 15.74% 4.72 ( 26) 2.37 (213) +31 AP2 JULES_Flux 2.57 2.00 1.08 42.10% 4.51 (327) 1.46 (285) +32 AA SL_Rho 3.68 3.53 0.23 6.21% 4.31 (509) 3.45 (393) +33 AS Convert 3.09 3.08 0.04 1.14% 3.25 ( 64) 3.00 (449) +34 AP2B Explicit BL 0.00 0.00 0.07 ******% 1.64 ( 0) 0.00 ( 1) +35 AS Correct_Moisture 0.00 0.00 0.07 ******% 1.63 ( 0) 0.00 ( 1) +36 AP2 Land_Surf 0.00 0.00 0.07 ******% 1.61 ( 0) 0.00 ( 1) +37 AA SL_Thermo 0.00 0.00 0.07 ******% 1.48 ( 0) 0.00 ( 1) +38 AS Aerosol Modelling 0.00 0.00 0.06 ******% 1.40 ( 0) 0.00 ( 1) +39 AP1M LS Cloud 0.00 0.00 0.05 ******% 1.05 ( 0) 0.00 ( 1) +40 TIMER 0.00 0.00 0.03 ******% 0.62 ( 0) 0.00 ( 1) +41 AS Diagnostics 0.00 0.00 0.03 ******% 0.62 ( 0) 0.00 ( 1) +42 AP1 NI_methox 0.00 0.00 0.00 ******% 0.07 ( 0) 0.00 ( 1) +43 AP2 Conv_Diag 0.00 0.00 0.00 ******% 0.05 ( 0) 0.00 ( 1) +44 AS Energy Mass 0.00 0.00 0.00 ******% 0.04 ( 0) 0.00 ( 1) +45 AP1 Energy Correct. 0.00 0.00 0.00 ******% 0.04 ( 0) 0.00 ( 1) +46 AS Assimilation 0.00 0.00 0.00 ******% 0.01 ( 0) 0.00 ( 1) +47 AP1 Conv Eng Corr 0.00 0.00 0.00 ******% 0.01 ( 0) 0.00 ( 1) +48 AP2 Conv Eng Corr 0.00 0.00 0.00 ******% 0.01 ( 0) 0.00 ( 1) +49 Init_Atm_Step (FS) 0.00 0.00 0.00 ******% 0.01 ( 0) 0.00 ( 1) +50 AP1 Arcl 0.00 0.00 0.00 ******% 0.01 ( 0) 0.00 ( 1) + +CPU TIMES (sorted by wallclock times) +N ROUTINE MEAN MEDIAN SD % of mean MAX (PE) MIN (PE) +01 U_MODEL_4A 3316.33 3314.88 57.37 1.73% 3509.97 (237) 3089.94 (320) +02 Atm_Step_4A (AS) 3221.38 3219.34 56.92 1.77% 3413.94 (237) 3009.28 (320) +03 AS Atmos_Phys1 (AP1) 2333.78 2331.12 55.93 2.40% 2522.31 (237) 2153.02 (320) +04 AP1 COSP 795.90 781.71 275.85 34.66% 1773.71 (237) 321.37 (290) +05 AS UKCA_MAIN1 329.72 330.23 3.31 1.00% 342.42 (390) 305.97 (448) +06 AP1 Radiation (AP1R) 181.47 182.04 4.27 2.35% 191.95 (226) 170.07 (508) +07 AP1R Rad_Ctl 180.86 181.42 4.25 2.35% 191.35 (226) 169.53 (508) +08 AS S-L Advect (AA) 133.32 133.13 1.14 0.86% 137.35 (490) 130.56 (397) +09 AS STASH 115.22 115.02 1.68 1.45% 129.01 ( 0) 109.04 (192) +10 AS Solver 118.44 117.76 1.89 1.60% 124.77 ( 0) 115.48 (128) +11 AP1R LW Rad 110.15 110.56 3.84 3.48% 120.40 (226) 100.92 (508) +12 AS Atmos_Phys2 (AP2) 103.19 103.40 1.50 1.45% 106.40 (227) 96.97 ( 0) +13 UKCA AEROSOL MODEL 96.89 96.87 1.18 1.22% 107.91 (368) 94.08 (508) +14 AS End TStep Diags 86.71 86.76 0.62 0.71% 88.43 ( 0) 83.05 (128) +15 DUMPCTL 68.81 69.01 1.48 2.15% 70.01 (224) 56.82 (128) +16 AP1 Microphys (AP1M) 57.06 57.36 12.21 21.40% 79.94 (385) 21.81 (290) +17 AP1M LS Rain 52.83 53.14 12.20 23.10% 75.68 (385) 17.62 (290) +18 AP2 Convection 35.89 35.95 6.69 18.65% 50.62 (214) 26.63 ( 1) +19 AP1 GLOMAP 34.51 34.65 0.68 1.98% 35.37 (424) 30.60 ( 7) +20 AP1R SW Rad 38.20 38.42 3.43 8.98% 46.94 ( 21) 28.78 (508) +21 AA SL_Tracer 39.69 39.63 0.51 1.28% 41.12 (491) 38.24 ( 1) +22 AA SL_Full_Wind 26.17 25.30 2.47 9.44% 32.51 (492) 23.49 (258) +23 AS Correct_Tracers 29.36 29.38 0.21 0.70% 29.80 ( 19) 28.09 ( 24) +24 UKCA CHEMISTRY MODEL 28.37 28.33 0.78 2.76% 30.43 (378) 26.49 (504) +25 INITIAL 14.67 14.68 0.22 1.53% 15.44 ( 87) 13.19 (128) +26 AS Stochastic_Phys 15.81 15.90 0.30 1.92% 16.80 ( 0) 14.90 ( 1) +27 AP2 Boundary Layer (AP2B) 16.61 16.68 0.47 2.83% 17.65 ( 94) 15.27 (508) +28 AP2B Implicit BL 13.02 13.00 0.29 2.25% 13.80 ( 90) 12.30 (510) +29 AA SL_Moisture 11.45 11.32 0.42 3.70% 13.13 (506) 10.87 (126) +30 AP1 G-wave Drag 6.44 6.28 1.01 15.75% 8.92 ( 0) 4.37 (213) +31 AP2 JULES_Flux 5.06 3.74 2.18 43.20% 8.96 (327) 2.84 (284) +32 AA SL_Rho 6.75 6.52 0.43 6.41% 8.11 (510) 6.27 (393) +33 AS Convert 5.98 5.97 0.13 2.14% 6.28 (355) 5.72 (427) +34 AP2B Explicit BL 0.01 0.00 0.13 ******% 2.95 ( 0) 0.00 ( 1) +35 AS Correct_Moisture 0.01 0.00 0.13 ******% 2.98 ( 0) 0.00 ( 1) +36 AP2 Land_Surf 0.01 0.00 0.12 ******% 2.83 ( 0) 0.00 ( 1) +37 AA SL_Thermo 0.01 0.00 0.12 ******% 2.80 ( 0) 0.00 ( 1) +38 AS Aerosol Modelling 0.00 0.00 0.11 ******% 2.39 ( 0) 0.00 ( 1) +39 AP1M LS Cloud 0.00 0.00 0.09 ******% 2.01 ( 0) 0.00 ( 1) +40 TIMER 0.00 0.00 0.04 ******% 0.88 ( 0) 0.00 ( 1) +41 AS Diagnostics 0.00 0.00 0.04 ******% 0.98 ( 0) 0.00 ( 1) +42 AP1 NI_methox 0.00 0.00 0.01 ******% 0.12 ( 0) 0.00 ( 1) +43 AP2 Conv_Diag 0.00 0.00 0.00 ******% 0.07 ( 0) 0.00 ( 1) +44 AS Energy Mass 0.00 0.00 0.00 ******% 0.06 ( 0) 0.00 ( 1) +45 AP1 Energy Correct. 0.00 0.00 0.00 ******% 0.09 ( 0) 0.00 ( 1) +46 AS Assimilation 0.00 0.00 0.00 ******% 0.01 ( 0) 0.00 ( 1) +47 AP1 Conv Eng Corr 0.00 0.00 0.00 ******% 0.02 ( 0) 0.00 ( 1) +48 AP2 Conv Eng Corr 0.00 0.00 0.00 ******% 0.01 ( 0) 0.00 ( 1) +49 Init_Atm_Step (FS) 0.00 0.00 0.00 ******% 0.01 ( 0) 0.00 ( 1) +50 AP1 Arcl 0.00 0.00 0.00 ******% 0.01 ( 0) 0.00 ( 1) + +FILE_MANAGER: Released : id : io_reserved_unit (portio) +IO: Portio has been successfully finalised and shut down. + +???????????????????????????????????????????????????????????????????????????????? +?????????????????????????????? CAUTION ?????????????????????????????? +? Caution This run generated 43 warnings +???????????????????????????????????????????????????????????????????????????????? + diff --git a/Utilities/verification_scripts/unittests/test_compare_norms.py b/Utilities/verification_scripts/unittests/test_compare_norms.py index ff59d6fc..6356a17d 100644 --- a/Utilities/verification_scripts/unittests/test_compare_norms.py +++ b/Utilities/verification_scripts/unittests/test_compare_norms.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 ''' *****************************COPYRIGHT****************************** - (C) Crown copyright 2020-2025 Met Office. All rights reserved. + (C) Crown copyright 2020-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -73,7 +73,8 @@ def test_get_bad_attribute(self): class TestCompareFiles(unittest.TestCase): ''' Unit tests for Timestep object ''' def setUp(self): - self.kgofile = os.path.join(HERE, 'norms_kgo') + self.kgofile = os.path.join(HERE, 'norms_kgo_vn14') + self.kgofile_legacy = os.path.join(HERE, 'norms_kgo') self.emptyfile = os.path.join(HERE, 'norms_emptyfile') self.kgo = {} for i in range(10): @@ -89,6 +90,11 @@ def test_generate_timestep(self): ''' Assert yield variable type from the timestep generator ''' tsteps = list(compare_absnorms.generate_timestep(self.kgofile)) self.assertIsInstance(tsteps[0], compare_absnorms.Timestep) + + def test_generate_legacy_timestep(self): + ''' Assert yield variable type from the timestep generator (legacy)''' + tsteps = list(compare_absnorms.generate_timestep(self.kgofile_legacy)) + self.assertIsInstance(tsteps[0], compare_absnorms.Timestep) def test_generate_no_norms(self): ''' Assert yield from a file containing no norms data ''' @@ -107,6 +113,13 @@ def test_create_timesteps(self): self.assertIsInstance(tsteps[list(tsteps.keys())[0]], compare_absnorms.Timestep) + def test_create_legacy_timesteps(self): + ''' Assert creation of a timesteps dictionary (legacy)''' + tsteps = compare_absnorms.create_timesteps(self.kgofile_legacy) + self.assertIsInstance(tsteps, dict) + self.assertIsInstance(tsteps[list(tsteps.keys())[0]], + compare_absnorms.Timestep) + def test_compare_timesteps(self): ''' Assert successful comparison of norms ''' rcode, msg = compare_absnorms.compare_timesteps(self.kgo, self.kgo) From 17516f6524aed06b998cc07ccf53f1fa417218e8 Mon Sep 17 00:00:00 2001 From: Pierre Siddall <43399998+Pierre-siddall@users.noreply.github.com> Date: Fri, 8 May 2026 16:33:34 +0100 Subject: [PATCH 08/15] MOCIlib documentation (#54) --- Documentation/mocilib/mocilib.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Documentation/mocilib/mocilib.md diff --git a/Documentation/mocilib/mocilib.md b/Documentation/mocilib/mocilib.md new file mode 100644 index 00000000..f2a69caf --- /dev/null +++ b/Documentation/mocilib/mocilib.md @@ -0,0 +1,21 @@ +# MOCIlib + +MOCIlib is intended as a library to hold an assorted range on utility functions that can be used throughout new development and maintainance of MOCI along with their associated unit tests to ensure robust and unified approach to MOCI's functionality. + +## shellout + +The shelllout module contains the relevant functions to execute and handle shell commands in a safe manner. + +exec_subprocess is a function to execute a shell subprocess and takes the several parameters as follows: + +```python +def exec_subprocess(cmd, verbose=False, timeout=None, current_working_directory=os.getcwd()) +``` + +cmd - the command to be executed by exec_subprocess given as a string. + +verbose - a boolean (True or False) to determine if the standard output (stdout) stream is output during the execution of the shell command. + +timeout - an integer number determining the number of seconds a shell command can run for before a TimeoutExpired error is raised. + +current_working_directory - The working directory which the shell command will be executed in given as a string. From f206ca9c528cae5452ad44b4f2e4a9d936bc1381 Mon Sep 17 00:00:00 2001 From: Pierre Siddall <43399998+Pierre-siddall@users.noreply.github.com> Date: Tue, 12 May 2026 15:13:32 +0100 Subject: [PATCH 09/15] Capitalise MOCI in README (#58) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe4210ef..4a897e7a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# moci - Met Office Coupling Infrastructure +# MOCI - Met Office Coupling Infrastructure The Met Office global coupled models (GC) couple together the ​ [UM](https://github.com/MetOffice/um) and [​NEMO](https://www.nemo-ocean.eu/) in From 396adabb63d46195f6adadf2b78bfbf2a60c92a4 Mon Sep 17 00:00:00 2001 From: Pierre Siddall <43399998+Pierre-siddall@users.noreply.github.com> Date: Wed, 13 May 2026 15:45:12 +0100 Subject: [PATCH 10/15] Fix code quality warnings (#45) Co-authored-by: R Sharp --- Postprocessing/platforms/moo.py | 14 ++++---- .../unittests/test_verify_expected.py | 8 ++--- .../unittests/test_generate_nam_s1.py | 4 +-- .../unittests/test_ozone.py | 34 +++++++++---------- 4 files changed, 30 insertions(+), 30 deletions(-) diff --git a/Postprocessing/platforms/moo.py b/Postprocessing/platforms/moo.py index 623ef87d..8de17341 100644 --- a/Postprocessing/platforms/moo.py +++ b/Postprocessing/platforms/moo.py @@ -169,7 +169,7 @@ def _collection(self): if model_id == 'a': # Atmosphere output if self._file_id.endswith('.nc'): fn_facets = self._file_id.split('_') - if re.match('^[pm][a-z0-9](-.*)?$', fn_facets[-1]): + if re.match(r'^[pm][a-z0-9](-.*)?$', fn_facets[-1]): # Use stream id for collection if provided in filename stream_id = fn_facets[-1][1] else: @@ -179,20 +179,20 @@ def _collection(self): ext = '.nc.file' else: file_id = self._file_id[:2] - if re.search('[mp][1-9|a-z]', file_id): + if re.search(r'[mp][1-9a-z]', file_id): if self.convertpp: ext = '.pp' else: ext = '.file' - elif re.search('v[1-5|a-j|lmsvy]', file_id): + elif re.search(r'v[1-5a-jlmsvy]', file_id): ext = '.pp' - elif re.search('n[1-9|a-m|s-z]', file_id): + elif re.search(r'n[1-9a-ms-z]', file_id): ext = '.nc.file' - elif re.search('b[a-j|mxy]', file_id): + elif re.search(r'b[a-jmxy]', file_id): ext = '.file' - elif re.search('d[amsy]', file_id): + elif re.search(r'd[amsy]', file_id): ext = '.file' - elif re.search('r[a-m|qstuvwxz]', file_id): + elif re.search(r'r[a-mqstuvwxz]', file_id): ext = '.file' elif model_id in 'io': # NEMO/CICE means and restart dumps diff --git a/Postprocessing/unittests/test_verify_expected.py b/Postprocessing/unittests/test_verify_expected.py index 9705e919..fed5b4fd 100644 --- a/Postprocessing/unittests/test_verify_expected.py +++ b/Postprocessing/unittests/test_verify_expected.py @@ -1116,13 +1116,13 @@ def test_expected_atmos_ppff(self): 'PREFIXa.p11998aug.pp', 'PREFIXa.p11998sep.pp'], 'amd.pp': ['PREFIXa.md19950811_00.pp', 'PREFIXa.md19950811_10.pp', 'PREFIXa.md19981029_18.pp', 'PREFIXa.md19981030_04.pp'], - 'anb.nc.file': [r'atmos_prefixa_\d+[hdmsyx]_19950811-19951111_' + 'anb.nc.file': [r'atmos_prefixa_\d+[hdmsyx]_19950811-19951111_'+ r'[a-zA-Z0-9\-]*\.nc$', - r'atmos_prefixa_\d+[hdmsyx]_19951111-19960211_' + r'atmos_prefixa_\d+[hdmsyx]_19951111-19960211_'+ r'[a-zA-Z0-9\-]*\.nc$', - r'atmos_prefixa_\d+[hdmsyx]_19980211-19980511_' + r'atmos_prefixa_\d+[hdmsyx]_19980211-19980511_'+ r'[a-zA-Z0-9\-]*\.nc$', - r'atmos_prefixa_\d+[hdmsyx]_19980511-19980811_' + r'atmos_prefixa_\d+[hdmsyx]_19980511-19980811_'+ r'[a-zA-Z0-9\-]*\.nc$'] } expected = self.files.expected_diags() diff --git a/Utilities/NGMS_utils/ngms_namcouple_gen/unittests/test_generate_nam_s1.py b/Utilities/NGMS_utils/ngms_namcouple_gen/unittests/test_generate_nam_s1.py index 8ca8ce5e..b5deeb58 100644 --- a/Utilities/NGMS_utils/ngms_namcouple_gen/unittests/test_generate_nam_s1.py +++ b/Utilities/NGMS_utils/ngms_namcouple_gen/unittests/test_generate_nam_s1.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 ''' *****************************COPYRIGHT****************************** - (C) Crown copyright 2021-2025 Met Office. All rights reserved. + (C) Crown copyright 2021-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -88,7 +88,7 @@ def test_correct_values(self, mock_stderr): '''Test that with correct values we return nothing, and stderror is not called''' for val in [-1, 0, 1, 2, 3]: - self.assertIsNone(generate_nam_s1.check_nlogprt_val2(val)) + assert generate_nam_s1.check_nlogprt_val2(val) == None mock_stderr.assert_not_called() @mock.patch('generate_nam_s1.sys.stderr.write') diff --git a/Utilities/ozone_redistribution/unittests/test_ozone.py b/Utilities/ozone_redistribution/unittests/test_ozone.py index 8d942a7b..48689792 100755 --- a/Utilities/ozone_redistribution/unittests/test_ozone.py +++ b/Utilities/ozone_redistribution/unittests/test_ozone.py @@ -244,26 +244,26 @@ def test_skip_redistribution(self): expected_cmds = [ # Nullify further ozone tasks this cycle - 'cylc broadcast u-aa000 -n redistribute_ozone -p 19950101T0000Z ' - '-s script="echo [INFO] No redistribution required in the ' + 'cylc broadcast u-aa000 -n redistribute_ozone -p 19950101T0000Z '+ + '-s script="echo [INFO] No redistribution required in the '+ 'first year of simulation" -s post-script=""', - 'cylc broadcast u-aa000 -n rose_arch_ozone -p 19950101T0000Z ' - '-s script="echo [INFO] No redistribution required in the ' + 'cylc broadcast u-aa000 -n rose_arch_ozone -p 19950101T0000Z '+ + '-s script="echo [INFO] No redistribution required in the '+ 'first year of simulation" -s post-script=""', # Update ozone ancillary for remaining UM tasks this year - 'cylc broadcast u-aa000 -n coupled ' - '-p 19950101T0000Z -p 19950111T0000Z -p 19950121T0000Z ' - '-p 19950201T0000Z -p 19950211T0000Z -p 19950221T0000Z ' - '-p 19950301T0000Z -p 19950311T0000Z -p 19950321T0000Z ' - '-p 19950401T0000Z -p 19950411T0000Z -p 19950421T0000Z ' - '-p 19950501T0000Z -p 19950511T0000Z -p 19950521T0000Z ' - '-p 19950601T0000Z -p 19950611T0000Z -p 19950621T0000Z ' - '-p 19950701T0000Z -p 19950711T0000Z -p 19950721T0000Z ' - '-p 19950801T0000Z -p 19950811T0000Z -p 19950821T0000Z ' - '-p 19950901T0000Z -p 19950911T0000Z -p 19950921T0000Z ' - '-p 19951001T0000Z -p 19951011T0000Z -p 19951021T0000Z ' - '-p 19951101T0000Z -p 19951111T0000Z -p 19951121T0000Z ' - '-p 19951201T0000Z -p 19951211T0000Z -p 19951221T0000Z ' + 'cylc broadcast u-aa000 -n coupled '+ + '-p 19950101T0000Z -p 19950111T0000Z -p 19950121T0000Z '+ + '-p 19950201T0000Z -p 19950211T0000Z -p 19950221T0000Z '+ + '-p 19950301T0000Z -p 19950311T0000Z -p 19950321T0000Z '+ + '-p 19950401T0000Z -p 19950411T0000Z -p 19950421T0000Z '+ + '-p 19950501T0000Z -p 19950511T0000Z -p 19950521T0000Z '+ + '-p 19950601T0000Z -p 19950611T0000Z -p 19950621T0000Z '+ + '-p 19950701T0000Z -p 19950711T0000Z -p 19950721T0000Z '+ + '-p 19950801T0000Z -p 19950811T0000Z -p 19950821T0000Z '+ + '-p 19950901T0000Z -p 19950911T0000Z -p 19950921T0000Z '+ + '-p 19951001T0000Z -p 19951011T0000Z -p 19951021T0000Z '+ + '-p 19951101T0000Z -p 19951111T0000Z -p 19951121T0000Z '+ + '-p 19951201T0000Z -p 19951211T0000Z -p 19951221T0000Z '+ '-s [environment]OZONE_ANCIL=ancil1990file' ] self.assertListEqual(mock_exec.mock_calls, From 30fcd5fb1d58972e30b789070678a91f6afbbf23 Mon Sep 17 00:00:00 2001 From: Jonny Williams Date: Thu, 14 May 2026 16:52:26 +0100 Subject: [PATCH 11/15] Adding ARCHER2 compiler script for mean_nemo (#61) Co-authored-by: Jonny Williams Co-authored-by: Erica Neininger <107684099+ericaneininger@users.noreply.github.com> --- CONTRIBUTORS.md | 1 + Utilities/mean_nemo/compiler.archer2 | 54 ++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100755 Utilities/mean_nemo/compiler.archer2 diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index e91605ee..ecb9c55a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -8,4 +8,5 @@ | dcalve | Daley Calvert | Met Office | 2026-02-04 | | harry-shepherd | Harry Shepherd | Met Office | 2026-02-27 | | marcstring | Marc Stringer | NCAS | 2026-04-01 | +| jonnyhtw | Jonny Williams | NCAS | 2026-05-13 | diff --git a/Utilities/mean_nemo/compiler.archer2 b/Utilities/mean_nemo/compiler.archer2 new file mode 100755 index 00000000..01ea8c91 --- /dev/null +++ b/Utilities/mean_nemo/compiler.archer2 @@ -0,0 +1,54 @@ +#!/bin/bash +# ======================================================================================== +# Script to compile mean_nemo.f90 on ARCHER2 +# Some of the content of this file has been produced with the assistance of Google Gemini. +# ======================================================================================== +set -eu + +NAME=mean_nemo +SOURCE=mean_nemo.f90 + +MODE=prod + +module load PrgEnv-gnu + +module load gcc/11.2.0 +module load cray-hdf5/1.12.2.7 +module load cray-netcdf/4.9.0.7 + +case ${MODE} in + prod) + # -O3: High optimisation + # -ffree-line-length-none: Fixes truncation at 132 characters + opts="-O3 -ffree-line-length-none" + ;; + dev) + opts="-O0 -ffree-line-length-none" + ;; + debug) + # Detailed error reporting for AMD chips + opts="-O0 -g -fbacktrace -ffpe-trap=invalid,zero,overflow -ffree-line-length-none" + ;; + *) + echo "Compilation mode \"${MODE}\" not supported" + exit 1 + ;; +esac + +echo "Cleaning old executable..." +[ -f ${NAME}.exe ] && rm -f ${NAME}.exe + +echo "Compiling ${SOURCE} with flags: ${opts} ..." + +ftn ${opts} ${SOURCE} -o ${NAME}.exe + +if [ -f ${NAME}.exe ]; then + echo "------------------------------------------------" + echo "SUCCESS: ${NAME}.exe has been created." + echo "Verifying NetCDF linkage:" + ldd ${NAME}.exe | grep netcdf + echo "------------------------------------------------" +else + echo "ERROR: Compilation failed." + exit 1 +fi From 156090f19945292a59cf15e10034ff3be460db7d Mon Sep 17 00:00:00 2001 From: Erica Neininger <107684099+ericaneininger@users.noreply.github.com> Date: Tue, 19 May 2026 13:15:44 +0100 Subject: [PATCH 12/15] Update PR template to include trac.log request (#62) Co-authored-by: Pierre Siddall <43399998+Pierre-siddall@users.noreply.github.com> --- .github/pull_request_template.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 6292a19a..4c203b33 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -25,17 +25,24 @@ Code Reviewer: - [ ] I have performed a self-review of my own code - [ ] My code follows the project's style guidelines -- [ ] Comments have been included that aid undertanding and enhance the +- [ ] Comments have been included that aid understanding and enhance the readability of the code - [ ] My changes generate no new warnings ## Testing -- [ ] I have tested this change locally, using the Moci rose-stem suite +- [ ] I have tested this change locally, using the Moci rose-stem suite. Required for any changes to + * Coupled_Drivers application + * Postprocessing application + * Unittests - [ ] If any tests fail (rose-stem or CI) the reason is understood and acceptable (eg. kgo changes) - [ ] I have added tests to cover new functionality as appropriate (eg. system tests, unit tests, etc.) + + ### trac.log + + From cdef584c6bc582254b1f005458556344d314bafa Mon Sep 17 00:00:00 2001 From: Jon Seddon <17068361+jonseddon@users.noreply.github.com> Date: Tue, 19 May 2026 14:22:56 +0100 Subject: [PATCH 13/15] Handle retrieve_ozone error code from Az-MASS (#59) Co-authored-by: Pierre Siddall <43399998+Pierre-siddall@users.noreply.github.com> --- CONTRIBUTORS.md | 1 + Utilities/ozone_redistribution/retrieve_massr.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ecb9c55a..b3bd3cee 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -8,5 +8,6 @@ | dcalve | Daley Calvert | Met Office | 2026-02-04 | | harry-shepherd | Harry Shepherd | Met Office | 2026-02-27 | | marcstring | Marc Stringer | NCAS | 2026-04-01 | +| jonseddon | Jon Seddon | Met Office | 2026-05-11 | | jonnyhtw | Jonny Williams | NCAS | 2026-05-13 | diff --git a/Utilities/ozone_redistribution/retrieve_massr.sh b/Utilities/ozone_redistribution/retrieve_massr.sh index b8d07482..240e4e71 100755 --- a/Utilities/ozone_redistribution/retrieve_massr.sh +++ b/Utilities/ozone_redistribution/retrieve_massr.sh @@ -29,7 +29,7 @@ error_analysis () { RC=$RC_ERROR echo [WARN] moo command is unavailable. ;; - *'no such data'*|*'no file atoms are matched'* ) + *'no such data'*|*'no file atoms are matched'*|*'NOT_FOUND'* ) # No data - OK if within 1 year of Nrun echo [WARN] No data set/collection available. echo This is acceptable for the PRIMARY archive within 1 year of NRun. From 822d0f8e32a66f5a33aafc178d8ffc075deb8098 Mon Sep 17 00:00:00 2001 From: Erica Neininger <107684099+ericaneininger@users.noreply.github.com> Date: Wed, 27 May 2026 11:06:04 +0100 Subject: [PATCH 14/15] Azure mass archive (#53) Co-authored-by: Jon Seddon <17068361+jonseddon@users.noreply.github.com> Co-authored-by: Pierre Siddall <43399998+Pierre-siddall@users.noreply.github.com> --- Postprocessing/common/suite.py | 4 +- Postprocessing/platforms/moo.py | 29 +++----- .../unittests/runtime_environment.py | 1 + .../unittests/test_common_suitegen.py | 7 +- .../unittests/test_platforms_moo.py | 71 ++++++------------- .../postproc/HEAD/rose-meta.conf | 27 +++---- .../postproc/version25_26.py | 24 +++++++ rose-stem/app/postproc/rose-app.conf | 9 +-- 8 files changed, 82 insertions(+), 90 deletions(-) diff --git a/Postprocessing/common/suite.py b/Postprocessing/common/suite.py index b67cee95..e126b97a 100644 --- a/Postprocessing/common/suite.py +++ b/Postprocessing/common/suite.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ''' *****************************COPYRIGHT****************************** - (C) Crown copyright 2015-2022 Met Office. All rights reserved. + (C) Crown copyright 2015-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -142,7 +142,7 @@ def _archive_command(self, filename, preproc): if self.archive_system == 'moose': # MOOSE Archiving rcode = moo.archive_to_moose(filename, self.prefix, self.sourcedir, - self.nl_arch, preproc) + self.nl_arch) elif self.archive_system in ['archer', 'nexcs']: # ARCHER/NEXCS Archiving rcode = archer.archive_to_rdf(filename, self.sourcedir, diff --git a/Postprocessing/platforms/moo.py b/Postprocessing/platforms/moo.py index 8de17341..b322a4ef 100644 --- a/Postprocessing/platforms/moo.py +++ b/Postprocessing/platforms/moo.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ''' *****************************COPYRIGHT****************************** - (C) Crown copyright 2015-2025 Met Office. All rights reserved. + (C) Crown copyright 2015-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -43,7 +43,7 @@ @timer.run_timer -def archive_to_moose(filename, fnprefix, sourcedir, nlist, convertpp): +def archive_to_moose(filename, fnprefix, sourcedir, nlist): '''Assemble the dictionary of variables required to archive''' cmd = { 'CURRENT_RQST_ACTION': 'ARCHIVE', @@ -51,14 +51,13 @@ def archive_to_moose(filename, fnprefix, sourcedir, nlist, convertpp): 'FILENAME_PREFIX': fnprefix, 'DATAM': sourcedir, 'SETNAME': nlist.archive_set, - 'NON_DUPLEXED': nlist.non_duplexed_set, 'CATEGORY': 'UNCATEGORISED', 'DATACLASS': nlist.dataclass, 'ENSEMBLEID': nlist.ensembleid, 'MOOPATH': nlist.moopath, 'PROJECT': nlist.mooproject, - 'CONVERTPP': convertpp, - 'ACT_AS': nlist.act_as + 'ACT_AS': nlist.act_as, + 'RISK_APPETITE': nlist.risk_appetite, } rcode = CommandExec().execute(cmd)[filename] @@ -77,7 +76,6 @@ def __init__(self, comms): self._class = comms['DATACLASS'] self._ens_id = comms['ENSEMBLEID'] self._moopath = comms['MOOPATH'] - self.convertpp = comms['CONVERTPP'] self._act_as = comms['ACT_AS'] # Define the collection name @@ -104,13 +102,11 @@ def __init__(self, comms): self._model_id = rqst[len(fnprefix):len(fnprefix) + 1] self._file_id = rqst[len(fnprefix) + 2:] - self.fl_pp = False - if not self.chkset(): # Create a set self.mkset(comms['CATEGORY'], comms['PROJECT'], - comms['NON_DUPLEXED']) + comms['RISK_APPETITE']) @property def dataset(self): @@ -130,14 +126,14 @@ def chkset(self): utils.log_msg('chkset: Using existing Moose set', level='INFO') return exist - def mkset(self, cat, project, non_duplexed): + def mkset(self, cat, project, risk_appetite): '''Create Moose set''' mkset_cmd = os.path.join(self._moopath, 'moo') + ' mkset -v ' if cat != 'UNCATEGORISED': mkset_cmd += '-c ' + cat + ' ' if project: mkset_cmd += '-p ' + project + ' ' - if non_duplexed: + if risk_appetite.lower() == 'low': mkset_cmd += '--single-copy ' if self._act_as: mkset_cmd += '--act-as {} '.format(self._act_as) @@ -180,7 +176,7 @@ def _collection(self): else: file_id = self._file_id[:2] if re.search(r'[mp][1-9a-z]', file_id): - if self.convertpp: + if self._file_id.endswith('.pp'): ext = '.pp' else: ext = '.file' @@ -244,9 +240,6 @@ def _collection(self): 'if your requirements are not being met by this script.' utils.log_msg(msg, level='ERROR') - if ext == '.pp': - self.fl_pp = True - return model_id + file_id + ext def put_data(self): @@ -263,7 +256,7 @@ def put_data(self): # Because of full path, need to get the filename at the end crn = os.path.join(self._sourcedir, crn) - moo_cmd = os.path.join(self._moopath, 'moo') + ' put -f -vv ' + moo_cmd = os.path.join(self._moopath, 'moo') + ' put -f -v ' if self._act_as: moo_cmd += '--act-as {} '.format(self._act_as) filepath = os.path.join(self.dataset, self._ens_id, @@ -373,13 +366,13 @@ def execute(self, commands): class MooseArch(object): '''Default namelist for Moose archiving''' - archive_set = os.environ['CYLC_SUITE_NAME'] - non_duplexed_set = False + archive_set = os.environ['CYLC_WORKFLOW_NAME'] dataclass = 'crum' ensembleid = '' moopath = '' mooproject = '' act_as = '' + risk_appetite = 'low' NAMELISTS = {'moose_arch': MooseArch} diff --git a/Postprocessing/unittests/runtime_environment.py b/Postprocessing/unittests/runtime_environment.py index c1c3269a..dc7f6e42 100644 --- a/Postprocessing/unittests/runtime_environment.py +++ b/Postprocessing/unittests/runtime_environment.py @@ -23,6 +23,7 @@ def setup_env(): '''Set up the runtime environment required to run the postproc unittests''' # Standard Cylc Environment + os.environ['CYLC_WORKFLOW_NAME'] = 'suiteID' os.environ['CYLC_SUITE_NAME'] = 'suiteID' os.environ['CYLC_CYCLING_MODE'] = '360day' os.environ['CYLC_SUITE_SHARE_DIR'] = os.getcwd() diff --git a/Postprocessing/unittests/test_common_suitegen.py b/Postprocessing/unittests/test_common_suitegen.py index c142f837..28ab177e 100644 --- a/Postprocessing/unittests/test_common_suitegen.py +++ b/Postprocessing/unittests/test_common_suitegen.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ''' *****************************COPYRIGHT****************************** - (C) Crown copyright 2015-2018 Met Office. All rights reserved. + (C) Crown copyright 2015-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -195,9 +195,8 @@ def test_archive_file_moose(self): open(self.mysuite.logfile, 'r').read()) self.assertTrue(self.mysuite.archive_ok) dummy.assert_called_once_with( - 'TestFile', 'TESTP', 'somePath/directory', - self.mysuite.nl_arch, False - ) + 'TestFile', 'TESTP', 'somePath/directory', self.mysuite.nl_arch + ) def test_archive_file_archer(self): '''Test archive_file command - archer is mocked out''' diff --git a/Postprocessing/unittests/test_platforms_moo.py b/Postprocessing/unittests/test_platforms_moo.py index 9fab8126..51c96d05 100644 --- a/Postprocessing/unittests/test_platforms_moo.py +++ b/Postprocessing/unittests/test_platforms_moo.py @@ -1,7 +1,7 @@ #!/usr/bin/env python ''' *****************************COPYRIGHT****************************** - (C) Crown copyright 2015-2025 Met Office. All rights reserved. + (C) Crown copyright 2015-2026 Met Office. All rights reserved. Use, duplication or disclosure of this code is subject to the restrictions as set forth in the licence. If no licence has been raised with this copy @@ -24,7 +24,7 @@ import testing_functions as func import runtime_environment -# Import of moo requires 'CYLC_SUITE_NAME' from runtime environment +# Import of moo requires 'CYLC_WORKFLOW_NAME' from runtime environment runtime_environment.setup_env() import moo @@ -37,14 +37,13 @@ 'FILENAME_PREFIX': 'TESTP', 'DATAM': 'TestDir', 'SETNAME': MOO_NLIST.archive_set, - 'NON_DUPLEXED': MOO_NLIST.non_duplexed_set, 'CATEGORY': 'UNCATEGORISED', 'DATACLASS': MOO_NLIST.dataclass, 'ENSEMBLEID': MOO_NLIST.ensembleid, 'MOOPATH': MOO_NLIST.moopath, 'PROJECT': MOO_NLIST.mooproject, - 'CONVERTPP': True, - 'ACT_AS': MOO_NLIST.act_as + 'ACT_AS': MOO_NLIST.act_as, + 'RISK_APPETITE': MOO_NLIST.risk_appetite, } class CommandTests(unittest.TestCase): @@ -141,7 +140,7 @@ def setUp(self): with mock.patch('moo.utils.exec_subproc', return_value=(0, '')): with mock.patch.dict('moo.os.environ', {'PREFIX': 'PATH/'}): self.inst = moo._Moose(cmd) - + def tearDown(self): pass @@ -223,17 +222,18 @@ def test_mkset_project(self, mock_subproc): func.logtest('test mkset function, with project:') mock_subproc.return_value = (0, '') project = 'UKESM' - self.inst.mkset('UNCATEGORISED', project, False) + self.inst.mkset('UNCATEGORISED', project, 'risk') cmd = 'moo mkset -v -p ' + project + ' ' + self.inst.dataset mock_subproc.assert_called_with(cmd, verbose=False) self.assertIn('created set', func.capture()) @mock.patch('moo.utils.exec_subproc') - def test_mkset_nonduplex(self, mock_subproc): - '''Test mkset function with non-duplex option''' - func.logtest('test mkset function, with non-duplex option:') + def test_mkset_lowrisk(self, mock_subproc): + '''Test mkset function with --single-copy option''' + func.logtest('test mkset function, with --single-copy option:') + mock_subproc.return_value = (0, '') - self.inst.mkset('UNCATEGORISED', '', True) + self.inst.mkset('UNCATEGORISED', '', 'low') cmd = 'moo mkset -v --single-copy ' + self.inst.dataset mock_subproc.assert_called_with(cmd, verbose=False) self.assertIn('created set', func.capture()) @@ -244,7 +244,7 @@ def test_mkset_act_as(self, mock_subproc): func.logtest('test mkset function, with act_as option:') mock_subproc.return_value = (0, '') self.inst._act_as = 'user.name' - self.inst.mkset('UNCATEGORISED', '', False) + self.inst.mkset('UNCATEGORISED', '', 'risk') cmd = 'moo mkset -v --act-as user.name ' + self.inst.dataset mock_subproc.assert_called_with(cmd, verbose=False) self.assertIn('created set', func.capture()) @@ -255,7 +255,7 @@ def test_mkset_category_fail(self, mock_subproc): func.logtest('test mkset with category - Failed operation:') mock_subproc.return_value = (-1, '') cat = 'GLOBAL' - self.inst.mkset(cat, '', False) + self.inst.mkset(cat, '', 'very_low') cmd = 'moo mkset -v -c ' + cat + ' ' + self.inst.dataset mock_subproc.assert_called_with(cmd, verbose=False) self.assertIn('Unable to create', func.capture(direct='err')) @@ -265,7 +265,7 @@ def test_mkset_pre_existing(self, mock_subproc): '''Test mkset function with pre-existing set''' func.logtest('test mkset function, with pre-existing set:') mock_subproc.return_value = (10, '') - self.inst.mkset('UNCATEGORISED', '', False) + self.inst.mkset('UNCATEGORISED', '', 'risk') mock_subproc.assert_called_with('moo mkset -v ' + self.inst.dataset, verbose=False) self.assertIn('already exists', func.capture()) @@ -275,26 +275,22 @@ def test_collection_atmos_dump(self): func.logtest('test formation of collection name with atmos dump:') collection = self.inst._collection() self.assertEqual(collection, 'ada.file') - self.assertFalse(self.inst.fl_pp) def test_collection_atmos_pp(self): '''Test formation of collection name - atmosphere pp''' func.logtest('test formation of collection name with atmos pp:') self.inst._model_id = 'a' - self.inst._file_id = 'pmYYYYMMDD' + self.inst._file_id = 'pm.YYYYMMDD.pp' collection = self.inst._collection() self.assertEqual(collection, 'apm.pp') - self.assertTrue(self.inst.fl_pp) def test_collection_atmos_ff(self): '''Test formation of collection name - atmosphere fieldsfile''' func.logtest('test formation of collection name with atmos ffile:') self.inst._model_id = 'a' - self.inst._file_id = 'pm' - self.inst.convertpp = False + self.inst._file_id = 'pm.yyyymmdd' collection = self.inst._collection() self.assertEqual(collection, 'apm.file') - self.assertFalse(self.inst.fl_pp) def test_collection_atmos_netcdf(self): '''Test formation of collection name - atmosphere netCDF''' @@ -303,7 +299,6 @@ def test_collection_atmos_netcdf(self): self.inst._file_id = '1d_YYYYMMDD-YYYYMMDD_pm-TAG.nc' collection = self.inst._collection() self.assertEqual(collection, 'anm.nc.file') - self.assertFalse(self.inst.fl_pp) def test_collection_atmos_netcdf_noid(self): '''Test formation of collection name - atmosphere netCDF with no ID''' @@ -312,42 +307,36 @@ def test_collection_atmos_netcdf_noid(self): self.inst._file_id = '1d_YYYYMMDD-YYYYMMDD_genericTAG.nc' collection = self.inst._collection() self.assertEqual(collection, 'and.nc.file') - self.assertFalse(self.inst.fl_pp) def test_collection_ocean_restart(self): '''Test formation of collection name - NEMO restart''' func.logtest('test formation of collection name with NEMO restart:') collection = self.inst._collection() self.assertEqual(collection, 'oda.file') - self.assertFalse(self.inst.fl_pp) def test_collection_iceberg_restart(self): '''Test formation of collection name - iceberg restart''' func.logtest('test formation of collection name with iceberg restart:') collection = self.inst._collection() self.assertEqual(collection, 'oda.file') - self.assertFalse(self.inst.fl_pp) def test_collection_ocean_tracer_restart(self): '''Test formation of collection name - NEMO passive tracer restart''' func.logtest('test formation of collection name with tracer restart:') collection = self.inst._collection() self.assertEqual(collection, 'oda.file') - self.assertFalse(self.inst.fl_pp) def test_collection_ocean_SI3_restart(self): '''Test formation of collection name - NEMO SI3 restart''' func.logtest('test formation of collection name with SI3 restart:') collection = self.inst._collection() self.assertEqual(collection, 'ida.file') - self.assertFalse(self.inst.fl_pp) def test_collection_seaice_restart(self): '''Test formation of collection name - CICE restart''' func.logtest('test formation of collection name with CICE restart:') collection = self.inst._collection() self.assertEqual(collection, 'ida.file') - self.assertFalse(self.inst.fl_pp) def test_collection_oi_fail(self): '''Test formation of collection name - invalid ocean/ice file type''' @@ -363,32 +352,26 @@ def test_collection_ocn_period_file(self): self.inst._file_id = '12h' collection = self.inst._collection() self.assertEqual(collection, 'onh.nc.file') - self.assertFalse(self.inst.fl_pp) self.inst._file_id = '10d' collection = self.inst._collection() self.assertEqual(collection, 'ond.nc.file') - self.assertFalse(self.inst.fl_pp) self.inst._file_id = '1m' collection = self.inst._collection() self.assertEqual(collection, 'onm.nc.file') - self.assertFalse(self.inst.fl_pp) self.inst._file_id = '1s' collection = self.inst._collection() self.assertEqual(collection, 'ons.nc.file') - self.assertFalse(self.inst.fl_pp) self.inst._file_id = '1y' collection = self.inst._collection() self.assertEqual(collection, 'ony.nc.file') - self.assertFalse(self.inst.fl_pp) self.inst._file_id = '1x' collection = self.inst._collection() self.assertEqual(collection, 'onx.nc.file') - self.assertFalse(self.inst.fl_pp) def test_collection_ice_season_mean(self): '''Test formation of collection name - CICE seasonal mean''' @@ -397,7 +380,6 @@ def test_collection_ice_season_mean(self): self.inst._file_id = '1s' collection = self.inst._collection() self.assertEqual(collection, 'ins.nc.file') - self.assertFalse(self.inst.fl_pp) @mock.patch('moo.utils.exec_subproc') @mock.patch('moo.os.path.exists') @@ -410,19 +392,18 @@ def test_putdata_prefix(self, mock_exist, mock_subproc): self.inst.put_data() src = os.path.expandvars('TestDir/$PREFIX$RUNID.daTestfile') dest = os.path.expandvars('moose:myclass/mysuite/$RUNID.daTestfile') - mock_subproc.assert_called_with('moo put -f -vv ' + src + ' ' + dest) + mock_subproc.assert_called_with('moo put -f -v ' + src + ' ' + dest) @mock.patch('moo.utils.exec_subproc') def test_putdata_pp_no_convert(self, mock_subproc): '''Test put_data function with converted fieldsfile''' func.logtest('test put_data function with converted fieldsfile:') self.inst._rqst_name = 'TESTPa.pmTestfile.pp' - self.inst.fl_pp = True mock_subproc.return_value = (0, '') with mock.patch('moo._Moose._collection', return_value='apm.pp'): with mock.patch('moo.os.path.exists', return_value=True): self.inst.put_data() - cmd = 'moo put -f -vv TestDir/TESTPa.pmTestfile.pp ' \ + cmd = 'moo put -f -v TestDir/TESTPa.pmTestfile.pp ' \ 'moose:myclass/mysuite/apm.pp' mock_subproc.assert_called_with(cmd) @@ -431,12 +412,11 @@ def test_putdata_ff_no_convert(self, mock_subproc): '''Test put_data function with unconverted fieldsfile''' func.logtest('test put_data function with unconverted fieldsfile:') self.inst._rqst_name = 'TESTPa.pmTestfile' - self.inst.fl_pp = False mock_subproc.return_value = (0, '') with mock.patch('moo._Moose._collection', return_value='apm.file'): with mock.patch('moo.os.path.exists', return_value=True): self.inst.put_data() - cmd = 'moo put -f -vv TestDir/TESTPa.pmTestfile ' \ + cmd = 'moo put -f -v TestDir/TESTPa.pmTestfile ' \ 'moose:myclass/mysuite/apm.file' mock_subproc.assert_called_with(cmd) @@ -472,7 +452,7 @@ class PutCommandTests(unittest.TestCase): '''Unit tests relating to the creation of the `moo put` command''' def setUp(self): - self.moocmd = 'moo put -f -vv ' + self.moocmd = 'moo put -f -v ' self.testfile = os.path.join(MOO_CMD['DATAM'], MOO_CMD['CURRENT_RQST_NAME']) self.archdest = os.path.join(MOO_CMD['DATACLASS'], @@ -550,16 +530,7 @@ def tearDown(self): def test_archive_to_moose(self, mock_exec): '''Test call to archive a file to the Moose system''' func.logtest('Assert call to archive file to Moose') - self.cmd['CONVERTPP'] = False moo.archive_to_moose('FILE', 'FN-PREFIX', 'SOURCEDIR', - MOO_NLIST, False) + MOO_NLIST) mock_exec.assert_called_with(self.cmd) - @mock.patch('moo.CommandExec.execute') - def test_archive_to_moose_convertpp(self, mock_exec): - '''Test call to archive a file to the Moose system''' - func.logtest('Assert call to archive file to Moose') - self.cmd['CONVERTPP'] = True - moo.archive_to_moose('FILE', 'FN-PREFIX', 'SOURCEDIR', - MOO_NLIST, True) - mock_exec.assert_called_with(self.cmd) diff --git a/rose-meta/archive_and_meaning/postproc/HEAD/rose-meta.conf b/rose-meta/archive_and_meaning/postproc/HEAD/rose-meta.conf index 3b1228bc..429ccabe 100644 --- a/rose-meta/archive_and_meaning/postproc/HEAD/rose-meta.conf +++ b/rose-meta/archive_and_meaning/postproc/HEAD/rose-meta.conf @@ -163,17 +163,19 @@ sort-key=CPP3 [namelist:atmospp=convert_pp] compulsory=true description=Convert UM fields files to PP format prior to archive -help=UM utility um-convpp is used to convert 64bit field files to +help=UM utility mule-convpp is used to convert 64bit field files to =32bit pp files for archiving in one step. It avoids the problem with =file size bigger than 12Gb. = + =If Mule is not available UM utility um-convpp will be used. =For utilities at UM versions older than 10.4 then um-ff2pp will be =used, which calls the 32bit version of the um-convpp executable. = - =Default behaviour (convert_pp=False) is to allow the archiving system - =to perform the conversion. + =Setting convert_pp=False allows the archiving system + =to perform the conversion. This option is not available on Azure MASS. ns=Atmosphere/File transformation sort-key=CPP1 +fail-if=this == 'false' and namelist:suitegen=archive_command == 'Moose' ; trigger=namelist:atmospp=convpp_all_streams: true; =namelist:atmospp=archive_as_fieldsfiles: true; type=boolean @@ -1443,20 +1445,21 @@ help=Leave blank if no project is required ns=Post Processing - common settings/Moose Archiving sort-key=ArchMoose4 -[namelist:moose_arch=non_duplexed_set] +[namelist:moose_arch=risk_appetite] compulsory=false -description=Create a non-duplexed (non-critical) set -help=Creates a set whose contents will be archived as a single copy - =instead of the default two copies. +description=Define the risk appetite for a MASS dataset +help=Define the risk appetite for the (new) MASS dataset. = - =Use this option for non-critical datasets or those which have - =a shorter shelf life. + = "low" - Use this option for non-critical datasets or those + = which have a shorter shelf life. + = "very low" - Use this option for datasets intended to be kept + = for the long term. = - =This option is fixed for the lifetime of a set and CANNOT be - =changed retrospectively. + =The default setting is "low" (non-critical) ns=Post Processing - common settings/Moose Archiving sort-key=ArchMoose2a -type=boolean +value-titles=low (non-critical),very low +values=low,very_low [namelist:nemo_archiving] ns=NEMO diff --git a/rose-meta/archive_and_meaning/postproc/version25_26.py b/rose-meta/archive_and_meaning/postproc/version25_26.py index dd684433..0d96d823 100644 --- a/rose-meta/archive_and_meaning/postproc/version25_26.py +++ b/rose-meta/archive_and_meaning/postproc/version25_26.py @@ -94,3 +94,27 @@ def upgrade(self, config, meta_config=None): "unicicles_glint_gris_rst"], "false") return config, self.reports + +class pp25_pr53(MacroUpgrade): + + """Upgrade macro for PR #53 by Erica Neininger.""" + BEFORE_TAG = "pp25_t646" + AFTER_TAG = "pp25_pr53" + + def upgrade(self, config, meta_config=None): + """Update moose_arch namelist for Azure MASS.""" + try: + non_duplex = self.get_setting_value( + config, + ["namelist:moose_arch", "non_duplexed_set"] + ) + except AttributeError: + non_duplex = "true" + + self.add_setting(config, + ["namelist:moose_arch", "risk_appetite"], + "low" if non_duplex == "true" else "very_low") + + self.remove_setting(config, ["namelist:moose_arch", "non_duplexed_set"]) + + return config, self.reports diff --git a/rose-stem/app/postproc/rose-app.conf b/rose-stem/app/postproc/rose-app.conf index d571e054..ca2165a7 100644 --- a/rose-stem/app/postproc/rose-app.conf +++ b/rose-stem/app/postproc/rose-app.conf @@ -1,4 +1,4 @@ -meta=../../../rose-meta/archive_and_meaning/postproc/pp25_t646 +meta=../../../rose-meta/archive_and_meaning/postproc/pp25_pr53 [command] default=run_python_env.sh main_pp.py @@ -164,7 +164,7 @@ ltimer=true [!!namelist:moose_arch] archive_set=mi-aa000 moopath= -non_duplexed_set=true +risk_appetite=low [namelist:nemo_archiving] archive_iceberg_trajectory=false @@ -266,8 +266,9 @@ share_directory=$UNICICLES_DATA archive_timestamps='01-01','04-01','07-01','10-01' cycle_length=3m meanfields=atmos-icecouple,bisicles-icecouple,calving,nemo-bathy-isf, - =plot-AIS,plot-CF-AIS,nemo-icecouple-AIS,calving-AIS,nemo-icecouple, - =plot-GrIS,plot-CF-GrIS,calving-GrIS,nemo-domain + =plot-AIS,plot-CF-AIS,nemo-icecouple-AIS,calving-AIS, + =nemo-icecouple,plot-GrIS,plot-CF-GrIS,calving-GrIS, + =nemo-domain meanstreams=3m unicicles_bisicles_ais_rst=true unicicles_bisicles_gris_rst=true From 14e92e7933fdd454931a30dd5b2442a95b8e0c1e Mon Sep 17 00:00:00 2001 From: Pierre Siddall <43399998+Pierre-siddall@users.noreply.github.com> Date: Mon, 1 Jun 2026 11:18:02 +0100 Subject: [PATCH 15/15] Fix README typo (#63) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a897e7a..32221a77 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Please be aware of and follow the Simulation Systems #### Testing MOCI rose-stem provides testing for the Coupled_Drivers and Postprocessing applications plus Utilities unittests. -`cylc vip -z group= -n +`cylc vip -z group= -n ` Available test groups: `all` Runs all available tasks