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

Update filter_mod.rst #605

Merged
merged 6 commits into from
Jan 9, 2024
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
2 changes: 1 addition & 1 deletion assimilation_code/modules/assimilation/filter_mod.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2024,7 +2024,7 @@ subroutine verbose_forward_op_output(qc_ens_handle, prior_post, ens_size, keys)
! qc_ens_handle is a real representing an integer; values /= 0 get written out
do i = 1, ens_size
do j = 1, qc_ens_handle%my_num_vars
if(nint(qc_ens_handle%copies(i, j)) /= 0) write(forward_unit, *) i, keys(j), nint(qc_ens_handle%copies(i, j))
if(nint(qc_ens_handle%copies(i, j)) /= 0) write(forward_unit, *) i, j, keys(qc_ens_handle%my_vars(j)), nint(qc_ens_handle%copies(i, j))
end do
end do

Expand Down
7 changes: 4 additions & 3 deletions assimilation_code/modules/assimilation/filter_mod.rst
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,10 @@ prior inflation and the second controls the posterior inflation.
| | | in the current directory. For each |
| | | ensemble member which returns a non-zero |
| | | return code, a line will be written to |
| | | this file. Each line will have three |
| | | values listed: the observation number, |
| | | the ensemble member number, and the |
| | | this file. Each line will list the |
| | | following values: the ensemble member |
| | | number, local observation number, the key |
| | | for the observation, and then the |
| | | istatus return code. Be cautious when |
| | | turning this option on. The number of |
| | | lines in this file can be up to the |
Expand Down