-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstr_solution_diff.py
More file actions
36 lines (28 loc) · 1.19 KB
/
Copy pathstr_solution_diff.py
File metadata and controls
36 lines (28 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import streamlit as st
st.set_page_config(
page_title="Diffusion in Caprocks",
page_icon="⛽",
layout="wide",
initial_sidebar_state="expanded"
)
r"""
# Methane Diffusion in Caprocks
"""
"""
## Objectives
> The objective of this app is to ilustrate the calibration procedure
> employing a deterministic approach (maximum likelihood) and a
> stochastic approach (acceptance rejection algorithm).
> The calibration procedure is explained with the example of diffusive
> flow in a caprock (i.e., a geomaterial of low permeability). In the page
> 00 you will be able to adjust the parameter values of the diffusive model
> and see how the prediction of the model varies. In the page 01, the maximum
> likelihood procedure is explained and you will be able to perform the
> maximum likelihood calibration of the model parameters. In the page 02, the
> acceptance-rejection algorithm is explained and model parameters calibration
> is performed.
## Ideas to implement
- Perform a Sensitivity Analysis of the Diffusion Equation.
- Check if it is possible to perform an analysis with "molecule fractionation".
- Perform an stochastic callibration of model parameters with the available data.
"""