summaryrefslogtreecommitdiff
path: root/181/CH7/EX7.32
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /181/CH7/EX7.32
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 '181/CH7/EX7.32')
-rwxr-xr-x181/CH7/EX7.32/example7_32.sce19
-rwxr-xr-x181/CH7/EX7.32/example7_32.txt1
2 files changed, 20 insertions, 0 deletions
diff --git a/181/CH7/EX7.32/example7_32.sce b/181/CH7/EX7.32/example7_32.sce
new file mode 100755
index 000000000..4ba9c9e43
--- /dev/null
+++ b/181/CH7/EX7.32/example7_32.sce
@@ -0,0 +1,19 @@
+// Calculate Zo for rd=50k-ohms
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 7-32 in page 337
+
+clear; clc; close;
+
+// Given data
+rd=50*10^3; // Dynamic resistance in K-ohms
+Rd=20*10^3; // Drain resistance in K-ohms
+
+// Calculation
+Zo=(rd*Rd)/(rd+Rd);
+printf("Output impedance Zo = %0.3e ohms",Zo);
+
+// Result
+// Zo = 14.28 K-ohms \ No newline at end of file
diff --git a/181/CH7/EX7.32/example7_32.txt b/181/CH7/EX7.32/example7_32.txt
new file mode 100755
index 000000000..1947c6cf4
--- /dev/null
+++ b/181/CH7/EX7.32/example7_32.txt
@@ -0,0 +1 @@
+Output impedance Zo = 1.429e+004 ohms \ No newline at end of file