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 --- 380/CH5/EX5.9/5_9.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 380/CH5/EX5.9/5_9.txt (limited to '380/CH5/EX5.9/5_9.txt') diff --git a/380/CH5/EX5.9/5_9.txt b/380/CH5/EX5.9/5_9.txt new file mode 100755 index 000000000..c9ca068ad --- /dev/null +++ b/380/CH5/EX5.9/5_9.txt @@ -0,0 +1,19 @@ +//Caption:Find maximum efficiency of generator +//Exa:5.9 +clc; +clear; +close; +R_a=50*10^-3;//armature resistance (in ohms) +R_s=20*10^-3;//series field resistance +R_sh=40;//shunt field resistance +P_rot=2000;//rotational loss (in watts) +V=120;//voltage (in vollts) +I_f=V/R_sh;//shunt field current +//Refer toeqn 5.49 +I_Lm=sqrt((P_rot+(R_a+R_s+R_sh)*(I_f^2))/(R_a+R_s)); +P_o=I_Lm*V;//power output at max efficiency +P_cu=(((I_Lm^2)*(R_a+R_s))+((I_f^2)*R_sh));//total copper loss +P_d=P_o+P_cu;//Power developed at max efficiency +P_in=P_d+P_rot; +Eff=(P_o/P_in)*100; +disp(Eff,'Max efficiency of generator (%)='); \ No newline at end of file -- cgit