diff options
Diffstat (limited to '3745/CH1/EX1.75/Ex1_75.sce')
-rw-r--r-- | 3745/CH1/EX1.75/Ex1_75.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3745/CH1/EX1.75/Ex1_75.sce b/3745/CH1/EX1.75/Ex1_75.sce new file mode 100644 index 000000000..29a316069 --- /dev/null +++ b/3745/CH1/EX1.75/Ex1_75.sce @@ -0,0 +1,19 @@ +// Ex 75 Page 414 + +clc;clear;close; +// Given +Ebb=400;//V +Emm=250;//V +Ibb=25;//A +Po=2.5*10**3;//W + +m=Emm/Ebb;//modulation index +Pbb=Ebb*Ibb +eta=Po/Pbb*100;//% +P=Po*(1+m**2/2);//W +Pdo=Pbb-Po;//W +Pd=Pdo*(1+m**2/2);//W +printf("\n carrier power under modulated condition = %0.2f kW",P/1000) +printf("\n plate circuit efficiency = %.f percent",eta) +printf("\n plate dissipation under unmodulated condition = %.1f kW",Pdo/1000) +printf("\n plate dissipation under modulated condition = %.2f kW",Pd/1000) |