Skip to main content

Sect14aModule

Enum Sect14aModule 

Source
pub enum Sect14aModule {
    Modul1,
    Modul2,
    Modul3,
}
Expand description

§14a EnWG module for steuerbare Verbrauchseinrichtungen (controllable loads).

Source: BNetzA BK6-22-300 (Beschluss 27.11.2023, in force 01.01.2024).

All three modules are mandatory for eligible controllable loads (heat pumps, EV chargers, battery storage ≥ 4.2 kW) registered with the NB. The LF/NB must offer at least Modul 1 to all eligible customers.

Variants§

§

Modul1

Modul 1 — pauschale Reduzierung des Netzentgelts.

A flat reduction applied for the whole billing period, published by the NB either as an annual EUR amount or as a factor on the rate. It needs no additional metering, which is why it is the default where the connection holder makes no choice. It may be combined with Modul 3.

§

Modul2

Modul 2 — prozentuale Reduzierung des Arbeitspreises.

The Arbeitspreis of the Netzentgelt is reduced by a percentage for the controllable device, which therefore needs its own metering — the reduction attaches to that device’s energy, not to the whole connection.

Mutually exclusive with Modul 3 (see Sect14aModule::combinable_with).

§

Modul3

Modul 3 — zeitvariable Netzentgelte, available from 01.04.2025.

Three Tarifstufen — Hochtarif, Standardtarif and Niedertarif — whose windows the NB publishes in the UTILTS Zählzeitdefinition. Requires an intelligent metering system. It may be combined with Modul 1 but not with Modul 2.

Implementations§

Source§

impl Sect14aModule

Source

pub fn bnentza_reference(self) -> &'static str

Canonical BNetzA decision reference for this module.

Source

pub fn combinable_with(self, other: Self) -> bool

Whether two modules may be held at once.

Modul 1 is a flat reduction that needs no metering, so it composes with the time-variable Modul 3. Modul 2 and Modul 3 both re-price the Arbeitspreis and cannot both apply — a connection holding both would have its network usage reduced twice.

Source

pub fn label(self) -> &'static str

Display label for the module.

Trait Implementations§

Source§

impl Clone for Sect14aModule

Source§

fn clone(&self) -> Sect14aModule

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Sect14aModule

Source§

impl Debug for Sect14aModule

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Sect14aModule

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for Sect14aModule

Source§

impl PartialEq for Sect14aModule

Source§

fn eq(&self, other: &Sect14aModule) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for Sect14aModule

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Sect14aModule

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.