Note
Click here to download the full example code
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:
The variables to calibrate are and are set to the following values:
Observations¶
In this section, we describe the statistical model associated with the observations. The errors of the water heights are associated with a gaussian distribution with a zero mean and a standard variation equal to:
Therefore, the observed water heights are:
for where
and we make the hypothesis that the observation errors are independent. We consider a sample size equal to:
The observations are the couples , i.e. each observation is a couple made of the flowrate and the corresponding river height.
Analysis¶
In this model, the variables and are not identifiables, since only the difference matters. Hence, calibrating this model requires some regularization.
Generate the observations¶
import numpy as np
import openturns as ot
ot.ResourceMap.SetAsUnsignedInteger('Normal-SmallDimension', 1)
import openturns.viewer as viewer
from matplotlib import pylab as plt
ot.Log.Show(ot.Log.NONE)
We load the flooding use case :
from openturns.usecases import flood_model as flood_model
fm = flood_model.FloodModel()
We define the model 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 ,
if .
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 = fm.Q
Q
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)
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)
Setting the calibration parameters¶
Define the value of the reference values of the parameter. In the bayesian framework, this is called the mean of the prior gaussian distribution. In the data assimilation framework, this is called the background.
KsInitial = 20.
ZvInitial = 49.
ZmInitial = 51.
thetaPrior = ot.Point([KsInitial,ZvInitial,ZmInitial])
The following statement create the calibrated function from the model. The calibrated parameters Ks, Zv, Zm 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 .
thetaStar = calibrationResult.getParameterMAP()
thetaStar
[4.88644e+08,2.08618e+23,2.08618e+23]
In this case, we see that there seems to be a great distance from the reference value of to the optimum: the values seem too large in magnitude. The value of the optimum 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 gaussian distribution of .
distributionPosterior = calibrationResult.getParameterPosterior()
distributionPosterior
Normal(mu = [4.88644e+08,2.08618e+23,2.08618e+23], sigma = [2.54995e+26,2.00465e+32,2.00465e+32], R = [[ 1 9.40306e-26 -9.40306e-26 ]
[ 9.40306e-26 1 1 ]
[ -9.40306e-26 1 1 ]])
We see that there is a large covariance matrix diagonal.
Let us compute a 95% confidence interval for the solution .
distributionPosterior.computeBilateralConfidenceIntervalWithMarginalProbability(0.95)[0]
[-5.70302e+26, 5.70302e+26]
[-4.48343e+32, 4.48343e+32]
[-4.48343e+32, 4.48343e+32]
The confidence interval is very large.
mycf.setParameter(thetaPrior)
thetaDim = thetaPrior.getDimension()
jacobianMatrix = ot.Matrix(nbobs,thetaDim)
for i in range(nbobs):
jacobianMatrix[i,:] = mycf.parameterGradient(Qobs[i]).transpose()
jacobianMatrix[0:5,:]
5x3
[[ -0.185062 0.92531 -0.92531 ]
[ -0.135774 0.678871 -0.678871 ]
[ -0.102219 0.511093 -0.511093 ]
[ -0.15354 0.767699 -0.767699 ]
[ -0.149497 0.747487 -0.747487 ]]
jacobianMatrix.computeSingularValues()
[8.99149,1.82595e-10,1.42612e-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.
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, replacing with allows to solve the issue.
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 .
thetaMAP = calibrationResult.getParameterMAP()
thetaMAP
[27.5672,47.0914,52.9086]
We can compute a 95% confidence interval of the parameter .
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()
thetaPosterior.computeBilateralConfidenceIntervalWithMarginalProbability(0.95)[0]
[27.3828, 27.7132]
[47.0298, 47.1693]
[52.8307, 52.9702]
In this case, the value of the parameter is quite accurately computed, but there is a relatively large uncertainty on the values of and .
graph = calibrationResult.drawObservationsVsInputs()
graph.setLegendPosition("topleft")
view = viewer.View(graph)
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)
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()
observationError
Normal(mu = -0.00344428, sigma = 0.111195)
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)
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)
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 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
sigma
[[ 25 0 0 ]
[ 0 1 0 ]
[ 0 0 1 ]]
The GaussianLinearCalibration class performs the 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 .
thetaStar = calibrationResult.getParameterMAP()
thetaStar
[24.4485,48.1103,51.8897]
graph = calibrationResult.drawObservationsVsInputs()
graph.setLegendPosition("topleft")
view = viewer.View(graph)
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)
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)
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 gaussian distribution of .
distributionPosterior = calibrationResult.getParameterPosterior()
distributionPosterior
Normal(mu = [24.4485,48.1103,51.8897], sigma = [4.08462,0.816925,0.816925], R = [[ 1 0.498428 -0.498428 ]
[ 0.498428 1 0.498428 ]
[ -0.498428 0.498428 1 ]])
We can compute a 95% confidence interval of the parameter .
distributionPosterior.computeBilateralConfidenceIntervalWithMarginalProbability(0.95)[0]
[14.8749, 34.0221]
[46.1956, 50.025]
[49.975, 53.8044]
We see that there is a large uncertainty on the value of the parameter which can be as small as 14 and as large as 34.
We can compare the prior and posterior distributions of the marginals of .
graph = calibrationResult.drawParameterDistributions()
view = viewer.View(graph)
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 the 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 .
thetaStar = calibrationResult.getParameterMAP()
thetaStar
[30.307,47.6581,52.3419]
graph = calibrationResult.drawObservationsVsInputs()
graph.setLegendPosition("topleft")
view = viewer.View(graph)
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)
The fit is excellent after calibration. Indeed, the cloud of points after calibration is on the diagonal.
graph = calibrationResult.drawResiduals()
view = viewer.View(graph)
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 gaussian distribution of .
distributionPosterior = calibrationResult.getParameterPosterior()
We can compute a 95% confidence interval of the parameter .
distributionPosterior.computeBilateralConfidenceIntervalWithMarginalProbability(0.95)[0]
[30.2569, 30.8322]
[47.5907, 47.6644]
[52.3356, 52.4093]
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 .
graph = calibrationResult.drawParameterDistributions()
view = viewer.View(graph)
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 5.580 seconds)