forked from jappel/leistungsbilanz-ts
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
export const deviceTypeOptions = [
|
|
"Beleuchtung",
|
|
"Steckdose",
|
|
"Heizung",
|
|
"Kühlung",
|
|
"Lüftung",
|
|
"Antrieb",
|
|
"Sicherheit",
|
|
"IT",
|
|
"Sonstiges",
|
|
] as const;
|
|
|
|
export const phaseTypeOptions = ["1-phasig", "3-phasig"] as const;
|
|
|
|
export const tradeOrCostGroupOptions = [
|
|
"KG 440 Starkstromanlagen",
|
|
"KG 450 Fernmelde- und informationstechnische Anlagen",
|
|
"KG 460 Förderanlagen",
|
|
"KG 470 Nutzungsspezifische Anlagen",
|
|
"KG 480 Gebäude- und Anlagenautomation",
|
|
"Sonstiges",
|
|
] as const;
|
|
|
|
export const consumerGroupOptions = [
|
|
"Allgemein",
|
|
"Notstrom",
|
|
"Sicherheitsstrom",
|
|
"USV",
|
|
"Technik",
|
|
"Reserve",
|
|
] as const;
|
|
|
|
export const protectionTypeOptions = ["LS", "Schmelzsicherung", "Leistungsschalter", "FI/LS"] as const;
|
|
|
|
export const protectionCharacteristicOptions = ["B", "C", "D", "K", "Z"] as const;
|
|
|
|
export const cableTypeOptions = ["NYM-J", "NYY-J", "H07RN-F", "NHXMH-J", "Sonstiges"] as const;
|
|
|
|
export const cableCrossSectionOptions = [
|
|
"1,5 mm²",
|
|
"2,5 mm²",
|
|
"4 mm²",
|
|
"6 mm²",
|
|
"10 mm²",
|
|
"16 mm²",
|
|
"25 mm²",
|
|
"35 mm²",
|
|
"50 mm²",
|
|
] as const;
|