Show generator battery output and slow idle drain
This commit is contained in:
@@ -565,7 +565,7 @@ class ReactorDashboard:
|
||||
status = "RUN" if gen.running else "START" if gen.starting else "OFF"
|
||||
spool = f" spool {gen.spool_remaining:4.1f}s" if gen.starting else ""
|
||||
lines.append((f"Gen{idx + 1}", f"{status} {gen.power_output_mw:6.1f}/{self.reactor.generators[idx].rated_output_mw:4.0f} MW{spool}"))
|
||||
lines.append((f" Battery", f"{gen.battery_charge*100:5.1f}%"))
|
||||
lines.append((f" Battery", f"{gen.battery_charge*100:5.1f}% out {gen.battery_output_mw:4.1f} MW"))
|
||||
return lines
|
||||
|
||||
def _power_lines(self, state: PlantState) -> list[tuple[str, str]]:
|
||||
|
||||
Reference in New Issue
Block a user