.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_numerical_methods/optimization/plot_minmax_by_random_design.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_numerical_methods_optimization_plot_minmax_by_random_design.py: Mix/max search and sensitivity from design ========================================== .. GENERATED FROM PYTHON SOURCE LINES 6-8 In this example, we are going to evaluate the minimum and maximum values of the output variable of interest from a sample and to evaluate the gradient of the limit-state function defining the output variable of interest at a particular point. .. GENERATED FROM PYTHON SOURCE LINES 11-15 .. code-block:: Python import openturns as ot ot.Log.Show(ot.Log.NONE) .. GENERATED FROM PYTHON SOURCE LINES 16-17 Create the marginal distributions of the parameters. .. GENERATED FROM PYTHON SOURCE LINES 17-24 .. code-block:: Python dist_E = ot.Beta(0.93, 2.27, 2.8e7, 4.8e7) dist_F = ot.LogNormalMuSigma(30000, 9000, 15000).getDistribution() dist_L = ot.Uniform(250, 260) dist_I = ot.Beta(2.5, 1.5, 3.1e2, 4.5e2) marginals = [dist_E, dist_F, dist_L, dist_I] distribution = ot.ComposedDistribution(marginals) .. GENERATED FROM PYTHON SOURCE LINES 25-26 Sample the inputs. .. GENERATED FROM PYTHON SOURCE LINES 26-28 .. code-block:: Python sampleX = distribution.getSample(100) .. GENERATED FROM PYTHON SOURCE LINES 29-30 Create the model. .. GENERATED FROM PYTHON SOURCE LINES 30-32 .. code-block:: Python model = ot.SymbolicFunction(["E", "F", "L", "I"], ["F*L^3/(3*E*I)"]) .. GENERATED FROM PYTHON SOURCE LINES 33-34 Evaluate the outputs. .. GENERATED FROM PYTHON SOURCE LINES 34-36 .. code-block:: Python sampleY = model(sampleX) .. GENERATED FROM PYTHON SOURCE LINES 37-38 Get minimum and maximum values of both inputs and output variables. .. GENERATED FROM PYTHON SOURCE LINES 38-45 .. code-block:: Python minY = sampleY.getMin() minX = sampleX[sampleY.find(minY)] print("min: y=", minY, " with x=", minX) maxY = sampleY.getMax() maxX = sampleX[sampleY.find(maxY)] print("max: y=", maxY, " with x=", maxX) .. rst-class:: sphx-glr-script-out .. code-block:: none min: y= [6.19856] with x= [4.23762e+07,20903,253.762,433.463] max: y= [32.592] with x= [3.09151e+07,65980.5,257.897,374.411] .. GENERATED FROM PYTHON SOURCE LINES 46-47 Get sensitivity at minimum input values. .. GENERATED FROM PYTHON SOURCE LINES 47-48 .. code-block:: Python model.gradient(minX) .. raw:: html

[[ -1.46275e-07 ]
[ 0.00029654 ]
[ 0.0732802 ]
[ -0.0143001 ]]



.. _sphx_glr_download_auto_numerical_methods_optimization_plot_minmax_by_random_design.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_minmax_by_random_design.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_minmax_by_random_design.py `