diff options
Diffstat (limited to '3651/CH6/EX6.11')
-rw-r--r-- | 3651/CH6/EX6.11/11.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3651/CH6/EX6.11/11.sce b/3651/CH6/EX6.11/11.sce new file mode 100644 index 000000000..e4798b1ca --- /dev/null +++ b/3651/CH6/EX6.11/11.sce @@ -0,0 +1,10 @@ +//Variable declaration
+Na=5*10**23
+Nd=3*10**23
+ni=2*10**16
+//Calculations
+p=((Na-Nd)+(Na-Nd))/2
+
+//Result
+printf('p = %0.3f *10**23 m**-3 \n',p*10**-23)
+printf('The electron concentration is given by n = %0.3f *10**9 m**-3 \n',ni**2/p*10**-9)
\ No newline at end of file |