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/CH5/EX5.1/EX5_1.sce | 17 +++++++++++++++++ 431/CH5/EX5.1/resultEX5_1.txt | 6 ++++++ 2 files changed, 23 insertions(+) create mode 100755 431/CH5/EX5.1/EX5_1.sce create mode 100755 431/CH5/EX5.1/resultEX5_1.txt (limited to '431/CH5/EX5.1') diff --git a/431/CH5/EX5.1/EX5_1.sce b/431/CH5/EX5.1/EX5_1.sce new file mode 100755 index 000000000..9fa8853e1 --- /dev/null +++ b/431/CH5/EX5.1/EX5_1.sce @@ -0,0 +1,17 @@ +//caption- for calculating distribution factor +//Chapter 5 +//example 5.1 +//page 424 +clear; +clc; +disp("example 5.1"); +printf("\n"); +slots=18; +p=2; //nmber of poles +ph=3; //three phase winding +SA=(360/slots); //slot angle +m=slots/(p*ph); //m=nmber of slots per pole per phase +printf("number of slots per pole per phase,m=%d\n",m); +printf("emfs of the oils of each phase will have a time-phase difference of %d degree mechanical \n",SA); +k_d=sind((m*SA)/2)/(m*sind(SA/2)); +printf("distribution factor=%f",k_d); diff --git a/431/CH5/EX5.1/resultEX5_1.txt b/431/CH5/EX5.1/resultEX5_1.txt new file mode 100755 index 000000000..d12bf24d6 --- /dev/null +++ b/431/CH5/EX5.1/resultEX5_1.txt @@ -0,0 +1,6 @@ + + example 5.1 + +number of slots per pole per phase,m=3 +emfs of the oils of each phase will have a time-phase difference of 20 degree mechanical +distribution factor=0.959795 \ No newline at end of file -- cgit