Skip to content
Snippets Groups Projects
Commit fb28a85d authored by Naoto Yamamoto's avatar Naoto Yamamoto
Browse files

[fix] IIR function

parent 75233fd3
No related branches found
No related tags found
No related merge requests found
......@@ -1492,10 +1492,11 @@ class ProportionalIntegralLoop():
T = self.ring.T1 * self.every
alpha = np.cos(omega*T)-1
tmp = alpha * alpha - 2 * alpha
print(tmp)
if tmp > 0:
self.IIRcoef = alpha + np.sqrt(tmp)
else:
self.IIRcoef = self.every * self.ring.T1 * cutoff * 2 * np.pi
self.IIRcoef = T * cutoff * 2 * np.pi
self.IIRout = self.cav_res.Vc
def IIR(self,input):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment