{% extends "layout.html" %} {% set d = s.dct %} {% block title %}Summary{% endblock %} {% block bar1 %} SUMMARY {% endblock %} {% block content %} Download: xyz, db, json
{% if d.numbers|length %}
{% endif %}
{% for name in s.plots %}
{% endfor %} {% for name, unit, value in s.table %} {% endfor %}
nameunitvalue
{{ name }} {{ unit }} {{ value|safe }}
Unit cell in Ang: {% for axis in s.cell %} {% for a in axis %} {% endfor %} {% endfor %}
axisperiodicxyz
{{ loop.index }} {{ d.pbc[loop.index0] }}{{ a }}
{% if s.key_value_pairs %} Key-value pairs: {% for key, value in s.key_value_pairs %} {% endfor %}
KeyValue
{{ key }}{{ value }}
{% endif %} {% if s.forces %} Forces in ev/Ang: {% for f in s.forces %} {% endfor %}
#symbolxyz
{{ f[0] }}{{ f[1] }} {{ f[2] }} {{ f[3] }} {{ f[4] }}
{% endif %} {% if s.stress %} Stress tensor (xx, yy, zz, zy, zx, yx) in eV/Ang3:
{{ s.stress }} {% endif %} {% if s.dipole %} Dipole moment in e*Ang: ({{ s.dipole }}) {% endif %} {% if s.constraints %} Constraints: {{ s.constraints }} {% endif %} {% if s.data %} Data keys: {{ s.data }} {% endif %} {% endblock content %}