Documentation is under construction. Please use examples as the main reference.

distribution#

Define distributions of parameters.

Specification#

Arguments: List of distribution specifications

Default: None

Keywords of each distribution

Keyword

Requirements

Description

name

Required

Name of the parameter(s)

function

Required

Name of the function to generate the distribution

data

Optional

Data to be passed to the interpolation function

Example#

1distribution:
2  - name: 'param1'
3    function: 'f1_name'
4    ...
5  - name: 'param2'
6    function: 'f2_name'
7    data:
8      ...
9    ...