Calibration of the flooding model

In this example we are interested in the calibration of the flooding model.

Parameters to calibrate

The vector of parameters to calibrate is:

\theta = (K_s,Z_v,Z_m).

The variables to calibrate are (K_s,Z_v,Z_m) and are set to the following values:

K_s = 30, \qquad Z_v = 50, \qquad Z_m = 55.

Observations

In this section, we describe the statistical model associated with the n observations. The errors of the water heights are associated with a normal distribution with a zero mean and a standard variation equal to:

\sigma=0.1.

Therefore, the observed water heights are:

H_i = G(Q_i,K_s,Z_v,Z_m) + \epsilon_i

for i=1,...,n where

\epsilon \sim \mathcal{N}(0,\sigma^2)

and we make the hypothesis that the observation errors are independent. We consider a sample size equal to:

n=100.

The observations are the couples \{(Q_i,H_i)\}_{i=1,...,n}, i.e. each observation is a couple made of the flowrate and the corresponding river height.

Analysis

First, the slope \alpha only depends on the difference Z_m - Z_v. This is why Z_v and Z_m cannot be identified at the same time. In algebraic terms, there is an infinite number of couples (Z_v, Z_m) which generate the same difference Z_m - Z_v.

Second, the denominator of the expression of H involves the product K_s B \sqrt{\alpha}. In algebraic terms, there is an infinite number of couples (K_s, \alpha) which generate the same product K_s \sqrt{\alpha}. This is why either K_s or \alpha can be identified separately, but not at the same time. This shows that only one parameter can be identified.

Hence, calibrating this model requires some regularization. We return to this topic when analyzing the singular values of the Jacobian matrix.

Generate the observations

from openturns.usecases import flood_model as flood_model
from matplotlib import pylab as plt
import openturns.viewer as viewer
import numpy as np
import openturns as ot
ot.ResourceMap.SetAsUnsignedInteger('Normal-SmallDimension', 1)
ot.Log.Show(ot.Log.NONE)

We load the flooding use case :

fm = flood_model.FloodModel()

We define the model g which has 4 inputs and one output H.

The nonlinear least squares does not take into account for bounds in the parameters. Therefore, we ensure that the output is computed whatever the inputs. The model fails into two situations:

  • if K_s<0,

  • if Z_v-Z_m<0.

In these cases, we return an infinite number, so that the optimization algorithm does not get trapped.

def functionFlooding(X):
    L = 5.0e3
    B = 300.0
    Q, K_s, Z_v, Z_m = X
    alpha = (Z_m - Z_v)/L
    if alpha < 0.0 or K_s <= 0.0:
        H = np.inf
    else:
        H = (Q/(K_s*B*np.sqrt(alpha)))**(3.0/5.0)
    return [H]
g = ot.PythonFunction(4, 1, functionFlooding)
g = ot.MemoizeFunction(g)
g.setOutputDescription(["H (m)"])

We load the input distribution for Q :

Q = fm.Q
print(Q)

Out:

