From 6277b14dbef09582424d251f51f36622590ef116 Mon Sep 17 00:00:00 2001 From: Stein_van_vliet Date: Wed, 27 Mar 2024 21:52:39 +0100 Subject: [PATCH] Almost finished plots for chosen motor --- src/plot.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/plot.py b/src/plot.py index 52016f9..e1cc12f 100644 --- a/src/plot.py +++ b/src/plot.py @@ -22,11 +22,11 @@ w = np.linspace(0,5050,x_lim) fig, (ax1,ax2,ax3)= plt.subplots(1,3,figsize=(18,6)) -ax1.plot(w,T_1a,label="T_1a",linestyle=(0,(3,1,1,1))) -ax1.plot(w,T_1b,label="T_1b",linestyle=(0,(3,1,1,1))) -ax1.plot(w,T_1c,label="T_1c",linestyle=(0,(3,1,1,1))) -ax1.plot(w,T_2,label="T_2",linestyle=(0,(3,1,1,1))) -ax1.plot(w,T_3,label="T_3",linestyle=(0,(3,1,1,1))) +# ax1.plot(w,T_1a,label="T_1a",linestyle=(0,(3,1,1,1))) +# ax1.plot(w,T_1b,label="T_1b",linestyle=(0,(3,1,1,1))) +# ax1.plot(w,T_1c,label="T_1c",linestyle=(0,(3,1,1,1))) +# ax1.plot(w,T_2,label="T_2",linestyle=(0,(3,1,1,1))) +# ax1.plot(w,T_3,label="T_3",linestyle=(0,(3,1,1,1))) ax2.plot(w,T_1a,label="T_1a",linestyle=(0,(3,1,1,1))) ax2.plot(w,T_1b,label="T_1b",linestyle=(0,(3,1,1,1))) ax2.plot(w,T_1c,label="T_1c",linestyle=(0,(3,1,1,1)))