API Reference¶
Bases: BaseAquifer
Aquifer with statistically distributed thickness and permeability.
Used as input to ThermoGISDoublet when reservoir properties are
uncertain. Thickness follows a normal distribution and permeability a
log-normal distribution. Pass p_values to ThermoGISDoublet.simulate
to sample realisations at specific percentile levels.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
thickness_mean
|
float or array
|
Mean aquifer thickness [m]. Must be >= 0. |
required |
thickness_sd
|
float or array
|
Standard deviation of aquifer thickness [m]. Must be >= 0. |
required |
ln_permeability_mean
|
float or array
|
Mean of the natural log of permeability [ln(mD)]. |
required |
ln_permeability_sd
|
float or array
|
Standard deviation of the natural log of permeability [ln(mD)]. |
required |
porosity
|
float or array
|
Aquifer porosity [-], between 0 and 1. |
required |
ntg
|
float or array
|
Net-to-gross ratio [-], between 0 and 1. |
required |
depth
|
float or array
|
Aquifer depth [m]. |
required |
temperature
|
float or array
|
Reservoir temperature [°C]. If not provided, it is calculated from
|
required |
mask
|
float or array
|
Mask array. Cells where the mask is not |
required |
Source code in pythermogis/aquifer.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | |