timml icon indicating copy to clipboard operation
timml copied to clipboard

An analytic element model for steady multi-layer flow

Results 34 timml issues
Sort by recently updated
recently updated
newest added

optional legend could be the label of the well. Only add a legend for the first traceline so that it is added to the legend only once

enhancement

The control point of a head-specified well is at the right side of the well on the radius. Sometimes it is useful to have the control point somewhere totally different,...

enhancement

Working on adding some tests for #33.

```python # set up the aquifer with a hydraulic conductivity of 30 ft/day, thickness of 50 ft, and a porosity of 0.25 ml = timml.ModelMaq(kaq=30, z=[50, 0], npor=0.25) # Constant...

Done so far: - Make equations inherit from abstract Equation - Add new Equation class that defines abstract equation() method - Make all *Equation classes inherit from the base Equation

Python supports abstract base classes (ABCs) through the [`abc`](https://docs.python.org/3.7/library/abc.html) module in stdlib. This allows you to mark methods that should be overloaded by child classes as such by using the...

A test needs to be written for storeinput that tests whether all elements have a working storeinput feature

help wanted

This is more of a suggested improvement rather than an issue. In their 2012 paper (https://pdfs.semanticscholar.org/5a91/b7e3dc884928d1923bf6be28228bee42ae44.pdf) Marin, Wendland, and Strack show how fractures can be added to Analytic Element Models....

enhancement

It would be useful to be able to specify the reqiured head at a different point than along the line-sinks or wells. For example for building pit dewatering.

enhancement

I tried to create a model where the recharge overlies the entire area, including inhomogeniety areas and I got an error. Maybe I am using the model wrong. Here is...