X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=10f5ff3771757f220c56e5057268980e65d752aa;hb=aca53a1a7866de74330802b2ea7506a874519725;hp=da41eaaf9188d951c235e1e299ace0ff5d3874e3;hpb=3fa0f0edb5e3bb9fff2b343fb4ad7fc6c7c8df34;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index da41eaaf..10f5ff37 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -91,10 +91,14 @@ export default class Constants { static readonly CHARGING_STATION_ATG_INITIALIZATION_TIME = 1000; // Ms static readonly CHARGING_STATION_ATG_DEFAULT_STOP_AFTER_HOURS = 0.25; // Hours + static readonly DEFAULT_HASH_ALGORITHM = 'sha384'; + static readonly DEFAULT_IDTAG = '00000000'; static readonly DEFAULT_CONNECTION_TIMEOUT = 30; + static readonly DEFAULT_LOG_STATISTICS_INTERVAL = 60; // Seconds + static readonly DEFAULT_HEARTBEAT_INTERVAL = 60000; // Ms static readonly SUPPORTED_MEASURANDS = Object.freeze([ @@ -107,7 +111,6 @@ export default class Constants { static readonly DEFAULT_FLUCTUATION_PERCENT = 5; - static readonly PERFORMANCE_RECORDS_FILETYPE = 'Performance records'; static readonly DEFAULT_PERFORMANCE_RECORDS_FILENAME = 'performanceRecords.json'; static readonly DEFAULT_PERFORMANCE_RECORDS_DB_NAME = 'charging-stations-simulator'; static readonly PERFORMANCE_RECORDS_TABLE = 'performance_records';