Biofuel Screening Tool
Screen candidate fuels from a CSV file using property prediction, cetane number targeting,
filtering, and Pareto ranking.
{% if error %}
{{ error }}
{% endif %}
{% if info %}
{{ info }}
{% endif %}
{% if run_info %}
Screening Summary
Target CN
{{ run_info.target_cn }}
Filtered
{{ run_info.n_filtered }}
Pareto
{{ run_info.n_pareto }}
{% endif %}
{% if filtered_table %}
Top / Filtered Candidates
{{ filtered_table | safe }}
{% endif %}
{% if pareto_table %}
Pareto Front
Pareto candidates balance low CN error with low YSI.
{{ pareto_table | safe }}
{% endif %}
{% if all_table %}
All Candidates
{{ all_table | safe }}
{% endif %}
{% endblock %}