2012-03-09 17:38:15 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-02-25 04:09:03 +00:00
|
|
|
"""
|
|
|
|
Demonstrates GLVolumeItem for displaying volumetric data.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2012-03-09 17:38:15 +00:00
|
|
|
## Add path to library (just for examples; you do not need this)
|
2012-12-26 22:51:52 +00:00
|
|
|
import initExample
|
2012-03-09 17:38:15 +00:00
|
|
|
|
2021-04-18 03:08:57 +00:00
|
|
|
import numpy as np
|
2021-01-27 18:59:07 +00:00
|
|
|
import pyqtgraph as pg
|
2012-03-09 17:38:15 +00:00
|
|
|
from pyqtgraph.Qt import QtCore, QtGui
|
|
|
|
import pyqtgraph.opengl as gl
|
2021-04-18 17:16:09 +00:00
|
|
|
from pyqtgraph.functions import clip_array
|
2012-03-09 17:38:15 +00:00
|
|
|
|
2021-01-27 18:59:07 +00:00
|
|
|
app = pg.mkQApp("GLVolumeItem Example")
|
2012-03-09 17:38:15 +00:00
|
|
|
w = gl.GLViewWidget()
|
|
|
|
w.opts['distance'] = 200
|
|
|
|
w.show()
|
2013-02-25 04:09:03 +00:00
|
|
|
w.setWindowTitle('pyqtgraph example: GLVolumeItem')
|
2012-03-09 17:38:15 +00:00
|
|
|
|
|
|
|
#b = gl.GLBoxItem()
|
|
|
|
#w.addItem(b)
|
|
|
|
g = gl.GLGridItem()
|
|
|
|
g.scale(10, 10, 1)
|
|
|
|
w.addItem(g)
|
|
|
|
|
|
|
|
## Hydrogen electron probability density
|
|
|
|
def psi(i, j, k, offset=(50,50,100)):
|
|
|
|
x = i-offset[0]
|
|
|
|
y = j-offset[1]
|
|
|
|
z = k-offset[2]
|
2021-04-18 05:38:21 +00:00
|
|
|
th = np.arctan2(z, np.hypot(x, y))
|
2012-03-09 17:38:15 +00:00
|
|
|
phi = np.arctan2(y, x)
|
2021-04-18 05:38:21 +00:00
|
|
|
r = np.sqrt(x**2 + y**2 + z **2)
|
2012-03-09 17:38:15 +00:00
|
|
|
a0 = 2
|
|
|
|
#ps = (1./81.) * (2./np.pi)**0.5 * (1./a0)**(3/2) * (6 - r/a0) * (r/a0) * np.exp(-r/(3*a0)) * np.cos(th)
|
|
|
|
ps = (1./81.) * 1./(6.*np.pi)**0.5 * (1./a0)**(3/2) * (r/a0)**2 * np.exp(-r/(3*a0)) * (3 * np.cos(th)**2 - 1)
|
|
|
|
return ps
|
|
|
|
|
|
|
|
|
|
|
|
data = np.fromfunction(psi, (100,100,200))
|
2021-04-18 17:16:09 +00:00
|
|
|
positive = np.log(clip_array(data, 0, data.max())**2)
|
|
|
|
negative = np.log(clip_array(-data, 0, -data.min())**2)
|
2012-03-09 17:38:15 +00:00
|
|
|
|
|
|
|
d2 = np.empty(data.shape + (4,), dtype=np.ubyte)
|
|
|
|
d2[..., 0] = positive * (255./positive.max())
|
|
|
|
d2[..., 1] = negative * (255./negative.max())
|
|
|
|
d2[..., 2] = d2[...,1]
|
|
|
|
d2[..., 3] = d2[..., 0]*0.3 + d2[..., 1]*0.3
|
|
|
|
d2[..., 3] = (d2[..., 3].astype(float) / 255.) **2 * 255
|
2012-04-28 19:12:46 +00:00
|
|
|
|
|
|
|
d2[:, 0, 0] = [255,0,0,100]
|
|
|
|
d2[0, :, 0] = [0,255,0,100]
|
|
|
|
d2[0, 0, :] = [0,0,255,100]
|
|
|
|
|
2012-03-09 17:38:15 +00:00
|
|
|
v = gl.GLVolumeItem(d2)
|
|
|
|
v.translate(-50,-50,-100)
|
|
|
|
w.addItem(v)
|
|
|
|
|
2012-04-28 19:12:46 +00:00
|
|
|
ax = gl.GLAxisItem()
|
|
|
|
w.addItem(ax)
|
2012-03-09 17:38:15 +00:00
|
|
|
|
2012-12-05 05:25:45 +00:00
|
|
|
if __name__ == '__main__':
|
2021-03-22 18:17:12 +00:00
|
|
|
pg.mkQApp().exec_()
|