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

Binary Blending Tool

Sweep a single additive across a base fuel and predict how mixture CN and YSI change with blend ratio.

{% if error %}
{{ error }}
{% endif %} {% if warning %}
{{ warning }}
{% endif %}
Blend Sweep Configuration
Enter the SMILES of the additive to blend into the base fuel.
Sweep Output
{% if result %}

Additive

{{ result.additive_smiles }}

Base fuel

{{ result.base_fuel_type }}

Points

{{ result.n_points }}

CN range

{{ result.min_dcn }} – {{ result.max_dcn }}

YSI range

{{ result.min_ysi }} – {{ result.max_ysi }}
CN is predicted using the mixture GNN model. YSI is estimated from pure-component YSI values using a mass-fraction blending law.
{% else %}

No blend sweep yet

Enter an additive and sweep range, then run the prediction.

{% endif %}
{% if result_table %}
Blend Sweep Results
{{ result_table | safe }}
{% endif %}
{% endblock %}