diff options
Diffstat (limited to '2198/CH1/EX1.40.9/Ex1_40_9.sce')
-rwxr-xr-x | 2198/CH1/EX1.40.9/Ex1_40_9.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2198/CH1/EX1.40.9/Ex1_40_9.sce b/2198/CH1/EX1.40.9/Ex1_40_9.sce new file mode 100755 index 000000000..f822ad95b --- /dev/null +++ b/2198/CH1/EX1.40.9/Ex1_40_9.sce @@ -0,0 +1,11 @@ +//Ex 1.40.9
+clc;clear;close;
+format('v',9);
+
+//Given :
+ni=10^16;//per m^3
+ND=10^22;//per m^3
+n=ND;//per m^3//ND>>ni
+disp(n,"Electron concentration(per m^3) : ");
+p=ni^2/n;//per m^3
+disp(p,"Electron concentration(per m^3) : ");
|