Update dependencies and correct node name

This commit is contained in:
2025-09-24 15:27:08 +02:00
parent da1cff55ba
commit 905674ce58
5 changed files with 23 additions and 23 deletions

View File

@@ -40,7 +40,7 @@ class Reactor {
this.kla = config.kla; // if NaN, use externaly provided OTR [d-1]
this.currentTime = Date.now(); // milliseconds since epoch [ms]
this.timeStep = 1 / (24*60*60) * this.config.timeStep; // time step [d]
this.timeStep = 1 / (24*60*60) * this.config.timeStep; // time step in seconds, converted to days.
this.speedUpFactor = 60; // speed up factor for simulation, 60 means 1 minute per simulated second
}