git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6378 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2011-06-13 22:22:33 +00:00
parent abec044421
commit 7025ec968f
21 changed files with 6425 additions and 1 deletions

View File

@ -0,0 +1,17 @@
# ifndef _TCPDEFS_H
# define _TCPDEFS_H
//Constants
const double sqr_2_over_3 = 0.816496580927726;
const double two_over_sqr_pi = 1.12837916709551;
# ifndef PLASMA_UNITS // using GridMD units: A, eV, m_proton=1
const double h_plank=0.06442021524615668;
const double h_sq=h_plank*h_plank;
const double m_electron=1./1836.1527556560675;
const double m_proton=1.;
const double coul_pref=14.39965172693122; // e^2/(4*pi*eps0), eV*A
const double eV_to_K=11604.447517053462; // Temperature in K correspondent to 1eV
# endif
# endif