This source did not publish a separate summary. Review SKILL.md before using the skill.
SKILL.md
Computational Chemistry Guide
Overview
Computational chemistry bridges quantum mechanics and practical chemistry, enabling researchers to predict molecular properties, reaction mechanisms, and material behaviors without stepping into a wet lab. From drug design to catalyst optimization, computational methods accelerate discovery by screening thousands of candidates before committing to synthesis.
This guide covers the major computational chemistry paradigms: Density Functional Theory (DFT) for electronic structure calculations, molecular dynamics (MD) for simulating atomic motion, machine learning potentials for scaling up simulations, and reaction prediction tools for retrosynthesis and mechanism elucidation. Each section includes tool recommendations, typical workflows, and code examples.
Whether you are a chemistry PhD student running your first Gaussian calculations, a materials scientist exploring new alloys with VASP, or a medicinal chemist using ML-based property prediction, this skill provides the conceptual framework and practical recipes to get productive quickly.
Density Functional Theory (DFT)
When to Use DFT
DFT is the workhorse of quantum chemistry. It provides a good balance of accuracy and computational cost for systems of up to a few hundred atoms.
Property
DFT Suitability
Typical Error
Molecular geometry
Excellent
< 0.02 Angstrom
Vibrational frequencies
Good
3-5%
Reaction barriers
Good with correction
2-5 kcal/mol
Band gaps
Fair (tends to underestimate)
0.5-1.0 eV
Van der Waals interactions
Requires dispersion correction
Varies
Excited states
Fair (TD-DFT)
0.2-0.5 eV
Software Comparison
Software
License
Strengths
Basis Sets
Gaussian
Commercial
Broad functionality, well-documented
Gaussian-type
ORCA
Free (academic)
DFT + wavefunction methods, excellent support
Gaussian-type
VASP
Commercial
Periodic systems, materials science
Plane-wave
Quantum ESPRESSO
Open source
Periodic DFT, phonons
Plane-wave
Psi4
Open source
Reference implementations, Python API
Gaussian-type
CP2K
Open source
Mixed Gaussian/plane-wave, large systems
Mixed
ORCA DFT Workflow Example
# geometry_optimization.inp
! B3LYP def2-TZVP D3BJ OPT FREQ
# B3LYP functional, triple-zeta basis, D3 dispersion, optimize + frequencies
%pal
nprocs 8
end
%maxcore 4000
* xyz 0 1
C 0.000 0.000 0.000
O 1.200 0.000 0.000
H -0.500 0.866 0.000
H -0.500 -0.866 0.000
*