Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Notify user if using RTPS inflation that QCEFF options ignored for posterior inflation #785

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions assimilation_code/modules/assimilation/filter_mod.f90
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,12 @@ subroutine filter_main()
inf_damping(POSTERIOR_INF), ' will be used'
call error_handler(E_MSG,'filter_main:', msgstring)
endif
if (do_rtps_inflate(post_inflate)) then
write(msgstring, *) 'Posterior inflation is RTPS, QCEFF ', &
'inflation options will be ignored for posterior inflation'
call error_handler(E_MSG,'filter_main:', msgstring)
endif

endif

call trace_message('After initializing inflation')
Expand Down
5 changes: 5 additions & 0 deletions guide/qceff_probit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ options as columns of the qceff_table:
* lower_bound (default -888888)
* upper_bound (default -888888)

.. note::

If using RTPS inflation, the probit distribution information is ignored for posterior
inflation.


* Observation increment information

Expand Down
Loading