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 /1733/CH3/EX3.6 | |
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 '1733/CH3/EX3.6')
-rwxr-xr-x | 1733/CH3/EX3.6/3_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1733/CH3/EX3.6/3_6.sce b/1733/CH3/EX3.6/3_6.sce new file mode 100755 index 000000000..cde46711f --- /dev/null +++ b/1733/CH3/EX3.6/3_6.sce @@ -0,0 +1,16 @@ +//3.6
+clc;
+V=30;
+Vrms1=4*V/(2^0.5*%pi);
+printf("RMS value of fundamental component of input voltage = %.1f V", Vrms1)
+VL=V;
+R=3;
+Pout=VL^2/R;
+printf("\nOutput Power = %.0f W", Pout)
+Ip_thy=VL/R;
+printf("\nPeak current in each thyristor = %.0f A", Ip_thy)
+Iavg=Ip_thy/2;
+printf("\naverage current in each thyristor = %.1f A", Iavg)
+PIV=VL;
+printf("\nPeak reverse blocking voltahe = %.0f V", PIV)
+
|