live results

This commit is contained in:
2025-12-20 20:46:51 +01:00
parent eaf90b42e6
commit d7557635ee
4 changed files with 474 additions and 523 deletions

View File

@ -136,14 +136,41 @@
<div class="progress-bar">
<div class="progress-fill" id="progress-fill" style="width: 0%"></div>
</div>
<div class="progress-stats">
<span>Iteration: <strong id="progress-iteration">0</strong></span>
<span>Best Score: <strong id="progress-score">-</strong></span>
<span>Time: <strong id="progress-time">0s</strong></span>
<div class="progress-stats-grid">
<div class="stat-item">
<span class="stat-label">Iteration</span>
<span class="stat-value" id="progress-iteration">0</span>
</div>
<div class="stat-item">
<span class="stat-label">Combinations</span>
<span class="stat-value" id="progress-combinations">-</span>
</div>
<div class="stat-item">
<span class="stat-label">Best Score</span>
<span class="stat-value stat-highlight" id="progress-score">-</span>
</div>
<div class="stat-item">
<span class="stat-label">Elapsed</span>
<span class="stat-value" id="progress-time">0s</span>
</div>
<div class="stat-item">
<span class="stat-label">Speed</span>
<span class="stat-value" id="progress-speed">-</span>
</div>
<div class="stat-item">
<span class="stat-label">ETA</span>
<span class="stat-value" id="progress-eta">-</span>
</div>
</div>
<!-- Live Best Configuration Preview -->
<div class="live-preview" id="live-preview" hidden>
<h3>Current Best Configuration</h3>
<div class="live-preview-content" id="live-preview-content"></div>
</div>
</div>
<button type="button" id="btn-stop-matching" class="btn btn-secondary">
Stop
Stop Matching
</button>
</section>
@ -163,7 +190,7 @@
rel="noopener">(Shi et al., 2013)</a>
</li>
<li>Always use a BMS with cell-level monitoring and balancing</li>
<li>Use only same model of cell in a pack.</li>
<li>Use only same model of cells in a pack.</li>
<li>Never charge unattended; use fireproof storage</li>
<li>Cells with significantly different ages may degrade unpredictably</li>
</ul>
@ -250,8 +277,7 @@
<a href="https://git.mosad.xyz/localhorst/LiXX_Cell_Pack_Matcher" target="_blank" rel="noopener">Git</a>
·
Based on research by
<a href="https://doi.org/10.1016/j.jpowsour.2013.11.064" target="_blank" rel="noopener">Shi et al.,
2013</a>
<a href="https://doi.org/10.1016/j.jpowsour.2013.11.064" target="_blank" rel="noopener">Shi et al., 2013</a>
</p>
<p class="disclaimer">
This tool is for educational purposes. Always consult professional guidance for battery pack assembly.
@ -277,7 +303,6 @@
<button type="button" class="btn btn-primary" id="btn-close-shortcuts">Close</button>
</dialog>
<script src="js/matching-algorithms.js"></script>
<script src="js/app.js"></script>
</body>