diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1172/CH3/EX3.17 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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 )
|