blob: a0fe4360b1e90da7bf3fbe1c27c23f8dd354adba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//To Calculate the Temperature of Sun
//Example 28.3
clear;
clc;
b=0.288;//Wein Constant in cm-K
Lambda=470*10^(-7);//Wavelength corresponding to maximum intensity in centimetres
T=b/Lambda;//Temperature at the Surface of Sun
printf("Temperature at the sun surface = %f K",T);//The answer provided in the textbook is wrong
|