forked from hornos/lev00
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mendeleev.f90
16 lines (14 loc) · 866 Bytes
/
mendeleev.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module mendeleev
!............. Mendeleev's table of the first 82 elements
character*2,dimension(112),parameter :: NAZV=(/' H','He', &
'Li','Be',' B',' C',' N',' O',' F','Ne', &
'Na','Mg','Al','Si',' P',' S','Cl','Ar', &
' K','Ca','Sc','Ti',' V','Cr','Mn','Fe','Co','Ni','Cu','Zn','Ga','Ge','As','Se','Br','Kr', &
'Rb','Sr',' Y','Zr','Nb','Mo','Tc','Ru','Rh','Pd','Ag','Cd','In','Sn','Sb','Te',' I','Xe', &
'Cs','Ba', &
'La','Ce','Pr','Nd','Pm','Sm','Eu','Gd','Tb','Dy','Ho','Er','Tm','Yb','Lu', &
'Hf','Ta',' W','Re','Os','Ir','Pt','Au','Hg','Tl','Pb','Bi','Po','At','Rn',&
'Fr','Ra', &
'Ac','Th','Pa',' U','Np','Pu','Am','Cm','Bk','Cf','Es','Fm','Md','No','Lr', &
'Rf','Db','Sg','Bh','Hs','Mt','Ds','Rg','Cn'/)
end module mendeleev