diff options
Diffstat (limited to '2243/CH11/EX11.9/Ex11_9.sce')
-rwxr-xr-x | 2243/CH11/EX11.9/Ex11_9.sce | 9 |
1 files changed, 9 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);
|