EAS3

From Wikipedia, the free encyclopedia
EAS3
Original author(s)Inst. f. Aero- & Gasdynamik (University of Stuttgart)
Initial releaseAugust 1999; 24 years ago (1999-08)
Stable release
1.6.7 / April 14, 2009; 14 years ago (2009-04-14)
Written inFortran, C
Operating systemall POSIX systems
Platformplatform independent
Available inEnglish / German
Typepostprocessing, computer file format
LicenseMIT License
Websitewiki.iag.uni-stuttgart.de/eas3wiki

EAS3 (EAS = Ein-Ausgabe-System) is a software toolkit for reading and writing structured binary data with geometry information and for postprocessing of these data. It is meant to exchange floating-point data according to IEEE standard between different computers, to modify them or to convert them into other file formats. It can be used for all kinds of structured data sets. It is mainly used in the field of direct numerical simulations.

EAS3 package[edit]

The complete package consists of libraries intended for usage in own codes and a separate command-line tool. It is written in Fortran and C and runs on all POSIX operating systems. The libraries include different numerical algorithms and subroutines for reading and writing files in the binary EAS3 file format. The read/write routines are provided in Fortran and C. Implemented numerical methods include, for example, Fast Fourier transform, Thomas algorithm and interpolation routines. The libraries are also suitable for vector computers.

History[edit]

EAS3 has been developed at the Institut für Aerodynamik und Gasdynamik (IAG) of the University of Stuttgart. The previous versions (EAS, EAS2) range back to the end of the 1980s, when computer power allowed the first spatial DNS computations.[1] The upcoming amount of data required efficient handling and postprocessing. Typically, simulations were, and are still today, performed on a high-performance computer and afterwards postprocessed on other machines of opposite endianness. This required an endianness-independent file format for data handling.

Since the publication of EAS3 in the 1999, the software has been developed continuously by members of the involved institutes. Since 2007, EAS3 is also available via the heise software directory.[2] EAS3 is used by applications within the European PRACE project.[3] The current version number is 1.6.7 from April, 2009.

File Format[edit]

EAS3 (Ein-Ausgabesystem 3)
Filename extension
.eas
Magic numberEAS3_I8R8
Developed byUniversität Stuttgart
Type of formatbinary format for floating point data

The EAS3 file format is used to store floating point data in IEEE format and to exchange the files between different computer architectures (little/big endian). The data is organized as parameters with one parameter being a one-, two- or three-dimensional floating point array. Several of these parameters may be combined to one time step. This allows to store five-dimensional arrays. Data can be written in single-precision (32 Bit), double-precision (64 Bit) or quadruple-precision (128 Bit). Geometry information for the different directions are saved in the header of the file. It is also possible to store additional information in user defined arrays there. With the file size being limited only by the computer itself (e.g. file system), EAS3 files are suitable for large simulations and thus for high-performance computing.[4][5]

Functionality[edit]

The actual EAS3 executable is a command-line interface for alteration of EAS3 files. The implemented commands range from basic operations, e.g. simple computations, file operations, to rather complex operations like Fourier transformation or the computation of derivatives. Specific commands for DNS data are also available, e.g. the lambda2 vortex criterion. As the commands are read from standard input, EAS3 may be used in shell scripts for automated calls.

Screenshot of EAS3: Computing the spatial derivative along the first spatial dimension.

Outline of important functions

  • file management: rearrangement, attaching two files, cutting
  • conversion to other file formats (ASCII, Covise, Tecplot)
  • mathematical operationes: basic operations, logarithm, etc.
  • derivatives and integration
  • interpolation
  • data reduction: mean values, RMS-values, etc.
  • Fourier transformation: single/double, real/complex
  • DNS specific: vortex criterion

Installation[edit]

The sources can be obtained directly from the CVS repository or one may download a zipped tar file. Makefiles for different machine types are included, providing an easy compilation. As linking of object files, created with different Fortran compilers can cause problems, binary packages (RPM, .deb) are not offered up to now.

Advantages and disadvantages[edit]

Advantages[edit]

The main profit for the programmer is the easy implementation of reading/writing large (>2GB) binary data sets. The library provides that the data is always written big endian. The resulting platform independence allows data exchange between different hardware architectures, e.g. supercomputers. The users benefits from the different methods provided for postprocessing, which can be automated using shell scripts.

Disadvantages[edit]

Being specialized on structured grids may be a problem for some users. Up to now, only cartesian grids or a representation of the data in spectral space are implemented. Data in other types of data alignment, e.g. cylindrical coordinates, can be stored in EAS3 files but the existing postprocessing commands may not be used. As the usually used visualization programs do not support the EAS3 file format directly, it is often necessary to convert the data to the corresponding file format. Commands in the EAS3 program are given by a text interface, a graphical user interface does not exist. Completion of the commands in the EAS3 command line provides support for interactive usage but for an extensive help, the descriptions on the webpage are necessary.

License[edit]

EAS3 is published under the MIT License. The MIT License is a free software license originating at the Massachusetts Institute of Technology (MIT). Specifically, it is a GPL-compatible permissive license, meaning that it permits reuse within proprietary software on the condition that the license is distributed with that software.

Usage[edit]

Related file formats[edit]

References[edit]

  1. ^ H. Fasel, U. Rist, U. Konzelmann: Numerical investigation of the three-dimensional development in boundary layer transition, AIAA Journal, Vol. 28, p. 29-37, 1990
  2. ^ EAS3 page at heise software directory
  3. ^ Website Archived 2009-06-28 at the Wayback Machine of Partnership for advanced computing in Europe
  4. ^ A. Babucke, M. Kloker, U. Rist: Direct Numerical Simulation of a Serrated Nozzle End for Jet-Noise Reduction, in High Performance Computing in Science and Engineering 07, p. 319-338, ISBN 978-3-540-74738-3, Springer 2008
  5. ^ J. Linn, M. Kloker: Direct Numerical Simulation of Film Cooling in Hypersonic Boundary-Layer Flow, in High Performance Computing in Science and Engineering 08, p. 171-189, ISBN 978-3-540-88301-2, Springer 2009

External links[edit]