blob: 2c857f23de3e52e05f29b30bb0368864ec0ad4ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|