From 04694fe065b8cab52fa878a5fc23e7159f2e548c Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Wed, 16 May 2018 12:12:06 +0000 Subject: [PATCH] Fixed the equation for energy and area a0 --- src/general.h | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/general.h b/src/general.h index fa1e669..7676000 100644 --- a/src/general.h +++ b/src/general.h @@ -195,11 +195,13 @@ ts_double znorm; ts_double area; // firstly needed for sh.c ts_double volume; // firstly needed for sh.c + ts_double energy; }; typedef struct ts_triangle ts_triangle; struct ts_triangle_list{ ts_uint n; + ts_double a0; ts_triangle **tria; }; typedef struct ts_triangle_list ts_triangle_list; @@ -258,6 +260,7 @@ long int nczmax; long int npoly; long int nmono; + long int internal_poly; long int nfil; long int nfono; long int R_nucleus; @@ -267,6 +270,8 @@ long int pswitch; long int constvolswitch; long int constareaswitch; + long int stretchswitch; + ts_double xkA0; ts_double constvolprecision; char *multiprocessing; long int brezveze0; @@ -372,4 +377,5 @@ int createPidFile(const char *progName, const char *pidFile, int flags); int lockRegion(int fd, int type, int whence, int start, int len); +char *libVersion(); #endif -- Gitblit v1.9.3