GPUE  v1.0
GPU Gross-Pitaevskii Equation numerical solver for Bose-Einstein condensates
wavefunction.cu
Go to the documentation of this file.
1 
2 /*
3 Unused. Future extension.
4 */
5 namespace BEC2D{
6  class Wavefunction{
7  private:
8  int2 gridSize;
9  double2 dimMax;
10  double2 *wfc = new double2[xDim*yDim];
11 
12  public:
13  Wavefunction();
14  Wavefunction(int xDim, int yDim, double xMax, double yMax);
15  bool setGridSize(int xDim, int yDim);
16  int2 getGridSize(int xDim, int yDim);
17  double2 initWfc();
18  double2 &getWfc();
19  }
20 
21  Wavefunction::Wavefunction(){
22 
23  }
24  Wavefunction::Wavefunction(int xDim, int yDim, double xMax, double yMax){
25 
26  }
27  Wavefunction::setGridSize(int xDim, int yDim){
28 
29  }
30 }
31 
32