diff options
Diffstat (limited to '3816/CH10/EX10.5/10_5.sce')
-rw-r--r-- | 3816/CH10/EX10.5/10_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3816/CH10/EX10.5/10_5.sce b/3816/CH10/EX10.5/10_5.sce new file mode 100644 index 000000000..38ca24ef6 --- /dev/null +++ b/3816/CH10/EX10.5/10_5.sce @@ -0,0 +1,18 @@ +clc;
+clear;
+xad=1.5;
+xaq=0.60;
+x=0.1;
+xf=0.13;
+Vq=1;
+theta_0=0;
+xd1=((xad*xf)/(xad+xf))+x;
+xsq=xaq+x;
+Ifo=1;
+t=[0:0.1:20];
+Ia=4.5*(cos(t)-3-(1.5*(cos(2*t))));
+If=4.2*(1-cos(t))+Ifo;
+plot(t,Ia)
+plot(t,If)
+xlabel('Rotor position')
+ylabel('Rotor field current')
|