Skip to main content
edited tags
Link
add atomic orbitals in the title so that it could be more easily found by search
Link
xslittlegrass
  • 28k
  • 9
  • 105
  • 190

Is there something like DensityPlot3D to visualize atomic orbitals?

Tweeted twitter.com/#!/StackMma/status/379308297691877376
Source Link
Peeter Joot
  • 6.5k
  • 5
  • 38
  • 58

Is there something like DensityPlot3D?

I'm visualizing some hydrogen like atomic orbitals. For looking at plane slices of the probability density, the DensityPlot function works well, and with something like:

Manipulate[ DensityPlot[ psi1XYsq[u, v, z], {u, -w, w}, {v, -w, w} , Mesh -> False, Frame -> False, PlotPoints -> 45, ColorFunctionScaling -> True, ColorFunction -> "SunsetColors"] , {{w, 10}, 1, 20} , {z, 1, 20, 1} ] 

I can get a nice plot hybrid orbital sample plot in x y plane

I was hoping that there was something like a DensityPlot3D so that I could visualize these in 3D, but I don't see such a function. I was wondering how DensityPlot be simulated using other plot functions, so that the same idea could be applied to a 3D plot to construct a DensityPlot3D like function?