-
Notifications
You must be signed in to change notification settings - Fork 6
/
model_ising1dmet.hpp
86 lines (60 loc) · 2.04 KB
/
model_ising1dmet.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* Copyright (c) 2012, Robert Rueger <[email protected]>
*
* This file is part of SSMC.
*
* SSMC is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* SSMC is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with SSMC. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _MODEL_ISING1DMET_H_INCLUDED
#define _MODEL_ISING1DMET_H_INCLUDED
#include <iostream>
#include <vector>
#include <cmath>
#include <map>
using namespace std;
#include <gsl/gsl_rng.h>
#include <png++/png.hpp>
#include "systemmodel.hpp"
#include "isingspin.hpp"
class IsingModel1d: public SystemModel
{
// ----- 1D ISING MODEL -----
protected:
double J;
vector<IsingSpin> spin;
// finite size correction mode
unsigned int fsize_correction_mode;
bool fsize_ordered_phase;
// precalculated exponentials
map <double, double> exp_precalc;
public:
IsingModel1d( const unsigned int& N, const bool& periodic,
const double& J, const double& B, const double& T,
const unsigned int& fsize_correction_mode, const string& cwd );
unsigned int spin_count() const;
png::image< png::index_pixel > get_image() const;
bool prepare( const char& mode );
// ----- METROPOLIS ALGORITHM WITH SINGLE SPIN FLIP -----
void metropolis_singleflip();
void mcstep();
void mcstep_dry( const unsigned int& k_max );
// ----- MEASUREMENT FUNCTIONS -----
double H() const;
double h() const;
unsigned long int t() const;
int M() const;
double m() const;
vector<double> ss_corr() const;
};
#endif // _MODEL_ISING1DMET_H_INCLUDED