atomscf.scf_hf.HFConfig

class atomscf.scf_hf.HFConfig(Z, r, w, tol=1e-07, maxiter=50)[源代码]

HF 最小实现配置(教学版,仅支持 H)。

参数:
Z

原子序数(当前仅支持 1)。

Type:

int

r

径向网格。

Type:

numpy.ndarray

w

梯形权重。

Type:

numpy.ndarray

tol

收敛阈值。

Type:

float

maxiter

最大迭代数。

Type:

int

__init__(Z, r, w, tol=1e-07, maxiter=50)
参数:
返回类型:

None

Methods

__init__(Z, r, w[, tol, maxiter])

Attributes

maxiter

tol

Z

r

w

Z: int
r: ndarray
w: ndarray
tol: float = 1e-07
maxiter: int = 50
__init__(Z, r, w, tol=1e-07, maxiter=50)
参数:
返回类型:

None