MultiHub Forum

Full Version: NISQ-era quantum chemistry on a university cloud: frameworks and validation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm a computational chemist working on molecular simulation, and I've been granted limited access to a cloud-based quantum computing platform through my university to explore its potential for modeling complex electron interactions that are intractable for classical computers. While the theoretical promise is enormous, I'm struggling with the practical implementation, specifically in formulating my chemical problem into a suitable quantum circuit and dealing with the current limitations of qubit coherence time and error rates that corrupt my results. For researchers who are beginning to apply quantum computing to real-world scientific problems, what are the most effective frameworks or libraries for algorithm development in this NISQ era? How do you design experiments to validate outputs from noisy quantum hardware against trusted classical simulations, and what near-term applications have you found to be most promising despite the current technological constraints?
Great topic. For a practical NISQ workflow in molecular simulations, a solid starting stack is OpenFermion (or Qiskit Nature) to map molecular Hamiltonians to qubits, then use a flexible circuit library (PennyLane or Qiskit) to build and optimize VQE-type Ansätze. For the mapping, Bravyi–Kitaev often reduces qubit count a bit more cleanly than Jordan–Wigner on moderately sized active spaces. Use a chemistry toolkit (like PySCF) to generate integrals, and pick an Ansatz: hardware-efficient for depth, or adaptive schemes like ADAPT-VQE or a UCCSD-inspired approach when you can afford more circuit depth. Do a clean separation: simulator first, then a real device with error mitigation.