patom.h
来自「An object-oriented C++ implementation of」· C头文件 代码 · 共 44 行
H
44 行
#ifndef pAtomH
#define pAtomH
#include "../davidson/defaulttd.h"
#include "../davidson/potentialbase.h"
class PotentialAtom: public PotentialBase
{
private:
//radius of atomic nucleus and depth
ftyp a, V0;
//returns value of potential Coulomb (1D, 2D, 3D)
ftyp VCoulomb(const ftyp &) const; //1D
ftyp VCoulomb(const ftyp &, const ftyp &) const; //2D
ftyp VCoulomb(const ftyp &, const ftyp &, const ftyp &) const; //3D
public:
PotentialAtom(const ftyp &, const ftyp &);
//sets a and V0
void SetAV0(const ftyp &, const ftyp &);
//get V0
ftyp GetV0() const; //get a ftyp GetA() const;
//returns V(x)
ftyp operator()(const ftyp &) const;
//returns V(x,y)
ftyp operator()(const ftyp &, const ftyp &) const;
//returns V(x,y,z)
ftyp operator()(const ftyp &, const ftyp &, const ftyp &) const;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?