From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 833/CH7/EX7.11/Ex7_11.sce | 16 ++++++++++++++++ 833/CH7/EX7.11/Ex7_11.txt | 16 ++++++++++++++++ 833/CH7/EX7.11/Result7_11.txt | 6 ++++++ 3 files changed, 38 insertions(+) create mode 100755 833/CH7/EX7.11/Ex7_11.sce create mode 100755 833/CH7/EX7.11/Ex7_11.txt create mode 100755 833/CH7/EX7.11/Result7_11.txt (limited to '833/CH7/EX7.11') 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 -- cgit