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 --- 2276/CH10/EX10.2/chapter10_ex2.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 2276/CH10/EX10.2/chapter10_ex2.sce (limited to '2276/CH10/EX10.2') diff --git a/2276/CH10/EX10.2/chapter10_ex2.sce b/2276/CH10/EX10.2/chapter10_ex2.sce new file mode 100755 index 000000000..f7f06a6bb --- /dev/null +++ b/2276/CH10/EX10.2/chapter10_ex2.sce @@ -0,0 +1,19 @@ +clc +clear + +//input +p=4;//number of poles +n=48;//number of slots +b=0.02;//fulx per pole in weber +w=50*(%pi);//angular velocity in rad/sec + +//calcultions +f=(w*(p/2))/(2*%pi);//frequency in hertz +phim=360/n;//mechanical angle in degrees +phie=phim*(p/2);//electrical angle in degrees +phiE=phie*(%pi/180);//electrical angle in radians +kd=(sin(2*(phiE/2)))/(2*sin(phiE/2));//distribution factor and 2 is taken as we are calculating for 2 coils +e=(p/2)*kd*4.44;//total e.m.f. for two coils in series in volts + +//output +mprintf('the total e.m.f. for two coils in series is %3.1f V',e) -- cgit