summaryrefslogtreecommitdiff
path: root/2459/CH13/EX13.16/Ex13_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '2459/CH13/EX13.16/Ex13_16.sce')
-rw-r--r--2459/CH13/EX13.16/Ex13_16.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2459/CH13/EX13.16/Ex13_16.sce b/2459/CH13/EX13.16/Ex13_16.sce
new file mode 100644
index 000000000..b84af237c
--- /dev/null
+++ b/2459/CH13/EX13.16/Ex13_16.sce
@@ -0,0 +1,15 @@
+//chapter13
+//example13.16
+//page290
+
+Ao=1000
+Rout=1 // ohm
+Rl=4 // ohm
+Rin=2d3 // ohm
+I2=0.5 // A
+
+// here I2/I1=Ao*Rin/(Rout+Rl) so
+I1=I2*(Rout+Rl)/(Ao*Rin)
+V1=I1*Rin // in V
+
+printf("required input signal voltage = %.3f mV \n",V1*1d3)