22 lines
503 B
C++
22 lines
503 B
C++
/** @file constants.hpp
|
|
*
|
|
* @author Cory Alexander Balaton (coryab)
|
|
* @author Janita Ovidie Sandtrøen Willumsen (janitaws)
|
|
*
|
|
* @version 0.1
|
|
*
|
|
* @brief Library of constants
|
|
*
|
|
* @bug No known bugs
|
|
* */
|
|
#ifndef __CONST__
|
|
#define __CONST__
|
|
|
|
#define K_E 138935.333 ///< Coulomb constant. unit: \f$\frac{u(\mu m)^3}{(\mu s)^2 e^2}\f$
|
|
|
|
#define T 96.4852558 ///< 1 Tesla. unit: \f$ \frac{u}{(\mu s) e} \f$
|
|
|
|
#define V 96485255.8 ///< 1 Volt. unit: \f$ \frac{u (\mu m)^2}{(\mu s)^2 e} \f$
|
|
|
|
#endif
|