{% extends "base_site.html" %}
{% load admin_static %}
{% load i18n %}
{% block content %}
OQMD discoveries: new compounds!
Compounds without a corresponding entry in the ICSD |
Composition |
Prototype (name) |
ΔHf (eV/atom) |
{% for comp in not_icsd %}
{{ comp.0 }} |
{{ comp.1 }} |
{{ comp.2 | floatformat:-3}} |
{% endfor %}
Compounds more stable than the corresponding ICSD entry |
Composition |
Prototype (name) |
ΔHf (eV/atom) |
{% for comp in icsd %}
{{ comp.0 }} |
{{ comp.1 }} |
{{ comp.2 | floatformat:-3}} |
{% endfor %}
{% endblock %}
{% block sidebar %}
{% endblock %}