Skip to main content

Python package to compute pore network based on given particle packing

Project description

packing2porenet

Python package to compute pore network based on given particle packing.

Overview

Computes pores and throats and their properties based on given packing.

spherical pores from spherical packing

Firstly, the weighted (also denoted as regular) Voronoi tesselation is done based on the input spherical packing. Weights are spheres' radii.

From the weighted Voronoi tesselation, Delaunay tetrahedralization is determined, resulting in the set of tetrahedrons and their connectivity.

Pores are assigned for each Delaunay tetrahedron. Size and position of the pore is assigned as an inscribed spheres between the four "vertex" spheres.

Throats between pores are assigned radius equal to circle in face plane and inscribed between three "vertex" spheres.

It is possible to merge overlapping pores. Then the new pore is such that:

  • volume is equal to the volume of spheres union
  • position is weighted average of positions, with weights being input volumes Throats related to merged pores has radius such that the area of new throat is equal to the area of both merged throats.

Usage

Example

from packing2porenet import Sphere, Voronoi, PoreNetwork, export, ymport

# testing sphere pack
spheres = (
    Sphere((0.00, 0.00, 0.00), 1.00),
    Sphere((2.10, 0.10, 0.05), 1.20),
    Sphere((4.05, 0.20, 0.10), 1.10),
    Sphere((1.15, 2.15, 0.15), 1.15),
    Sphere((3.05, 2.05, 0.05), 1.05),
    Sphere((2.10, 4.20, 0.10), 1.25),
    Sphere((1.05, 1.05, 2.10), 1.00),
    Sphere((3.15, 1.10, 2.20), 1.10),
    Sphere((2.05, 3.10, 2.05), 1.20),
    Sphere((2.10, 2.15, 4.10), 1.15),
)

# pore network
export.spheres2vtk(spheres, "vtk-packing")
voro = Voronoi(spheres)
export.network2vtk(voro, "vtk-voro")
network = PoreNetwork().fromVoronoi(voro)
export.spheres2vtk([pore.asSphere() for pore in network.cells], "vtk-pores")
export.network2vtk(network, "vtk-throats")
network.mergeIntersectingPores()
export.spheres2vtk([pore.asSphere() for pore in network.cells], "vtk-pores-merged")
export.network2vtk(network, "vtk-throats-merged")

Compatibility

Tested on Ubuntu 18.04 LTS and Python 3.6

Installation

  1. Using pip

    python3 -m pip install packing2porenet

  2. Using make (calls python3 -m pip install ., i.e. option 3, internally):

    make install

  3. Using pip locally

    python3 -m pip install .

Contribution

Merge Requests

Are welcome

Bug reporting

In case of any question or problem, please leave an issue at the GitLab page of the project.

Contributors

License

This project is licensed under the MIT License - see the license file for details.

TODO

  • documentation
  • tests
  • periodicity
  • other shapes
  • other properties and functionality

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

packing2porenet-0.1.2.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

packing2porenet-0.1.2-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file packing2porenet-0.1.2.tar.gz.

File metadata

  • Download URL: packing2porenet-0.1.2.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for packing2porenet-0.1.2.tar.gz
Algorithm Hash digest
SHA256 48c579929384e54fd3f2b00f0ebe063fdda700a169a9c1a20447a68064141d79
MD5 2157ed342c41082884b56afb31af54b8
BLAKE2b-256 dcc87eeed080be3f997055c97f5bf5f6686665c61fe8697096644fd384b905da

See more details on using hashes here.

File details

Details for the file packing2porenet-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for packing2porenet-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 96b87966f4ed273835ff77301a3d4b3733bf05e5e332547a1ebc7c9cfaf44e1b
MD5 38052cace080c80cb2f62b2d65addd15
BLAKE2b-256 1c3b4bee463743b4dbe5f7c51b04c41c7b11d1ed4fc0473ba2b7c668f5e6dd1b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page