Skip to content

Instantly share code, notes, and snippets.

@jwt625
Created February 18, 2025 06:24
Show Gist options
  • Save jwt625/f3f070a38dec5985b6f3df21d4ae1fbb to your computer and use it in GitHub Desktop.
Save jwt625/f3f070a38dec5985b6f3df21d4ae1fbb to your computer and use it in GitHub Desktop.
fn magic_energy<D: Dim>(q: D) -> Energy =
if is_zero(q)
then 0
else if is_dimensionless(q / s) # q is a time: E = h / q
then ℎ / quantity_cast(q, s)
else if is_dimensionless(q * s) # q is a frequency: E = h *q
then ℎ * quantity_cast(q, 1/s)
else if is_dimensionless(q / K) # q is a temperature: E = k_B T
then k_B quantity_cast(q, K)
else if is_dimensionless(q / m) # q is a wavelength: E = ℎ c / λ
then ℎ c / quantity_cast(q, m)
else if is_dimensionless(q * m) # q is a wavenumber: E = ℎ c * k
then ℎ c * quantity_cast(q, 1/m)
else if is_dimensionless(q / g) # q is a mass: E = m c²
then quantity_cast(q, g) * c²
else if is_dimensionless(q / (cal/mol)) # q is energy per mole: E = q / N_A
then quantity_cast(q, cal/mol) / N_A
else error("magic_energy: Cannot convert quantity of unit '{unit_name(q)}' to an energy")
fn for_spectroscopists<D: Dim>(q: D) -> Wavenumber =
if is_dimensionless(q / J) # q is an Energy
then quantity_cast(q, J)/(ℎ c) -> cm^-1
else
magic_energy(q)/(ℎ c) -> cm^-1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment