diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /833/CH7/EX7.3/Ex7_3.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '833/CH7/EX7.3/Ex7_3.sce')
-rwxr-xr-x | 833/CH7/EX7.3/Ex7_3.sce | 20 |
1 files changed, 20 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 |