It computes the normalized radial wavefunction of hydrogen like atoms.
y = Rnl_Hlike(n,l,Z,r)
output
Principal Quantum Number.
Azimuthal Quantum number.
Atomic Number of Hydrogen like atom.
radial distance.
This function computes the normalized radial wavefunction of hydrogen like atoms.
// radial wavefunction of ground state of H-atom n=1; l=0; Z=1; j=1; for i=0:0.01:10 y(j) = Rnl_Hlike(n,l,Z,i); r(j)=i; j=j+1; end plot(r,y) | ![]() | ![]() |