diff options
Diffstat (limited to '1172/CH3/EX3.17')
-rwxr-xr-x | 1172/CH3/EX3.17/3_17.txt | 6 | ||||
-rwxr-xr-x | 1172/CH3/EX3.17/Example3_17.sce | 10 |
2 files changed, 16 insertions, 0 deletions
diff --git a/1172/CH3/EX3.17/3_17.txt b/1172/CH3/EX3.17/3_17.txt new file mode 100755 index 000000000..dd82ea421 --- /dev/null +++ b/1172/CH3/EX3.17/3_17.txt @@ -0,0 +1,6 @@ +
+ # Problem 17 #
+
+ Standard formula Used
+ lambda * T = constant
+ Blackbody will emit wavelength 1.4e-5 cm at 20727 K.
diff --git a/1172/CH3/EX3.17/Example3_17.sce b/1172/CH3/EX3.17/Example3_17.sce new file mode 100755 index 000000000..2a70104c9 --- /dev/null +++ b/1172/CH3/EX3.17/Example3_17.sce @@ -0,0 +1,10 @@ +clc
+//Given that
+lambda1 = 4700 // wavelength in Angstrom
+lambda2 = 1.4e-5//wavelength in cm
+temp1 = 6174 // temperature of a black of in kelvin
+//Sample Problem 17 page No. 143
+printf("\n\n\n # Problem 17 # \n")
+printf("\n Standard formula Used \n lambda * T = constant")
+temp2 = lambda1 * temp1 / (lambda2 * 1e8) //calculation of temperature
+printf ("\n Blackbody will emit wavelength 1.4e-5 cm at %d K.", temp2 )
|