-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
415 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#ifndef NJOY_CONSTANTS_PHYSICS_HPP | ||
#define NJOY_CONSTANTS_PHYSICS_HPP | ||
#endif // NJOY_CONSTANTS_PHYSICS_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#ifndef NJOY_CONSTANTS_PHYSICS_CODATA_HPP | ||
#define NJOY_CONSTANTS_PHYSICS_CODATA_HPP | ||
|
||
namespace njoy{ | ||
namespace constants{ | ||
namespace physics{ | ||
|
||
static SpeedOfLight_t{}; | ||
static constexpr SpeedOfLight_t c{}; | ||
static constexpr SpeedOfLight_t speedOfLight{}; | ||
|
||
} | ||
} // namespace constants | ||
} // namespace njoy | ||
#endif // NJOY_CONSTANTS_PHYSICS_CODATA_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef NJOY_CONSTANTS_PHYSICS_CODATA2014_HPP | ||
#define NJOY_CONSTANTS_PHYSICS_CODATA2014_HPP | ||
|
||
#include "constants/physics/CODATA.hpp" | ||
|
||
namespace njoy{ | ||
namespace constants{ | ||
namespace physics{ | ||
|
||
} | ||
} // namespace constants | ||
} // namespace njoy | ||
#endif // NJOY_CONSTANTS_PHYSICS_CODATA2014_HPP | ||
|
Oops, something went wrong.