forked from JamesdeLisle/2D-Chern-Number
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
25 lines (20 loc) · 799 Bytes
/
main.cpp
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
#include "twodwind.h"
#include <iostream>
int main()
{
double mumin_ = 0.0; //minimum chemical potential
double mumax_ = 6.0; //maximum chemical potential
int muint_ = 61; //descritisation of chemical potential
double deltamin_= 0.0; //minimum pairing coupling
double deltamax_= 4.0; //maximum pairing coupling
int deltaint_ = 61; //descretisation of pairing coupling
int pint_ = 20; //descretisation of momentum space
//wind test(1.0,1.0,150);
//std::cout << test.getWind();
//chern test(-1.0,3.0,200);
//std::cout << test.getChern();
//sys test(2,2,1.0,1.0);
//std::cout << test.getgap();
phasespace PS(mumin_, mumax_, muint_, deltamin_, deltamax_, deltaint_, pint_);
return 0;
}