10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2025-04-04 07:51:37 +02:00

Change for Powell in geom_opt

This commit is contained in:
Anthony Scemama 2025-03-07 15:41:18 +01:00
parent 1775df957c
commit ad0c807a53

@ -107,7 +107,16 @@ def optimize_geometry(file, state, arguments):
else:
tolerance = 1.e-3
result = minimize(energy_function, x0, args=(file, state, arguments), method='BFGS', jac=None, tol=tolerance, options={'eps': 1.e-3})
result = minimize(energy_function, x0, args=(file, state, arguments),
method='Powell',
tol=tolerance,
options={'xtol': tolerance, 'ftol': tolerance})
# result = minimize(energy_function, x0, args=(file, state, arguments),
# method='BFGS',
# jac=None,
# tol=tolerance,
# options={'eps': 1.e-3})
if result.success:
print("Optimization successful!")