summaryrefslogtreecommitdiff
path: root/3850/CH43/EX43.2/Example43_2.sce
blob: 4d3d06408837d1dcc84a4ddeb93c4772da3e96be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//To Calculate the Wavelength of Radiation for Helium Ion

//Example 43.2

clear;

clc;

n=2;//Final State of the electron

m=3;//Initial State of the Electron

R=1.0973*10^7;//Rydberg's Constant

Z=2;//Atomic Number for Helium Ion

L=1/(R*Z^2*((1/n^2)-(1/m^2)));//Wavelength of radiation emitted when Helium ion make a transition from the state n=3 to n=2

printf("Wavelength of radiation emitted when Helium ion makes a transition from the state n=3 to n=2 is = %.0f nm",L*10^9);