Can you please tell me how to plot $\sqrt{r}$ in 3d sph polar plot?
In the spherical plot 3d there is no option I can put variable r. So how should I proceed.
ParametricPlot3D[{u, v, Sqrt@Sqrt[ u u + v v]}, {u, -2, 2}, {v, -2, 2},
RegionFunction -> (Norm[{#4, #5}] < 1 &), AspectRatio -> 1,
MeshFunctions -> {(#3 &), (ArcTan[#2, #1] &)}]

Compare with your book:

Plot[Sqrt[r],{r, 0, rmax}]. In more complicated example, http://mathematica.stackexchange.com/q/19575/5478 – Kuba Jan 24 '14 at 11:08RevolutionPlot3D. – Michael E2 Jan 24 '14 at 11:39RevolutionPlot3D[Sqrt[r], {r, 0, 1}]. – b.gates.you.know.what Jan 24 '14 at 13:25