Metadata-Version: 1.2
Name: tessToPy
Version: 0.0.2
Summary: My package description
Home-page: https://github.com/DanielThorM/tessToPy
Author: Daniel Morton
Author-email: dan.mort.alt@gmail.com
License: MIT
Description: # tessToPy
        ## Overview
        tessToPy is a python package for representing a tessellated structure generated by Neper (https://neper.info/). This tessellation representation can be combined with a python representation of the discretized structure and used to write input files for finite element analysis (FEA). The primary function of the code is to regularize a periodic tessellation. The regularization tries to remove short edges from the structure, as short edges could be detremental to the overall quality of a FEA mesh. 
        
        A unregularized and regularized tessellation is shown below:
        
        Unregularized structure with edges to be deleted | Regularized structure with edges deleted
        ------------- | -------------
        ![](documentation/p_tessellation_nreg.png) | ![](documentation/p_tessellation_reg.png)
        
        The effect of regularization on the edge length distribution in a 400 cell tessellation is shown  below:
        ![](documentation/p_tessellation_edge_length_dist.png)
        
        ## Getting started
        This package can be installed with 
        ```
        $ pip install tessToPy
        ```
        
        ## License
        See [LICENSE.md](LICENSE.md) for license information (MIT license).
        
        ## Citation
        This software was used as part of the PhD thesis *Characterization and modeling of the mechanical behavior of polymer foam* by Daniel Morton, which can be used as a reference.
        
        MIT License
        
        Copyright (c) 2021 Daniel Morton
        
        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.
Keywords: tessellation,voronoi,laguerre,periodic,regularized
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
