diff options
Diffstat (limited to '3769/CH27/EX27.20/Ex27_20.sce')
-rw-r--r-- | 3769/CH27/EX27.20/Ex27_20.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3769/CH27/EX27.20/Ex27_20.sce b/3769/CH27/EX27.20/Ex27_20.sce new file mode 100644 index 000000000..0f7ef5d5a --- /dev/null +++ b/3769/CH27/EX27.20/Ex27_20.sce @@ -0,0 +1,17 @@ +clear +//Given +a=200 +b=50 +c=17 +d=5 +e=4000 + +//Calculation +Ib=(a-b)*10**-3 +Ic=c-d +B=Ic/Ib +D=e/B +Ap=B**2*D + +//Result +printf("\n The value of power gain is %0.3f *10**5",Ap*10**-5) |