summaryrefslogtreecommitdiff
path: root/135/CH7/EX7.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /135/CH7/EX7.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '135/CH7/EX7.1')
-rwxr-xr-x135/CH7/EX7.1/7_1.JPGbin0 -> 24381 bytes
-rwxr-xr-x135/CH7/EX7.1/EX1.sce10
2 files changed, 10 insertions, 0 deletions
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
--- /dev/null
+++ b/135/CH7/EX7.1/7_1.JPG
Binary files 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