معرفی شرکت ها


fractal-tree-0.2.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Create a fractal tree over a surface discretized by triangles
ویژگی مقدار
سیستم عامل -
نام فایل fractal-tree-0.2.1
نام fractal-tree
نسخه کتابخانه 0.2.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Francisco Sahli Costabal
ایمیل نویسنده Henrik Finsberg <henriknf@simula.no>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/fractal-tree/
مجوز Copyright 2023 Henrik Finsberg Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# fractal-tree This code is to create a fractal tree over a surface discretized by triangles. It was developed to create a representation of the Purkinje network in the ventricles of the human heart. Note that this is a rewrite of the original code found at https://github.com/fsahli/fractal-tree The details of the algorithm are presented in this [article](http://www.sciencedirect.com/science/article/pii/S0021929015007332). If you are going to use this code, please cite: > Generating Purkinje networks in the human heart. F. Sahli Costabal, D. Hurtado and E. Kuhl. Journal of Biomechanics, doi:10.1016/j.jbiomech.2015.12.025 - Source code: https://github.com/finsberg/fractal-tree - Documentation: https://github.com/finsberg/fractal-tree ## Install You can install the library with pip ``` python3 -m pip install fractal-tree ``` Note that you also need a way to load the mesh from e.g gmsh or another meshing tool. For this we recommend to use [`meshio`](https://github.com/nschloe/meshio) as it support the most common formats. ## Getting started The following illustrates a minimal example, assuming that you have surface mesh called `sphere.obj` in your current directory. ```python import meshio import numpy as np from fractal_tree import generate_fractal_tree, FractalTreeParameters, Mesh msh = meshio.read("sphere.obj") mesh = Mesh(verts=msh.points, connectivity=msh.cells[0].data) param = FractalTreeParameters( filename="sphere-line", N_it=10, ) results = generate_fractal_tree(mesh, param) ``` For a more elaborate example you can checkout the [gmsh example](https://finsberg.github.io/fractal-tree/examples/demo_gmsh.html). ## License MIT ## Need help or having issues Please submit an [issue](https://github.com/finsberg/fractal-tree/issues)


نیازمندی

مقدار نام
- numpy
- scipy
- tqdm
- fractal-tree[test]
- fractal-tree[docs]
- fractal-tree[pypi]
- fractal-tree[dev]
- meshio
- fenics-pulse
- cardiac-geometries[gmsh]
- pdbpp
- ipython
- bump2version
- pre-commit
- jupyter-book
- sphinx-autoapi
- fractal-tree[demo]
- twine
- build
- pytest
- pytest-cov
- meshio


نحوه نصب


نصب پکیج whl fractal-tree-0.2.1:

    pip install fractal-tree-0.2.1.whl


نصب پکیج tar.gz fractal-tree-0.2.1:

    pip install fractal-tree-0.2.1.tar.gz