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 /2129/CH3/EX3.10.5 | |
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 '2129/CH3/EX3.10.5')
-rwxr-xr-x | 2129/CH3/EX3.10.5/ex3_10_5.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2129/CH3/EX3.10.5/ex3_10_5.sce b/2129/CH3/EX3.10.5/ex3_10_5.sce new file mode 100755 index 000000000..3ad954a37 --- /dev/null +++ b/2129/CH3/EX3.10.5/ex3_10_5.sce @@ -0,0 +1,16 @@ +//Exa 3.10.5
+clc;
+clear;
+close;
+// Given data
+I=5;// in µA
+V=10;// in V
+T1= 0.11;// in °C^-1
+T2= 0.07;// in °C^-1
+// Io+I_R=I (i)
+// dI_by_dT= dIo_by_dT (ii)
+// 1/Io*dIo_by_dT = T1 and 1/I*dI_by_dT = T2, So
+Io= T2*I/T1;// in µA
+I_R= I-Io;// in µA
+R= V/I_R;// in MΩ
+disp(R,"The leakage resistance in MΩ is : ")
|