summaryrefslogtreecommitdiff
path: root/3760/CH6/EX6.27
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3760/CH6/EX6.27
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 '3760/CH6/EX6.27')
-rw-r--r--3760/CH6/EX6.27/Ex6_27.sce49
1 files changed, 49 insertions, 0 deletions
diff --git a/3760/CH6/EX6.27/Ex6_27.sce b/3760/CH6/EX6.27/Ex6_27.sce
new file mode 100644
index 000000000..d8556fde4
--- /dev/null
+++ b/3760/CH6/EX6.27/Ex6_27.sce
@@ -0,0 +1,49 @@
+clc;
+fs=2; //slip frequency
+V=400;
+f=50;
+V2=340; //New voltage
+f2=40; //New frequency
+smT=0.1; //slip at which it develops maximum torque
+
+//maximun torque's slip is directly proportional to (1/f)
+smT1=(f/f2)*smT;
+
+//Maximun Torque is directly proportional to ((V*V)/(f*f))
+s=fs/f;
+//Ted(Developed Torque) is proportional to (Tem/smT)*(s/smT)
+//Ted1(400V,50Hz)proportional a
+a=((V*V)/(f*f))*(s/smT);
+//equating the developed torque equation
+s1=a*(((f2)*(f2))/((V2)*(V2)))*(smT1);
+fs1=s1*f2;
+mprintf('The new slip frequency is %f Hz',fs1);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+