diff --git a/PyMPDATA/__init__.py b/PyMPDATA/__init__.py
index 888223e2..ad33444a 100644
--- a/PyMPDATA/__init__.py
+++ b/PyMPDATA/__init__.py
@@ -7,7 +7,6 @@
`PyMPDATA.vector_field.VectorField` elements:
.. include:: ../docs/markdown/intro.md
-.. include:: ../docs/markdown/dependencies.md
.. include:: ../docs/markdown/examples.md
.. include:: ../docs/markdown/options.md
.. include:: ../docs/markdown/grid.md
diff --git a/README.md b/README.md
index a72762f9..3fe3f39e 100644
--- a/README.md
+++ b/README.md
@@ -51,9 +51,8 @@ To install PyMPDATA, one may use: ``pip install PyMPDATA`` (or
``pip install git+https://github.com/open-atmos/PyMPDATA.git`` to get updates beyond the latest release).
PyMPDATA depends on ``NumPy`` and ``Numba``.
-Running the tests shipped with the package requires additional packages listed in the
-[test-time-requirements.txt](https://github.com/open-atmos/PyMPDATA/blob/main/test-time-requirements.txt) file
-(which include ``PyMPDATA-examples``, see below).
+Running the tests shipped with the package requires additional packages that are installed
+if pip is invoked with: ``pip install PyMPDATA[tests]``.
## Examples (Jupyter notebooks reproducing results from literature):
@@ -115,7 +114,8 @@ from the continuous integration setup which automates execution of tests
with the newly added code.
As of now, the copyright to the entire PyMPDATA codebase is with the Jagiellonian
-University, and code contributions are assumed to imply transfer of copyright.
+University (2019-2023) and AGH University of Krakow (2023 onwards) - work places of the main maintainer.
+Code contributions are assumed to imply transfer of copyright.
Should there be a need to make an exception, please indicate it when creating
a pull request or contributing code in any other way. In any case,
the license of the contributed code must be compatible with GPL v3.
@@ -137,29 +137,9 @@ Please use the PyMPDATA issue-tracking and dicsussion infrastructure for `PyMPDA
We look forward to your contributions and feedback.
## Credits:
-Development of PyMPDATA was supported by the EU through a grant of the [Foundation for Polish Science](http://fnp.org.pl) (POIR.04.04.00-00-5E1C/18).
+Development of PyMPDATA was supported by the EU through a grant of the [Foundation for Polish Science](http://fnp.org.pl) (POIR.04.04.00-00-5E1C/18)
+and by the [Polish National Science Centre](https://ncn.gov.pl/en) (grant no. 2020/39/D/ST10/01220)
-copyright: Jagiellonian University
+copyright: Jagiellonian University (2019-2023) & AGH University of Krakow (2023 onwards)
licence: GPL v3
-## Other open-source MPDATA implementations:
-- mpdat_2d in babyEULAG (FORTRAN)
- https://github.com/igfuw/bE_SDs/blob/master/babyEULAG.SDs.for#L741
-- mpdata-oop (C++, Fortran, Python)
- https://github.com/igfuw/mpdata-oop
-- apc-llc/mpdata (C++)
- https://github.com/apc-llc/mpdata
-- libmpdata++ (C++):
- https://github.com/igfuw/libmpdataxx
-- AtmosFOAM:
- https://github.com/AtmosFOAM/AtmosFOAM/tree/947b192f69d973ea4a7cfab077eb5c6c6fa8b0cf/applications/solvers/advection/MPDATAadvectionFoam
-
-## Other Python packages for solving hyperbolic transport equations
-
-- PyPDE: https://pypi.org/project/PyPDE/
-- FiPy: https://pypi.org/project/FiPy/
-- ader: https://pypi.org/project/ader/
-- centpy: https://pypi.org/project/centpy/
-- mattflow: https://pypi.org/project/mattflow/
-- FastFD: https://pypi.org/project/FastFD/
-- Pyclaw: https://www.clawpack.org/pyclaw/
diff --git a/docs/markdown/debugging_contribution.md b/docs/markdown/debugging_contribution.md
index fb0f2f6a..f15b392a 100644
--- a/docs/markdown/debugging_contribution.md
+++ b/docs/markdown/debugging_contribution.md
@@ -32,39 +32,7 @@ os.environ["NUMBA_DISABLE_JIT"] = "1"
## Contributing, reporting issues, seeking support
-Submitting new code to the project, please preferably use [GitHub pull requests](https://github.com/open-atmos/PyMPDATA/pulls)
-(or the [PyMPDATA-examples PR site](https://github.com/open-atmos/PyMPDATA-examples/pulls) if working on examples) - it helps to keep record of code authorship,
-track and archive the code review workflow and allows to benefit
-from the continuous integration setup which automates execution of tests
-with the newly added code.
-
-As of now, the copyright to the entire PyMPDATA codebase is with the Jagiellonian
-University, and code contributions are assumed to imply transfer of copyright.
-Should there be a need to make an exception, please indicate it when creating
-a pull request or contributing code in any other way. In any case,
-the license of the contributed code must be compatible with GPL v3.
-
-Developing the code, we follow [The Way of Python](https://www.python.org/dev/peps/pep-0020/) and
-the [KISS principle](https://en.wikipedia.org/wiki/KISS_principle).
-The codebase has greatly benefited from [PyCharm code inspections](https://www.jetbrains.com/help/pycharm/code-inspection.html)
-and [Pylint](https://pylint.org) code analysis (Pylint checks are part of the
-CI workflows).
-
-Issues regarding any incorrect, unintuitive or undocumented bahaviour of
-PyMPDATA are best to be reported on the [GitHub issue tracker](https://github.com/open-atmos/PyMPDATA/issues/new).
-Feature requests are recorded in the "Ideas..." [PyMPDATA wiki page](https://github.com/open-atmos/PyMPDATA/wiki/Ideas-for-new-features-and-examples).
-
-We encourage to use the [GitHub Discussions](https://github.com/open-atmos/PyMPDATA/discussions) feature
-(rather than the issue tracker) for seeking support in understanding, using and extending PyMPDATA code.
-
-Please use the PyMPDATA issue-tracking and dicsussion infrastructure for `PyMPDATA-examples` as well.
-We look forward to your contributions and feedback.
-
-## Credits:
-Development of PyMPDATA was supported by the EU through a grant of the [Foundation for Polish Science](http://fnp.org.pl) (POIR.04.04.00-00-5E1C/18).
-
-copyright: Jagiellonian University
-licence: GPL v3
+See [https://github.com/open-atmos/PyMPDATA/tree/main/README.md](README.md).
## Other open-source MPDATA implementations:
- mpdat_2d in babyEULAG (FORTRAN)
@@ -86,4 +54,4 @@ licence: GPL v3
- centpy: https://pypi.org/project/centpy/
- mattflow: https://pypi.org/project/mattflow/
- FastFD: https://pypi.org/project/FastFD/
-- Pyclaw: https://www.clawpack.org/pyclaw/
\ No newline at end of file
+- Pyclaw: https://www.clawpack.org/pyclaw/
diff --git a/docs/markdown/dependencies.md b/docs/markdown/dependencies.md
deleted file mode 100644
index 983d02aa..00000000
--- a/docs/markdown/dependencies.md
+++ /dev/null
@@ -1,9 +0,0 @@
-## Dependencies and installation
-
-To install PyMPDATA, one may use: ``pip install PyMPDATA`` (or
-``pip install git+https://github.com/open-atmos/PyMPDATA.git`` to get updates beyond the latest release).
-PyMPDATA depends on ``NumPy`` and ``Numba``.
-
-Running the tests shipped with the package requires additional packages listed in the
-[test-time-requirements.txt](https://github.com/open-atmos/PyMPDATA/blob/main/test-time-requirements.txt) file
-(which include ``PyMPDATA-examples``, see below).
\ No newline at end of file
diff --git a/docs/markdown/grid.md b/docs/markdown/grid.md
index 925281cb..f06b555d 100644
--- a/docs/markdown/grid.md
+++ b/docs/markdown/grid.md
@@ -1,4 +1,4 @@
-#### Arakawa-C grid layer and boundary conditions
+### Arakawa-C grid layer and boundary conditions
In PyMPDATA, the solution domain is assumed to extend from the
first cell's boundary to the last cell's boundary (thus the
@@ -11,4 +11,4 @@ in which:
- vector field components are discretised onto cell walls.
The schematic of the employed grid/domain layout in two dimensions is given below
-(with the Python code snippet generating the figure as a part of CI workflow):
\ No newline at end of file
+(with the Python code snippet generating the figure as a part of CI workflow):
diff --git a/docs/markdown/intro.md b/docs/markdown/intro.md
index 132a8a7f..d792b801 100644
--- a/docs/markdown/intro.md
+++ b/docs/markdown/intro.md
@@ -2,27 +2,6 @@
# PyMPDATA
-[](https://www.python.org/)
-[](https://www.numba.org)
-[](https://en.wikipedia.org/wiki/Linux)
-[](https://en.wikipedia.org/wiki/macOS)
-[](https://en.wikipedia.org/wiki/Windows)
-[](https://jupyter.org/)
-[](https://github.com/open-atmos/PyMPDATA/graphs/commit-activity)
-[](https://www.openhub.net/p/atmos-cloud-sim-uj-PyMPDATA)
-[](https://joss.theoj.org/papers/10e7361e43785dbb1b3d659c5b01757a)
-[](https://zenodo.org/badge/latestdoi/225610671)
-[](https://www.fnp.org.pl/en/)
-[](https://www.ncn.gov.pl/?language=en)
-[](https://www.gnu.org/licenses/gpl-3.0.html)
-
-[](https://github.com/open-atmos/PyMPDATA/actions)
-[](https://ci.appveyor.com/project/slayoo/pympdata/branch/main)
-[](https://app.codecov.io/gh/open-atmos/PyMPDATA)
-
-[](https://pypi.org/project/PyMPDATA)
-[](https://open-atmos.github.io/PyMPDATA/index.html)
-
PyMPDATA is a high-performance Numba-accelerated Pythonic implementation of the MPDATA
algorithm of Smolarkiewicz et al. used in geophysical fluid dynamics and beyond.
MPDATA numerically solves generalised transport equations -
@@ -74,4 +53,4 @@ The [``PyMPDATA-examples``](https://pypi.org/project/PyMPDATA-examples/)
or using [colab.research.google.com](https://colab.research.google.com/).
The examples reproduce results from several published
works on MPDATA and its applications, and provide a validation of the implementation
- and its performance.
\ No newline at end of file
+ and its performance.
diff --git a/docs/markdown/options.md b/docs/markdown/options.md
index 4c991179..31d8526b 100644
--- a/docs/markdown/options.md
+++ b/docs/markdown/options.md
@@ -1,4 +1,6 @@
-## Options class
+## Tutorial (in Python, Julia and Matlab)
+
+### Options class
The [``Options``](https://open-atmos.github.io/PyMPDATA/PyMPDATA/options.html) class
groups both algorithm variant options as well as some implementation-related
@@ -52,4 +54,4 @@ options = Options(pyargs('n_iters', 2));
from PyMPDATA import Options
options = Options(n_iters=2)
```
-
\ No newline at end of file
+
diff --git a/docs/markdown/stepper_solver.md b/docs/markdown/stepper_solver.md
index 7e93972e..fc9a9551 100644
--- a/docs/markdown/stepper_solver.md
+++ b/docs/markdown/stepper_solver.md
@@ -1,4 +1,4 @@
-#### Stepper
+### Stepper
The logic of the MPDATA iterative solver is represented
in PyMPDATA by the [``Stepper``](https://open-atmos.github.io/PyMPDATA/PyMPDATA/stepper.html) class.
@@ -140,4 +140,4 @@ state = solver.advectee.get()
```
-Now let's plot the results using `matplotlib` roughly as in Fig. 5 in [Arabas et al. 2014](https://doi.org/10.3233/SPR-140379):
\ No newline at end of file
+Now let's plot the results using `matplotlib` roughly as in Fig. 5 in [Arabas et al. 2014](https://doi.org/10.3233/SPR-140379):
diff --git a/docs/templates/index.html.jinja2 b/docs/templates/index.html.jinja2
index 9d8c9ad4..e6e03856 100644
--- a/docs/templates/index.html.jinja2
+++ b/docs/templates/index.html.jinja2
@@ -3,28 +3,51 @@
{% block title %}PyMPDATA module list{% endblock %}
{% block nav %}
-
Available Modules
-
- {% for submodule in all_modules if "." not in submodule %}
- - {{ submodule }}
- {% endfor %}
-
{% endblock %}
+
{% block content %}
-
-
-
+
+
+
+
+
What is PyMPDATA?
PyMPDATA is a Numba-accelerated Pythonic implementation of the MPDATA algorithm
- of Smolarkiewicz et al. used in geophysical fluid dynamics and beyond for
+ of Smolarkiewicz et al. used in geophysical fluid dynamics and beyond for
numerically solving generalised convection-diffusion PDEs in 1D, 2D and 3D structured meshes
with coordinate transformations.
+
+ PyMPDATA resources
+
+
+ PyMPDATA |
+ PyMPDATA-examples |
+ PyMPDATA-MPI |
+
+
+
+
+ |
+
+
+ |
+
+ |
+
+
+
What is the difference between PyMPDATA and PyMPDATA-examples?
@@ -79,23 +102,6 @@
using and extending PyMPDATA code.
-
-
Credits and License
-
- Development of PyMPDATA was supported by the EU through a grant of the
- Foundation for Polish Science (POIR.04.04.00-00-5E1C/18).
-
-
- licence: GPL v3
-
-
- As of now, the copyright to the entire PyMPDATA codebase is with the Jagiellonian
- University, and code contributions are assumed to imply transfer of copyright.
- Should there be a need to make an exception, please indicate it when creating
- a pull request or contributing code in any other way. In any case,
- the license of the contributed code must be compatible with GPL v3.
-
-
{% include "search.html.jinja2" %}