summaryrefslogtreecommitdiff
path: root/2102/CH3/EX3.14
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2102/CH3/EX3.14
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/CH3/EX3.14')
-rwxr-xr-x2102/CH3/EX3.14/exa_3_14.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/2102/CH3/EX3.14/exa_3_14.sce b/2102/CH3/EX3.14/exa_3_14.sce
new file mode 100755
index 000000000..b0f421d8b
--- /dev/null
+++ b/2102/CH3/EX3.14/exa_3_14.sce
@@ -0,0 +1,25 @@
+// Exa 3.14
+clc;
+clear;
+close;
+// Given data
+// Part (i)
+I_D=2;// in mA
+I_D=I_D*10^-3;// in amp
+V_D= 0.5 ; // in volt
+R_DC= V_D/I_D;// in ohm
+disp(R_DC,"DC resistance levels for the diode in ohm")
+
+// Part (ii)
+I_D=20;// in mA
+I_D=I_D*10^-3;// in amp
+V_D= 0.8 ; // in volt
+R_DC= V_D/I_D;// in ohm
+disp(R_DC,"DC resistance levels for the diode in ohm")
+
+// Part (iii)
+I_D=-1;// in micro amp
+I_D=I_D*10^-6;// in amp
+V_D= -10 ; // in volt
+R_DC= V_D/I_D;// in ohm
+disp(R_DC*10^-6,"DC resistance levels for the diode in Mohm")