mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Use N-3 degrees of freedom for combined k estimator.
This commit is contained in:
parent
8b6f059c0b
commit
19cf65fe3b
1 changed files with 4 additions and 1 deletions
|
|
@ -1461,7 +1461,10 @@ contains
|
|||
global_tallies(:) % sum_sq = t_value * global_tallies(:) % sum_sq
|
||||
|
||||
! Adjust combined estimator
|
||||
k_combined(2) = t_value * k_combined(2)
|
||||
if (n_realizations > 3) then
|
||||
t_value = t_percentile(ONE - alpha/TWO, n_realizations - 3)
|
||||
k_combined(2) = t_value * k_combined(2)
|
||||
end if
|
||||
end if
|
||||
|
||||
! write global tallies
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue