Probabilistic Tutorials¶
Contents:
- Tutorial 1: Deriving Lognormal statistics from measurements
- Step 1: Importing the dataset, and interpreting the data.
- Step 2: Sample mean and sample standard deviation of the data set
- Step 3: Fitted Lognormal Distribution using method of moments (MoM)
- Step 4: Characteristic values
- Step 5: Get the inputs for D-Stability, taking into account the statistical uncertainty
- Tutorial 2: Fit an extreme value distribution for the water level
- Step 1: Importing packages and data
- Step 2: Importing the data from external source
- Step 3: Preprocessing of the data.
- Step 4: Visually checking the data
- Step 5: Fitting a Generalized Extreme Value (GEV) distribution
- Step 6: Optimizing the distribution parameters using Python
- Step 7: Plot the result
- Step 8: Force fitting a Gumbel distribution
- Tutorial 3: Integrating the fragility curve with the PDF of the waterlevel
- Step 1: Create base
class DStabilityFragilityCurve
for fragility curve operations - Step 2: Specify the fragility curve names and locations
- Step 3: Plot the fragility points and the extrapolated fragility curve
- Step 4: integrate the fragility curve with the probability density of water level
- Step 5: Calculate the probability of exceedence
- Step 1: Create base
- Tutorial 4: Combining 2 fragility curves for different scenario’s.
- Import necessary python packages
- Load base class for Fragility curve operations
- Code for plotting
- Plot the fragility points
- Extrapolate fragility curves linearly along the given range, with the given discretisation
- Plot the extrapolated fragility curves
- Load the water level dependent scenario probability and densify and extrapolate
- Sanity checks:
- Plot the scenario probabilities
- The combination of 2 fragility curves
- Plot the combined fragility curve
- Save the combined fragility curve to json (e.g. to import in the Probabilistic Toolkit)