The CFD General Notation System (CGNS) provides a standard for recording and recovering computer data associated with the numerical solution of fluid dynamics equations.
-
Install HDF5 on your system.
- HDF5 can use the standard GNU autotools, so
./configure
,make
,sudo make install
should install HDF5 without problems on most systems.
- HDF5 can use the standard GNU autotools, so
-
Unpack the tar ball containing the source code into some directory.
-
Create a new directory in which to build the library.
-
Use
cmake
to initialize the build tree.user@hostname:build_path$ cmake /path/to/cgns/sources/
-
Use
ccmake
to edit the control variables as needed.user@hostname:build_path$ ccmake .
- The path to the HDF5 library should be specified with
CMAKE_PREFIX_PATH=$HDF_DIR
for linking with a specific HDF5 version.- If HDF5 is built with parallel-IO support via MPI, the
HDF5_NEED_MPI
flag must be set totrue
. - If HDF5 is built with
zlib
andszip
support, these need to be flagged withHDF5_NEED_ZLIB
andHDF5_NEED_SZIP
as well as the paths for those libraries.
- If HDF5 is built with parallel-IO support via MPI, the
- Fortran can be enabled by toggling the
CGNS_ENABLE_FORTRAN
variable.- A view of the attempt to autodetect the correct interface between Fortran and C is show, setting the value of
FORTRAN_NAMING
. - For
gfortran
andpgf90
the value ofFORTRAN_NAMING
should beLOWERCASE_
.
- A view of the attempt to autodetect the correct interface between Fortran and C is show, setting the value of
- The build system must be reconfigured after variable changes by pressing
c
. Variables who's value has changed are marked with a*
in the interface. - After configuration, the
Makefile
s must be generated by pressingg
.
- The path to the HDF5 library should be specified with
-
Use
make
to build the library.user@hostname:build_path$ make
- A colorized review of the build process should follow.
-
Installation of the library is accomplished with the
install
target of the makefile.user@hostname:build_path$ make install
- You must have permissions to alter the directory where CGNS will be installed.
- Install HDF5 on your system.
- HDF5 can use the standard GNU autotools, so
./configure
,make
,sudo make install
should install HDF5 without problems on most systems.
- HDF5 can use the standard GNU autotools, so
- Typically the standard
./configure
,make
,make install
will suffice. - Sample scripts for building parallel CGNS can be found in
src/SampleScripts
.
The distribution and use of the CGNS software is covered by the following license:
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
-
The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
-
Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
-
This notice may not be removed or altered from any source distribution.
This license is borrowed from the zlib/libpng License:
http://www.opensource.org/licenses/zlib-license.php
and supersedes the GNU Lesser General Public License (LGPL) which previously governed the use and distribution of the software.
For details on the policy governing the distribution of the CGNS standard and software see:
http://www.grc.nasa.gov/www/cgns/charter/principles.html
CGNS uses the branching/release model as summarized at: