I'm not very familiar with coding in Mathematica but I'd like to plot the solutions (actually Spherical Harmonic orbital solutions) of the Schrödinger equation for the hydrogen atom. To be more precise, it would be grate if you could help me reproduce some plots of this picture.
Since the only function I know of to do something like that is SphericalPlot3D I tried the following
SphericalPlot3D[
Abs[SphericalHarmonicY[0, 0, r, w]]^2, {r, 0, Pi}, {w, 0, 2 Pi},
Boxed -> True, Axes -> True, PlotPoints -> 250, Mesh -> 4]
This already looked quite nice but I had some trouble adjusting the length of the axis to fit the whole plot (is there a way to let Mathematica do that automatically). I also couldn't reproduce the ColorFunction used in the picture above (1). Another thing is that I don't know how to do is cut off a piece of the plot (to see what's "inside").
Thanks for the help in advance, Sito.


PlotRange->All– David G. Stork Dec 01 '17 at 00:03SphericalPlot3Dthe radial functions. – José Antonio Díaz Navas Dec 01 '17 at 11:16