diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /833/CH7/EX7.11 | |
download | Scilab-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-x | 833/CH7/EX7.11/Ex7_11.sce | 16 | ||||
-rwxr-xr-x | 833/CH7/EX7.11/Ex7_11.txt | 16 | ||||
-rwxr-xr-x | 833/CH7/EX7.11/Result7_11.txt | 6 |
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 |