-
Notifications
You must be signed in to change notification settings - Fork 13
Description
I am working on a deep refactoring of the code that I am hosting here for now: https://github.com/antoinecollet5/pyrtid/blob/master/pyrtid/inverse/solvers/pcga/pcga.py
I will push the code when it is ready and entirely tested.
I have a general question regarding the computation of Q2 and cR for model validation.
I guess the main reference is Kitanidis PK. Introduction to Geostatistics: Applications in Hydrogeology. Cambridge University Press; 1997.
If I understand correctly, Q2 is given by (6.67):
And we target
Whereas cR which we seek as small as possible is given by 4.30:
Question 1:
In the code,
Q2_all[:, i : i + 1] = np.dot(b[:n].T, xi) / (n - p)which I understand as
Where is this expression coming from ? Do you have any reference explaining the derivation ?
Question 2, how is cR derived ? Or more specifically
Thank you in advance for your reply.
Best
Antoine