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 --- 431/CH2/EX2.10/EX2_10.sce | 20 ++++++++++++++++++++ 431/CH2/EX2.10/resultEX2_10.txt | 4 ++++ 2 files changed, 24 insertions(+) create mode 100755 431/CH2/EX2.10/EX2_10.sce create mode 100755 431/CH2/EX2.10/resultEX2_10.txt (limited to '431/CH2/EX2.10') diff --git a/431/CH2/EX2.10/EX2_10.sce b/431/CH2/EX2.10/EX2_10.sce new file mode 100755 index 000000000..bd763f5a5 --- /dev/null +++ b/431/CH2/EX2.10/EX2_10.sce @@ -0,0 +1,20 @@ +//calculating the torque developed +//Chapter 2 +//Example 2.10 +//page 98 +clear; +clc; +disp("Example 2.10") +n=10; //number of turns in 1 coil +l=0.2; +d=0.2; //diameter in metres +B=1; //uniform magnetic field density in weber per m^2 +N=1500; //speed in rpm +r=(d/2); //radius in metres +E=(B*l*((2*3.14*N)/60)*r*2*n); +printf("total induced emf=%f V",E) +R=4; //total resistance in ohms +I=E/R; +printf("\nThe current through the armature coil when connected to the load,I=%f A",I) +T=(E*I)/((2*3.14*N)/60) +printf("\ntorque=%f Nm",T) \ No newline at end of file diff --git a/431/CH2/EX2.10/resultEX2_10.txt b/431/CH2/EX2.10/resultEX2_10.txt new file mode 100755 index 000000000..e4ea80188 --- /dev/null +++ b/431/CH2/EX2.10/resultEX2_10.txt @@ -0,0 +1,4 @@ + Example 2.10 +total induced emf=62.800000 V +The current through the armature coil when connected to the load,I=15.700000 A +torque=6.280000 Nm \ No newline at end of file -- cgit