diff options
Diffstat (limited to '3836/CH6/EX6.5/Ex6_5.sce')
-rw-r--r-- | 3836/CH6/EX6.5/Ex6_5.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3836/CH6/EX6.5/Ex6_5.sce b/3836/CH6/EX6.5/Ex6_5.sce new file mode 100644 index 000000000..958ef812f --- /dev/null +++ b/3836/CH6/EX6.5/Ex6_5.sce @@ -0,0 +1,17 @@ +clear +//Initialisation +Vi=1.82 //Input Voltage of Amplifier +Ri=1000 //Input Resistance of amplifier in Ohm +Vo=15.2 //Output Voltage of Amplifier +Rl=50 //Load Resistance + + +//Calculation +Pi=(Vi**2)*Ri**-1 //Input Power in Watt +Po=(Vo**2)*Rl**-1 //Output Power in Watt +Ap=Po/Pi //Power Gain + + +//Result +printf("\n Power Gain, Ap = %d",Ap) + |