summaryrefslogtreecommitdiff
path: root/3755/CH5/EX5.4/Ex5_4.sce
blob: dd316b672a23def46bce1a00d6f75e2c175068ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
clear
//
//
//

//Variable declaration    
T=10^7;    //temperature(K)
b=0.292;      //value of b(cmK)

//Calculations
lamda_m=b/T;          //wavelength(cm)

//Result
printf("\n wavelength is %0.3f angstrom",lamda_m*10^8)