summaryrefslogtreecommitdiff
path: root/833/CH7/EX7.3
diff options
context:
space:
mode:
Diffstat (limited to '833/CH7/EX7.3')
-rwxr-xr-x833/CH7/EX7.3/Ex7_3.sce20
-rwxr-xr-x833/CH7/EX7.3/Ex7_3.txt20
-rwxr-xr-x833/CH7/EX7.3/Result7_3.txt16
3 files changed, 56 insertions, 0 deletions
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
diff --git a/833/CH7/EX7.3/Ex7_3.txt b/833/CH7/EX7.3/Ex7_3.txt
new file mode 100755
index 000000000..96c85bd5a
--- /dev/null
+++ b/833/CH7/EX7.3/Ex7_3.txt
@@ -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
diff --git a/833/CH7/EX7.3/Result7_3.txt b/833/CH7/EX7.3/Result7_3.txt
new file mode 100755
index 000000000..4eb5a8cd9
--- /dev/null
+++ b/833/CH7/EX7.3/Result7_3.txt
@@ -0,0 +1,16 @@
+ Current(in A) and voltage(in volts) for LAP winding=
+
+ 217.3913
+
+ 230.
+
+ Current(in A) and voltage(in volts) for WAVE winding=
+
+ 108.69565
+
+ 460.
+
+ Output is same for both connections(in watts)=
+
+ 50000.
+ \ No newline at end of file