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 --- 833/CH7/EX7.3/Ex7_3.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 833/CH7/EX7.3/Ex7_3.sce (limited to '833/CH7/EX7.3/Ex7_3.sce') diff --git a/833/CH7/EX7.3/Ex7_3.sce b/833/CH7/EX7.3/Ex7_3.sce new file mode 100755 index 000000000..96c85bd5a --- /dev/null +++ b/833/CH7/EX7.3/Ex7_3.sce @@ -0,0 +1,20 @@ +//Caption:Find effect of change in connection on voltage,current and output +//Exa:7.3 +clc; +clear; +close; +P=50000//Power of generator(in watt) +V_b1=230//Voltage of generator(in volts) +p=4//Number of poles +a=4//Number of parallel paths for lap winding +b=2//Number of parallel paths for wave winding +C=268//Number of conductors with LAP winding +t=2//Two turns coils are used +c=t*2//Conductors per slot +n=C/c +I_1=P/(V_b1) +V_b2=V_b1*b +I_2=P/(V_b2) +disp(V_b1,I_1,'Current(in A) and voltage(in volts) for LAP winding=') +disp(V_b2,I_2,'Current(in A) and voltage(in volts) for WAVE winding=') +disp(P,'Output is same for both connections(in watts)=') \ No newline at end of file -- cgit