-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathQuantumSimulator.h
73 lines (56 loc) · 2.31 KB
/
QuantumSimulator.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
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
#pragma once
/* Quantum Minigolf, a computer game illustrating quantum mechanics
Copyright (C) 2007 Friedemann Reinhard <[email protected]>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
//QuantumSimulator - the class implementing the numerical solution of the
// time-dependent Schrödinger equation.
// The solution is based on a time-splitting scheme.
// The propagation is performed successively in momentum and position space
// To propagate in momentum space, the wave function is fourier-transformed.
//
#ifdef WIN32
#include <windows.h>
#endif
#include <stdlib.h>
#include <time.h>
#include <malloc.h>
#include <math.h>
#include <fftw3.h>
#include <SDL.h>
class QuantumSimulator
{
public:
QuantumSimulator (int width, int height, float dt);
void BuildPositionPropagator (SDL_Surface * V);
void BuildMomentumPropagator ();
float PropagatePosition (float quench);
void PropagateMomentum ();
// return the result of a position measurement on psi
void PositionMeasurement (int *x, int *y);
// GenGauss - initialize psi with a gaussian wavepacket of width w,
// centered around cx and cy in position and around kx and ky in momentum space
void GenGauss (int cx, int cy, float kx, float ky, float w);
void ClearWave (void);
fftwf_complex *psi; // the complex wavefunction
fftwf_complex *xprop; // the propagator in position space
public:
~QuantumSimulator (void);
private:
fftwf_complex * prop; // the propagator in momentum space
fftwf_plan fft, ifft; // plans for the Fourier transformations
// into momentum and position space
float dt; // the timestep
int width, height;
float GaussNorm; // Norm of the wave packet after initialization
};