{% extends "base_site.html" %}
{% load static %}
{% load i18n %}
{% if warning %}
{% block notice %}
{{ warning }}
{% endblock %}
{% endif %}
{% block content %}
Structure discovery by database substitution
To perform composition subtitution, search for materials by
- Li2O
- {H,Li,K}O2
- {H,Li,K}-O
- {SS}-{F,O}
{% if result %}
{% for s, d in result %}
{% if subsearch %}
Subsearch: {{ s }}
{% endif %}
Use |
# of structures |
Formation Energy |
{% for size, comps in d %}
{{ size }} |
{% for comp in comps %}
{{ comp.html | safe }} |
{{ comp.ndistinct }} |
{{ comp.delta_e | floatformat:-3 }} |
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}
{% block sidebar %}
Recognized element groups
Key |
Elements |
{% for k, v in element_groups.items %}
{{ k }} |
{{ v }} |
{% endfor %}
{% endblock %}