-
Notifications
You must be signed in to change notification settings - Fork 1
/
honeycombspinicearray.h
43 lines (33 loc) · 1.4 KB
/
honeycombspinicearray.h
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
#ifndef HONEYCOMBSPINICEARRAY_H
#define HONEYCOMBSPINICEARRAY_H
#include <string>
#include "PartArray.h"
#include "honeycombspinicecell.h"
#include "savehelper.h"
#include "loadhelper.h"
class HoneycombSpinIceArray : public PartArray
{
public:
HoneycombSpinIceArray();
HoneycombSpinIceArray(const HoneycombSpinIceArray& sys);
~HoneycombSpinIceArray();
HoneycombSpinIceArray& operator = (const HoneycombSpinIceArray& sys);
/**
* @brief dropHoneyComb Создать решетку гексагональной формы
* @param m Количество ячеек по горизонтали
* @param n Количество ячеек по вертикали
* @param a Расстояние между двумя соседними частицами honeycomb решетки
* @param tmp Шаблон добавляемой частицы. Будут перезаписываться координаты и направление магнитного момента (длина сохраняется)
*/
void dropHoneyComb(int m, int n, double a, Part * tmp = 0);
StateMachineFree groundState();
StateMachineFree maximalState();
virtual void clear();
virtual void load(std::string file);
virtual void save(std::string file);
vector<HoneycombSpinIceCell*> cells;
private:
int m,n;
void clearCells();
};
#endif // HONEYCOMBSPINICEARRAY_H