summaryrefslogtreecommitdiff
path: root/2102/CH1/EX1.20
diff options
context:
space:
mode:
Diffstat (limited to '2102/CH1/EX1.20')
-rwxr-xr-x2102/CH1/EX1.20/exa_1_20.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2102/CH1/EX1.20/exa_1_20.sce b/2102/CH1/EX1.20/exa_1_20.sce
new file mode 100755
index 000000000..a41c00e3f
--- /dev/null
+++ b/2102/CH1/EX1.20/exa_1_20.sce
@@ -0,0 +1,12 @@
+// Exa 1.20
+clc;
+clear;
+close;
+// Given data
+e= 1.6*10^-19;// in C
+I=100;// in A
+n_o= 8.5*10^28;// in m^-3
+A=10^-5;// in m^2
+// Formula I= n_o*A*e*Vd
+Vd= I/(n_o*e*A);// in ms^-1
+disp(Vd,"The drift velocity of free electron in ms^-1 is : ")