summaryrefslogtreecommitdiff
path: root/1309/CH11/EX11.4/ch11_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1309/CH11/EX11.4/ch11_4.sce')
-rwxr-xr-x1309/CH11/EX11.4/ch11_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1309/CH11/EX11.4/ch11_4.sce b/1309/CH11/EX11.4/ch11_4.sce
new file mode 100755
index 000000000..72c78b773
--- /dev/null
+++ b/1309/CH11/EX11.4/ch11_4.sce
@@ -0,0 +1,14 @@
+clc;
+clear;
+printf("\t\t\tChapter11_example4\n\n\n");
+// Determination of the percentage of total emitted energy that lies in the visible range.
+T=2800;
+lambda1=4e-7;
+lambda2=7e-7;
+hT=lambda1*T;
+lambdaT=lambda2*T;
+printf("\nhT=%.2e m.K and lambda2_T=%.2e m.K",hT,lambdaT);
+I1=0.0051; //Fraction of Total Radiation Emitted for lower Wavelength-Temperature Product from Table 11.1
+I2=0.065; //Fraction of Total Radiation Emitted for upper Wavelength-Temperature Product from Table 11.1
+dI=I2-I1;
+printf("\nThe percentage of total emitted energy that lies in the visible range is %.1f percent",dI*100);