summaryrefslogtreecommitdiff
path: root/3651/CH6/EX6.15/15.sce
diff options
context:
space:
mode:
Diffstat (limited to '3651/CH6/EX6.15/15.sce')
-rw-r--r--3651/CH6/EX6.15/15.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3651/CH6/EX6.15/15.sce b/3651/CH6/EX6.15/15.sce
new file mode 100644
index 000000000..a485872b6
--- /dev/null
+++ b/3651/CH6/EX6.15/15.sce
@@ -0,0 +1,23 @@
+
+//Variable declaration
+N=1/60
+e=1.6*10**-19
+ni=2.5*10**13
+b=5*10**13
+E=2
+
+//Calculations
+n=(b+sqrt(2*b**2))/2
+mu_p=N/(3*e*ni)
+mu_i=2*mu_p
+np=ni**2
+p=(ni**2)/n
+e=1.6*10**-19
+E=2
+J=(e*E)*((n*mu_i)+(p*mu_p))
+//Result
+printf('mu_p= %0.3f cm**2/V-s \n',(mu_p))
+printf('n= %0.3f *10**13/cm**3 \n',(n/10**13))
+printf('p= %0.3f *10**13/cm**3 \n',(p*10**-13))
+printf('J= %0.3f A/m**2 \n',(J*10**4))
+printf('//Answer varies due to ing of numbers') \ No newline at end of file