14 lines
246 B
Python
Executable file
14 lines
246 B
Python
Executable file
#
|
|
# constants
|
|
#
|
|
|
|
OneAtm = 101325.0
|
|
GasConstant = 8314.0
|
|
Avogadro = 6.022136736e26
|
|
|
|
GasConst_cal_mol_K = 1.987
|
|
Boltzmann = GasConstant / Avogadro
|
|
StefanBoltz = 5.67e-8
|
|
ElectronCharge = 1.602e-19
|
|
Pi = 3.1415926
|
|
Faraday = ElectronCharge * Avogadro
|