Skip to content
Snippets Groups Projects
Commit bd6ad3f2 authored by kohlhaasrebecca's avatar kohlhaasrebecca
Browse files

Small fixes, start on ModelComp without MetaModel

parent 586f86e7
No related branches found
No related tags found
1 merge request!29Preparation for release 1.1.0: fixes and test for pages
Showing
with 199 additions and 9724 deletions
This diff is collapsed.
This diff is collapsed.
[LocalizedFileNames]
exploration.py=@exploration.py,0
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
class Input:
"""
A class to define the uncertain input parameters.
Attributes
----------
Marginals : obj
Marginal objects. See `inputs.Marginal`.
Rosenblatt : bool
If Rossenblatt transformation is required for the dependent input
parameters.
Examples
-------
Marginals can be defined as following:
>>> Inputs.add_marginals()
>>> Inputs.Marginals[0].name = 'X_1'
>>> Inputs.Marginals[0].dist_type = 'uniform'
>>> Inputs.Marginals[0].parameters = [-5, 5]
If there is no common data is avaliable, the input data can be given
as following:
>>> Inputs.add_marginals()
>>> Inputs.Marginals[0].name = 'X_1'
>>> Inputs.Marginals[0].input_data = input_data
"""
poly_coeffs_flag = True
def __init__(self):
self.Marginals = []
self.Rosenblatt = False
def add_marginals(self):
"""
Adds a new Marginal object to the input object.
Returns
-------
None.
"""
self.Marginals.append(Marginal())
# Nested class
class Marginal:
"""
An object containing the specifications of the marginals for each uncertain
parameter.
Attributes
----------
name : string
Name of the parameter. The default is `'$x_1$'`.
dist_type : string
Name of the distribution. The default is `None`.
parameters : list
List of the parameters corresponding to the distribution type. The
default is `None`.
input_data : array
Available input data. The default is `[]`.
moments : list
List of the moments.
"""
def __init__(self):
self.name = '$x_1$'
self.dist_type = None
self.parameters = None
self.input_data = []
self.moments = None
This diff is collapsed.
File added
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment