.. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_functional_modeling_field_functions_plot_vertexvalue_function.py: Vertex value function ===================== A vertex value function :math:`f_{vertexvalue}: \mathcal{D} \times \mathbb{R}^d \rightarrow \mathcal{D} \times \mathbb{R}^q` is a particular field function that lets invariant the mesh of a field and defined by a function :math:`h : \mathbb{R}^n \times \mathbb{R}^d \rightarrow \mathbb{R}^q` such that: .. math:: \begin{aligned} f_{vertexvalue}(\underline{t}, \underline{x})=(\underline{t}, h(\underline{t},\underline{x}))\end{aligned} Let's note that the input dimension of :math:`f_{vertexvalue}` still design the dimension of :math:`\underline{x}` : :math:`d`. Its output dimension is equal to :math:`q`. The creation of the *VertexValueFunction* object requires the function :math:`h` and the integer :math:`n`: the dimension of the vertices of the mesh :math:`\mathcal{M}`. This example illustrates the creation of a field from the function :math:`h:\mathbb{R}\times\mathbb{R}^2` such as: .. math:: \begin{aligned} h(\underline{t}, \underline{x})=(t+x_1^2+x_2^2) \end{aligned} .. code-block:: default from __future__ import print_function import openturns as ot import openturns.viewer as viewer from matplotlib import pylab as plt import math as m ot.Log.Show(ot.Log.NONE) Create a mesh .. code-block:: default N = 100 mesh = ot.RegularGrid(0.0, 1.0, N) Create the function that acts the values of the mesh .. code-block:: default h = ot.SymbolicFunction(['t', 'x1', 'x2'], ['t+x1^2+x2^2']) Create the field function .. code-block:: default f = ot.VertexValueFunction(h, mesh) Evaluate f .. code-block:: default inF = ot.Normal(2).getSample(N) outF = f(inF) # print input/output at first 10 mesh nodes txy = mesh.getVertices() txy.stack(inF) txy.stack(outF) txy[:10] .. raw:: html
tX0X1y0
000.93871230.37370191.020834
11-0.450642-0.028800251.203908
22-0.52632260.50036292.527378
33-1.7942960.65345516.646503
440.257082-0.59853284.424333
551.538375-2.04034911.52962
66-0.3003127-0.36965856.226835
770.4155438-0.060833297.176377
881.205391-1.45275511.56346
99-1.157649-0.987786411.31587


.. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.002 seconds) .. _sphx_glr_download_auto_functional_modeling_field_functions_plot_vertexvalue_function.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_vertexvalue_function.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_vertexvalue_function.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_