summaryrefslogtreecommitdiff
path: root/1049/CH10/EX10.2/ch10_2.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1049/CH10/EX10.2/ch10_2.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1049/CH10/EX10.2/ch10_2.sce')
-rwxr-xr-x1049/CH10/EX10.2/ch10_2.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1049/CH10/EX10.2/ch10_2.sce b/1049/CH10/EX10.2/ch10_2.sce
new file mode 100755
index 000000000..222a9413b
--- /dev/null
+++ b/1049/CH10/EX10.2/ch10_2.sce
@@ -0,0 +1,12 @@
+clear;
+clc;
+V_s=230;
+V_m=sqrt(2)*V_s;
+R=10;
+a=30;
+V_or=(V_m/sqrt(2))*sqrt((1/%pi)*(%pi-a*%pi/180+sind(2*a)/2));
+I_or=V_or/R; printf("rms value of o/p current=%.2f A",I_or);
+printf("\nrms value of o/p current for each convertor=%.2f A",I_or/sqrt(2));
+printf("\nrms value of o/p current for each thyristor=%.3f A",I_or/2);
+I_s=I_or;
+pf=(I_or^2*R)/(V_s*I_s); printf("\ni/p pf=%.4f",pf); \ No newline at end of file