summaryrefslogtreecommitdiff
path: root/833/CH7/EX7.11
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /833/CH7/EX7.11
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '833/CH7/EX7.11')
-rwxr-xr-x833/CH7/EX7.11/Ex7_11.sce16
-rwxr-xr-x833/CH7/EX7.11/Ex7_11.txt16
-rwxr-xr-x833/CH7/EX7.11/Result7_11.txt6
3 files changed, 38 insertions, 0 deletions
diff --git a/833/CH7/EX7.11/Ex7_11.sce b/833/CH7/EX7.11/Ex7_11.sce
new file mode 100755
index 000000000..2cb6e029f
--- /dev/null
+++ b/833/CH7/EX7.11/Ex7_11.sce
@@ -0,0 +1,16 @@
+//Caption: Calculate Power and torque developed
+//Exa:7.11
+clc;
+clear;
+close;
+p=4//Number of poles
+d=20//Diameter of armature(in cm)
+l=25//Core length(in cm)
+c=300//Number of conductors
+i_a=50//Armature current(in A)
+B=0.3//Average flux density(in weber/m^2)
+n=1000//Speedofmotor(in r.p.m)
+T=(B*(l/100)*(i_a/p)*c*(d/100)*(1/2))
+s=(2*%pi*n)/(60)
+P=(T*s)/1000
+disp(T,P,'Power(in KW) and Torque(in Nm) developed is=') \ No newline at end of file
diff --git a/833/CH7/EX7.11/Ex7_11.txt b/833/CH7/EX7.11/Ex7_11.txt
new file mode 100755
index 000000000..2cb6e029f
--- /dev/null
+++ b/833/CH7/EX7.11/Ex7_11.txt
@@ -0,0 +1,16 @@
+//Caption: Calculate Power and torque developed
+//Exa:7.11
+clc;
+clear;
+close;
+p=4//Number of poles
+d=20//Diameter of armature(in cm)
+l=25//Core length(in cm)
+c=300//Number of conductors
+i_a=50//Armature current(in A)
+B=0.3//Average flux density(in weber/m^2)
+n=1000//Speedofmotor(in r.p.m)
+T=(B*(l/100)*(i_a/p)*c*(d/100)*(1/2))
+s=(2*%pi*n)/(60)
+P=(T*s)/1000
+disp(T,P,'Power(in KW) and Torque(in Nm) developed is=') \ No newline at end of file
diff --git a/833/CH7/EX7.11/Result7_11.txt b/833/CH7/EX7.11/Result7_11.txt
new file mode 100755
index 000000000..ab3cc8033
--- /dev/null
+++ b/833/CH7/EX7.11/Result7_11.txt
@@ -0,0 +1,6 @@
+Power(in KW) and Torque(in Nm) developed is=
+
+ 2.9452431
+
+ 28.125
+ \ No newline at end of file