TruncatedDistribution(Gumbel(beta = 558, gamma = 1013), bounds = [0, (19000.8) +inf[)

Set the parameters to be calibrated.

K_s = ot.Dirac(30.0)
Z_v = ot.Dirac(50.0)
Z_m = ot.Dirac(55.0)
K_s.setDescription(["Ks (m^(1/3)/s)"])
Z_v.setDescription(["Zv (m)"])
Z_m.setDescription(["Zm (m)"])

Create the joint input distribution.

inputRandomVector = ot.ComposedDistribution([Q, K_s, Z_v, Z_m])

Create a Monte-Carlo sample of the output H.

nbobs = 100
inputSample = inputRandomVector.getSample(nbobs)
outputH = g(inputSample)

Observe the distribution of the output H.

graph = ot.HistogramFactory().build(outputH).drawPDF()
view = viewer.View(graph)
H (m) PDF

Generate the observation noise and add it to the output of the model.

sigmaObservationNoiseH = 0.1  # (m)
noiseH = ot.Normal(0., sigmaObservationNoiseH)
sampleNoiseH = noiseH.getSample(nbobs)
Hobs = outputH + sampleNoiseH

Plot the Y observations versus the X observations.

Qobs = inputSample[:, 0]
graph = ot.Graph("Observations", "Q (m3/s)", "H (m)", True)
cloud = ot.Cloud(Qobs, Hobs)
graph.add(cloud)
view = viewer.View(graph)
Observations

Setting the calibration parameters

Define the value of the reference values of the \theta parameter. In the bayesian framework, this is called the mean of the prior normal distribution. In the data assimilation framework, this is called the background.

KsInitial = 20.
ZvInitial = 49.
ZmInitial = 51.
thetaPrior = [KsInitial, ZvInitial, ZmInitial]

The following statement create the calibrated function from the model. The calibrated parameters K_s, Z_v, Z_m are at indices 1, 2, 3 in the inputs arguments of the model.

calibratedIndices = [1, 2, 3]
mycf = ot.ParametricFunction(g, calibratedIndices, thetaPrior)

Calibration with linear least squares

The LinearLeastSquaresCalibration class performs the linear least squares calibration by linearizing the model in the neighbourhood of the reference point.

algo = ot.LinearLeastSquaresCalibration(mycf, Qobs, Hobs, thetaPrior, "SVD")

The run method computes the solution of the problem.

algo.run()
calibrationResult = algo.getResult()

The getParameterMAP method returns the maximum of the posterior distribution of \theta.

thetaStar = calibrationResult.getParameterMAP()
print(thetaStar)

Out:

[-2.32301e+07,2.86137e+22,2.86137e+22]

In this case, we see that there seems to be a great distance from the reference value of \theta to the optimum: the values seem too large in magnitude. The value of the optimum K_s is nonpositive. In fact, there is an identification problem because the Jacobian matrix is rank-degenerate.

Diagnostic of the identification issue

In this section, we show how to diagnose the identification problem.

The getParameterPosterior method returns the posterior normal distribution of \theta.

distributionPosterior = calibrationResult.getParameterPosterior()
print(distributionPosterior)

Out:

Normal(mu = [-2.32301e+07,2.86137e+22,2.86137e+22], sigma = [1.56582e+25,1.23097e+31,1.23097e+31], R = [[  1            6.58881e-25 -6.58881e-25 ]
 [  6.58881e-25  1            1           ]
 [ -6.58881e-25  1            1           ]])

We see that there is a large covariance matrix diagonal.

Let us compute a 95% confidence interval for the solution \theta^\star.

print(distributionPosterior.computeBilateralConfidenceIntervalWithMarginalProbability(
    0.95)[0])

Out:

[-3.50364e+25, 3.50364e+25]
[-2.75439e+31, 2.75439e+31]
[-2.75439e+31, 2.75439e+31]

The confidence interval is very large. In order to clarify the situation, we compute the Jacobian matrix of the model at the candidate point.

mycf.setParameter(thetaPrior)
thetaDim = len(thetaPrior)
jacobianMatrix = ot.Matrix(nbobs, thetaDim)
for i in range(nbobs):
    jacobianMatrix[i, :] = mycf.parameterGradient(Qobs[i]).transpose()
print(jacobianMatrix[0:5, :])

Out:

5x3
[[ -0.183038   0.915192  -0.915192  ]
 [ -0.0874732  0.437366  -0.437366  ]
 [ -0.105733   0.528663  -0.528663  ]
 [ -0.144195   0.720976  -0.720976  ]
 [ -0.122756   0.613778  -0.613778  ]]

The rank of the problem can be seen from the singular values of the Jacobian matrix.

print(jacobianMatrix.computeSingularValues())

Out:

[9.2596,1.56116e-10,3.22763e-25]

We can see that there are two singular values which are relatively close to zero.

This explains why the Jacobian matrix is close to being rank-degenerate.

Moreover, this allows to compute the actual dimensionality of the problem. The algorithm we use computes the singular values in descending order. Moreover, by definition, the singular values are nonnegative. We see that the first singular value is close to 10 and the others are very close to 0 in comparison. This implies that the (numerical) rank of the Jacobian matrix is 1, even if there are 3 parameters.

Hence, only one parameter can be identified, be it K_s, Z_v or Z_m. The choice of the particular parameter to identify is free. However, in hydraulic studies, the parameter K_s is classically calibrated while Z_v and Z_m are left constant.

Conclusion of the linear least squares calibration

There are several methods to solve the problem.

  • Given that the problem is not identifiable, we can use some regularization method. Two methods are provided in the library: the Gaussian linear least squares GaussianLinearCalibration and the Gaussian non linear least squares GaussianNonlinearCalibration.

  • We can change the problem, replacing it with a problem which is identifiable. In the flooding model, we can view Z_v and Z_m as constants and calibrate K_s only.

Calibration with non linear least squares

The NonLinearLeastSquaresCalibration class performs the non linear least squares calibration by minimizing the squared euclidian norm between the predictions and the observations.

algo = ot.NonLinearLeastSquaresCalibration(mycf, Qobs, Hobs, thetaPrior)

The run method computes the solution of the problem.

algo.run()
calibrationResult = algo.getResult()

Analysis of the results

The getParameterMAP method returns the maximum of the posterior distribution of \theta.

thetaMAP = calibrationResult.getParameterMAP()
print(thetaMAP)

Out:

[27.7282,47.0396,52.9604]

We can compute a 95% confidence interval of the parameter \theta^\star.

This confidence interval is based on bootstrap, based on a sample size equal to 100 (as long as the value of the ResourceMap key “NonLinearLeastSquaresCalibration-BootstrapSize” is unchanged). This confidence interval reflects the sensitivity of the optimum to the variability in the observations.

thetaPosterior = calibrationResult.getParameterPosterior()
print(thetaPosterior.computeBilateralConfidenceIntervalWithMarginalProbability(
    0.95)[0])

Out:

[27.5817, 27.88]
[46.9747, 47.1021]
[52.8979, 53.0253]

In this case, the value of the parameter K_s is quite accurately computed, but there is a relatively large uncertainty on the values of Z_v and Z_m.

graph = calibrationResult.drawObservationsVsInputs()
graph.setLegendPosition("topleft")
view = viewer.View(graph)
plot calibration flooding

We see that there is a good fit after calibration, since the predictions after calibration (i.e. the green crosses) are close to the observations (i.e. the blue crosses).

graph = calibrationResult.drawObservationsVsPredictions()
view = viewer.View(graph)
plot calibration flooding

We see that there is a much better fit after calibration, since the predictions are close to the diagonal of the graphics.

observationError = calibrationResult.getObservationsError()
print(observationError)

Out:

Normal(mu = 0.00156492, sigma = 0.0952854)

We can see that the observation error is close to have a zero mean and a standard deviation equal to 0.1.

graph = calibrationResult.drawResiduals()
graph.setLegendPosition("topleft")
view = viewer.View(graph)
, Residual analysis

The analysis of the residuals shows that the distribution is centered on zero and symmetric. This indicates that the calibration performed well.

Moreover, the distribution of the residuals is close to being Gaussian.

graph = calibrationResult.drawParameterDistributions()
view = viewer.View(graph)
plot calibration flooding

Gaussian linear calibration

The standard deviation of the observations.

sigmaH = 0.5  # (m^2)

Define the covariance matrix of the output Y of the model.

errorCovariance = ot.CovarianceMatrix(1)
errorCovariance[0, 0] = sigmaH**2

Define the covariance matrix of the parameters \theta to calibrate.

sigmaKs = 5.
sigmaZv = 1.
sigmaZm = 1.
sigma = ot.CovarianceMatrix(3)
sigma[0, 0] = sigmaKs**2
sigma[1, 1] = sigmaZv**2
sigma[2, 2] = sigmaZm**2
print(sigma)

Out:

[[ 25  0  0 ]
 [  0  1  0 ]
 [  0  0  1 ]]

The GaussianLinearCalibration class performs Gaussian linear calibration by linearizing the model in the neighbourhood of the prior.

algo = ot.GaussianLinearCalibration(
    mycf, Qobs, Hobs, thetaPrior, sigma, errorCovariance, "SVD")

The run method computes the solution of the problem.

algo.run()
calibrationResult = algo.getResult()

Analysis of the results

The getParameterMAP method returns the maximum of the posterior distribution of \theta.

thetaStar = calibrationResult.getParameterMAP()
print(thetaStar)

Out:

[24.5072,48.0986,51.9014]
graph = calibrationResult.drawObservationsVsInputs()
graph.setLegendPosition("topleft")
view = viewer.View(graph)
plot calibration flooding

We see that the output of the model after calibration is closer to the observations. However, there is still a distance from the outputs of the model to the observations. This indicates that the calibration cannot be performed with this method.

graph = calibrationResult.drawObservationsVsPredictions()
view = viewer.View(graph)
plot calibration flooding

In this case, the fit is better after calibration, but not perfect. Indeed, the cloud of points after calibration is not centered on the diagonal.

graph = calibrationResult.drawResiduals()
graph.setLegendPosition("topleft")
view = viewer.View(graph)
, Residual analysis

We see that the distribution of the residual is not centered on zero: the mean residual is approximately -0.5, which implies that the predictions are, on average, smaller than the observations. This is a proof that the calibration cannot be performed with this method in this particular case.

The getParameterPosterior method returns the posterior normal distribution of \theta.

distributionPosterior = calibrationResult.getParameterPosterior()
print(distributionPosterior)

Out:

Normal(mu = [24.5072,48.0986,51.9014], sigma = [4.0845,0.8169,0.8169], R = [[  1         0.498517 -0.498517 ]
 [  0.498517  1         0.498517 ]
 [ -0.498517  0.498517  1        ]])

We can compute a 95% confidence interval of the parameter \theta^\star.

print(distributionPosterior.computeBilateralConfidenceIntervalWithMarginalProbability(
    0.95)[0])

Out:

[14.9143, 34.1]
[46.18, 50.0171]
[49.9829, 53.82]

We see that there is a large uncertainty on the value of the parameter K_s which can be as small as 14 and as large as 34.

We can compare the prior and posterior distributions of the marginals of \theta.

graph = calibrationResult.drawParameterDistributions()
view = viewer.View(graph)
plot calibration flooding

The two distributions are different, which shows that the calibration is sensible to the observations (if the observations were not sensible, the two distributions were superimposed). Moreover, the two distributions are quite close, which implies that the prior distribution has played a roled in the calibration (otherwise the two distributions would be completely different, indicating that only the observations were taken into account).

Gaussian nonlinear calibration

The GaussianNonLinearCalibration class performs Gaussian nonlinear calibration.

algo = ot.GaussianNonLinearCalibration(
    mycf, Qobs, Hobs, thetaPrior, sigma, errorCovariance)

The run method computes the solution of the problem.

algo.run()
calibrationResult = algo.getResult()

Analysis of the results

The getParameterMAP method returns the maximum of the posterior distribution of \theta.

thetaStar = calibrationResult.getParameterMAP()
print(thetaStar)

Out:

[30.5674,47.6289,52.3711]
graph = calibrationResult.drawObservationsVsInputs()
graph.setLegendPosition("topleft")
view = viewer.View(graph)
plot calibration flooding

We see that the output of the model after calibration is in the middle of the observations: the calibration seems correct.

graph = calibrationResult.drawObservationsVsPredictions()
view = viewer.View(graph)
plot calibration flooding

The fit is excellent after calibration. Indeed, the cloud of points after calibration is on the diagonal.

graph = calibrationResult.drawResiduals()
view = viewer.View(graph)
, Residual analysis

We see that the histogram of the residual is centered on zero. This is a proof that the calibration did perform correctly.

The getParameterPosterior method returns the posterior normal distribution of \theta.

distributionPosterior = calibrationResult.getParameterPosterior()

We can compute a 95% confidence interval of the parameter \theta^\star.

print(distributionPosterior.computeBilateralConfidenceIntervalWithMarginalProbability(
    0.95)[0])

Out:

[30.5188, 31.0721]
[47.5644, 47.635]
[52.365, 52.4356]

We see that there is a small uncertainty on the value of all parameters.

We can compare the prior and posterior distributions of the marginals of \theta.

graph = calibrationResult.drawParameterDistributions()
view = viewer.View(graph)
plot calibration flooding

The two distributions are very different, with a spiky posterior distribution. This shows that the calibration is very sensible to the observations.

Tuning the posterior distribution estimation

The “GaussianNonLinearCalibration-BootstrapSize” key controls the posterior distribution estimation.

  • If “GaussianNonLinearCalibration-BootstrapSize” > 0 (by default it is equal to 100), then a bootstrap resample algorithm is used to see the dispersion of the MAP estimator. This allows to see the variability of the estimator with respect to the finite observation sample.

  • If “GaussianNonLinearCalibration-BootstrapSize” is zero, then the Gaussian linear calibration estimator is used (i.e. the GaussianLinearCalibration class) at the optimum. This is called the Laplace approximation.

We must configure the key before creating the object (otherwise changing the parameter does not change the result).

ot.ResourceMap_SetAsUnsignedInteger(
    "GaussianNonLinearCalibration-BootstrapSize", 0)
algo = ot.GaussianNonLinearCalibration(
    mycf, Qobs, Hobs, thetaPrior, sigma, errorCovariance)
algo.run()
calibrationResult = algo.getResult()
graph = calibrationResult.drawParameterDistributions()

plt.show()

As we can see, this does not change much the posterior distribution, which remains spiky.

Total running time of the script: ( 0 minutes 8.295 seconds)

Gallery generated by Sphinx-Gallery