diff options
Diffstat (limited to '135/CH7/EX7.2')
-rwxr-xr-x | 135/CH7/EX7.2/EX2.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/135/CH7/EX7.2/EX2.sce b/135/CH7/EX7.2/EX2.sce new file mode 100755 index 000000000..caab35349 --- /dev/null +++ b/135/CH7/EX7.2/EX2.sce @@ -0,0 +1,19 @@ +// Example 7.2: (a) Region of operation
+// (b) Region of operation
+// (c) Region of operation
+clc, clear
+VT=2; // in volts
+VGS=3; // in volts
+disp(VGS-VT,"VGS - VT (V)");
+
+disp("Part (a)");
+disp(0.5,"VDS (V) =");
+disp("Since VDS < VGS - VT, therefore transistor is in ohmic region.");
+
+disp("Part (b)");
+disp(1,"VDS (V) =");
+disp("Since VDS = VGS - VT, therefore transistor is in saturation region.");
+
+disp("Part (c)");
+disp(5,"VDS (V) =");
+disp("Since VDS > VGS - VT, therefore transistor is in saturation region.");
\ No newline at end of file |