Viscous free fall: metamodel of a field function¶
In this example, we present how to create the metamodel of a field function. This examples considers the free fall model. We first compute the Karhunen-Loève decomposition of a sample of trajectories. Then we create a create a polynomial chaos which takes the inputs and returns the KL decomposition modes as outputs. Finally, we create a metamodel by combining the KL decomposition and the polynomial chaos.
Introduction¶
We consider an object inside a vertical cylinder which contains a viscous fluid. The fluid generates a drag force which limits the speed of the solid and we assume that the force depends linearily on the object speed:
for any where:
is the speed ,
is the time ,
is the maximum time ,
is the gravitational acceleration ,
is the mass ,
is the linear drag coefficient .
The previous differential equation has the exact solution:
for any
where:
is the altitude above the surface ,
is the initial altitude ,
is the initial speed (upward) ,
is the limit speed :
is time caracteristic :
The stationnary speed limit at infinite time is equal to :
When there is no drag, i.e. when , the trajectory depends quadratically on :
for any .
Furthermore, when the solid touches the ground, we ensure that the altitude remains nonnegative, i.e. the final altitude is:
for any .
References¶
Steven C. Chapra. Applied numerical methods with Matlab for engineers and scientists, Third edition. 2012. Chapter 7, “Optimization”, p.182.
Define the model¶
[1]:
from __future__ import print_function
import openturns as ot
import numpy as np
We first define the time grid associated with the model.
[2]:
tmin=0.0 # Minimum time
tmax=12. # Maximum time
gridsize=100 # Number of time steps
mesh = ot.IntervalMesher([gridsize-1]).build(ot.Interval(tmin, tmax))
[3]:
vertices = mesh.getVertices()
Creation of the input distribution.
[4]:
distZ0 = ot.Uniform(100.0, 150.0)
distV0 = ot.Normal(55.0, 10.0)
distM = ot.Normal(80.0, 8.0)
distC = ot.Uniform(0.0, 30.0)
distribution = ot.ComposedDistribution([distZ0, distV0, distM, distC])
[5]:
dimension = distribution.getDimension()
dimension
[5]:
4
Then we define the Python function which computes the altitude at each time value. In order to compute all altitudes with a vectorized evaluation, we first convert the vertices into a Numpy array
and use the Numpy functionsexp
and maximum
: this increases the evaluation performance of the script.
[6]:
def AltiFunc(X):
g = 9.81
z0 = X[0]
v0 = X[1]
m = X[2]
c = X[3]
tau = m / c
vinf = - m * g / c
t = np.array(vertices)
z = z0 + vinf * t + tau * (v0 - vinf) * (1 - np.exp( - t / tau))
z = np.maximum(z,0.)
return [[zeta[0]] for zeta in z]
In order to create a Function
from this Python function, we use the PythonPointToFieldFunction
class. Since the altitude is the only output field, the third argument outputDimension
is equal to 1
. If we had computed the speed as an extra output field, we would have set 2
instead.
[7]:
outputDimension = 1
alti = ot.PythonPointToFieldFunction(dimension, mesh, outputDimension, AltiFunc)
Compute a training sample.
[8]:
size = 2000
ot.RandomGenerator.SetSeed(0)
inputSample = distribution.getSample(size)
outputSample = alti(inputSample)
Compute the KL decomposition of the output¶
[9]:
algo = ot.KarhunenLoeveSVDAlgorithm(outputSample, 1.0e-6)
algo.run()
KLResult = algo.getResult()
scaledModes = KLResult.getScaledModesAsProcessSample()
[10]:
graph = scaledModes.drawMarginal(0)
graph.setTitle('KL modes')
graph.setXTitle(r'$t$')
graph.setYTitle(r'$z$')
graph
[10]:
We create the postProcessingKL
function which takes coefficients of the the K.-L. modes as inputs and returns the trajectories.
[11]:
karhunenLoeveLiftingFunction = ot.KarhunenLoeveLifting(KLResult)
The project
method computes the projection of the output sample (i.e. the trajectories) onto the K.-L. modes.
[12]:
outputSampleChaos = KLResult.project(outputSample)
We limit the sampling size of the Kolmogorov selection in order to reduce the computational burden.
[13]:
ot.ResourceMap.SetAsUnsignedInteger("FittingTest-KolmogorovSamplingSize", 1)
We create a polynomial chaos metamodel which takes the input sample and returns the K.-L. modes.
[14]:
algo = ot.FunctionalChaosAlgorithm(inputSample, outputSampleChaos)
algo.run()
chaosMetamodel = algo.getResult().getMetaModel()
The final metamodel is a composition of the KL lifting function and the polynomial chaos metamodel. In order to combine these two functions, we use the PointToFieldConnection
class.
[15]:
metaModel = ot.PointToFieldConnection(karhunenLoeveLiftingFunction, chaosMetamodel)
Validate the metamodel¶
Create a validation sample.
[16]:
size = 10
validationInputSample = distribution.getSample(size)
validationOutputSample = alti(validationInputSample)
[17]:
graph = validationOutputSample.drawMarginal(0)
graph.setColors(['red'])
graph2 = metaModel(validationInputSample).drawMarginal(0)
graph2.setColors(['blue'])
graph.add(graph2)
graph.setTitle('Model/metamodel comparison')
graph.setXTitle(r'$t$')
graph.setYTitle(r'$z$')
graph
[17]:
We see that the blue trajectories (i.e. the metamodel) are close to the red trajectories (i.e. the validation sample). This shows that the metamodel is quite accurate. However, we observe that the trajectory singularity that occurs when the object touches the ground (i.e. when is equal to zero), makes the metamodel less accurate.