summaryrefslogtreecommitdiff
path: root/1730/CH2/EX2.3/Exa2_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1730/CH2/EX2.3/Exa2_3.sce
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 '1730/CH2/EX2.3/Exa2_3.sce')
-rwxr-xr-x1730/CH2/EX2.3/Exa2_3.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1730/CH2/EX2.3/Exa2_3.sce b/1730/CH2/EX2.3/Exa2_3.sce
new file mode 100755
index 000000000..eec2ba30c
--- /dev/null
+++ b/1730/CH2/EX2.3/Exa2_3.sce
@@ -0,0 +1,16 @@
+//Exa2.3
+clc;
+clear;
+close;
+//given data :
+miu_e=7.04*10^-3; //in m^2/V-s
+n=5.8*10^28 ; // in /m^3
+e=1.6*10^-19; // in coulomb
+m=9.1*10^-31;//in kg
+//(i) Relaxation time,
+tau=miu_e/e*m;
+disp("Relaxation time is : "+string(tau)+" second");
+sigma=(n*e*miu_e);
+//(ii) Resistivity of conductor,
+rho=1/sigma;
+disp("Resistivity of conductor is : "+string(rho)+" ohm-meter"); \ No newline at end of file