diff options
Diffstat (limited to '2672/CH6/EX6.14')
-rwxr-xr-x | 2672/CH6/EX6.14/Ex6_14.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2672/CH6/EX6.14/Ex6_14.sce b/2672/CH6/EX6.14/Ex6_14.sce new file mode 100755 index 000000000..06b0bf1c3 --- /dev/null +++ b/2672/CH6/EX6.14/Ex6_14.sce @@ -0,0 +1,16 @@ +//Example 6_14
+clc;
+clear;
+close;
+format('v',7);
+//given data :
+Vdc=100;//V
+rf=20;//ohm
+RL=500;//ohm
+Idc=Vdc/RL;//A
+Im=%pi*Idc;//A
+Vm=Im*(RL+rf);//V
+disp(Vm,"(a) The ac voltage required(V) : ");
+format('v',5);
+Eta=0.406/(1+rf/RL)*100;//%(Rectification Efficiency)
+disp(Eta,"Rectification Efficiency(%) : ");
|