GithubHelp home page GithubHelp logo

ericators / puma Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nasa/puma

0.0 0.0 0.0 64.26 MB

License: Other

C++ 82.07% Shell 0.06% C 7.71% QMake 0.02% Python 4.79% Jupyter Notebook 1.14% CMake 0.37% Makefile 0.25% MATLAB 1.05% Awk 0.01% SWIG 0.09% Fortran 0.03% NSIS 0.60% Batchfile 0.01% HTML 0.56% CSS 0.08% Tcl 0.21% M4 0.34% Roff 0.10% Cython 0.51%

puma's Introduction

Documentation Status Anaconda-Server Badge PyPI version pumapy Tests


Porous Microstructure Analysis (PuMA)

The stable releases of PuMA can be found on the official NASA Github repository, whereas the latest development can be found on the development Gitlab repository. Access the PuMA documentation for detailed use of each function or to get started with the tutorial.

The Porous Microstructure Analysis (PuMA) software has been developed to compute effective material properties and perform material response simulations on digitized microstructures of porous media. PuMA is able to import digital three-dimensional images obtained from X-ray microtomography or to generate artificial microstructures that mimic real materials. PuMA also provides a module for interactive 3D visualizations. Version 3 includes modules to compute simple morphological properties such as porosity, volume fractions, pore diameter, and specific surface area. Additional capabilities include the determination of effective thermal and electrical conductivity (both radiative and solid conduction - including the ability to simulate local anisotropy for the latter); effective diffusivity and tortuosity from the continuum to the rarefied regime; techniques to determine the local material orientation, as well as the mechanical properties (elasticity coefficient), and the permeability of a material.

Some examples of microstructures that have been run in the past are shown in the pictures below, together with PuMA's software architecture schematic.

System requirements

UNIX (tested on MacOS 10.14.1+, Ubuntu 12.04+, RHEL, and CentOS). On Windows, only the python distribution (pumapy) is available.

Indicative recommended specs (varies depending on the material property):

  • 8 GB of ram for small simulations (5003 or smaller)
  • 16-32 GB of ram for medium simulations (8003 range)
  • 32+ GB of ram for large simulations (above 10003)

Installation

To install PuMA, a conda distribution must be installed on your machine. To test whether conda is installed, run "conda" from a terminal to see if the command is recognized. If not, conda can be installed by following the instructions here.

Binaries (UNIX and Windows)

Once the conda command is working, all the PuMA components can be installed by executing the following command in a terminal: (Note: The "solving environment" step can take a while on some systems so please be patient)

conda create -y --name puma conda-forge::puma

If only the pumapy python package is needed, it can be installed directly using:

pip install pumapy

On UNIX (i.e. Mac or Linux), the conda command installs the PuMA C++ library, pumapy python package and GUI.

On Windows, only the pumapy python package is available, so both commands are equivalent.

Note: TexGen (C++ library to create artificial weaves) is only installed when using conda on UNIX, because it needs more advanced compilation. A friendly warning will appear when TexGen is not installed and pumapy is imported.

Build from source (UNIX-only)

This is the recommended installation for developers that need to make modifications to PuMA. The installation is broken into two sections:

  1. Installation of basic dependencies that may be missing from your system
  2. Download the repository, build the source code and install the binaries

Step 1 of the installation varies slightly based on the system. Open a terminal, navigate to the directory you would like PuMA installed, and execute one of the following lines:

xcode-select --install                                                                 # run this on MacOS
sudo apt-get install git build-essential mesa-common-dev                               # Debian (Ubuntu)
sudo yum group install "Development Tools"; sudo yum install git g++ mesa-libGL-devel  # Fedora (CentOS, RHEL)

Note: If XCode command line tools are already installed, the command will result in an error, which is not a problem.

Now that the necessary dependencies have been installed, you can go ahead with Step 2 of the installation:

git clone https://github.com/nasa/puma.git
cd puma; chmod +x installer.sh; ./installer.sh

After installation, close the terminal and open a new one.

Uninstalling PuMA

To uninstall PuMA and all the installed dependencies, execute the following:

conda remove -y --name puma --all

Running PuMA

PuMA relies on a conda environment in order to manage its software dependencies and environment variables. It is therefore important to always activate the environment before using any of PuMA's functionalities. Once the installation is complete, the PuMA GUI can be launched by running:

conda activate puma
pumaGUI

You can follow the jupyter notebook tutorial, which shows the typical function usage for both PuMA C++ and pumapy. This can also be run directly in Google Colaboratory by following this link.

How to setup PuMA on the NAS cluster:

In order to install PuMA on the NASA supercomputing cluster, some modules need to be loaded and environment variables need to be set. This can be achieved by adding the following commands to the ~/.profile file before the installation:

module use -a /swbuild/analytix/tools/modulefiles
module load miniconda3/v4
module load /nasa/modulefiles/pkgsrc/sles12/gcc/6.2
export CONDA_PKGS_DIRS=/nobackup/$USER/.conda/pkgs
export CONDA_ENVS_PATH=/nobackup/$USER/.conda/envs
conda config --append envs_dirs /nobackup/$USER/.conda/envs
source activate

