{% extends "base.html" %} {% block content %}

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 %}
Screening Configuration
Pure mode expects a CSV with a smiles column. Mixture mode expects mixture database format.
Property Filters for Pure Component Screening
Default filters match the CLI settings: BP 60–250 °C, density ≥ 720 kg/m³, LHV ≥ 30 MJ/kg, and viscosity ≥ 2 cSt.
{% if run_info %}
Screening Summary

Mode

{{ run_info.mode }}

Target CN

{{ run_info.target_cn }}

All

{{ run_info.n_all }}

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 %}