docs: refine README
[e-mobility-charging-stations-simulator.git] / src / utils / Constants.ts
index 6d2a6bf05b269a5da031268819705d88eab584ec..bb765c75dcf8f00d6ed766c1c1f8ccdcd1592357 100644 (file)
@@ -8,20 +8,15 @@ export class Constants {
   static readonly CHARGING_STATION_DEFAULT_RESET_TIME = 60000; // Ms
   static readonly CHARGING_STATION_ATG_INITIALIZATION_TIME = 1000; // Ms
 
-  static readonly DEFAULT_ATG_MIN_DURATION = 60;
-  static readonly DEFAULT_ATG_MAX_DURATION = 120;
-  static readonly DEFAULT_ATG_MIN_DELAY_BETWEEN_TWO_TRANSACTIONS = 15;
-  static readonly DEFAULT_ATG_MAX_DELAY_BETWEEN_TWO_TRANSACTIONS = 30;
-  static readonly DEFAULT_ATG_STOP_AFTER_HOURS = 0.25; // Hours
   static readonly DEFAULT_ATG_CONFIGURATION: AutomaticTransactionGeneratorConfiguration =
     Object.freeze({
       enable: false,
-      minDuration: Constants.DEFAULT_ATG_MIN_DURATION,
-      maxDuration: Constants.DEFAULT_ATG_MAX_DURATION,
-      minDelayBetweenTwoTransactions: Constants.DEFAULT_ATG_MIN_DELAY_BETWEEN_TWO_TRANSACTIONS,
-      maxDelayBetweenTwoTransactions: Constants.DEFAULT_ATG_MAX_DELAY_BETWEEN_TWO_TRANSACTIONS,
+      minDuration: 60,
+      maxDuration: 120,
+      minDelayBetweenTwoTransactions: 15,
+      maxDelayBetweenTwoTransactions: 30,
       probabilityOfStart: 1,
-      stopAfterHours: Constants.DEFAULT_ATG_STOP_AFTER_HOURS,
+      stopAfterHours: 0.25,
       stopOnConnectionFailure: true,
     });
 
@@ -57,6 +52,8 @@ export class Constants {
     /* This is intentional */
   });
 
+  static readonly DEFAULT_RESERVATION_EXPIRATION_OBSERVATION_INTERVAL = 5000; // Ms
+
   private constructor() {
     // This is intentional
   }