PCESensitivityAnalysis¶
Purpose¶
The goal of the driver is to perform a variance based sensitivity analysis of a scalar function or a vectorial function with respect to variations of a parameter vector . To this end, the function is decomposed into poylnomials using a polynomial chaos expansion (PCE).
Depending on the defined random distribution of each parameter (see parameter distribution), PCE uses different polynomials to obtain a good convergence.
Distribution of random variable | Polynomials |
---|---|
Uniform | Legendre |
Gauss | Hermite |
Gamma | Laguerre |
Beta | Jacobi |
Using the default setting, the number of of expansion terms is chosen automatically based on a variance analysis of the model vector .
The PCE can be used to predict the function and its derivatives with respect to each entry of the parameter vector . Predictions can be computed by calling predict()
.
- There are two typical application scenarios of a variance based sensitivity analysis:
- The scalar function measures the performance of a device. The sensitivity analysis helps to quantify the average performance for random perturbations of the parameter vector . The analysis also quantifies which parameter combinations influence the performance .
- The vectorial function describes a list of physical observables for parameter reconstruction. The analysis allows to identify vector entries with high sensitivity for specific parameters.
The parameter vector consists of entries, where each entry has a specific random distribution (see parameter distribution). Hence, the scalcar function is also a random variable (vectorial outputs are analysed by multiple independent sensitivity analyses).
The variance of this random variable can analysed in terms of Sobol coefficients . Each Sobol coefficient determines the fraction of the total variation that stems from the joint random variation of the parameters . The sum of all Sobol coefficients is 1,
For example, if , then 10% of the variance of stem from the variance of an additive part of the function that only depends on the random variations of parameter and . For more details on the definition of Sobol coefficients, see the section Additional Information.
Usage Example¶
import sys,os
import numpy as np
import time
sys.path.append(os.path.join(os.getenv('JCMROOT'), 'ThirdPartySupport', 'Python'))
import jcmwave
client = jcmwave.optimizer.client()
# Definition of the sampling domain
domain = [
{'name': 'x1', 'type': 'continuous', 'domain': [-5,5]},
{'name': 'x2', 'type': 'continuous', 'domain': [-5,5]},
{'name': 'x3', 'type': 'continuous', 'domain': [-5,5]}
]
# Creation of the study object with study_id 'PCESensitivityAnalysis_example'
study = client.create_study(domain=domain,
driver="PCESensitivityAnalysis",
name="PCESensitivityAnalysis example",
study_id='PCESensitivityAnalysis_example')
# Definition of the objective function (Ishigami function)
a,b = 7,0.1 #parameters of the Ishigami function
def objective(x1,x2,x3):
observation = study.new_observation()
observation.add(np.sin(x1)+ a*np.sin(x2)**2 + b*x3**4*np.sin(x1))
return observation
#Define random distribution of parameters
distribution = [
{'name': 'x1', 'distribution': 'uniform', 'domain': (-np.pi,np.pi)},
{'name': 'x2', 'distribution': 'uniform', 'domain': (-np.pi,np.pi)},
{'name': 'x3', 'distribution': 'uniform', 'domain': (-np.pi,np.pi)}
]
# Set study parameters
study.set_parameters(max_iter=150, distribution=distribution)
# Run the study
study.set_objective(objective)
study.run()
#Analytic mean, variance and Sobol coefficients for the Ishigami function
mean = a/2
variance = 1/2 + a**2/8 + b*np.pi**4/5 + b**2*np.pi**8/18
sobol_values = {
'x1': 0.5*(1+b*np.pi**4/5)**2/variance,
'x2': (a**2/8)/variance,
'x1_x3': b**2*np.pi**8/2*(1.0/9-1.0/25)/variance
}
driver_info = study.driver_info()
print('Mean {:.3f} Exact {:.3f}'.format(
driver_info['mean'], mean))
print('Variance {:.3f} Exact {:.3f}'.format(
driver_info['variance'], variance))
for key,val in driver_info['sobol_coefficients'].items():
index = driver_info['sobol_indices'][key]
try: s_exact = sobol_values[key]
except: s_exact = 0.0
print('Sobol index {}: {:.3f} Exact {:.3f}'.format(index,val,s_exact))
Parameters¶
The following parameters can be set by calling, e.g.
study.set_parameters(example_parameter1 = [1,2,3], example_parameter2 = True)
max_iter (int): | Maximum number of evaluations of the objective function (default: inf) |
---|
max_time (int): | Maximum run time in seconds (default: inf) |
---|
num_parallel (int): | |
---|---|
Number of parallel observations of the objective function (default: 1) |
distribution (list): | |
---|---|
Definition of random distribution for each parameter in the format of a list. All continuous parameters with unspecified distribution are assumed to be uniformely distributed in the parameter domain. Fixed and discrete parameters are not random parameters. The value of discrete parameters defaults to the first listed value. (default: None)
|
sampling_strategy (string): | |
---|---|
Sampling strategy of parameter values. standard: Sampler for cartesian product samples of given parameters under algebraic constraints. WLS: Sampler for weighted Least-Squares sampling as described by Cohen and Migliorati. (default: WLS) (options: [‘standard’, ‘WLS’]) |
polynomial_degree (int): | |
---|---|
Maximum degree of the polynomial chaos expansion. Can be also a list of degrees for every parameter. If not set, the polynomial degree is iteratively adapted. (default: None) |
limit_polynomial_degree (int): | |
---|---|
Maximum sum of polynomial degree of the chaos expansion. (default: 2147483647) |
optimization_step (int): | |
---|---|
Number of iterations before the polynomial degrees of the expansion are optimized. Only applies if the polynomial degree is determined automatically (polynomial_degree=None). (default: 10) |
optimization_step_max (int): | |
---|---|
Maximum number of iterations after which the polynomial degrees of the expansion are optimized. Only applies if the polynomial degree is determined automatically (polynomial_degree=None). (default: 1000) |
pce_update_step (int): | |
---|---|
Number of iterations before the PCE is updated from the samples drawn so far. At each update, e.g. the values of the Sobol coefficients are updated. (default: 5) |
num_test_samples (int): | |
---|---|
Number of samples that are drawn in order to estimate the prediction error of the PCE. (default: 10) |
min_prediction_error (float): | |
---|---|
Stopping criterium. Minimum error of the prediction of the polynomial chaos expansion for the last 5 aqcuisitions. (default: 1e-06) |
target_cond (float): | |
---|---|
Target condition number of the information matrix. Only applies if the polynomial degree is determined automatically (polynomial_degree=None). (default: 500) |
Driver-specific Information¶
A dictionary with following parameters can be retrieved by calling
study.driver_info()
.
sobol_indices: | Dictionary mapping the names of Sobol indices (e.g. x1_x3) to the list of the corresponding parameter indices (e.g. [1,3]). |
---|
sobol_coefficients: | |
---|---|
Dictionary mapping the name of the Sobol indices (e.g. x1_x3) to the value of the Sobol coefficients. |
input_covariance: | |
---|---|
Covariance matrix between entries of the vectorial input function , i.e. |
predicition_error: | |
---|---|
Maximal predicion error of test data. |
num_expansion_terms: | |
---|---|
Number of PCE expansion terms. |
mean: | Mean of the objective functions under parameter uncertainties. |
---|
variance: | Variance of the objective functions under parameter uncertainties. |
---|
Additional Information¶
Sobol coefficients¶
Each function can be decomposed into a unique sum called a Sobol decomposition,
Here, is a constant and each univariate integral over each term vanishes, i.e.
That is, all the terms in the functional decomposition are orthogonal. The variance of the function is given as
Due to the orthogonality, the variance can be decomposed into a sum of variances stemming from each term in the Sobol decomposition
where
The Sobol coefficient is defined as the fraction of the total variance that stems from the additive term , i.e.