Git Product home page Git Product logo

jingxic / seacas Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sandialabs/seacas

0.0 0.0 0.0 78.88 MB

The Sandia Engineering Analysis Code Access System (SEACAS) is a suite of preprocessing, postprocessing, translation, and utility applications supporting finite element analysis software using the Exodus database file format.

License: Other

CMake 3.85% Makefile 1.78% C 34.18% Python 2.51% Shell 0.73% Fortran 24.07% TeX 1.84% C++ 25.12% Roff 2.30% Yacc 0.04% CSS 0.02% HTML 3.25% Lex 0.06% Pascal 0.01% M4 0.14% Perl 0.05% MATLAB 0.05% Objective-C 0.01%

seacas's Introduction

SEACAS [Documentation]

Build Status Analysis Status

Get the sources

git clone https://github.com/gsjaardema/seacas.git

This will create a directory that will be referred to as seacas in the instructions that follow. You can rename this directory to any other name you desire. Set an environment variable pointing to this location by doing:

cd seacas && export ACCESS=`pwd`

Build instructions

Automatically download and build dependencies (Third-Party Libraries)

There are a few externally developed third-party libraries (TPL) that are required to build SEACAS. You can build the libraries manually as detailed in the following section, or you can use the install-tpl.sh script which will download and install the HDF5, NetCDF, CGNS, MatIO, and (if MPI set) PNetCDF libraries.

  • To use the script, simply type ./install-tpl.sh
  • The default behavior can be modified via a few environment variables:
Variable Values Default Description
COMPILER clang, gnu gnu What compiler should be used for non-parallel build
JOBS {count} 2 Number of "jobs" used for simultaneous compiles
DOWNLOAD YES, NO YES Should TPLs be downloaded.
BUILD YES, NO YES Should TPLs be built and installed.
FORCE YES, NO NO Force downloading and building even if lib is already installed.
SHARED YES, NO YES Build shared libraries is YES, archive (.a) if NO
MPI ON, OFF OFF If ON, then build parallel capability
NEEDS_ZLIB YES, NO NO If system does not have zlib installed, download and install it.
CGNS YES, NO YES Should CGNS TPL be built.
MATIO YES, NO YES Should matio TPL be built.
GNU_PARALLEL YES, NO YES Should GNU parallel script be built.
  • NOTE: The DOWNLOAD and BUILD options can be used to download all TPL source; move to a system with no outside internet access and then build/install the TPLs.
  • The arguments can either be set in the environment as: export COMPILER=gnu, or passed on the script invocation line: COMPILER=gnu ./install-tpl.sh

Download and build dependencies (Third-Party Libraries)

There are a few externally developed third-party libraries (TPL) that are required to build SEACAS. You can build the libraries manually as detailed below, or you can use the install-tpl.sh script as described in the previous section.

Zoltan

A snapshot of zoltan_distrib_v3.83.tar.gz is provided in seacas/packages/zoltan. This will be built automatically as part of the SEACAS build process.

HDF5

If you are using the netcdf-4 capability in the netcdf library or are using the MatIO library for conversion of exodus to/from matlab format, then you will need the hdf5 library.

** It is recommended at this time that you do not use the hdf5-1.10.X release series. Please use the hdf5-1.8.X releases. **

The hdf5 library is used for the netcdf4 capability in netcdf which in turn is used by exodus. The netcdf4 capability is typically used for large models (>150 million elements); if you are not planning to create or read models of this size, you do not have to build hdf5.

NetCDF

The most recent released version is recommended. For use with Exodus, some local modifications to the netcdf.h include file are required if using verions prior to 4.5.1. See NetCDF-Mapping.md for an explanation of why these modifications are required (or highly recommended)

  • Download the latest netcdf-c release from http://www.unidata.ucar.edu/downloads/netcdf/index.jsp and put it inside seacas/TPL/netcdf

  • cd TPL/netcdf

  • tar zxvf netcdf-4.6.1.tar.gz

  • If the version is prior to 4.5.1, then you need to modify the following defines in seacas/TPL/netcdf/netcdf-4.6.1/include/netcdf.h. Versions 4.5.1 or later do not check these limits and can be run unmodified.

    #define NC_MAX_DIMS     65536    /* max dimensions per file */
    #define NC_MAX_VARS     524288   /* max variables per file */
    
  • If you did not build HDF5, then you will need to edit the runcmake.sh script and remove all lines mentioning HDF5 and also set ENABLE_NETCDF_4 to OFF

  • cd netcdf-4.6.1 and enter the command:

    mkdir build
    cd build
    sh ../../runcmake.sh
    
  • make && make install

MatIO

The MatIO library is used in the exo2mat and mat2exo programs which convert an exodus file to and from a MATLAB binary file. To use this do:

  • Download matio via git:

  • cd TPL/matio

  • git clone https://github.com/tbeu/matio.git

  • cd matio and enter the command:

    ./autogen.sh
    sh ../runconfigure.sh
    
  • make && make install

GNU Parallel

GNU Parallel is a shell tool for executing jobs in parallel using one or more computers. A job is typically a single command or a small script that has to be run for each of the lines in the input. The typical input is a list of files, a list of hosts, a list of users, or a list of tables. In SEACAS, this is only used by epup which runs multiple epu jobs concurrently. To build:

  • Download the most recent version of the library from ftp://ftp.gnu.org/gnu/parallel/parallel-latest.tar.bz2.

    cd TPL/parallel
    tar jxvf /path/to/parallel-latest.tar.bz2
    cd parallel-20150522
    sh ../runconfigure.sh
    
  • make && make install

