aboutsummaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-08-28 11:20:16 +0200
committerAnton Khirnov <anton@khirnov.net>2016-08-28 11:20:16 +0200
commitd451e140926584ae59b0a0552d5463b9d6114ac2 (patch)
tree44a989b0e7c7b7cec05f93578a4911d80165c91f /internal.h
parentd1cb9dbdea9d777833cd7f2148ea7ac5bcdb7d8b (diff)
Switch to polar coordinates in the solver.
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index 501d390..372cc0d 100644
--- a/internal.h
+++ b/internal.h
@@ -38,8 +38,14 @@
*/
#define EPS 1E-08
+enum CoordSystem {
+ COORD_SYSTEM_CYLINDRICAL,
+ COORD_SYSTEM_RADIAL,
+};
typedef struct BDPriv {
+ int coord_system;
+
BasisSetContext *basis[2];
QFuncContext *qfunc;