X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=posic.h;h=18d14d91e90ede46a9a793903c2280dbdaaa7e53;hb=0d2926a23ea7bbf7654da88770c827ad041357a5;hp=854dfb88bb6c20be4fb4f6ede5a192edb2d87ebb;hpb=3961d57b84198e336085fd79263fec40837066a0;p=physik%2Fposic.git diff --git a/posic.h b/posic.h index 854dfb8..18d14d9 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,24 @@ #include #include -#ifndef POSIC_H -#define POSIC_H +#include -#define RUNS 15000 -#define TAU 0.000001 +// swapped out functions +#include "math/math.h" +#include "list/list.h" +#include "visual/visual.h" +#include "random/random.h" -#define TEMPERATURE 273.0 - -#define LEN_X 1 -#define LEN_Y 1 -#define LEN_Z 1 +// 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