yeah, the script just like this,
exchange_correlation_type = GGA.PBE
iteration_mixing_parameters = iterationMixingParameters(
algorithm = IterationMixing.Pulay,
diagonal_mixing_parameter = 0.01,
quantity = IterationControl.DensityMatrix,
history_steps = 15
The error just happened when I set up the Parameters in VNL Iteration Mixing--Quantity--DensityMatrix,
If I changed it to Iteration Mixing--Quantity--Hamiltionian, like this,
iteration_mixing_parameters = iterationMixingParameters(
algorithm = IterationMixing.Pulay,
diagonal_mixing_parameter = 0.01,
quantity = IterationMixing.Hamiltonian,
history_steps = 15
the script could work normally, it seems that the script couldn't be run using DensityMatrix.
thanks!