summaryrefslogtreecommitdiff
path: root/2102/CH6/EX6.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2102/CH6/EX6.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 '2102/CH6/EX6.1')
-rwxr-xr-x2102/CH6/EX6.1/exa_6_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2102/CH6/EX6.1/exa_6_1.sce b/2102/CH6/EX6.1/exa_6_1.sce
new file mode 100755
index 000000000..368eb0163
--- /dev/null
+++ b/2102/CH6/EX6.1/exa_6_1.sce
@@ -0,0 +1,15 @@
+// Exa 6.1
+clc;
+clear;
+close;
+// Given data
+I_DSS= 10;// in mA
+V_P= -4;// in V
+ V_GS=[-4:0.1:0];
+//V_GS= -3;
+I_D= I_DSS*(1-V_GS/V_P)^2
+plot(V_GS,I_D);
+xlabel("V_GS in volts");
+ylabel("I_D in mA")
+title("The transfer curve")
+disp("Curve is shown in figure")