#ifndef WARPX_CONST_H_ #define WARPX_CONST_H_ #include // Physical constants namespace PhysConst { static constexpr amrex::Real c = 299792458.; static constexpr amrex::Real ep0 = 8.854187817e-12; static constexpr amrex::Real mu0 = 1.2566370614359173e-06; static constexpr amrex::Real q_e = 1.6021764620000001e-19; static constexpr amrex::Real m_e = 9.10938291e-31; static constexpr amrex::Real m_p = 1.6726231000000001e-27; } namespace MathConst { static constexpr amrex::Real pi = 3.14159265358979323846; } #endif