diff options
Diffstat (limited to '3507/CH14/EX14.17/Ex14_17.sce')
-rw-r--r-- | 3507/CH14/EX14.17/Ex14_17.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3507/CH14/EX14.17/Ex14_17.sce b/3507/CH14/EX14.17/Ex14_17.sce new file mode 100644 index 000000000..cfec23734 --- /dev/null +++ b/3507/CH14/EX14.17/Ex14_17.sce @@ -0,0 +1,12 @@ +// chapter14
+// example14.17
+// page 312
+
+Rp=300 //ohm
+Rs=3 // ohm
+Ro=3d3 // ohm
+
+// since output resistance of transistor Ro=Rp+n^2*Rs for maximum power transfer, making n as subject we get
+n=((Ro-Rp)/Rs)^0.5
+
+printf("turn ratio for maximum power transfer = %d \n",n)
|