From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 135/CH7/EX7.1/7_1.JPG | Bin 0 -> 24381 bytes 135/CH7/EX7.1/EX1.sce | 10 ++++++++++ 2 files changed, 10 insertions(+) create mode 100755 135/CH7/EX7.1/7_1.JPG create mode 100755 135/CH7/EX7.1/EX1.sce (limited to '135/CH7/EX7.1') diff --git a/135/CH7/EX7.1/7_1.JPG b/135/CH7/EX7.1/7_1.JPG new file mode 100755 index 000000000..ddd0f0967 Binary files /dev/null and b/135/CH7/EX7.1/7_1.JPG differ diff --git a/135/CH7/EX7.1/EX1.sce b/135/CH7/EX7.1/EX1.sce new file mode 100755 index 000000000..e96969d94 --- /dev/null +++ b/135/CH7/EX7.1/EX1.sce @@ -0,0 +1,10 @@ +// Example 7.1: Transfer curve +clc, clear +IDSS=12; // in mili-amperes +VP=-5; // in volts +// Plotting transfer curve +VGS=[0:-0.01:VP]; // Gate source voltage in volts +// Using Shockley's equation +ID=IDSS*(1-VGS/VP)^2; // Drain current in mili-amperes +plot(VGS,ID); +xtitle("Transfer Curve","VGS (V)","ID (mA)"); \ No newline at end of file -- cgit