summaryrefslogtreecommitdiff
path: root/2243/CH11/EX11.9
diff options
context:
space:
mode:
Diffstat (limited to '2243/CH11/EX11.9')
-rwxr-xr-x2243/CH11/EX11.9/Ex11_9.sce9
-rwxr-xr-x2243/CH11/EX11.9/Res11_9.txt1
2 files changed, 10 insertions, 0 deletions
diff --git a/2243/CH11/EX11.9/Ex11_9.sce b/2243/CH11/EX11.9/Ex11_9.sce
new file mode 100755
index 000000000..90050871a
--- /dev/null
+++ b/2243/CH11/EX11.9/Ex11_9.sce
@@ -0,0 +1,9 @@
+clc();
+clear;
+//Given :
+D = 5*10^28; // density of atoms in silicon per m^3
+C = 2.0*10^8; //donor concentration
+ND = D/C; // donor atoms density per m^3
+// ND = 4.82*10^21*T^(3/2)
+T = (ND/(4.82*10^21))^(2/3);
+printf("Temperature = %.2f K",T);
diff --git a/2243/CH11/EX11.9/Res11_9.txt b/2243/CH11/EX11.9/Res11_9.txt
new file mode 100755
index 000000000..645cc2c47
--- /dev/null
+++ b/2243/CH11/EX11.9/Res11_9.txt
@@ -0,0 +1 @@
+ Temperature = 0.14 K \ No newline at end of file