Mandacaru
Mandacaru is a Python framework for fermionic quantum simulation with variational quantum algorithms. From an ASE geometry it builds a real-space Hamiltonian — with all-electron basis sets or NCPP / ONCVPSP / PAW pseudopotentials — maps it to qubits, and solves it with VQE or ADAPT-VQE on a state-vector simulator or on quantum hardware (IBM Quantum, Amazon Braket). Energies are reported in eV and distances in Å.
Latest updates
- Forces with PAW + DZP. Hellmann–Feynman and Pulay forces for
basis={"name": "PAW", "size": "DZP"}— the augmented overlap, the projectors and the compensation charges are all differentiated — throughatoms.get_forces(). - Particle-number sectors. 20-qubit problems such as LiH in PAW-DZP are solved exactly in their (nα, nβ) sector: 100 states instead of 220.
- Real molecular orbitals. Orbitals with l > 0 are rotated to real form, so the operator pools reach the exact ground state.
- Wavefunction checkpoints.
Mandacaru(..., checkpoint="state.json")writes the reference, the generators, the angles and the Hamiltonian after every accepted operator;resume="state.json"continues an interrupted or unconverged run where it stopped. - Virtual orbitals for the FAO basis.
basis={"name": "FAO", "virtual_orbitals": 1}appends the lowest unoccupied atomic levels (H gains 2s, C gains 3s), giving a correlated method room above the occupied orbitals; the default0is the minimal basis as before. - Quantum phase estimation.
QuantumPhaseEstimation(n_evaluation_qubits=10).run("state.json")reads the exact eigenvalue off the checkpointed state, with a memory estimate checked before the 2n+t state vector is allocated. - A run cites itself. Alongside the
output=log a run writesreferences.bib— the papers behind the method, the operator pool, the fermion-to-qubit mapping, the basis family and the codes, selected from what actually ran rather than from what was typed (a default-filtered, confined PAW basis cites all three), with abbreviated journal names. - Volumetric output for VESTA and VMD.
atoms.calc.write_cube("density.cube")writes the converged state's one-particle reductions — electron density, spin density, correlation densityn − n_HFand natural orbitals with their occupations — on the calculation's own real-space grid;atoms.calc.natural_orbitals()returns the occupations as data.
Installation
pip install mandacaru
# PAW datasets (kept in a separate repository because of their size)
git clone https://github.com/seixas-research/mandacaru-paw.git
mandacaru --link-paw mandacaru-paw
LiH with ASE
from ase import Atoms
from mandacaru import Mandacaru
atoms = Atoms("LiH",
positions=[[0.0, 0.0, 0.0],
[0.0, 0.0, 1.6]],
cell=[10.0, 10.0, 10.0])
atoms.center() # the cell is the real-space box
atoms.calc = Mandacaru(method="adapt-vqe", # "vqe", "adapt-vqe", "subspace-vqe", "subspace-adapt-vqe"
basis={"name": "PAW", "size": "DZP"}, # pseudopotential family + valence basis
h=0.10, # grid spacing (Å)
pool="fermionic", # "fermionic", "qubit", "qeb", "ceo", "ceo-ovp"
mapping="jordan_wigner", # "jordan_wigner", "parity", "parity_reduced", "bravyi_kitaev"
optimizer="COBYLA", # "COBYLA", "SPSA", "Nelder-Mead", "SLSQP", "Adam", "L-BFGS-B"
max_iterations=300, # at most 300 operators
gradient_tolerance=1e-3, # stop when every pool gradient is smaller
device="AER_simulator", # or an IBM Quantum / Amazon Braket device
shots=0, # 0 = exact expectation values
verbose_operators=False, # True -> the pool to pool.json
verbose_hamiltonian=False) # True -> hamiltonian.inspect.json
forces = atoms.get_forces() # eV/Å, runs the simulation
energy = atoms.get_potential_energy() # eV, from the same run
result = atoms.calc.result
print(f"E = {energy:.4f} eV with {result.num_operators} operators")
print(f"F(Li) = {forces[0, 2]:+.3f} eV/Å along the bond")
Potential energy surface
import matplotlib.pyplot as plt
import numpy as np
from ase import Atoms
from mandacaru import Mandacaru
distances = np.linspace(1.2, 3.0, 10)
energies = []
for d in distances:
atoms = Atoms("LiH",
positions=[[0.0, 0.0, 0.0],
[0.0, 0.0, d]],
cell=[10.0, 10.0, 10.0])
atoms.center()
atoms.calc = Mandacaru(method="adapt-vqe",
basis={"name": "PAW", "size": "DZP"},
h=0.10,
pool="fermionic",
optimizer="L-BFGS-B")
energies.append(atoms.get_potential_energy())
plt.plot(distances, energies, "o-")
plt.xlabel("Li–H distance (Å)")
plt.ylabel("Energy (eV)")
plt.savefig("lih_pes.png", dpi=150)
Theory
VQE. The variational quantum eigensolver prepares a parameterized state |ψ(θ)⟩ = U(θ)|ΦHF⟩ on a quantum processor, measures the energy ⟨ψ(θ)|H|ψ(θ)⟩, and lets a classical optimizer update θ to minimize it. By the variational principle the minimum is an upper bound to the ground-state energy, reached exactly when the ansatz can represent the ground state. Mandacaru starts from the Hartree–Fock determinant in the molecular-orbital basis; the fixed ansatz of method="vqe" is UCCSD.
ADAPT-VQE. ADAPT-VQE builds the ansatz during the calculation instead of fixing it in advance. At each iteration it evaluates the energy gradient ⟨ψ|[H, Ak]|ψ⟩ of every generator Ak in an operator pool, appends exp(θkAk) for the largest one, and re-optimizes all parameters. It stops when every gradient falls below gradient_tolerance, producing compact circuits tailored to the molecule.
Operator pools. The pool is the set of anti-Hermitian generators ADAPT-VQE chooses from, and it sets the trade-off between circuit depth and the number of iterations. fermionic holds spin-adapted single and double excitations; qubit splits them into individual Pauli strings (the shallowest gates, more iterations); qeb uses qubit excitations — the same occupation moves without the fermionic sign; ceo couples the qubit excitations that act on the same spin-orbitals, and ceo-ovp keeps that coupling to one parameter per step, roughly halving the two-qubit gate count of qeb. Every pool is built in the encoding you ask for (Jordan–Wigner, parity, reduced parity or Bravyi–Kitaev) and reaches the same ground state. The fermionic and qubit-excitation pools conserve the particle number; the individual Pauli strings of qubit do not, by design.
Classical optimization. The parameters are updated by the optimizer named in optimizer=. COBYLA (the default) and Nelder–Mead are gradient-free and robust; L-BFGS-B and SLSQP use gradients and converge quickly on exact simulators; SPSA (two energy evaluations per step, whatever the number of parameters) and Adam tolerate the statistical noise of shot-based hardware.
License
Mandacaru is released under the MIT License. Developer: Leandro Seixas Rocha (leandro.rocha@ilum.cnpem.br). Documentation: mandacaru.readthedocs.io.
We thank financial support from INCT Materials Informatics (Grant No. 406447/2022-5).
Release files for mandacaru 26.9.36
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| mandacaru-26.9.36.tar.gz | 15.6 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| mandacaru-26.9.36-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 27.6 MB
Release files / mandacaru-26.9.36.tar.gz
| Download URL | mandacaru-26.9.36.tar.gz |
|---|---|
| Size | 15.6 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2c0891cad5fa232359368f2118bbce1dd7c5e78098ca993dc6adf90318213ae7
|
|
BLAKE2b-256 checksum How to use checksums |
90106f92bb3f3f545023ea0d22161dea85fc686e9d2912fb606951f7572babfd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.7
|
Release files / mandacaru-26.9.36-py3-none-any.whl
| Download URL | mandacaru-26.9.36-py3-none-any.whl |
|---|---|
| Size | 12.0 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f103c185c04c38e31ddf9abf82d0b735b75843f229daf06b235ffd3a7d9a60ec
|
|
BLAKE2b-256 checksum How to use checksums |
03722cfb36ba986c1eb21a179b6e47c0a10b012d8fabcf2711b8e63164e73b40
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.7
|