Skip to content

Commit

Permalink
Merge branch 'master' of github.com:materialsproject/pymatgen
Browse files Browse the repository at this point in the history
  • Loading branch information
shyuep committed Apr 29, 2021
2 parents 8a7cb1e + 276c36e commit a2435fc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pymatgen/core/periodic_table.json

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions pymatgen/core/periodic_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,14 @@ def __init__(self, symbol: str):
.. attribute:: van_der_waals_radius
Van der Waals radius for the element. This is the empirical
value. Data is obtained from
http://en.wikipedia.org/wiki/Atomic_radii_of_the_elements_(data_page).
value determined from critical reviews of X-ray diffraction, gas kinetic
collision cross-section, and other experimental data by Bondi and later
workers. The uncertainty in these values is on the order of 0.1 Å.
Data are obtained from
"Atomic Radii of the Elements" in CRC Handbook of Chemistry and Physics,
91st Ed.; Haynes, W.M., Ed.; CRC Press: Boca Raton, FL, 2010.
.. attribute:: mendeleev_no
Expand Down
2 changes: 1 addition & 1 deletion pymatgen/core/tests/test_periodic_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def test_radii(self):
el = Element.Pd
self.assertEqual(el.atomic_radius, 1.40)
self.assertEqual(el.atomic_radius_calculated, 1.69)
self.assertEqual(el.van_der_waals_radius, 1.63)
self.assertEqual(el.van_der_waals_radius, 2.10)

def test_data(self):
self.assertEqual(Element.Pd.data["Atomic radius"], 1.4)
Expand Down

0 comments on commit a2435fc

Please sign in to comment.