summaryrefslogtreecommitdiff
path: root/hw4
diff options
context:
space:
mode:
authorMarius Peter <blendoit@gmail.com>2019-08-26 16:59:51 -0700
committerMarius Peter <blendoit@gmail.com>2019-08-26 16:59:51 -0700
commit0afe26582f3290dd945f3949c5c4176e4a676d8b (patch)
tree19072727e189ebf3454ae25d92c9104b0e868eb3 /hw4
parent8e0ca3c24a8dd2b49edb78b2e92fb7b569958211 (diff)
course endHEADmaster
Diffstat (limited to 'hw4')
-rw-r--r--hw4/prob_1.py11
-rw-r--r--hw4/prob_2.py8
-rw-r--r--hw4/prob_5.py11
3 files changed, 30 insertions, 0 deletions
diff --git a/hw4/prob_1.py b/hw4/prob_1.py
new file mode 100644
index 0000000..92e8af6
--- /dev/null
+++ b/hw4/prob_1.py
@@ -0,0 +1,11 @@
+import numpy as np
+import control
+import matplotlib.pyplot as plt
+
+# L = control.TransferFunction((1), (1, 6, 5, 0, 0))
+# L = control.TransferFunction((1, 2), (1, 10, 0, 0))
+L = control.TransferFunction((1, 1), (1, -3, 0))
+
+rlist, klist = control.rlocus(L, kvect=np.linspace(100, -100, num=1000))
+
+plt.show()
diff --git a/hw4/prob_2.py b/hw4/prob_2.py
new file mode 100644
index 0000000..c53cddf
--- /dev/null
+++ b/hw4/prob_2.py
@@ -0,0 +1,8 @@
+import numpy as np
+from math import exp, cos, sin
+import matplotlib.pyplot as plt
+
+t = [0.01 * x for x in range(500)]
+y = [1.0015 - 1.0404 * exp(-0.432 * t) + 0.039 * exp(-11.5567 * t) for t in t]
+plt.plot(t, y)
+plt.show()
diff --git a/hw4/prob_5.py b/hw4/prob_5.py
new file mode 100644
index 0000000..94d0fa5
--- /dev/null
+++ b/hw4/prob_5.py
@@ -0,0 +1,11 @@
+from scipy import signal
+import matplotlib.pyplot as plt
+
+s1 = signal.lti([1, 2], [1, 4, 4, 6, 0])
+w, mag, phase = signal.bode(s1)
+
+plt.figure()
+plt.semilogx(w, mag)
+plt.figure()
+plt.semilogx(w, phase)
+plt.show()
Copyright 2019--2024 Marius PETER