summaryrefslogtreecommitdiff
path: root/3311/CH10/EX10.5/Ex10_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3311/CH10/EX10.5/Ex10_5.sce')
-rwxr-xr-x3311/CH10/EX10.5/Ex10_5.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3311/CH10/EX10.5/Ex10_5.sce b/3311/CH10/EX10.5/Ex10_5.sce
new file mode 100755
index 000000000..c623747cf
--- /dev/null
+++ b/3311/CH10/EX10.5/Ex10_5.sce
@@ -0,0 +1,17 @@
+// chapter 10
+// example 10.5
+// Determine the input current to the convertors
+// page-701
+clear;
+clc;
+// given
+m=6; // number of pulses
+Pi=50; // in kVA ()power of cycloconvertor)
+E=415; // in V
+theta=45; // in degree (firing angle)
+alpha0=0.8; // power factor
+// calculate
+Pi=Pi*1E3; // changing unit from kVA to VA
+// since Pi=3*E*Im_phase=3*E*I*(cos(theta)/sqrt(2))*alpha0, therefore we get
+I=Pi/(3*E*(cosd(theta)/sqrt(2))*alpha0);// calculation of input current to the convertors
+printf("\nThe input current to the convertors is \t I=%.2f A",I); \ No newline at end of file