summaryrefslogtreecommitdiff
path: root/3816/CH10/EX10.5
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3816/CH10/EX10.5
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3816/CH10/EX10.5')
-rw-r--r--3816/CH10/EX10.5/10_5.pngbin0 -> 34249 bytes
-rw-r--r--3816/CH10/EX10.5/10_5.sce18
2 files changed, 18 insertions, 0 deletions
diff --git a/3816/CH10/EX10.5/10_5.png b/3816/CH10/EX10.5/10_5.png
new file mode 100644
index 000000000..2a90d1a69
--- /dev/null
+++ b/3816/CH10/EX10.5/10_5.png
Binary files differ
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')