-
Notifications
You must be signed in to change notification settings - Fork 0
/
BEC_harm_lattice_kick.cpp
executable file
·130 lines (103 loc) · 3.17 KB
/
BEC_harm_lattice_kick.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#include"fftw3.h"
#include"headers/split_step.h"
#include<vector>
#include<iostream>
#include"headers/bec.h"
#include<algorithm>
#include<functional>
#include<iterator>
#include<cmath>
#include<complex>
#include"headers/BEC_Groundstate.h"
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/io.hpp>
using namespace std;
int main(int argc, char* argv[]){
typedef std::vector<double> Vector;
typedef std::vector<complex<double> > Cvector;
typedef boost::numeric::ublas::matrix<double> Matrix;
typedef complex<double> complex_type;
typedef fftw_complex complex_c_type;
typedef vector<complex<double> >::size_type size_t;
const double pi = 4.*atan(1.);
double K = 0.1;
double g = 0.1;
double maxt = 20.;
const double L = 10;
double mynorm= 0;
int period = 10000;
int N=1024;
switch(argc){
case 1:
break;
case 2:
K=atof(argv[1]);
break;
case 3:
K=atof(argv[1]);
g=atof(argv[2]);
break;
case 4:
K=atof(argv[1]);
g=atof(argv[2]);
maxt=atof(argv[3]);
break;
case 5:
K=atof(argv[1]);
g=atof(argv[2]);
maxt=atof(argv[3]);
period = atoi(argv[4]);
break;
case 6:
K=atof(argv[1]);
g=atof(argv[2]);
maxt=atof(argv[3]);
period = atoi(argv[4]);
N=atoi(argv[5]);
break;
default:
break;
}
const double deltat = 2.*pi/double(period);
typedef complex<double> complex_type;
typedef fftw_complex complex_c_type;
const complex_type I(0,1);
Vector groundstate(N);
for(int i = 0; i<N; ++i){
double xpos = L*0.5-double(i)*L/double(N);
groundstate[i]=1./sqrt(sqrt(pi) )*exp(-xpos*xpos/2.);
}
Cvector data(N);
Cvector mom(N);
Hamiltonian<double, Matrix, Vector, FullDiag, false> GP(N, L, g, groundstate, 50000, true);
groundstate=GP.find_groundstate();
copy(groundstate.begin(), groundstate.end(), data.begin());
mynorm = L_2_norm(data.begin(), data.end(), L);
cout<<mynorm<<endl<<endl;
transform(data.begin(), data.end(), data.begin(), bind2nd(divides<complex<double> >(), mynorm) );
cout<<L_2_norm(data.begin(),data.end(), L)<<endl<<endl;
cout<<"System size"<<'\t'<<"Points"<<'\t'<<"Coupling"<<'\t'<<"deltat"<<'\t'<<"Kick strength"<<'\t'<<"Max time"<<'\t'<<"Period"<<endl;
cout<<L<<'\t'<<N<<'\t'<<g<<'\t'<<deltat<<'\t'<<K<<'\t'<<maxt<<'\t'<<period<<endl;
vector<complex_type> kick(N);
for (size_t i = 0; i<N; ++i) {
double xpos = L*0.5-double(i)*L/double(N);
kick[i]= exp(-I*K*sin(xpos));
}
transform(data.begin(), data.end(), kick.begin(), data.begin(), multiplies<complex_type>() );
double t=0;
int stepcounter=0;
for(;t<maxt; t+=deltat, ++stepcounter){
data=split_step::S3(L, deltat, g, data, bec::Potential<double, false>() );
if(!(stepcounter%(period))){
cout<<"&"<<endl;
mom=FourierTransform<fft::forward, fft::Estimate>(data);
for(int i = 0; i<N; ++i){
int index = i<N/2? i+N/2: i-N/2;
cout<<norm(data[i])<<"\t"<<norm(mom[index])<<endl;
}
cout<<"&"<<endl;
}
}
return 0;
}