diff options
Diffstat (limited to '3753/CH4/EX4.2/Ex4_2.sce')
-rw-r--r-- | 3753/CH4/EX4.2/Ex4_2.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3753/CH4/EX4.2/Ex4_2.sce b/3753/CH4/EX4.2/Ex4_2.sce new file mode 100644 index 000000000..b145e6ccc --- /dev/null +++ b/3753/CH4/EX4.2/Ex4_2.sce @@ -0,0 +1,19 @@ +//Example 4.2, Page number 4.32 + +clc;clear;close + +// variable declaration +C=3*10**8 // The speed of light +Lamda=6943 // Wavelength +T=300 // Temperature in Kelvin +h=6.626*10**-34 // Planck constant +k=1.38*10**-23 // Boltzmann's constant + +// Calculations + +V=(C)/(Lamda*10**-10) // Frequency +R=exp(h*V/(k*T)) // Relative population + +// Result +printf("Frequency (V) = %0.2e Hz",V) +printf("\nRelative Population = %.3e",R) |