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 /2102/CH3/EX3.17/exa_3_17.sce | |
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 '2102/CH3/EX3.17/exa_3_17.sce')
-rwxr-xr-x | 2102/CH3/EX3.17/exa_3_17.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2102/CH3/EX3.17/exa_3_17.sce b/2102/CH3/EX3.17/exa_3_17.sce new file mode 100755 index 000000000..8bd1fb8b2 --- /dev/null +++ b/2102/CH3/EX3.17/exa_3_17.sce @@ -0,0 +1,13 @@ +// Exa 3.17
+clc;
+clear;
+close;
+// Given data
+I= 30;// in µA
+I=I*10^-6;// in A
+T=125+273;// in K
+r_F= T/(11600*I*%e^(-0.32/T)*11600);// in Ω
+disp(r_F*10^3,"The dynamic resistance in mΩ is : ")
+
+// Note: There are two error in this example in the book. First one is this that putted value of T in first term of calculation (i.e 3.98/11600) is wrong (correct value is 398 not 3.98).
+// and second one error is this that calculaiton is also wrong for putted value
|