Skip to content

Commit

Permalink
Fix typo hlk instead of hkl
Browse files Browse the repository at this point in the history
  • Loading branch information
tkittel committed Oct 8, 2024
1 parent de7ea78 commit c51ed68
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2027,13 +2027,13 @@
" if hkl.d < 2.2:\n",
" break\n",
" print('-----------------------')\n",
" #print the label, dyspacing, structure factor and multiplicity:\n",
" #print the label, d-spacing, structure factor and multiplicity:\n",
" print(hkl)\n",
" #Access values as needed:\n",
" print(f' d = {hkl.d:g} Aa')\n",
" print(f' F^2 = {hkl.f2:g} barn')\n",
" print(f' multiplicity = {hkl.mult}')\n",
" for h,l,k in zip(hkl.h,hkl.k,hkl.l):\n",
" for h,k,l in zip(hkl.h,hkl.k,hkl.l):\n",
" print(f' hkl = {h}, {k}, {l}')"
]
},
Expand Down

0 comments on commit c51ed68

Please sign in to comment.