COGITO

Crystal Orbital Guided Iteration To atomic-Orbitals - Quantum chemistry from plane wave DFT

Basic Analysis

📓 Core COGITO analysis workflows - verification and band structure

What You’ll Learn

Key Analysis Steps

1. Model Verification

from COGITOpost import COGITO_analyze as coze

# Initialize analysis
COGITOTB = coze(direct, min_hopping_dist=15, min_overlap_dist=15)

# Compare with DFT
COGITOTB.compare_to_DFT(direct)

2. Parameter Quality Check

# Check parameter decay
COGITOTB.plot_hopping()
COGITOTB.plot_overlaps()

3. Band Structure Generation

# Generate band structure
COGITOTB.get_bandstructure(num_kpts=15)
COGITOTB.plotBS(ylim=(-12, 20))

What to Look For

Next Steps