X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=c4ce0ff8c48e30b8faefd22a118c1718ec74505a;hb=6e2f954cbb505ad26c61d950e29685d5d49d5f00;hp=6d2a6bf05b269a5da031268819705d88eab584ec;hpb=6170d8cd4877c852985c90a38441da35ec026b85;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index 6d2a6bf0..c4ce0ff8 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -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, }); @@ -41,6 +36,7 @@ export class Constants { static readonly DEFAULT_FLUCTUATION_PERCENT = 5; + static readonly DEFAULT_PERFORMANCE_DIRECTORY = 'performance'; static readonly DEFAULT_PERFORMANCE_RECORDS_FILENAME = 'performanceRecords.json'; static readonly DEFAULT_PERFORMANCE_RECORDS_DB_NAME = 'e-mobility-charging-stations-simulator'; static readonly PERFORMANCE_RECORDS_TABLE = 'performance_records'; @@ -52,11 +48,15 @@ export class Constants { static readonly MAX_RANDOM_INTEGER = 281474976710654; + static readonly STOP_SIMULATOR_TIMEOUT = 120000; // Ms + static readonly EMPTY_FREEZED_OBJECT = Object.freeze({}); static readonly EMPTY_FUNCTION = Object.freeze(() => { /* This is intentional */ }); + static readonly DEFAULT_RESERVATION_EXPIRATION_OBSERVATION_INTERVAL = 5000; // Ms + private constructor() { // This is intentional }