summaryrefslogtreecommitdiff
path: root/944/CH7/EX7.5/example7_5_TACC.sce
blob: 12c06c8b173d5170df52a2bdebb71b1edb69bc71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//example 7.5

clear;
clc;

//Given:
r1=0.001;//the population of the states at a higher energy to that at a lower energy 
dE=8*10^-20;//The difference in energy[J]
k=1.381*10^-23;//Boltzmann constant [J/K]


//To find the Temperature at this condition 
x=k*log(r1);
T=-dE/x;//[K]
printf("The Temperature at this condition is %f K",T);