| {{ 'System' if is_systems else 'Calculation' }} | Formula | Mass (u) | Point Group | Full Name | Short Name | Charge | Spin | XC | Basis | Code | Version | Author | Date | Total E (eV) | Gap (eV) | IP (eV) | EA (eV) | Casida |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ row.id }} | {{ row.formula | subscript }} | {% if row.molecular_mass %}{{ "%.1f" | format(row.molecular_mass) }}{% endif %} | {{ row.point_group | point_group_subscript }} | {{ row.full_name or '' }} | {{ row.short_name or '' }} | {{ "%.0f" | format(row.charge) if row.charge is not none else '' }} | {{ row.spin }} | {{ row.xc_functional or '' }} | {{ row.basis_set or '' }} | {{ row.code or '' }} | {{ row.code_version or '' }} | {{ row.author or '' }} | {{ row.date or '' }} | {{ "%.3f" | format(row.total_energy | hartree_to_ev) if row.total_energy is not none else '' }} | {{ "%.3f" | format(row.fundamental_gap | hartree_to_ev) }} | {{ "%.3f" | format(row.ionisation_potential | hartree_to_ev) }} | {{ "%.3f" | format(row.electron_affinity | hartree_to_ev) }} | {% if row.excitation_count %}✓{% endif %} |