X-Git-Url: https://www.hackdaworld.org/gitweb/?p=physik%2Fposic.git;a=blobdiff_plain;f=posic.h;h=6374e0fe9a8510c6b13f035c18eb6d88b2535c47;hp=6a8131d0ebc0cfe90aabf8f9476e874d632ed982;hb=HEAD;hpb=83775c491117faa149281d0302fc8b8064d6b080 diff --git a/posic.h b/posic.h index 6a8131d..6374e0f 100644 --- a/posic.h +++ b/posic.h @@ -1,11 +1,18 @@ /* * posic.h - precipitation process of silicon carbide in silicon * - * author: Frank Zirkelbach + * author: Frank Zirkelbach * */ +#ifndef POSIC_H +#define POSIC_H + +/* includes */ + #define _GNU_SOURCE + +// system #include #include #include @@ -14,18 +21,26 @@ #include #include -#ifndef POSIC_H -#define POSIC_H +#include -#define RUNS 200 -#define TAU 0.001 +// swapped out functions +#include "math/math.h" +#include "list/list.h" +#include "random/random.h" -#define TEMPERATURE 273.0 +// moldyn core functions +#include "moldyn.h" -#define LEN_X 15 -#define LEN_Y 15 -#define LEN_Z 15 +// potentials +#include "potentials/harmonic_oscillator.h" +#include "potentials/lennard_jones.h" +#include "potentials/albe.h" +#ifdef TERSOFF_ORIG +#include "potentials/tersoff_orig.h" // obsolete & wrong! ;) +#else +#include "potentials/tersoff.h" +#endif -#define R_CUTOFF 20 +/* defines */ #endif