Recent content by evamaster
-
E
Graduate 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?- evamaster
- Post #3
- Forum: Quantum Physics
-
E
Graduate 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...- evamaster
- Thread
- Bound Energies Nucleon
- Replies: 4
- Forum: Quantum Physics
-
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.- evamaster
- Post #6
- Forum: Programming and Computer Science
-
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...- evamaster
- Post #4
- Forum: Programming and Computer Science
-
E
Implementation of the Numerov Method for the 1D square well
I want to solve the Schrödinger 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...- evamaster
- Thread
- 1d Method Square Square well
- Replies: 5
- Forum: Programming and Computer Science