CircuitConfigData constructor

CircuitConfigData({
  1. required LoadType type,
  2. required bool isThreePhase,
  3. required double powerKw,
  4. required double cosPhi,
  5. required double lengthMeters,
  6. double? sectionMm2,
  7. required InstallationMethod installMethod,
  8. required CableInsulation insulation,
  9. CorrectionFactors? correctionFactors,
  10. CatalogMetadata? cableCatalogData,
})

Implementation

CircuitConfigData({
  required this.type,
  required this.isThreePhase,
  required this.powerKw,
  required this.cosPhi,
  required this.lengthMeters,
  this.sectionMm2,
  required this.installMethod,
  required this.insulation,
  this.correctionFactors,
  this.cableCatalogData,
});