Go to the source code of this file.
|
| namespace | EM |
| | ElectromagneticConstants contains various constants useful in the Electromagnetic module, such as the complex number j, vacuum electric permittivity, etc.
|
| |
|
| static const std::complex< double > | EM::j (0, 1) |
| | Complex number "j" (also known as "i")
|
| |
|
| static const Real | EM::mu_0 = 4.0 * libMesh::pi * 1.0e-7 |
| | Magnetic permeability of free space in SI units (H/m)
|
| |
| static const Real | EM::c = 299792458 |
| | Speed of light in vacuum in SI units (m/s)
|
| |
| static const Real | EM::eps_0 = 1 / (mu_0 * c * c) |
| | Electric permittivity of free space in SI units (F/m)
|
| |