We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7422a22 commit 4d2fa52Copy full SHA for 4d2fa52
1 file changed
pyspod/spod/utils.py
@@ -67,7 +67,7 @@ def check_orthogonality(results_dir, mode_idx1, mode_idx2,
67
## perform orthogonality check
68
O = phir1.conj().T @ (weights * phir2)
69
O = utils_par.allreduce(data=O, comm=comm)
70
- tol = 1e-6
+ tol = 2e-6
71
if mode_idx1 == mode_idx2:
72
ortho_check = ((O < 1+tol) and (O>1-tol))
73
else:
0 commit comments