PolynomialChaosPOD¶
- class PolynomialChaosPOD(*args)¶
Polynomial chaos based POD.
Available constructor:
PolynomialChaosPOD(inputSample, outputSample, detection, noiseThres, saturationThres, boxCox)
- Parameters:
- inputSample2-d sequence of float
Vector of the input values. The first column must correspond with the defect sizes.
- outputSample2-d sequence of float
Vector of the signals, of dimension 1.
- detectionfloat
Detection value of the signal.
- noiseThresfloat
Value for low censored data. Default is None.
- saturationThresfloat
Value for high censored data. Default is None
- boxCoxbool or float
Enable or not the Box Cox transformation. If boxCox is a float, the Box Cox transformation is enabled with the given value. Default is False.
Methods
computeDetectionSize
(probabilityLevel[, ...])Compute the detection size for a given probability level.
drawBoxCoxLikelihood
([name])Draw the loglikelihood versus the Box Cox parameter.
drawPOD
([probabilityLevel, confidenceLevel, ...])Draw the POD curve.
drawPolynomialChaosModel
([name])Draw the polynomial chaos prediction versus the true data.
drawValidationGraph
([name])Draw the validation graph of the metamodel.
Accessor to the adaptive strategy.
Accessor to the Box Cox parameter.
Accessor to the distribution of the polynomial chaos coefficients.
Accessor to the defect size where POD is computed.
Accessor to the polynomial chaos degree.
Accessor to the parameters distribution.
getPODCLModel
([confidenceLevel])Accessor to the POD model at a given confidence level.
Accessor to the POD model.
Accessor to the polynomial chaos result.
Accessor to the projection strategy.
getQ2
()Accessor to the Q2 value.
getR2
()Accessor to the R2 value.
Accessor to the Monte Carlo sampling size.
Accessor to the simulation size.
Accessor to the verbosity.
run
()Build the POD models.
setAdaptiveStrategy
(strategy)Accessor to the adaptive strategy.
setDefectSizes
(size)Accessor to the defect size where POD is computed.
setDegree
(degree)Accessor to the polynomial chaos degree.
setDistribution
(distribution)Accessor to the parameters distribution.
setPolynomialChaosResult
(chaosResult)Accessor to the polynomial chaos result.
setProjectionStrategy
(strategy)Accessor to the projection strategy.
setSamplingSize
(size)Accessor to the Monte Carlo sampling size.
setSimulationSize
(size)Accessor to the simulation size.
setVerbose
(verbose)Accessor to the verbosity.
Warning
The first column of the input sample must corresponds with the defects sample.
Notes
This class aims at building the POD based on a polynomial chaos model. This method must be used under the assumption that the residuals follows a Normal distribution.
The return POD model corresponds with an interpolate function built with the POD values computed for the given defect sizes. The default values are 20 defect sizes between the minimum and maximum value of the defect sample. The defect sizes can be changed using the method setDefectSizes.
The default polynomial chaos model is built with uniform distributions for each parameters. Coefficients are computed using the LAR algorithm combined with the KFold. The AdaptiveStrategy is chosen fixed with a linear enumerate function of maximum degree 3.
For advanced use, all parameters can be defined thanks to dedicated set methods. Moreover, if the user has already built a polynomial chaos result, it can be given as parameter using the method setPolynomialChaosResult, then the POD is computed based on this polynomial chaos result.
A progress bar is shown if the verbosity is enabled. It can be disabled using the method setVerbose.
- computeDetectionSize(probabilityLevel, confidenceLevel=None)¶
Compute the detection size for a given probability level.
- Parameters:
- probabilityLevelfloat
The probability level for which the defect size is computed.
- confidenceLevelfloat
The confidence level associated to the given probability level the defect size is computed. Default is None.
- Returns:
- resultcollection of
openturns.PointWithDescription
A PointWithDescription containing the detection size computed at the given probability level and confidence level if provided.
- resultcollection of
- drawBoxCoxLikelihood(name=None)¶
Draw the loglikelihood versus the Box Cox parameter.
- Parameters:
- namestring
name of the figure to be saved with transparent option sets to True and bbox_inches=’tight’. It can be only the file name or the full path name. Default is None.
- Returns:
- figmatplotlib.figure
Matplotlib figure object.
- axmatplotlib.axes
Matplotlib axes object.
Notes
This method is available only when the parameter boxCox is set to True.
- drawPOD(probabilityLevel=None, confidenceLevel=None, defectMin=None, defectMax=None, nbPt=100, name=None)¶
Draw the POD curve.
- Parameters:
- probabilityLevelfloat
The probability level for which the defect size is computed. Default is None.
- confidenceLevelfloat
The confidence level associated to the given probability level the defect size is computed. Default is None.
- defectMin, defectMaxfloat
Define the interval where the curve is plotted. Default : min and max values of the input sample.
- nbPtint
The number of points to draw the curves. Default is 100.
- namestring
name of the figure to be saved with transparent option sets to True and bbox_inches=’tight’. It can be only the file name or the full path name. Default is None.
- Returns:
- figmatplotlib.figure
Matplotlib figure object.
- axmatplotlib.axes
Matplotlib axes object.
- drawPolynomialChaosModel(name=None)¶
Draw the polynomial chaos prediction versus the true data.
- Parameters:
- namestring
name of the figure to be saved with transparent option sets to True and bbox_inches=’tight’. It can be only the file name or the full path name. Default is None.
- Returns:
- figmatplotlib.figure
Matplotlib figure object.
- axmatplotlib.axes
Matplotlib axes object.
Notes
This method only works if the dimension of the input sample is 1.
- drawValidationGraph(name=None)¶
Draw the validation graph of the metamodel.
- Parameters:
- namestring
name of the figure to be saved with transparent option sets to True and bbox_inches=’tight’. It can be only the file name or the full path name. Default is None.
- Returns:
- figmatplotlib.figure
Matplotlib figure object.
- axmatplotlib.axes
Matplotlib axes object.
- getAdaptiveStrategy()¶
Accessor to the adaptive strategy.
- Returns:
- strategy
openturns.AdaptiveStrategy
The adaptive strategy for the polynomial chaos.
- strategy
- getBoxCoxParameter()¶
Accessor to the Box Cox parameter.
- Returns:
- lambdaBoxCoxfloat
The Box Cox parameter used to transform the data. If the transformation is not enabled None is returned.
- getCoefficientDistribution()¶
Accessor to the distribution of the polynomial chaos coefficients.
- Returns:
- dist
openturns.Distribution
The distribution of the coefficients.
- dist
- getDefectSizes()¶
Accessor to the defect size where POD is computed.
- Returns:
- defectSizesequence of float
The defect sizes where the Monte Carlo simulation is performed to compute the POD.
- getDegree()¶
Accessor to the polynomial chaos degree.
- Returns:
- degreeint
The degree of the polynomial chaos.
- getDistribution()¶
Accessor to the parameters distribution.
- Returns:
- distribution
openturns.JointDistribution
The input parameters distribution, default is a Uniform distribution for all parameters.
- distribution
- getPODCLModel(confidenceLevel=0.95)¶
Accessor to the POD model at a given confidence level.
- Parameters:
- confidenceLevelfloat
The confidence level the POD must be computed. Default is 0.95
- Returns:
- PODModelCl
openturns.Function
The function which computes the probability of detection for a given defect value at the confidence level given as parameter.
- PODModelCl
- getPODModel()¶
Accessor to the POD model.
- Returns:
- PODModel
openturns.Function
The function which computes the probability of detection for a given defect value.
- PODModel
- getPolynomialChaosResult()¶
Accessor to the polynomial chaos result.
- Returns:
- result
openturns.FunctionalChaosResult
The polynomial chaos result.
- result
- getProjectionStrategy()¶
Accessor to the projection strategy.
- Returns:
- strategy
openturns.ProjectionStrategy
The projection strategy for the polynomial chaos.
- strategy
- getQ2()¶
Accessor to the Q2 value.
- Returns:
- Q2float
The Q2 value computed analytically.
- getR2()¶
Accessor to the R2 value.
- Returns:
- R2float
The R2 value.
- getSamplingSize()¶
Accessor to the Monte Carlo sampling size.
- Returns:
- sizeint
The size of the Monte Carlo simulation used to compute the POD for each defect size.
- getSimulationSize()¶
Accessor to the simulation size.
- Returns:
- sizeint
The size of the simulation used to compute the confidence interval.
- getVerbose()¶
Accessor to the verbosity.
- Returns:
- verbosebool
Enable or disable the verbosity. Default is True.
- run()¶
Build the POD models.
Notes
This method build the polynomial chaos model. First the censored data are filtered if needed. The Box Cox transformation is performed if it is enabled. Then it builds the POD models, the Monte Carlo simulation is performed for each given defect sizes. The confidence interval is computed by simulating new coefficients of the polynomial chaos, then Monte Carlo simulations are performed.
- setAdaptiveStrategy(strategy)¶
Accessor to the adaptive strategy.
- Parameters:
- strategy
openturns.AdaptiveStrategy
The adaptive strategy for the polynomial chaos.
- strategy
- setDefectSizes(size)¶
Accessor to the defect size where POD is computed.
- Parameters:
- defectSizesequence of float
The defect sizes where the Monte Carlo simulation is performed to compute the POD.
- setDegree(degree)¶
Accessor to the polynomial chaos degree.
- Parameters:
- degreeint
The degree of the polynomial chaos.
- setDistribution(distribution)¶
Accessor to the parameters distribution.
- Parameters:
- distribution
openturns.JointDistribution
The input parameters distribution.
- distribution
- setPolynomialChaosResult(chaosResult)¶
Accessor to the polynomial chaos result.
- Parameters:
- chaosResult
openturns.FunctionalChaosResult
The polynomial chaos result.
- chaosResult
- setProjectionStrategy(strategy)¶
Accessor to the projection strategy.
- Parameters:
- strategy
openturns.ProjectionStrategy
The projection strategy for the polynomial chaos.
- strategy
- setSamplingSize(size)¶
Accessor to the Monte Carlo sampling size.
- Parameters:
- sizeint
The size of the Monte Carlo simulation used to compute the POD for each defect size.
- setSimulationSize(size)¶
Accessor to the simulation size.
- Parameters:
- sizeint
The size of the simulation used to compute the confidence interval.
- setVerbose(verbose)¶
Accessor to the verbosity.
- Parameters:
- verbosebool
Enable or disable the verbosity.