-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathdynamic_inverter_components.jl
More file actions
56 lines (43 loc) · 1.84 KB
/
dynamic_inverter_components.jl
File metadata and controls
56 lines (43 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
abstract type DynamicInverterComponent <: DynamicComponent end
"""
Supertype for all power electronic converter models for
[`DynamicInverter`](@ref) components.
Concrete subtypes include [`AverageConverter`](@ref),
[`RenewableEnergyConverterTypeA`](@ref), and
[`RenewableEnergyVoltageConverterTypeA`](@ref).
"""
abstract type Converter <: DynamicInverterComponent end
"""
Supertype for all DC source models for [`DynamicInverter`](@ref) components.
Concrete subtypes include [`FixedDCSource`](@ref) and [`ZeroOrderBESS`](@ref).
"""
abstract type DCSource <: DynamicInverterComponent end
"""
Supertype for all output filter models for [`DynamicInverter`](@ref) components.
Concrete subtypes include [`LCLFilter`](@ref), [`LCFilter`](@ref), and [`RLFilter`](@ref).
"""
abstract type Filter <: DynamicInverterComponent end
"""
Supertype for all frequency estimator models for
[`DynamicInverter`](@ref) components.
Concrete subtypes include [`KauraPLL`](@ref), [`ReducedOrderPLL`](@ref), and
[`FixedFrequency`](@ref).
"""
abstract type FrequencyEstimator <: DynamicInverterComponent end
"""
Supertype for all inner control loop models for
[`DynamicInverter`](@ref) components.
Concrete subtypes include [`VoltageModeControl`](@ref), [`CurrentModeControl`](@ref),
and [`RECurrentControlB`](@ref).
"""
abstract type InnerControl <: DynamicInverterComponent end
"""
Supertype for all output current limiter models for
[`DynamicInverter`](@ref) components.
Concrete subtypes include [`MagnitudeOutputCurrentLimiter`](@ref),
[`InstantaneousOutputCurrentLimiter`](@ref), [`PriorityOutputCurrentLimiter`](@ref),
[`SaturationOutputCurrentLimiter`](@ref), and [`HybridOutputCurrentLimiter`](@ref).
"""
abstract type OutputCurrentLimiter <: DynamicInverterComponent end
abstract type ActivePowerControl <: DeviceParameter end
abstract type ReactivePowerControl <: DeviceParameter end