createDefaultBreaker method

ElectricalNode createDefaultBreaker({
  1. required String id,
  2. String name = 'PIA',
})

Creates a default circuit breaker (ITC-BT-15)

Default: 16A (common residential circuit rating)

Implementation

ElectricalNode createDefaultBreaker({
  required String id,
  String name = 'PIA',
}) {
  return ElectricalNode.protection(
    id: id,
    name: name,
    protectionType: ProtectionType.circuitBreaker,
    ratingAmps: _defaultBreakerRating,
    pdc: 6.0, // 6kA breaking capacity (standard residential)
    curve: 'C', // IEC 60898 Type C
    sensitivity: 0, // Not RCD
  );
}