summaryrefslogtreecommitdiff
path: root/3888/CH16/EX16.1/Ex16_1.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH16/EX16.1/Ex16_1.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip
Added new codeHEADmaster
Diffstat (limited to '3888/CH16/EX16.1/Ex16_1.sce')
-rw-r--r--3888/CH16/EX16.1/Ex16_1.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3888/CH16/EX16.1/Ex16_1.sce b/3888/CH16/EX16.1/Ex16_1.sce
new file mode 100644
index 000000000..7666d1725
--- /dev/null
+++ b/3888/CH16/EX16.1/Ex16_1.sce
@@ -0,0 +1,26 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 16.1
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+V=238; //Transformer primary voltage in kV
+Em=110; //Transformer secondary voltage in kV
+f=50; //Supply frequency in Hz
+u=20; //Commutation angle in degree
+alpha1=30; //Delay angle 1 in degree
+alpha2=90; //Delay angle 2 in degree
+alpha3=150; //Delay angle 3 in degree
+Vdo=3*sqrt(3*2)*Em/(%pi*sqrt(3)); //Direct output voltage in kV
+Vd1=Vdo/2*(cosd(alpha1)+cosd(alpha1+u)); //Direct output voltage when commutation angle 20 and delay angle is 30 degree in kV
+Vd2=Vdo/2*(cosd(alpha2)+cosd(alpha2+u)); //Direct output voltage when commutation angle 20 and delay angle is 90 degree in kV
+Vd3=Vdo/2*(cosd(alpha3)+cosd(alpha3+u)); //Direct output voltage when commutation angle 20 and delay angle is 150 degree in kV
+
+printf("\nThe direct voltage output is %.2f kV",Vdo);
+printf("\nThe direct voltage output when commutation angle 20 and delay angle is 30 degree is %.2f kV",Vd1);
+printf("\nThe direct voltage output when commutation angle 20 and delay angle is 90 degree is %.2f kV",Vd2);
+printf("\nThe direct voltage output when commutation angle 20 and delay angle is 150 degree is %.2f kV",Vd3);