|
1 | 1 | """
|
2 | 2 | This module provides functionality for estimating the short-term and
|
3 |
| -long-term extreme distributions of responses in a time series. It |
4 |
| -includes methods for analyzing peaks, block maxima, and applying |
5 |
| -statistical distributions to model extreme events. The module supports |
6 |
| -various methods for short-term extreme estimation, including peaks |
7 |
| -fitting with Weibull, tail fitting, peaks over threshold, and block |
8 |
| -maxima methods with GEV (Generalized Extreme Value) and Gumbel |
9 |
| -distributions. Additionally, it offers functionality to approximate |
10 |
| -the long-term extreme distribution by weighting short-term extremes |
| 3 | +long-term extreme distributions of responses in a time series. It |
| 4 | +includes methods for analyzing peaks, block maxima, and applying |
| 5 | +statistical distributions to model extreme events. The module supports |
| 6 | +various methods for short-term extreme estimation, including peaks |
| 7 | +fitting with Weibull, tail fitting, peaks over threshold, and block |
| 8 | +maxima methods with GEV (Generalized Extreme Value) and Gumbel |
| 9 | +distributions. Additionally, it offers functionality to approximate |
| 10 | +the long-term extreme distribution by weighting short-term extremes |
11 | 11 | across different sea states.
|
12 | 12 |
|
13 | 13 | Functions:
|
14 |
| -- ste_peaks: Estimates the short-term extreme distribution from peaks |
| 14 | +- ste_peaks: Estimates the short-term extreme distribution from peaks |
15 | 15 | distribution using specified statistical methods.
|
16 | 16 | - block_maxima: Finds the block maxima in a time-series data to be used
|
17 | 17 | in block maxima methods.
|
18 |
| -- ste_block_maxima_gev: Approximates the short-term extreme distribution |
| 18 | +- ste_block_maxima_gev: Approximates the short-term extreme distribution |
19 | 19 | using the block maxima method with the GEV distribution.
|
20 |
| -- ste_block_maxima_gumbel: Approximates the short-term extreme |
| 20 | +- ste_block_maxima_gumbel: Approximates the short-term extreme |
21 | 21 | distribution using the block maxima method with the Gumbel distribution.
|
22 |
| -- ste: Alias for `short_term_extreme`, facilitating easier access to the |
| 22 | +- ste: Alias for `short_term_extreme`, facilitating easier access to the |
23 | 23 | primary functionality of estimating short-term extremes.
|
24 |
| -- short_term_extreme: Core function to approximate the short-term extreme |
| 24 | +- short_term_extreme: Core function to approximate the short-term extreme |
25 | 25 | distribution from a time series using chosen methods.
|
26 |
| -- full_seastate_long_term_extreme: Combines short-term extreme |
| 26 | +- full_seastate_long_term_extreme: Combines short-term extreme |
27 | 27 | distributions using weights to estimate the long-term extreme distribution.
|
28 | 28 | """
|
29 | 29 |
|
|
0 commit comments