diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /72/CH6/EX6.3.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '72/CH6/EX6.3.1')
-rwxr-xr-x | 72/CH6/EX6.3.1/6_3_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/72/CH6/EX6.3.1/6_3_1.sce b/72/CH6/EX6.3.1/6_3_1.sce new file mode 100755 index 000000000..d01f252bf --- /dev/null +++ b/72/CH6/EX6.3.1/6_3_1.sce @@ -0,0 +1,16 @@ +//CAPTION: Current_of_a_HEMT
+//chapter_no.-6, page_no.-251
+//Example_no.6-3-1
+clc;
+
+//Calculate_the_Drain_Current
+
+q=1.60*(10^-19);
+n=5.21*(10^15);
+W=150*(10^-6);
+v=2*(10^5);
+
+Ids=q*n*W*v;
+Ids=1000*Ids;
+disp(Ids,'the_drain_current_is(mA)');
+
|