summaryrefslogtreecommitdiff
path: root/lib/torus.h
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2018-07-26 16:18:40 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2018-07-26 16:18:40 -0400
commit1160baa61bad605cf8a1d583e8ae356a54a942df (patch)
treee7c865f38836a9a03349bbd803aae8be9b37a200 /lib/torus.h
parent870555f569bc63fecdc7c0b16e72e4e002f21c13 (diff)
downloadc++-1160baa61bad605cf8a1d583e8ae356a54a942df.tar.gz
c++-1160baa61bad605cf8a1d583e8ae356a54a942df.tar.bz2
c++-1160baa61bad605cf8a1d583e8ae356a54a942df.zip
many changes, including new spin spaces and groups and cleaning up core library code
Diffstat (limited to 'lib/torus.h')
-rw-r--r--lib/torus.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/lib/torus.h b/lib/torus.h
new file mode 100644
index 0000000..2aead52
--- /dev/null
+++ b/lib/torus.h
@@ -0,0 +1,64 @@
+
+#pragma once
+
+#include <cmath>
+#include <array>
+#include "types.h"
+
+template <q_t n>
+class torus_t : public std::array<double, n> {
+ public:
+ typedef std::array<double, n> M_t;
+ typedef std::array<double, n> F_t;
+
+ torus_t() {
+ this->fill(0);
+ }
+
+ inline torus_t<n> operator*(v_t a) const {
+ torus_t<n> x;
+ for (q_t i = 0; i < n; i++) {
+ x[i] = a * (*this)[i];
+ }
+
+ return x;
+ }
+
+ inline torus_t<n> operator*(double a) const {
+ torus_t<n> x;
+ for (q_t i = 0; i < n; i++) {
+ x[i] = a * (*this)[i];
+ }
+
+ return x;
+ }
+
+ inline torus_t<n>& operator+=(const torus_t<n>& x) {
+ for (q_t i = 0; i < n; i++) {
+ (*this)[i] += x[i];
+ }
+ }
+
+ inline torus_t<n>& operator-=(const torus_t<n>& x) {
+ for (q_t i = 0; i < n; i++) {
+ (*this)[i] -= x[i];
+ }
+ }
+};
+
+template <q_t n>
+double norm_squared(const torus_t<n>& x) {
+ double tmp = 0;
+ for (const double& xi : x) {
+ tmp += pow(xi, 2);
+ }
+ return tmp;
+}
+
+void write_magnetization(const torus_t<n>& x, FILE *outfile) {
+ for (const double& xi : x) {
+ float tmp_xi = (float)xi;
+ fwrite(&tmp_xi, sizeof(float), 1, outfile);
+ }
+}
+