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 /431/CH3/EX3.12/EX3_12.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 '431/CH3/EX3.12/EX3_12.sce')
-rwxr-xr-x | 431/CH3/EX3.12/EX3_12.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/431/CH3/EX3.12/EX3_12.sce b/431/CH3/EX3.12/EX3_12.sce new file mode 100755 index 000000000..ce25d3eb8 --- /dev/null +++ b/431/CH3/EX3.12/EX3_12.sce @@ -0,0 +1,24 @@ +//Calculating equivalent impedence referred to primary
+//Chapter 3
+//Example 3.12
+//page 216
+clear;
+clc;
+disp("Example 3.11")
+f=50; //frequency in hertz
+r=6; //turns ratio
+R1=0.90; //primary resistance in ohms
+R2=0.03; //secondary resistance in ohms
+X1=5; //primary reactance in ohms
+X2=0.13; //secondary reactance in ohms
+I2=200; //full-load current
+Re=(R1+(R2*r^2));
+printf("equivalent resistance reffered to primary,Re=%fohms",Re);
+Xe=(X1+(X2*r^2));
+printf("\nequivalent reactance reffered to primary,Xe=%fohms",Xe);
+Ze=sqrt(Re^2+Xe^2);
+printf("\nequivalent impedance reffered to primary,Ze=%fohms",Ze);
+Ii2=r*I2;
+printf("\nsecondary current reffered to primary side=%fA",Ii2);
+printf("\n(a)Voltage to be applied to the high voltage side=%dvolts",(Ii2*Ze));
+printf("\n(b)Power factor=%f",(Re/Ze));
|