An interactive simulation tool for exploring the discrete energy levels and wavefunctions of quantum particles in potential wells. By solving the Schrödinger equation numerically, this project highlights the effects of confinement, tunneling, and boundary conditions on wavefunction behavior.
The project numerically solves the time-independent Schrödinger equation...
The solver is implemented in Python using NumPy...
A finite-difference method approximates...
# Brief excerpt illustrating Hamiltonian construction & diagonalization
# ... (code remains same) ...
wavefunctions = eigenvectors[:, lowest_indices]
Users can define various potentials...
The visualizer serves as a hands-on educational tool...
By adjusting parameters interactively...