summaryrefslogtreecommitdiff
path: root/2231/CH2/EX2.10/Ex_2_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '2231/CH2/EX2.10/Ex_2_10.sce')
-rwxr-xr-x2231/CH2/EX2.10/Ex_2_10.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/2231/CH2/EX2.10/Ex_2_10.sce b/2231/CH2/EX2.10/Ex_2_10.sce
new file mode 100755
index 000000000..e1074e23e
--- /dev/null
+++ b/2231/CH2/EX2.10/Ex_2_10.sce
@@ -0,0 +1,23 @@
+//Example 2_10
+clc;
+clear;close;
+
+//Given data:
+Vs=230;//V
+f=50;//Hz
+Vdc=100;//V
+Ip=15;//A
+alfa=30;//degree
+
+//Solution :
+//Vdc=2*Vm*cosd(alfa)/%pi-2*1.7//(Full converter bridge)
+Vm=(Vdc+2*1.7)/2/cosd(alfa)*%pi;//V
+Vrms=Vm/sqrt(2);//V
+TurnRatio=Vs/Vrms;
+disp(TurnRatio,"(a) Turn ratio of transformer");
+Irms=sqrt(Ip^2/2);//A
+Rating=Vrms*Ip;//VA
+disp(Rating,"(b) Transformer rating in VA");
+PIV=Vm;//V
+disp(PIV,"(c) PIV in V");
+disp(Irms,"(d) RMS value of thyristor current in A");