Skip to content
Snippets Groups Projects
Commit 7bfb9432 authored by Andreas Freise's avatar Andreas Freise
Browse files

renaming gauss.wz to gauss.w, this is more common.

parent 58032632
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,6 @@ q2 = apply(abcd, q1, nr1, nr2)
# and out again
q3 = apply(abcd, q2, nr2, nr1)
print "q1 =", q1, " w0 =", q1.w0, " wz =", q1.wz, " z =", q1.z
print "q2 =", q2, " w0 =", q2.w0, " wz =", q2.wz, " z =", q2.z
print "q3 =", q3, " w0 =", q3.w0, " wz =", q3.wz, " z =", q3.z
print "q1 =", q1, " w0 =", q1.w0, " w =", q1.w, " z =", q1.z
print "q2 =", q2, " w0 =", q2.w0, " w =", q2.w, " z =", q2.z
print "q3 =", q3, " w0 =", q3.w0, " w =", q3.w, " z =", q3.z
......@@ -68,7 +68,7 @@ class gauss_param(object):
def zr(self): return self.__q.imag
@property
def wz(self):
def w(self):
return self.w0 * math.sqrt(1 + (self.__q.real/self.__q.imag)**2)
@property
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment