-
-
Notifications
You must be signed in to change notification settings - Fork 23
Closed
Description
In the case of orthogonal inputs, the sum over all Sobol indices should be equal to 1. Currently, this is not the case.
MWE, where the second-order Sobol indices already exceed 1 considerably:
using GlobalSensitivity, QuasiMonteCarlo
function ishi(X)
A= 7
B= 0.1
sin(X[1]) + A*sin(X[2])^2+ B*X[3]^4 *sin(X[1])
end
n = 600000
lb = -ones(4)*π
ub = ones(4)*π
sampler = SobolSample()
A,B = QuasiMonteCarlo.generate_design_matrices(n,lb,ub,sampler)
res1 = gsa(ishi,Sobol(order=[0,1,2]),A,B)For a more thorough discussion, see this thread on julia discourse.
Metadata
Metadata
Assignees
Labels
No labels