In [1]:
cell_size = 50 # micro meters, 5*10^-5 m
circuit_size = cell_size / 5

In [2]:
import math

In [4]:
# aproximate speed of light 3*10^8 m/s
c = 300000000

# wave frequency = c / wavelength
f = c / circuit_size * 1000000

In [6]:
print("Approximate frequency is %f GHz" % (f / 1000000000))


Approximate frequency is 30000.000000 GHz

In [8]:
# apparently, it's long-wavelength infrared
# 10 micrometers as it should be

In [9]:
# f = 1 / (2*pi*sqrt(L*C))
# LC = sqr( 1 / (2*pi*f) )
LC = math.pow(1 / (2*math.pi*f), 2)

In [10]:
LC # second^2


Out[10]:
2.8144773233982716e-29

In [11]:
# aproximately energy E = h*c/lambda = h*f
# h ~= 6.6*10^-34
h = 6.6*math.pow(10, -34)
E = h*f
E


Out[11]:
1.9799999999999995e-20

In [12]:
# electric current energy E = V*I
# aproximate mean current from the article ~ 1 picoampere
i0 = math.pow(10, -12)
# aproximate mean voltage from the article ~ 100 millivolts
v0 = 0.1
E0 = i0*v0

In [13]:
E0


Out[13]:
1e-13