Citing PuMA

If you use PuMA in your research, please use the following BibTeX entries to cite it:

@article{puma2021,
  title={Update 3.0 to “PuMA: The Porous Microstructure Analysis software”,(PII: S2352711018300281)},
  author={Ferguson, Joseph C and Semeraro, Federico and Thornton, John M and Panerai, Francesco and Borner, Arnaud and Mansour, Nagi N},
  journal={SoftwareX},
  volume={15},
  pages={100775},
  year={2021},
  publisher={Elsevier}
}
@article{puma2018,
  title={PuMA: The porous microstructure analysis software},
  author={Ferguson, Joseph C and Panerai, Francesco and Borner, Arnaud and Mansour, Nagi N},
  journal={SoftwareX},
  volume={7},
  pages={81--87},
  year={2018},
  publisher={Elsevier}
}

See the publications file for a full list of papers on PuMA and its numerical methods.

Common errors and bug reporting

This is a list of the common errors encountered during the setup and how to solve them:

  • If PuMA was partially installed but was interrupted, this can cause errors when trying to install the software. To fix this, first follow the instructions to uninstall puma, and then repeat the installation procedure
  • If an error "make: Warning: File ... has modification time ... s in the future" is displayed, then run "sudo apt install ntp" (or equivalent for your distribution)

If any bugs are found, or if the software crashes for any reason, please open an issue at this link and/or contact either of the authors mentioned below.

Contributing to PuMA

Since PuMA is a free open-source code, any user is welcome to contribute or collaborate however they would like. If you are interested in significant development for your research goals, please contact either of the authors mentioned below.

Authors

Creator: Joseph Ferguson [email protected]

Maintainer: Federico Semeraro [email protected]

Contributors: Francesco Panerai, John M. Thornton, Arnaud Borner, Jeremie B. Meurisse, Nagi N. Mansour

Legal / License

Copyright @ 2017, 2020, 2021 United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All Rights Reserved. This software may be used, reproduced, and provided to others only as permitted under the terms of the agreement under which it was acquired from the U.S. Government. Neither title to, nor ownership of, the software is hereby transferred. This notice shall remain on all copies of the software. This file is available under the terms of the NASA Open Source Agreement (NOSA), and further subject to the additional disclaimer below: Disclaimer: THE SOFTWARE AND/OR TECHNICAL DATA ARE PROVIDED "AS IS" WITHOUT ANY WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE SOFTWARE AND/OR TECHNICAL DATA WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SOFTWARE AND/OR TECHNICAL DATA WILL BE ERROR FREE, OR ANY WARRANTY THAT TECHNICAL DATA, IF PROVIDED, WILL CONFORM TO THE SOFTWARE. IN NO EVENT SHALL THE UNITED STATES GOVERNMENT, OR ITS CONTRACTORS OR SUBCONTRACTORS, BE LIABLE FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES, ARISING OUT OF, RESULTING FROM, OR IN ANY WAY CONNECTED WITH THIS SOFTWARE AND/OR TECHNICAL DATA, WHETHER OR NOT BASED UPON WARRANTY, CONTRACT, TORT, OR OTHERWISE, WHETHER OR NOT INJURY WAS SUSTAINED BY PERSONS OR PROPERTY OR OTHERWISE, AND WHETHER OR NOT LOSS WAS SUSTAINED FROM, OR AROSE OUT OF THE RESULTS OF, OR USE OF, THE SOFTWARE AND/OR TECHNICAL DATA. THE UNITED STATES GOVERNMENT DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD PARTY COMPUTER SOFTWARE, DATA, OR DOCUMENTATION, IF SAID THIRD PARTY COMPUTER SOFTWARE, DATA, OR DOCUMENTATION IS PRESENT IN THE NASA SOFTWARE AND/OR TECHNICAL DATA, AND DISTRIBUTES IT "AS IS." RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE UNITED STATES GOVERNMENT AND ITS CONTRACTORS AND SUBCONTRACTORS, AND SHALL INDEMNIFY AND HOLD HARMLESS THE UNITED STATES GOVERNMENT AND ITS CONTRACTORS AND SUBCONTRACTORS FOR ANY LIABILITIES, DEMANDS, DAMAGES, EXPENSES OR LOSSES THAT MAY ARISE FROM RECIPIENT'S USE OF THE SOFTWARE AND/OR TECHNICAL DATA, INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR RESULTING FROM, THE USE THEREOF. IF RECIPIENT FURTHER RELEASES OR DISTRIBUTES THE NASA SOFTWARE AND/OR TECHNICAL DATA, RECIPIENT AGREES TO OBTAIN THIS IDENTICAL WAIVER OF CLAIMS, INDEMNIFICATION AND HOLD HARMLESS, AGREEMENT WITH ANY ENTITIES THAT ARE PROVIDED WITH THE SOFTWARE AND/OR TECHNICAL DATA.

puma's People

Contributors

fedesemeraro avatar jcfergu avatar joseph-ferguson avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.