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.24/EX2_24.sce | 18 ++++++++++++++++++ 431/CH2/EX2.24/resultEX2_24.txt | 4 ++++ 2 files changed, 22 insertions(+) create mode 100755 431/CH2/EX2.24/EX2_24.sce create mode 100755 431/CH2/EX2.24/resultEX2_24.txt (limited to '431/CH2/EX2.24') diff --git a/431/CH2/EX2.24/EX2_24.sce b/431/CH2/EX2.24/EX2_24.sce new file mode 100755 index 000000000..7b309e79c --- /dev/null +++ b/431/CH2/EX2.24/EX2_24.sce @@ -0,0 +1,18 @@ +//Calculate the fully-load speed of the motor +//Chapter 2 +//Example 2.24 +//page 128 +clear; +clc; +disp("Example 2.24") +V=200;..............................//motor runs in volts +Ia=15;.............................//current taken in amperes +Ra=1;.................................//motor resistance in ohms +E1=V-(Ia*Ra); +printf("resistance when 1ohm=%fV",E1) +R=5;....................................//resistance +E2=V-(Ia*(Ra+R)) +printf("\nResistance when 5ohms connected in series=%fV",E2) +N1=800;............................//speed of motor in rpm +N2=N1*(E2/E1); +printf("\nspeed at which motor will run when resistance is 5ohms=%frpm",N2) \ No newline at end of file diff --git a/431/CH2/EX2.24/resultEX2_24.txt b/431/CH2/EX2.24/resultEX2_24.txt new file mode 100755 index 000000000..d55aebde6 --- /dev/null +++ b/431/CH2/EX2.24/resultEX2_24.txt @@ -0,0 +1,4 @@ +Example 2.24 +resistance when 1ohm=185.000000V +Resistance when 5ohms connected in series=110.000000V +speed at which motor will run when resistance is 5ohms=475.675676rpm \ No newline at end of file -- cgit