Skip to content

Commit

Permalink
Add GAMMA to MolecularTermSymbol
Browse files Browse the repository at this point in the history
  • Loading branch information
xnx committed Feb 3, 2022
1 parent 897e1cd commit db0a8b5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/pyvalem/states/molecular_term_symbol.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,13 @@
"GAMMAu": "Γu",
}

latex_terms = {"Σ": r"\Sigma", "Π": r"\Pi", "Δ": r"\Delta", "Φ": r"\Phi",
"Γ": r"\Gamma"}
latex_terms = {
"Σ": r"\Sigma",
"Π": r"\Pi",
"Δ": r"\Delta",
"Φ": r"\Phi",
"Γ": r"\Gamma",
}

integer = pp.Word(pp.nums)
molecule_Smult = integer.setResultsName("Smult")
Expand Down

0 comments on commit db0a8b5

Please sign in to comment.