diff options
Diffstat (limited to '181/CH7/EX7.54/example7_54.sce')
-rwxr-xr-x | 181/CH7/EX7.54/example7_54.sce | 19 |
1 files changed, 19 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 |