summaryrefslogtreecommitdiff
path: root/src/measurements.hpp
blob: 2bc5bae95f5a62bcd2661ff07f4f0b11da01f61f (plain)
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

#include <vector>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <list>
#include <fstream>
#include <string>
#include <cinttypes>
#include <sstream>
#include <functional>
#include <iostream>
#include <valarray>
#include <array>

#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/connected_components.hpp>
#include <boost/graph/depth_first_search.hpp>
#include <boost/range/combine.hpp>
#include <boost/foreach.hpp>

#include <fftw3.h>

#include <network.hpp>
#include <hooks.hpp>

struct EdgeProperties {
  unsigned int index;
};

typedef boost::adjacency_list<boost::listS, boost::vecS, boost::undirectedS, boost::no_property, EdgeProperties> Graph;

class ma : public hooks {
  // need:
  //  - interface for turning on and off specific measurements
  //
  private:
    double *fftw_forward_in;
    fftw_complex *fftw_forward_out;
    fftw_complex *fftw_reverse_in;
    double *fftw_reverse_out;
    fftw_plan forward_plan;
    fftw_plan reverse_plan;
    unsigned int N;
    unsigned int Lx;
    unsigned int Ly;
    double beta;
    Graph G;
    
    // measurement storage
    std::vector<uint64_t> sc; // cluster size distribution
    std::vector<uint64_t> sa; // avalanche size distribution
    std::vector<uint64_t> sd; // avalanche size distribution
    std::vector<uint64_t> sb; // bin size distribution
    std::vector<uint64_t> Ccc; // cluster-cluster correlations
    std::vector<uint64_t> Css; // surface-surface correlations
    std::vector<uint64_t> Cmm; // surface-surface correlations
    std::vector<uint64_t> Caa; // avalanche-avalanche correlations
    std::vector<uint64_t> Cdd; // damage-damage distribution
    std::vector<uint64_t> Cll; // damage-damage distribution
    std::vector<uint64_t> Cee; // damage-damage distribution
    uint64_t Nc;
    uint64_t Na;

    std::ofstream bondfile;

  public:
    long double lv;


    std::list<std::list<unsigned int>> avalanches;

    ma(unsigned int Lx, unsigned int Ly, double beta);
    ~ma();

    void pre_fracture(const network &) override;
    void bond_broken(const network& net, const current_info& cur, unsigned int i) override;
    void post_fracture(network &n) override;
};