CAPE Documentation
====================

.. toctree::
    :caption: LICENSE
    :maxdepth: 1

    LICENSE

Welcome to CAPE, a computational aerosciences processing environment for
efficient interaction with several high-fidelity aerodynamics codes. This
includes tools for pre-processing, executing the codes, performing
post-processing tasks, and creating finished databases. The approach of Cape is
to provide tools that make users more efficient at some or all of the modeling
and analysis process. It may be useful to use CAPE for just one step of a
particular user's project, or it may be useful to use it for the entire
process.

:ref:`Installation <install>` is done using the standard Python packaging tool
``pip``.

Most users really would rather evaluate new tools by seeing some examples, so
here are the links to the example pages for the main solvers:

    * :ref:`Cart3D Examples Using pyCart <pycart-examples>`
    * :ref:`FUN3D Examples Using pyFun <pyfun-examples>`
    * :ref:`OVERFLOW Examples Using pyOver <pyover-examples>`

Currently, CAPE has interfaces for `Cart3D
<http://people.nas.nasa.gov/~aftosmis/cart3d/>`_, `OVERFLOW
<http://overflow.arc.nasa.gov>`_, and `FUN3D <http://fun3d.larc.nasa.gov/>`_.
The Cart3D interface, :mod:`cape.pycart` has been used for several NASA
projects. One example was the creation of an aerodynamic database for booster
separation for the Space Launch System, which included over 10,000 different
adaptive Cart3D runs in a 12-dimensional run matrix.

The FUN3D interface, :mod:`cape.pyfun`, reuses most of the code used to build
:mod:`cape.pycart`; and the OVERFLOW interface, :mod:`cape.pyover` was
constructed in a similar manner. All modules are built off of common tools in
the :mod:`cape` and :mod:`cape.cfdx` modulew, and so much of the usage is
common between the two interfaces. These interfaces can be used to run
OVERFLOW/FUN3D, interact with databases, and archive or clean up solutions.
There is a Python interface to solution files including easy dimensionalization
of state variables.

In addition to running CFD codes, CAPE contains a package called
:mod:`cape.attdb` for cleaning and processing numerical databases whether the
original data comes from CFD or not. The key tool from this package is the
class

    :class:`cape.attdb.rdb.DataKit`

which can read CSV files, other ASCII text data files, MATLAB ``.mat`` files,
Excel spreadsheets, and more.

Each CFD interface is a portmanteau of "Python" and the name of the solver. The
command-line interface is invoked with the commands ``pycart``, ``pyfun``, and
``pyover``. In addition, there are several scripts matching the glob
``p?_*.py`` and for isolated tasks such as converting grid formats, and there
is a ``run_*.py`` script for running the appropriate tasks for a single case of
each CFD interface.

**Cape Inputs and JSON Files**
Inputs to Cape can be given as either command-line arguments, input files
associated with the CFD solver, or JSON files. `JSON <http:www.json.org>`_ is a
simple but flexible format similar to XML. There are interpreters for many
languages.


**Common CAPE Capabilities**
The following bullet list of capabilities is common to all interfaces including
any that will be added in the future.

    * Automatically create parametrically-named folders for cases in a matrix

    * Copy input files to run folders and edit them according to run matrix
      variables and multiple phases of global input settings

    * Create PBS scripts and submit them automatically

    * Built-in variables such as Mach number, angle of attack, sideslip,
      Reynolds number, and temperature

    * Automated averaging of iterative histories and statistics for databases

    * Automated reports using LaTeX (usually supports Tecplot and ParaView
      images)

**pyCart Capabilities**
The Cart3D interface, pyCart, has quite a few capabilities.  Some highlights
and critical aspects are listed below.

    * Copy Cart3D input files to run files and edit them according to run
      matrix variables and global input settings

    * Simplified interface for refining initial volume mesh using component
      names

    * Rotate components (such as fins or separating bodies) using Euler angles
      or a hinge axis

    * Automated reports of iterative histories and Tecplot layouts

    * Interface for custom functions for more advanced run matrix variables
      such as thrust settings

The basic usage for this module is to create a file called :file:`pyCart.json`
and use the script ``pycart``.  In addition to this control file for pyCart,
several other Cart3D input files (or, more accurately, input template files)
can be provided or interfaced.  The names below are canonical names; it is
possible to use other file names when setting up configurations.

    * Cart3D input control file, :file:`input.cntl`
    * Surface triangulation file, :file:`Components.i.tri`
    * Surface triangulation component names, :file:`Config.xml`
    * If an adaptive run, an adaptive run script, :file:`aero.csh`
    * Run matrix, either specified within :file:`pyCart.json` or a file


