summaryrefslogtreecommitdiff
path: root/3507/CH14/EX14.16/Ex14_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '3507/CH14/EX14.16/Ex14_16.sce')
-rw-r--r--3507/CH14/EX14.16/Ex14_16.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3507/CH14/EX14.16/Ex14_16.sce b/3507/CH14/EX14.16/Ex14_16.sce
new file mode 100644
index 000000000..34b02f332
--- /dev/null
+++ b/3507/CH14/EX14.16/Ex14_16.sce
@@ -0,0 +1,16 @@
+// chapter14
+// example14.16
+// page 312
+
+Vp=10 // V
+// for maximum power transfer, primary impedence = output impedence of aource
+Rp=10d3 // ohm
+Rs=16 // ohm
+
+// since Rp=(Np/Ns)^2*Rs, making Np/Ns i.e. n as subject we get
+n=(Rp/Rs)^(0.5)
+
+// since Vs/Vp=Ns/Np, making Vs as subject we get
+Vs=(1/n)*Vp
+printf("required turn ratio = %d \n",n)
+printf("voltage across external load = %.3f V \n",Vs)