{% extends "base.html" %} {% block title %}Validation IEEE/ASTM | SPARC{% endblock %} {% block content %}

Validation IEEE/ASTM

Conformité scientifique et standards industriels

Nouvelle Simulation
{% if validation %}
{% if validation.validation_score >= 90 %} {% elif validation.validation_score >= 70 %} {% else %} {% endif %}

{{ "%.1f"|format(validation.validation_score) }}/100

Score de validation

{% if validation.ieee_astm_compliance %} {% else %} {% endif %}

{% if validation.ieee_astm_compliance %}CONFORME{% else %}NON CONFORME{% endif %}

IEEE/ASTM

{{ validation.errors }}

{{ validation.errors }} Erreur{{ 's' if validation.errors != 1 else '' }}

{{ validation.warnings }} Avertissement{{ 's' if validation.warnings != 1 else '' }}

{% if validation.comprehensive_report and validation.comprehensive_report.standards %}
{% for standard in validation.comprehensive_report.standards %}
{{ standard.standard }}
{{ 'CONFORME' if standard.compliant else 'NON CONFORME' }}
{% if standard.errors %}
Erreurs
    {% for error in standard.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% if standard.warnings %}
Avertissements
    {% for warning in standard.warnings %}
  • {{ warning }}
  • {% endfor %}
{% endif %} {% if standard.uncertainties %}
Incertitudes
{% for param, data in standard.uncertainties.items() %}
{{ param.upper() }}
±{{ "%.3f"|format(data.value) }} {{ data.unit }}
({{ data.percentage }}%)
{% endfor %}
{% endif %} {% if standard.nrel_comparison %}
Comparaison NREL
{% for param, data in standard.nrel_comparison.items() %}
{{ param.upper() }} {{ "%.2f"|format(data.measured) }} / {{ "%.2f"|format(data.record) }} {{ data.unit }} {{ "%.1f"|format(data.ratio*100) }}%
{% endfor %} {% endif %}
{% endfor %}
{% endif %}
Rapport Complet
{{ validation_report }}
{% else %}

Aucune validation disponible

Lancez une simulation pour obtenir une validation IEEE/ASTM complète.

Nouvelle Simulation
{% endif %} {% endblock %} {% block extra_js %} {% if validation %} {% endif %} {% endblock %}