A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/GeoStat-Framework/AnaFlow below:

GeoStat-Framework/AnaFlow: A python-package containing analytical solutions for the groundwater flow equation

AnaFlow provides several analytical and semi-analytical solutions for the groundwater-flow equation.

You can install the latest version with the following command:

Documentation for AnaFlow

You can find the documentation under https://anaflow.readthedocs.io.

In the following the well known Theis function is called an plotted for three different time-steps.

import numpy as np
from matplotlib import pyplot as plt
from anaflow import theis


time = [10, 100, 1000]
rad = np.geomspace(0.1, 10)

head = theis(time=time, rad=rad, transmissivity=1e-4, storage=1e-4, rate=-1e-4)

for i, step in enumerate(time):
    plt.plot(rad, head[i], label="Theis(t={})".format(step))

plt.legend()
plt.show()

The following functions are provided directly

We provide routines to calculate the laplace-transformation as well as the inverse laplace-transformation of a given function

You can contact us via info@geostat-framework.org.

MIT © 2019 - 2023


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4