diff options
Diffstat (limited to '2231/CH3/EX3.3/Ex_3_3.sce')
-rwxr-xr-x | 2231/CH3/EX3.3/Ex_3_3.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2231/CH3/EX3.3/Ex_3_3.sce b/2231/CH3/EX3.3/Ex_3_3.sce new file mode 100755 index 000000000..4b8883de0 --- /dev/null +++ b/2231/CH3/EX3.3/Ex_3_3.sce @@ -0,0 +1,22 @@ +//Example 3_3
+clc;
+clear;close;
+
+//Given data:
+RL=3;//in ohm
+V=30;//in V
+
+//Solution :
+Vpeak=2*V/%pi;//V
+Vrms=Vpeak/sqrt(2);//V
+disp(Vrms,"(a) RMS value of output voltage(V) : ");
+//VL=sqrt(2/T*integrate('(V/2)^2','t',0,T/2));//V
+VL=V/2;//V
+Pout=VL^2/RL;//W
+disp(Pout,"(b) Output power(W) : ");
+Ipeak=VL/RL;//A
+disp(Ipeak,"(c) Peak current in thyristor(A) : ");
+Iavg=Ipeak*50/100;//A
+disp(Iavg,"(d) Average current of each thyristor(A) : ");
+Vprb=2*VL;//V
+disp(Vprb,"(e) Peak reverse braking voltage(V) : ");
|