CGNS

Experimental support for CGNS in the IOSS library is being added. To use this capability, you will need to download and install the CGNS library:

  • Download CGNS via git:
```
cd TPL/cgns
git clone https://github.com/CGNS/CGNS.git
```
  • Build using CMake.
    • Modify TPL/cgns/runconfigure.sh to meet your environment
    • cd CGNS
    • mkdir build
    • cd build
    • ../../runconfigure.sh
    • make && make install

DataWarehouse

The Data Warehouse is a collection of data management tools that Sandia is currently developing to improve how datasets migrate between memory and storage resources in a distributed system. While the software is currently only available internally to Sandia, there will be an open source release of the tools during Fall of 2017. The Data Warehouse extensions to SEACAS are intended to serve as a placeholder for the upcoming release and are not intended for use by external developers at this time.

The repository data-warehouse-release is a superbuild for the Data Warehouse tools and was created to make the build process as easy as possible. It includes the files INSTALL.md and INSTALL_TPL.md which contain instructions for building Data Warehouse and it's TPLs: Boost, googletest, libfabric, and libhio (optional). These builds are straightforward so a "runconfigure.sh" script is left to the end-user. Note that it's possible to supply your own build of these tools. Following the SEACAS pattern for building TPLs:

cd TPL
git clone [email protected]:nessie-dev/data-warehouse-release.git
follow the instructions in INSTALL_TPL.md and then INSTALL.md
consider installing data-warehouse-release and it's TPLs to the directory set in  the $ACCESS env. var.

To build SEACAS with an installation of data-warehouse-release and it's TPLs, add the following lines to the list of cmake command arguments as found in the top-level cmake-config file. Where DataWarehouse_PATH in environment variable that contains the path to the top-level install directory for the Data Warehouse, and HAVE_DATA_WAREHOUSE={ON|OFF} is a variable defined in cmake-config.

-DTPL_ENABLE_DATAWAREHOUSE:BOOL=${HAVE_DATA_WAREHOUSE}           \
-DDataWarehouse_LIBRARY_DIRS:PATH=${DataWarehouse_PATH}/lib     \
-DDataWarehouse_INCLUDE_DIRS:PATH=${DataWarehouse_PATH}/include \

Configure, Build, and Install SEACAS

At this time, you should have all external TPL libraries built and installed into ${ACCESS}/lib and ${ACCESS}/include. You are now ready to configure the SEACAS CMake build.

  • cd $ACCESS
  • mkdir build
  • cd build
  • edit the ${ACCESS}cmake-config file and adjust compilers and other settings as needed.
  • enter the command ../cmake-config and cmake should configure everything for the build.
  • make && make install
  • If everything works, your applications should be in ${ACCESS}/bin

Testing

There are a few unit tests for zoltan, exodus, and aprepro that can be run via make test if you configured with -D SEACASProj_ENABLE_TESTS=ON.

There is also a system-level test that just verifies that the applications can read and write exodus files correctly. This test runs off of the installed applications. To run do:

  • make install
  • cd ../SEACAS-Test
  • make clean; make

This will run through several of the SEACAS applications creating a mesh (exodus file) and then performing various manipulations on the mesh. If the test runs successfully, there is some hope that everything has built and is running correctly.

Exodus

If you only want the exodus library, then follow most of the above instructions with the following exceptions:

  • You can either clone entire source tree as above, or you can download a zip file containing only the exodus source (and build-related files). The url for the zip file is https://github.com/gsjaardema/seacas/archive/exodus.zip.
  • You only need the netcdf and optionally hdf5 libraries
  • Use the cmake-exodus file instead of cmake-config.
  • This will build, by default, a shared exodus library and also install the exodus.py Python interface.

License

SEACAS is licensed under the Modified BSD License. See the LICENSE file for details.

The following externally-developed software routines are used in some of the SEACAS applications and are under a separate license:

Routine Where Used License
getline packages/seacas/libraries/aprepro_lib/apr_getline_int.c MIT
getline packages/seacas/libraries/suplib_c/getline.c BSD
GetLongOpt packages/seacas/libraries/suplib_cpp/GetLongOpt.C public domain
adler hash packages/seacas/libraries/suplib_c/adler.c zlib
MurmurHash packages/seacas/libraries/ioss/src/Ioss_FaceGenerator.C public domain
json include file packages/seacas/libraries/ioss/src/visualization/ MIT
terminal_color packages/seacas/libraries/suplib_cpp zlib

Ubuntu

There is a PPA available for SEACAS that is updated nightly from SEACAS master. Anyone using Ubuntu can now just add the PPA and do

sudo add-apt-repository ppa:nschloe/seacas-nightly
sudo apt-get update

and then

sudo apt-get install seacas-bin

to get the SEACAS binaries. You can also install 'libseacas-dev' or 'libseacas0'. This is provided by Nico Schlömer.

Contact information

Greg Sjaardema ([email protected], [email protected])

seacas's People

Contributors

gsjaardema avatar gdsjaar avatar jbcarleton avatar nschloe avatar raovgarimella avatar npe9 avatar bartlettroscoe avatar mathstuf avatar bourdin avatar tbeu avatar ecoon avatar gjtempl avatar milljm avatar johntfoster avatar micahahoward avatar rrdrake avatar rppawlo avatar natis1 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.