diff options
Diffstat (limited to '181/CH7/EX7.54')
-rwxr-xr-x | 181/CH7/EX7.54/example7_54.sce | 19 | ||||
-rwxr-xr-x | 181/CH7/EX7.54/example7_54.txt | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/181/CH7/EX7.54/example7_54.sce b/181/CH7/EX7.54/example7_54.sce new file mode 100755 index 000000000..2c857f23d --- /dev/null +++ b/181/CH7/EX7.54/example7_54.sce @@ -0,0 +1,19 @@ +// Find the maximum transconductance +// Basic Electronics +// By Debashis De +// First Edition, 2010 +// Dorling Kindersley Pvt. Ltd. India +// Example 7-54 in page 358 + +clear; clc; close; + +// Given data +Idss=1*10^-3; // Drain-source current in mA +Vp=-5; // Pinch off voltage in V + +// Calculation +gm=(2*Idss)/-Vp; +printf("gm = %0.1e mho",gm); + +// Result +// gm = 0.4 m-mho
\ No newline at end of file diff --git a/181/CH7/EX7.54/example7_54.txt b/181/CH7/EX7.54/example7_54.txt new file mode 100755 index 000000000..785b8c514 --- /dev/null +++ b/181/CH7/EX7.54/example7_54.txt @@ -0,0 +1 @@ + gm = 4.0e-004 mho
\ No newline at end of file |