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.15 | |
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.15')
-rwxr-xr-x | 431/CH3/EX3.15/EX3_15.sce | 20 | ||||
-rwxr-xr-x | 431/CH3/EX3.15/resultEX3_15.txt | 4 |
2 files changed, 24 insertions, 0 deletions
diff --git a/431/CH3/EX3.15/EX3_15.sce b/431/CH3/EX3.15/EX3_15.sce new file mode 100755 index 000000000..2a48f984a --- /dev/null +++ b/431/CH3/EX3.15/EX3_15.sce @@ -0,0 +1,20 @@ +//Calculate percentage regulation
+//Chapter 3
+//Example 3.15
+//page 217
+clear;
+clc;
+disp("Example 3.15")
+kVA=30; //rating of the transformer
+V1=6000; //primary voltage in volts
+V2=230; //secondary voltage in volts
+R1=10; //primary resistance in ohms
+R2=0.016; //secondary resistance in ohms
+Xe=23; //total reactance reffered to the primary
+phi=acosd(0.8); //lagging
+Re=(R1+((V1/V2)^2*R2))
+printf("equivalent resistance,Re=%fohms",Re)
+I2dash=(kVA*1000)/V1;
+V2dash=5847;
+Reg=((I2dash*((Re*cosd(phi))+(Xe*sind(phi))))*100)/V2dash;
+printf("\npercentage regulation=%fpercent",Reg)
\ No newline at end of file diff --git a/431/CH3/EX3.15/resultEX3_15.txt b/431/CH3/EX3.15/resultEX3_15.txt new file mode 100755 index 000000000..67e94d516 --- /dev/null +++ b/431/CH3/EX3.15/resultEX3_15.txt @@ -0,0 +1,4 @@ +
+ Example 3.15
+equivalent resistance,Re=20.888469ohms
+percentage regulation=2.609097percent
\ No newline at end of file |