summaryrefslogtreecommitdiff
path: root/3507/CH13/EX13.16
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3507/CH13/EX13.16
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3507/CH13/EX13.16')
-rw-r--r--3507/CH13/EX13.16/Ex13_16.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3507/CH13/EX13.16/Ex13_16.sce b/3507/CH13/EX13.16/Ex13_16.sce
new file mode 100644
index 000000000..b84af237c
--- /dev/null
+++ b/3507/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)