**pyFun Capabilities**
The FUN3D interface, pyFun, is newer and has somewhat fewer capabilities,
although most of the database and reporting capabilities are inherited from
pyCart.  Some capabilities are highlighted below.

    * Copy FUN3D input files to run files and edit them according to run matrix
      variables and global input settings

    * Interface with AFLR3 for volume mesh generation, which can be used to
      have multiple bodies in different relative positions for each case in a
      run matrix

    * Interface to Chimera Grid Tools ``triload`` to calculate sectional loads

The basic usage for this module is to create a file called :file:`pyFun.json`
and use the script ``pyfun``.  The required FUN3D input files are described
below.

    * FUN3D run settings template, :file:`fun3d.nml`
    * Mesh file; a recommended format is AFLR3, :file:`*.ugrid`
    * Boundary condition file, :file:`*.mapbc`
    * Run matrix, either specified within :file:`pyFun.json` or a file

**pyOver Capabilities**
The OVERFLOW interface, pyOver, is also new but will have a rapidly expanding
set of capabilities.  Much of the database and report capabilities are
inherited from pyCart.  Some highlights are below.

    * Copy OVERFLOW input namelists and edit them according to run matrix
      variables and multiple phases of input settings

    * Highly generalized interface to OVERFLOW namelists that doesn't need
      great amounts of user preparation

    * Built-in interface to OVERFLOW *q* files with simple access to
      coefficients and dimensional states

The basic usage for this module involves a file :file:`pyOver.json`, and the
primary script is ``pyover``.  Required input files depend on whether the case
is being run in DCF or Pegasus5 mode.  In this module, the user is responsible
for informing pyOver which mesh files are required, although a default list is
defined.  In general the required files are the following.

    * OVERFLOW namelist template, :file:`overflow.inp`
    * Mesh files, usually in the ``common/`` folder
    * Run Matrix, either within :file:`pyOver.json` or in a CSV-like file

.. toctree::
    :maxdepth: 2
    :numbered:

    install
    moreinfo/index
    common/index
    pycart/index
    pyfun/index
    pyover/index
    bin/index

.. toctree::
    :maxdepth: 2
    :caption: Reference

    changelog


.. only:: html

   **API Documenattion**

    .. toctree::
        :maxdepth: 2

        api/index
        api/cape/index
        api/pycart/index
        api/pyfun/index
        api/pyover/index
        api/attdb/index
        api/tnakit/index

    **Testing**

    .. toctree::
        :glob:

        test/index-[23]-*

**Authors**

    * ``@ddalle``: Derek Dalle <derek.j.dalle@nasa.gov>
    * ``@serogers``: Stuart Rogers <stuart.e.rogers@nasa.gov>
    * ``@jmeeroff``: Jamie Meeroff <jamie.g.meeroff@nasa.gov>
    * ``@aburkhea``: Aaron Burkhead <aaron.c.burkhead@nasa.gov>
    * ``@dschauer``: Guy Schauerhamer <daniel.g.schauerhamer@nasa.gov>

**Contributing**

.. toctree::
    :maxdepth: 2

    contributing/index

**Notices**

Copyright © 2022 United States Government as represented by the Administrator
of the National Aeronautics and Space Administration.  All Rights Reserved.

**Disclaimers**

No Warranty: THE SUBJECT SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY OF
ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED
TO, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY
IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL BE ERROR
FREE, OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO THE
SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN
ENDORSEMENT BY GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT OF ANY RESULTS,
RESULTING DESIGNS, HARDWARE, SOFTWARE PRODUCTS OR ANY OTHER APPLICATIONS
RESULTING FROM USE OF THE SUBJECT SOFTWARE.  FURTHER, GOVERNMENT AGENCY
DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY SOFTWARE, IF
PRESENT IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT "AS IS."

Waiver and Indemnity:  RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE
UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY
PRIOR RECIPIENT.  IF RECIPIENT'S USE OF THE SUBJECT SOFTWARE RESULTS IN ANY
LIABILITIES, DEMANDS, DAMAGES, EXPENSES OR LOSSES ARISING FROM SUCH USE,
INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR RESULTING FROM, RECIPIENT'S
USE OF THE SUBJECT SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD HARMLESS THE
UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY
PRIOR RECIPIENT, TO THE EXTENT PERMITTED BY LAW.  RECIPIENT'S SOLE REMEDY FOR
ANY SUCH MATTER SHALL BE THE IMMEDIATE, UNILATERAL TERMINATION OF THIS
AGREEMENT.