-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.h
More file actions
29 lines (23 loc) · 709 Bytes
/
constants.h
File metadata and controls
29 lines (23 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**\brief Contains Various Physical Constants for the physics system
* \author Henry J Schmale
* \date March 17, 2015
* \file constants.h
*/
#ifndef CONSTANTS_H_INC
#define CONSTANTS_H_INC
/** \brief Coulomb's Constant in N*m^2/C^2
*
* A proportaionality constant for working with equations dealing
* with electricity in physics.
*/
const double ELECTRIC_FORCE = 8.9875517873681764E9;
/** \brief Charge of an electron in Columbs
*/
const double CHARGE_ELECTRON = -1.6021766E-19;
/** \brief Charge of a proton in Columbs
*/
const double CHARGE_PROTON = 1.6021766E-19;
/** \brief Mass of an electron in kilograms
*/
const double MASS_ELECTRON = 9.10938E-31;
#endif // CONSTANTS_H_INC