summaryrefslogtreecommitdiff
path: root/2231/CH2/EX2.7/Ex_2_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2231/CH2/EX2.7/Ex_2_7.sce')
-rwxr-xr-x2231/CH2/EX2.7/Ex_2_7.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2231/CH2/EX2.7/Ex_2_7.sce b/2231/CH2/EX2.7/Ex_2_7.sce
new file mode 100755
index 000000000..ed7d22203
--- /dev/null
+++ b/2231/CH2/EX2.7/Ex_2_7.sce
@@ -0,0 +1,20 @@
+//Example 2_7
+clc;
+clear;close;
+
+//Given data:
+P=10;//kW
+Idc=50;//A
+SF=2;//safety factor
+
+//Solution :
+Vdc=P*1000/Idc;//V
+alfa=0;//degree
+Vm=Vdc*%pi/(2*cosd(alfa))+1.7;//V
+PIV=2*Vm;//V
+Vthy=SF*PIV;//V
+disp(Vthy,"(a) Voltage rating of thristor in V");
+PIV=Vm;//V//for bridge rectifier
+Vthy=SF*PIV;//V
+disp(Vthy,"(b) Voltage rating of thristor in V");
+///Answer in the book is wrong.