{% for summary in data.summaries %}
{% for method in ('nedc', 'wltp') %}
|
{{ method.upper() }} |
{% for cycle in ('High', 'Low') %}
{{cycle}} |
{% endfor %}
{% for cycle in ('High', 'Low') %}
{% for phase in ('prediction', 'calibration') %}
{{phase.capitalize()}} |
{% endfor %}
{% endfor %}
{% for cycle in ('High', 'Low') %}
{% for phase in ('prediction', 'calibration') %}
{% for outcome in ('output', 'target') %}
{{outcome.capitalize()}} |
{% endfor %}
{% endfor %}
{% endfor %}
{% set readable = humanised(summary) %}
{% for key in readable["params"].keys() %}
{% if key[0:40].replace("_", " ").capitalize() in data.keep[method] %}
{{key[0:40].replace("_", " ").capitalize()}} |
{% for cycle in (method + '_h', method + '_l') %}
{% for phase in ('prediction', 'calibration') %}
{% for outcome in ('output', 'target') %}
{{readable["params"][key][cycle + "." + phase + "." + outcome + "." + key]}} |
{% endfor %}
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% include "simulation_header.html" -%}
{% endfor %}