X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=d704c15ddff2a377c9d39a6ca553f5a0409b85c9;hb=6a4032b5d8f3cbaa18d3beddcdfe9d335c1cba90;hp=966fd83af261c12ecc44c4e907203bf7829f837b;hpb=d81db0817ee9b4c90183da0882a20ff947c915ab;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index 966fd83a..d704c15d 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -1,6 +1,36 @@ -import type { AutomaticTransactionGeneratorConfiguration } from '../types'; +import { + type AutomaticTransactionGeneratorConfiguration, + type ChargingStationInfo, + CurrentType, + OCPPVersion, + VendorParametersKey, +} from '../types'; export class Constants { + static readonly DEFAULT_STATION_INFO: Partial = Object.freeze({ + enableStatistics: false, + remoteAuthorization: true, + currentOutType: CurrentType.AC, + mainVoltageMeterValues: true, + phaseLineToLineVoltageMeterValues: false, + customValueLimitationMeterValues: true, + ocppStrictCompliance: true, + outOfOrderEndMeterValues: false, + beginEndMeterValues: false, + meteringPerTransaction: true, + transactionDataMeterValues: false, + supervisionUrlOcppConfiguration: false, + supervisionUrlOcppKey: VendorParametersKey.ConnectionUrl, + ocppVersion: OCPPVersion.VERSION_16, + ocppPersistentConfiguration: true, + stationInfoPersistentConfiguration: true, + automaticTransactionGeneratorPersistentConfiguration: true, + autoReconnectMaxRetries: -1, + registrationMaxRetries: -1, + reconnectExponentialDelay: false, + stopTransactionsOnStopped: true, + }); + static readonly DEFAULT_BOOT_NOTIFICATION_INTERVAL = 60000; // Ms static readonly DEFAULT_HEARTBEAT_INTERVAL = 60000; // Ms static readonly DEFAULT_METER_VALUES_INTERVAL = 60000; // Ms @@ -56,7 +86,7 @@ export class Constants { /* This is intentional */ }); - static readonly DEFAULT_RESERVATION_EXPIRATION_INTERVAL = 60000; // Ms + static readonly DEFAULT_MESSAGE_BUFFER_FLUSH_INTERVAL = 60000; // Ms private constructor() { // This is intentional