diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /181/CH7/EX7.33/example7_33.sce | |
download | Scilab-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.33/example7_33.sce')
-rwxr-xr-x | 181/CH7/EX7.33/example7_33.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/181/CH7/EX7.33/example7_33.sce b/181/CH7/EX7.33/example7_33.sce new file mode 100755 index 000000000..34330054b --- /dev/null +++ b/181/CH7/EX7.33/example7_33.sce @@ -0,0 +1,23 @@ +// Find voltage gain,Current gain ratio
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 7-33 in page 337
+
+clear; clc; close;
+
+// Given data
+Rd=5*10^3; // Drain resistance in K-ohms
+Rg=500*10^3; // Gate resistance in K-ohms
+mu=60; // Amplification factor
+rds=30*10^3; // Dynamic resistance in K-ohms
+
+// Calculation
+Av=(mu*Rd)/(Rd+rds);
+Ai=(mu*Rg)/(rds+Rd);
+printf("(a)Voltage gain Av = %0.2f\n(b)Current gain Ai = %0.2f",Av,Ai);
+
+// Reuslt
+// (a) Av = 8.57
+// (b) Ai = 857.14
\ No newline at end of file |