I was reading my quantum mechanics text and I have a doubt. I have the energy levels well defined for the finite square well and the author suddenly compares (I believe) those levels with the levels of the nucleon with the following phrase: "is the spacing between levels on the order of MeV for...
Basically the code takes all the energies, i.e. $0<E<Vo$ and the fuction "Biseccion" applies the Bisection algorithm between an energy $E$ and $E+step$. So the fuction finds the eigen-energy for which the left and right (from the Numerov Method wave functions matches.
Here is an example of...
I want to solve the Schrodinger via the Numerov Method but I had some troubles. I'm programing in C++, so here is my code:
#include<cstdlib>
#include<iostream>
#include<cmath>
using namespace std;
double x_min=-4.0 , x_max=4.0;
int N=2000;
double...