Recent content by evamaster

  1. E

    Quantum Mechanics: Nucleon Bound Energies

    Ok thanks but what does it mean the pink and blue graphs? And what does it mean a very strong force?
  2. E

    Quantum Mechanics: Nucleon Bound Energies

    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...
  3. E

    Implementation of the Numerov Method for the 1D square well

    Why you recommend to avoid global variables? And I use C++ because i have to.
  4. E

    Implementation of the Numerov Method for the 1D square well

    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...
  5. E

    Implementation of the Numerov Method for the 1D square well

    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...
Back
Top