Final bug fixes and documentation #6

Merged
p.vanderwilt merged 9 commits from dev-Pieter into main 2025-11-21 13:48:19 +00:00
Showing only changes of commit f3bbf63602 - Show all commits

View File

@@ -228,6 +228,10 @@ class Reactor {
} }
this.currentTime += n_iter * this.timeStep * DAY2MS / this.speedUpFactor; this.currentTime += n_iter * this.timeStep * DAY2MS / this.speedUpFactor;
this.emitter.emit("stateChange", this.currentTime); this.emitter.emit("stateChange", this.currentTime);
if (this.returnPump) {
this.returnPump.updateSourceSink();
}
} }
} }
} }