Package to compute full gravity tensor of a given constant density polyhedron for arbitrary points according to the geodetic convention
Project description
polyhedral-gravity-model
Table of Contents
References
This code is a validated implementation in C++17 of the Polyhedral Gravity Model by Tsoulis et al.. It was created in a collaborative project between TU Munich and ESA's Advanced Concepts Team. Please refer to the project report for extensive information about the theoretical background, related work, implementation & design decisions, application, verification, and runtime measurements of the presented code.
The implementation is based on the paper Tsoulis, D., 2012. Analytical computation of the full gravity tensor of a homogeneous arbitrarily shaped polyhedral source using line integrals. Geophysics, 77(2), pp.F1-F11. and its corresponding implementation in FORTRAN.
Supplementary details can be found in the more recent paper TSOULIS, Dimitrios; GAVRIILIDOU, Georgia. A computational review of the line integral analytical formulation of the polyhedral gravity signal. Geophysical Prospecting, 2021, 69. Jg., Nr. 8-9, S. 1745-1760. and its corresponding implementation in MATLAB, which is strongly based on the former implementation in FORTRAN.
Documentation & Examples
[!NOTE] The GitHub Pages of this project contain the full extensive documentation of C++ Library and the Python Interface as well as background on the gravity model and advanced settings not detailed here!
Input & Output (C++ and Python)
Input
The evaluation of the polyhedral gravity model requires the following parameters:
Name |
---|
Polyhedral Mesh (either as vertices & faces or as polyhedral source files) |
Constant Density $\rho$ |
The mesh and the constants density's unit must match. Have a look the documentation to view the supported mesh files.
Output
The calculation outputs the following parameters for every Computation Point P. The units of the respective output depend on the units of the input parameters (mesh and density)! Hence, if e.g. your mesh is in $km$, the density must match. Further, output units will be different accordingly.
Name | Unit (if mesh in $[m]$ and $\rho$ in $[kg/m^3]$) | Comment |
---|---|---|
$V$ | $\frac{m^2}{s^2}$ or $\frac{J}{kg}$ | The potential or also called specific energy |
$V_x$, $V_y$, $V_z$ | $\frac{m}{s^2}$ | The gravitational accerleration in the three cartesian directions |
$V_{xx}$, $V_{yy}$, $V_{zz}$, $V_{xy}$, $V_{xz}$, $V_{yz}$ | $\frac{1}{s^2}$ | The spatial rate of change of the gravitational accleration |
[!NOTE] This gravity model's output obeys to the geodesy and geophysics sign conventions. Hence, the potential $V$ for a polyhedron with a mass $m > 0$ is defined as positive. Accordingly, the accelerations are defined as $\textbf{g} = + \nabla V$.
Minimal Python Example
The following example shows how to use the python interface to compute the gravity around a cube:
import numpy as np
from polyhedral_gravity import Polyhedron, GravityEvaluable, evaluate, PolyhedronIntegrity, NormalOrientation
# We define the cube as a polyhedron with 8 vertices and 12 triangular faces
# The polyhedron's normals point outwards (see below for checking this)
# The density is set to 1.0
cube_vertices = np.array(
[[-1, -1, -1], [1, -1, -1], [1, 1, -1], [-1, 1, -1],
[-1, -1, 1], [1, -1, 1], [1, 1, 1], [-1, 1, 1]]
)
cube_faces = np.array(
[[1, 3, 2], [0, 3, 1], [0, 1, 5], [0, 5, 4], [0, 7, 3], [0, 4, 7],
[1, 2, 6], [1, 6, 5], [2, 3, 6], [3, 7, 6], [4, 5, 6], [4, 6, 7]]
)
cube_density = 1.0
computation_point = np.array([0, 0, 0])
We first, define a constant density Polyhedron from vertices
and faces
cube_polyhedron = Polyhedron(
polyhedral_source=(cube_vertices, cube_faces),
density=cube_density,
)
In case you want to hand over the polyhedron via a supported file format,
just replace the polyhedral_source
argument with a list of strings,
where each string is the path to a supported file format.
Continuing, the simplest way to compute the gravity is to use the evaluate
function:
potential, acceleration, tensor = evaluate(
polyhedron=cube_polyhedron,
computation_points=computation_point,
parallel=True,
)
The more advanced way is to use the GravityEvaluable
class. It caches the
internal data structure and properties which can be reused for multiple
evaluations. This is especially useful if you want to compute the gravity
for multiple computation points, but don't know the "future points" in advance.
evaluable = GravityEvaluable(polyhedron=cube_polyhedron)
potential, acceleration, tensor = evaluable(
computation_points=computation_point,
parallel=True,
)
Note that the computation_point
could also be (N, 3)-shaped array.
In this case, the return value of evaluate(..)
or an GravityEvaluable
will
be a list of triplets comprising potential, acceleration, and tensor.
The gravity model requires that all the polyhedron's plane unit normals consistently
point outwards or inwards the polyhedron. You can specify this via the normal_orientation
.
This property is - by default - checked when constructing the Polyhedron
! So, don't worry, it
is impossible if not explicitly disabled to create an invalid Polyhedron
.
You can disable/ enable this setting via the optional integrity_check
flag and can even
automatically repair the ordering via HEAL
.
As advanced user/ when you "know the mesh",
you want to disable this check (via DISABLE
) due to the additional runtime overhead!
cube_polyhedron = Polyhedron(
polyhedral_source=(cube_vertices, cube_faces),
density=cube_density,
normal_orientation=NormalOrientation.INWARDS, # OUTWARDS (default) or INWARDS
integrity_check=PolyhedronIntegrity.VERIFY, # AUTOMATIC (default) == VERIFY, DISABLE or HEAL
)
[!TIP] More examples and plots are depicted in the jupyter notebook.
Minimal C++ Example
The following example shows how to use the C++ library to compute the gravity. It works analogously to the Python example above.
// Defining the input like above in the Python example
std::vector<std::array<double, 3>> vertices = ...
std::vector<std::array<size_t, 3>> faces = ...
double density = 1.0;
// The constant density polyhedron is defined by its vertices & faces
// It also supports the hand-over of NormalOrientation and PolyhedronIntegrity as optional arguments
// as above described for the Python Interface
Polyhedron polyhedron{vertices, faces, density};
std::vector<std::array<double, 3>> points = ...
std::array<double, 3> point = points[0];
bool parallel = true;
The C++ library provides also two ways to compute the gravity. Via
the free function evaluate
...
const auto[pot, acc, tensor] = GravityModel::evaluate(polyhedron, point, parallel);
... or via the GravityEvaluable
class.
// Instantiation of the GravityEvaluable object
GravityEvaluable evaluable{polyhedron};
// From now, we can evaluate the gravity model for any point with
const auto[potential, acceleration, tensor] = evaluable(point, parallel);
// or for multiple points with
const auto results = evaluable(points, parallel);
Similarly to Python, the C++ implementation also provides mesh checking capabilities.
[!TIP] For reference, have a look at the main method of the C++ executable.
Installation
With conda
The python interface can be easily installed with conda:
conda install -c conda-forge polyhedral-gravity-model
With pip
As a second option, you can also install the python interface with pip from PyPi.
pip install polyhedral-gravity
Binaries for the most common platforms are available on PyPI including
Windows, Linux and macOS. For macOS and Linux, binaries for
x86_64
and aarch64
are provided.
In case pip
uses the source distribution, please make sure that
you have a C++17 capable compiler and CMake installed.
From source
The project uses the following dependencies, all of them are automatically set-up via CMake:
- GoogleTest (1.13.0 or compatible), only required for testing
- spdlog (1.11.0 or compatible), required for logging
- tetgen (1.6 or compatible), required for I/O
- yaml-cpp (0.7.0 or compatible), required for I/O
- thrust (2.1.0 or compatible), required for parallelization and utility
- xsimd (11.1.0 or compatible), required for vectorization of the
atan(..)
- pybind11 (2.10.4 or compatible), required for the Python interface, but not the C++ standalone
The module will be build using a C++17 capable compiler, CMake. Just execute the following command in the repository root folder:
pip install .
To modify the build options (like parallelization) have a look
at the next paragraph. The options
are modified by setting the environment variables before executing
the pip install .
command, e.g.:
export POLYHEDRAL_GRAVITY_PARALLELIZATION="TBB"
pip install .
(Optional: For a faster build you can install all dependencies available for your system in your local python environment. That way, they won't be fetched from GitHub.)
C++ Library & Executable
Building the C++ Library & Executable
The program is build by using CMake. So first make sure that you installed CMake and then follow these steps:
mkdir build
cd build
cmake .. <options>
cmake --build .
The following options are available:
Name (Default) | Options |
---|---|
POLYHEDRAL_GRAVITY_PARALLELIZATION (CPP ) |
CPP = Serial Execution / OMP or TBB = Parallel Execution with OpenMP or Intel's TBB |
LOGGING_LEVEL (2 ) |
0 = TRACE/ 1 = DEBUG/ 2 = INFO / 3 = WARN/ 4 = ERROR/ 5 = CRITICAL/ 6 = OFF |
USE_LOCAL_TBB (OFF ) |
Use a local installation of TBB instead of setting it up via CMake |
BUILD_POLYHEDRAL_GRAVITY_DOCS (OFF ) |
Build this documentation |
BUILD_POLYHEDRAL_GRAVITY_TESTS (ON ) |
Build the Tests |
BUILD_POLYHEDRAL_PYTHON_INTERFACE (ON ) |
Build the Python interface |
During testing POLYHEDRAL_GRAVITY_PARALLELIZATION=TBB
has been the most performant.
It is further not recommend to change the LOGGING_LEVEL to something else than INFO=2
.
The recommended CMake command would look like this (we only need to change PARALLELIZATION_DEVICE
, since
the defaults of the others are already correctly set):
cmake .. -POLYHEDRAL_GRAVITY_PARALLELIZATION="TBB"
Running the C++ Executable
After the build, the gravity model can be run by executing:
./polyhedralGravity <YAML-Configuration-File>
where the YAML-Configuration-File contains the required parameters.
Examples for Configuration Files and Polyhedral Source Files can be
found in this repository in the folder /example-config/
.
Input Configuration File
The configuration should look similar to the given example below. It is required to specify the source-files of the polyhedron's mesh (more info about the supported file in the documentation), the density of the polyhedron, and the wished computation points where the gravity tensor shall be computed. Further one must specify the name of the .csv output file.
---
gravityModel:
input:
polyhedron: #polyhedron source-file(s)
- "../example-config/data/tsoulis.node" # .node contains the vertices
- "../example-config/data/tsoulis.face" # .face contains the triangular faces
density: 2670.0 # constant density, units must match with the mesh (see section below)
points: # Location of the computation point(s) P
- [ 0, 0, 0 ] # Here it is situated at the origin
check_mesh: true # Fully optional, enables mesh autodetect+repair of
# the polyhedron's vertex ordering (not given: true)
output:
filename: "gravity_result.csv" # The name of the output file
Output
The executable produces a CSV file containing $V$, $V_x$, $V_y$, $V_z$, $V_{xx}$, $V_{yy}$, $V_{zz}$, $V_{xy}$, $V_{xz}$, $V_{yz}$ for every computation point P.
Testing
The project uses GoogleTest for testing. In oder to execute those tests just execute the following command in the build directory:
ctest
For the Python test suite, please execute the following command in the repository root folder:
pytest
Contributing
We are happy to accept contributions to the project in the form of suggestions, bug reports and pull requests. Please have a look at the contributing guidelines for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for polyhedral_gravity-3.0rc3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2909cd04cab3ba84c3286d5e9ccc4013386fb887321d30eb0005c96fe6267f9a |
|
MD5 | d222165d299cc780ae25085ebf9fb7d6 |
|
BLAKE2b-256 | 3188b0cb6d1971b214d8ad7843203853001f7336de446afd503d06cd0377892e |
Hashes for polyhedral_gravity-3.0rc3-pp310-pypy310_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27af2cb976ebfc44888b2963a33d344e8d12be9e275f4ddf42d50400db9a9beb |
|
MD5 | 3f14309b967ce5b4546b6c10500d5c36 |
|
BLAKE2b-256 | 5c60c5cc38de74de185fbfe6efd170660b616b89e0ba09b218e1d48f5cf4e9f7 |
Hashes for polyhedral_gravity-3.0rc3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8821da6e48f60b090bb7f7c8521abed934744c4dd8763c15884e6ad34fa0c71 |
|
MD5 | 86e606591532fb683a2af59716fa5b04 |
|
BLAKE2b-256 | 830455009f27079600ae5b9f7a0766f7a79b8330ebe29642bc8c8c9b392b5040 |
Hashes for polyhedral_gravity-3.0rc3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9f22c0b92d319ccfcc1bbab001f4d8ad4dccab1a5f47c8ef2d880842b090b26 |
|
MD5 | 463360cd772746dffd3f5223743b830b |
|
BLAKE2b-256 | 42393920cefd1ee9517a6b9874f92f2f7ee5ce4c5e07272d51bdeb0502d82ce5 |
Hashes for polyhedral_gravity-3.0rc3-pp39-pypy39_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81e67fc097497aeb541ee66d7d13df19c86ba66d816b8490c75aaf6a637e3976 |
|
MD5 | 90a35623f7154afcd880173761c29a02 |
|
BLAKE2b-256 | cf8f550a088f35899812c9470cb5cf0d0a8e7ed8a01ca36c3c8b60fd8d09a80d |
Hashes for polyhedral_gravity-3.0rc3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33568c952b5d08b703f95e7cce9a60514dc88aefd558fb4a12f3d84cc69f8272 |
|
MD5 | 68db7be9763b39ccc7dc95752271e753 |
|
BLAKE2b-256 | 51686fe37ea2f58dbee6d8e32beedfa47dffa859da755654bb5b905ef7c49d89 |
Hashes for polyhedral_gravity-3.0rc3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 776b14e9b85aa6f87e0b2c31fcf802b2a958a028335ee717d5b83e90d841ba19 |
|
MD5 | bdbf8b4206162b4a20728480e3921a10 |
|
BLAKE2b-256 | 1fc51d3bde3998927524ad50f315b363d98f94a26f0bbbfda6f7fa128c2a30f7 |
Hashes for polyhedral_gravity-3.0rc3-pp38-pypy38_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a214b6a72ae0f15dd1841691ed6a4c69186a14f61ffaf494bfde5ed9d7a9b7f9 |
|
MD5 | 785708e6c248a87ac93cada932ddf605 |
|
BLAKE2b-256 | 8a92db88fb1b65b021028bf9d0b69931c800a5f2ab1bbd26f050b0eba8d0c65d |
Hashes for polyhedral_gravity-3.0rc3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ec9786c28b7eea134903b9dd8dd1d04813f3551a580d734477e9797e6c1ee8c |
|
MD5 | a1b4fc326c2f0498e0621205581767f9 |
|
BLAKE2b-256 | 23edaa65c5503502192bf3d9ab150ccfe065ac585fc2ede37e3b33bf3f760e80 |
Hashes for polyhedral_gravity-3.0rc3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86a79c227c8e9fd4385c128c59774faa9cc70cce91946681c8d4d7f86cb97308 |
|
MD5 | e3cf3d4eb66561c2805fe2c19365756a |
|
BLAKE2b-256 | 1e2c58b10a31688804e7759d6bdac6ad38aec372123b891b32c8e9ffe270f339 |
Hashes for polyhedral_gravity-3.0rc3-pp37-pypy37_pp73-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcc779a0566a866345d33512e9c12287262b7f6b3d954d219c40f11baf89e377 |
|
MD5 | f50b5b4d5f9788aa9c23230eca66c11a |
|
BLAKE2b-256 | efc7169df272475b540e6dc89e84f159969c70f611ab299aff237427225db967 |
Hashes for polyhedral_gravity-3.0rc3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32c552d936e4ae17dc6c28e4fcba337134c1827006fbb3fd4330e3e0fb62aaf1 |
|
MD5 | ab66a772cb607acf5c120a643b0b0463 |
|
BLAKE2b-256 | 5abe1391ff06a68122fe34c758fd86802bdfa3fa3f67e7b10b8fbe3f8756317e |
Hashes for polyhedral_gravity-3.0rc3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3070cf83a01eae09a75ab7a51ade3298d9096ddc840d38cdeae2d699e8a6f754 |
|
MD5 | bb3c1861308310d1e8d7f844882218a4 |
|
BLAKE2b-256 | 8a745fb37e36c7e2f5f5a555255301249f180eff19b9a70f8a36323d40832f39 |
Hashes for polyhedral_gravity-3.0rc3-cp312-cp312-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c16e1fe3d9ea73757ca5072b32cd1746edafe2e8a18139b9ec125fda19504b9 |
|
MD5 | 99c289e7c3aa985e57fd5a1a749be0c5 |
|
BLAKE2b-256 | 796114cd7b41cdda95e0e22c2d71bf2ce737c484c374fc2d3789a5c0c250194d |
Hashes for polyhedral_gravity-3.0rc3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7a55ed1b2b4e95ed3aa0457bca08c73be51faf028b691202f2eec444e538be1 |
|
MD5 | bef0175602194a054b2555ab17217bcf |
|
BLAKE2b-256 | 5a495b5438e792425757bad0f8873539df239f2ce6d1e8d6e08f34717c4026da |
Hashes for polyhedral_gravity-3.0rc3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9921093f9ee90007f95d84f09ff5d00cbe54b191b69d562b828da615cd18fc59 |
|
MD5 | 847046521e82d7df3fd1bf5627064a39 |
|
BLAKE2b-256 | cc7eff07efdd613c0d15bab8a4633e3068ab7323f7251f006042d176fdde41a9 |
Hashes for polyhedral_gravity-3.0rc3-cp311-cp311-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | da9564732dad1e7e0700ebe925be4c8c754cef495ce97a67e855b21adaa4e9ad |
|
MD5 | 43d365421107c03a9993acf27217aca4 |
|
BLAKE2b-256 | 622d79b97ad04ac6c2720377e8b2ef1abf6b6e08ca0c2cd59ef112c1b30f66e3 |
Hashes for polyhedral_gravity-3.0rc3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 018a87822b4c59e2ac7954763d18ae163fa2f0758071d106d20d0b91c011fc28 |
|
MD5 | 2eafc6ad0605de7b869a39b5346c4323 |
|
BLAKE2b-256 | bf3ec28ecbfb623329c9da1b7f876504bd086c6aa4ccd734d717bdc5c3ccc138 |
Hashes for polyhedral_gravity-3.0rc3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff63d90a60f775416c2fdbd1e33c2d387e107da228db664847a1987062a52237 |
|
MD5 | 937e77506e3ac791d1bacc93c6728ea6 |
|
BLAKE2b-256 | e747cb9e9005e88bc17afc650ebe1f81126a6ab0b58aa74c3f160e97ceed2cdb |
Hashes for polyhedral_gravity-3.0rc3-cp310-cp310-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27269467e2669918a581cf52584a8f2f0f4803c78b6d048cf497c79edc197327 |
|
MD5 | 40163d24bff33841ea3acdccf8da716e |
|
BLAKE2b-256 | 16e553d4371fbf392f9878baa7140f70eaf0659d27c572f1f50d863bf2e9a199 |
Hashes for polyhedral_gravity-3.0rc3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d56bb4c999685ace28a61ea948922117f30778a7e3715ecb862ac8cdf8cf6029 |
|
MD5 | ef4d952a3d5e93de04f1fe831faced4e |
|
BLAKE2b-256 | 4c694c9f5b90bc402c54f32176929b6b5fc0ade44e292f88293a220749462c4c |
Hashes for polyhedral_gravity-3.0rc3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27ce38989f4b88fc9b17f2c6dc348178df9dc69f800dbeb887de82818c6a9c26 |
|
MD5 | 83ac745d52a80bdc119d1c62fff60fe0 |
|
BLAKE2b-256 | c43f295945bdbaad5027d5306f48572637500e0a95e59a872b27e78b230c639a |
Hashes for polyhedral_gravity-3.0rc3-cp39-cp39-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc6f2775286dc5241a85f5da51cd24471278cfa09843478a75903e7fd9e43f18 |
|
MD5 | 3bbd0ae730cf9bba5b3602dab82a1bf1 |
|
BLAKE2b-256 | 16276370f34361feafc8ebe403893dbf7ada27917d5d4134740cd5873b4b583c |
Hashes for polyhedral_gravity-3.0rc3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0eebae3f4cde115e5a17e75a1f2ffe9a3cc4bba8cb5bdb47e4ac1b1a2c7f8f3 |
|
MD5 | 72138cc18cfc936c818ce39bd032c11c |
|
BLAKE2b-256 | dc0a5efa7700c2845bbb2ee5f5dcc22074cf14bfa5520c422f150a35fd477239 |
Hashes for polyhedral_gravity-3.0rc3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6aa45d1ea68d98c8970053ebe5b179cc9b89fc184f4e87f2e2b833046e0adaea |
|
MD5 | b7872b8a7ee13cbd3c771bd8a84079af |
|
BLAKE2b-256 | b1422077b046bf2e20808f89884a5acf2cee27580fb7f90eecbf8beca2ab965c |
Hashes for polyhedral_gravity-3.0rc3-cp38-cp38-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27d77e486f1469b71b0168a2945a9d7b6bc885bca5b7d10bf8e988a1de1fd5f5 |
|
MD5 | 17d362578bddc770aa561c8ae677ce8a |
|
BLAKE2b-256 | 4913cd3158684be8022b66c9813d7bec0c9ab258d6570534ff5bcf294f3a1360 |
Hashes for polyhedral_gravity-3.0rc3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | adc94293d9c77f771cd75b38886c41d2d73165d627470c931a67c57b3e947b6e |
|
MD5 | 994341d8e93934b2ad381f11cf50c6fc |
|
BLAKE2b-256 | 997ff63798178b95f8a2c9915ea47b30949c7a20be32f5c8d87e68c1182a3a9b |
Hashes for polyhedral_gravity-3.0rc3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7608923bdae22182e9e169abb07bfbe96780efd04968418a8a9dc9f88c22deaa |
|
MD5 | 8554a37d2e4ce1f389ed4d46192786af |
|
BLAKE2b-256 | 181c5e671fcc1b0d9d7a7d83c59a835296a1e1f6c1761858103b97bca351cc94 |
Hashes for polyhedral_gravity-3.0rc3-cp37-cp37m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb6d6ea5b4a4393d65adcd14af4dfe68e7e8862ccbc46e2ee3e779711927fadf |
|
MD5 | 207a196b58bc86a789a1b298ed2120a5 |
|
BLAKE2b-256 | b0beea55d9559afc97f65b7e3d6250b76d42e5ebc9e6ca0663352167f13787de |
Hashes for polyhedral_gravity-3.0rc3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c6ce47e1a98f73ce9c4a79154702a5cff17352919e6f9a49d6ebd48213d307d |
|
MD5 | 9993a627bd7592d411d7716cbc6d9dc0 |
|
BLAKE2b-256 | 1e1078b90201d0481037a2c7153f01948efea43c2c26078f864cdf5b14ceffdc |
Hashes for polyhedral_gravity-3.0rc3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | edeb6a0031dc25bd19f448e1157b94bebcd125f065ae6ee6ce07df47cdcf5378 |
|
MD5 | a0aea20feb6f1509ef5d13ecaca9e145 |
|
BLAKE2b-256 | 8ab7d966e54246d91f09ff5ef58043328708c463e05af40ba378c52ac3210a39 |
Hashes for polyhedral_gravity-3.0rc3-cp36-cp36m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0764788bb3e9480c6fa186cb1c35704d43d7d730ae30b3dff6c3fbcc5cc50770 |
|
MD5 | 4f73bf836e803386f8fbc3a5e9b2e678 |
|
BLAKE2b-256 | f9505793d502164f0bedd41b0744022041e84b2e79b5beb7483a8c9377255eab |
Hashes for polyhedral_gravity-3.0rc3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5e12c59d23f52c2fcac480e7676eb6403a0dc7a126beeb7cf76aa230fb6a58c |
|
MD5 | 5a8f3a6240e0f045c07da0d178679c01 |
|
BLAKE2b-256 | 2788e6942098e5a236e636f2cb1df839384588387675b63fe7cb6e2fe303b4ed |
Hashes for polyhedral_gravity-3.0rc3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15b94cf2310db5db594e7a99488553d3f9012bab7d9791fd5ddc31d2014bc94a |
|
MD5 | 08e5f1c3a1aa0c8bd1209704c3a57ae6 |
|
BLAKE2b-256 | 304416000a28328b9c738eb6eff4f1e6f9485cca86e6fb86e542f52d75eb66e7 |