Metadata-Version: 2.1
Name: pypesh
Version: 0.0.0
Summary: Sherwood number in Stokes flow
Home-page: https://github.com/turczyneq/pypesh
Author: Jan Turczynowicz and Radost Waszkiewicz
Author-email: turczynowicz.jan@wp.pl
License: GNU GPLv3
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

![Tests](https://github.com/turczyneq/pypesh/actions/workflows/test.yml/badge.svg)

advection diffusion solver
==============================

This repository attempts to find a solution to advection diffusion problem

$$ 0 = \Delta \phi - \mathrm{Pe} (u \cdot \nabla \phi) $$

with $\phi = 1$ for $z \to \infty$ and $\phi = 0$ on a surface of the sphere and $\mathrm{Pe}$ denoting Peclet number. Final determined value is Sherwood number defined as 

$$ \mathrm{Sh} = \frac{\Phi}{ 4 \pi D R}$$

Where $D$ is diffusion constant and $\Phi$ is flux falling onto the sphere.

<p align="center">
  <img src="/graphics/visualisation/visual_comparison.png" alt="Both approaches solving the same problem">
</p>

We use two approaches: `scikit-fem` package to handle solving which requires rewriting equations in weak form for smaller peclets and `pychastic` to generate and trace trajcetories of single particles and .

# Usage as module

Basic usage
```Python
python3 -m pypesh --peclet 1000 --ball_radius 0.9

```

Sample output:
```
Sherwood for given parameters is 12.033892568100546
```

# Usage as package

Basic usage

```Python
import pypesh.pesh as psh
psh.sherwood(peclet = 10**4, ball_radius = 0.9)
```

For advanced options go to: https://pypesh.readthedocs.io/en/latest/

License
-------
Copyright (C) 2024  Radost Waszkiewicz and Jan Turczynowicz.
This repository is published under GPL3.0 license.

Bibliography
------------
 - *Bubbles, Drops and Particles*; R. Clift, J. Grace, M. Weber (1978)
 - *Electrochemical measurements of mass transfer between a sphere and liquid in motion at high Peclet numbers*; S. Kutateladze, V. Nakoryakov, M. Iskakov (1982)
 - *Mass and heat transfer from fluid spheres at low Reynolds numbers*; Z. Feng, E. Michaelides (2000)
 - *Heat transfer from spheres to flowing media*; H. Kramers (1946)


