src/PDE/CompFlow/Physics/DG.hpp file

Physics configurations for compressible flow using discontinuous Galerkin finite element methods.

Contents

This file configures all Physics policy classes for compressible flow implementied using discontinuous Galerkin finite element discretizations, defined in PDE/CompFlow/DGCompFlow.h.

General requirements on CompFlow Physics policy classes:

  • Must define the static function type(), returning the enum value of the policy option. Example:

    static ctr::PhysicsType type() noexcept {
      return ctr::PhysicsType::EULER;
    }

    which returns the enum value of the option from the underlying option class, collecting all possible options for Physics policies.

Namespaces

namespace inciter
Inciter declarations and definitions.