-
Notifications
You must be signed in to change notification settings - Fork 0
/
BEC_harm_lattice_kick1.cpp
executable file
·139 lines (109 loc) · 3.53 KB
/
BEC_harm_lattice_kick1.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
131
132
133
134
135
136
137
138
139
#include"fftw3.h"
#include<vector>
#include<iostream>
#include"headers/split_step.h"
#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;
int period = 10000;
const double L = 10;
double mynorm= 0;
int N=1024;
//parsing command line
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);
//finding Groundstate
Cvector data(N);
Cvector mom(N);
for(int i = 0; i<N; ++i){
double xpos = L*0.5-double(i)*L/double(N);
data[i]=1./sqrt(sqrt(pi) )*exp(-xpos*xpos/2.);
}
for(int i = 0; i<20000;++i){
data=split_step::S3imag(L, deltat, g, data, bec::Potential<double, true, true>());
mynorm = L_2_norm(data.begin(), data.end(), L);
//cout<<mynorm<<endl;
transform(data.begin(), data.end(), data.begin(), bind2nd(divides<complex<double> >(), mynorm) );
}
//properly normalize the whole thing, so that we may use it with the propagator.
mynorm = L_2_norm(data.begin(), data.end(), L);
transform(data.begin(), data.end(), data.begin(), bind2nd(divides<complex<double> >(), mynorm) );
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, true, true>());
mynorm = L_2_norm(data.begin(), data.end(), L);
transform(data.begin(), data.end(), data.begin(), bind2nd(divides<complex<double> >(), mynorm) );
//cout<<"Mean momentum:"<<'\t'<<mean::mean_momentum<Cvector>(mom, L)<<endl;
if(!(stepcounter%(period))){
cout<<"&"<<endl;
for(int i = 0; i<N; ++i){
mom=FourierTransform<fft::forward, fft::Estimate>(data);
int index = i<N/2? i+N/2: i-N/2;
cout<<norm(data[i])<<"\t"<<norm(mom[index])<<endl;
}
cout<<"&"<<endl;
}
}
return 0;
}