Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 8, 2024
1 parent 22a116e commit bb36abe
Show file tree
Hide file tree
Showing 210 changed files with 2,159 additions and 598 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"outputs": [],
"source": [
"# Filter and grid\npar = ACFilterPars(L_fc=.15*base.L, L_g=.74*base.L)\n# par.L_g = 0 # Uncomment this line to simulate a strong grid\nac_filter = model.ACFilter(par)\n# Grid voltage source with constant frequency and voltage magnitude\nac_source = model.ThreePhaseVoltageSource(w_g=base.w, abs_e_g=base.u)\n# Inverter with constant DC voltage\nconverter = model.VoltageSourceConverter(u_dc=650)\n\n# Create system model\nmdl = model.GridConverterSystem(converter, ac_filter, ac_source)"
"# Filter and grid\npar = ACFilterPars(L_fc=.15*base.L, R_fc=.05*base.Z, L_g=.74*base.L)\n# par.L_g = 0 # Uncomment this line to simulate a strong grid\nac_filter = model.ACFilter(par)\n# Grid voltage source with constant frequency and voltage magnitude\nac_source = model.ThreePhaseVoltageSource(w_g=base.w, abs_e_g=base.u)\n# Inverter with constant DC voltage\nconverter = model.VoltageSourceConverter(u_dc=650)\n\n# Create system model\nmdl = model.GridConverterSystem(converter, ac_filter, ac_source)"
]
},
{
Expand All @@ -69,7 +69,7 @@
},
"outputs": [],
"source": [
"# Control configuration parameters\ncfg = control.PowerSynchronizationControlCfg(\n nom_u=base.u, nom_w=base.w, max_i=1.3*base.i, T_s=100e-6, R_a=.2*base.Z)\n\n# Create the control system\nctrl = control.PowerSynchronizationControl(cfg)"
"# Control configuration parameters\ncfg = control.PowerSynchronizationControlCfg(\n nom_u=base.u,\n nom_w=base.w,\n max_i=1.3*base.i,\n R=.05*base.Z,\n R_a=.2*base.Z,\n T_s=100e-6)\n\n# Create the control system\nctrl = control.PowerSynchronizationControl(cfg)"
]
},
{
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"\n# 2.2-kW induction motor, diode bridge\n\nA diode bridge, stiff three-phase grid, and a DC link is modeled. The default\nparameters in this example yield open-loop V/Hz control. \n"
"\n# 2.2-kW induction motor, diode bridge\n\nA diode bridge, stiff three-phase grid, and a DC link is modeled. The default\nparameters in this example yield open-loop V/Hz control.\n"
]
},
{
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# Configure the system model.

# Filter and grid
par = ACFilterPars(L_fc=.15*base.L, L_g=.74*base.L)
par = ACFilterPars(L_fc=.15*base.L, R_fc=.05*base.Z, L_g=.74*base.L)
# par.L_g = 0 # Uncomment this line to simulate a strong grid
ac_filter = model.ACFilter(par)
# Grid voltage source with constant frequency and voltage magnitude
Expand All @@ -38,7 +38,12 @@

# Control configuration parameters
cfg = control.PowerSynchronizationControlCfg(
nom_u=base.u, nom_w=base.w, max_i=1.3*base.i, T_s=100e-6, R_a=.2*base.Z)
nom_u=base.u,
nom_w=base.w,
max_i=1.3*base.i,
R=.05*base.Z,
R_a=.2*base.Z,
T_s=100e-6)

# Create the control system
ctrl = control.PowerSynchronizationControl(cfg)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

# Filter and grid parameters
par = ACFilterPars(L_fc=.15*base.L, R_fc=.05*base.Z, L_g=.74*base.L)
# par.L_g = 0 # Uncomment this line to simulate a strong grid
# par.L_g = 0 # Uncomment this line to simulate a strong grid
ac_filter = model.ACFilter(par)
ac_source = model.ThreePhaseVoltageSource(w_g=base.w, abs_e_g=base.u)
# Inverter with constant DC voltage
Expand All @@ -44,8 +44,8 @@
nom_u=base.u,
nom_w=base.w,
max_i=1.3*base.i,
T_s=100e-6,
R_a=.2*base.Z)
R_a=.2*base.Z,
T_s=100e-6)

# Create the control system
ctrl = control.ObserverBasedGridFormingControl(cfg)
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"outputs": [],
"source": [
"# Filter and grid parameters\npar = ACFilterPars(L_fc=.15*base.L, R_fc=.05*base.Z, L_g=.74*base.L)\n# par.L_g = 0 # Uncomment this line to simulate a strong grid\nac_filter = model.ACFilter(par)\nac_source = model.ThreePhaseVoltageSource(w_g=base.w, abs_e_g=base.u)\n# Inverter with constant DC voltage\nconverter = model.VoltageSourceConverter(u_dc=650)\n\n# Create system model\nmdl = model.GridConverterSystem(converter, ac_filter, ac_source)"
"# Filter and grid parameters\npar = ACFilterPars(L_fc=.15*base.L, R_fc=.05*base.Z, L_g=.74*base.L)\n# par.L_g = 0 # Uncomment this line to simulate a strong grid\nac_filter = model.ACFilter(par)\nac_source = model.ThreePhaseVoltageSource(w_g=base.w, abs_e_g=base.u)\n# Inverter with constant DC voltage\nconverter = model.VoltageSourceConverter(u_dc=650)\n\n# Create system model\nmdl = model.GridConverterSystem(converter, ac_filter, ac_source)"
]
},
{
Expand All @@ -69,7 +69,7 @@
},
"outputs": [],
"source": [
"# Set the configuration parameters\ncfg = control.ObserverBasedGridFormingControlCfg(\n L=.35*base.L,\n R=.05*base.Z,\n nom_u=base.u,\n nom_w=base.w,\n max_i=1.3*base.i,\n T_s=100e-6,\n R_a=.2*base.Z)\n\n# Create the control system\nctrl = control.ObserverBasedGridFormingControl(cfg)"
"# Set the configuration parameters\ncfg = control.ObserverBasedGridFormingControlCfg(\n L=.35*base.L,\n R=.05*base.Z,\n nom_u=base.u,\n nom_w=base.w,\n max_i=1.3*base.i,\n R_a=.2*base.Z,\n T_s=100e-6)\n\n# Create the control system\nctrl = control.ObserverBasedGridFormingControl(cfg)"
]
},
{
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
2.2-kW induction motor, 6-step mode
===================================
This example simulates V/Hz control of a 2.2-kW induction motor drive. The
six-step overmodulation is enabled, which increases the fundamental voltage as
well as the harmonics. Since the PWM is not synchronized with the stator
frequency, the harmonic content also depends on the ratio between the stator
This example simulates V/Hz control of a 2.2-kW induction motor drive. The
six-step overmodulation is enabled, which increases the fundamental voltage as
well as the harmonics. Since the PWM is not synchronized with the stator
frequency, the harmonic content also depends on the ratio between the stator
frequency and the sampling frequency.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
====================================
A diode bridge, stiff three-phase grid, and a DC link is modeled. The default
parameters in this example yield open-loop V/Hz control.
parameters in this example yield open-loop V/Hz control.
"""
# %%
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@

# Create system model
mdl = model.GridConverterSystem(converter, ac_filter, ac_source)

# Uncomment line below to enable the PWM model
# mdl.pwm = model.CarrierComparison()
# mdl.pwm = model.CarrierComparison() # Uncomment to enable the PWM model

# %%
# Configure the control system.
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"outputs": [],
"source": [
"# Filter and grid\npar = ACFilterPars(L_fc=.2*base.L)\nac_filter = model.ACFilter(par)\nac_source = model.ThreePhaseVoltageSource(w_g=base.w, abs_e_g=base.u)\n# Inverter with constant DC voltage\nconverter = model.VoltageSourceConverter(u_dc=650)\n\n# Create system model\nmdl = model.GridConverterSystem(converter, ac_filter, ac_source)\n\n# Uncomment line below to enable the PWM model\n# mdl.pwm = model.CarrierComparison()"
"# Filter and grid\npar = ACFilterPars(L_fc=.2*base.L)\nac_filter = model.ACFilter(par)\nac_source = model.ThreePhaseVoltageSource(w_g=base.w, abs_e_g=base.u)\n# Inverter with constant DC voltage\nconverter = model.VoltageSourceConverter(u_dc=650)\n\n# Create system model\nmdl = model.GridConverterSystem(converter, ac_filter, ac_source)\n# mdl.pwm = model.CarrierComparison() # Uncomment to enable the PWM model"
]
},
{
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"\n# 2.2-kW induction motor, 6-step mode\n\nThis example simulates V/Hz control of a 2.2-kW induction motor drive. The \nsix-step overmodulation is enabled, which increases the fundamental voltage as \nwell as the harmonics. Since the PWM is not synchronized with the stator \nfrequency, the harmonic content also depends on the ratio between the stator \nfrequency and the sampling frequency.\n"
"\n# 2.2-kW induction motor, 6-step mode\n\nThis example simulates V/Hz control of a 2.2-kW induction motor drive. The\nsix-step overmodulation is enabled, which increases the fundamental voltage as\nwell as the harmonics. Since the PWM is not synchronized with the stator\nfrequency, the harmonic content also depends on the ratio between the stator\nfrequency and the sampling frequency.\n"
]
},
{
Expand Down
Binary file modified docs/_images/sphx_glr_plot_gfm_obs_13kva_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/_images/sphx_glr_plot_gfm_obs_13kva_002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/_images/sphx_glr_plot_gfm_obs_13kva_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/_images/sphx_glr_plot_gfm_rfpsc_13kva_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/_images/sphx_glr_plot_gfm_rfpsc_13kva_002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/_images/sphx_glr_plot_gfm_rfpsc_13kva_thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion docs/_modules/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
<li class="toctree-l1 has-children"><a class="reference internal" href="../control/grid/index.html">Grid Converters</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="../control/grid/dc_voltage_ctrl.html">DC-Bus Voltage Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../control/grid/current_ctrl.html">Current Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../control/grid/synchronization.html">Disturbance-Observer-Based PLL</a></li>
<li class="toctree-l2"><a class="reference internal" href="../control/grid/pll.html">Phase-Locked Loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="../control/grid/grid-forming.html">Grid-Forming Control</a></li>
</ul>
</li>
</ul>
Expand Down
3 changes: 2 additions & 1 deletion docs/_modules/motulator/common/control/_control.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
<li class="toctree-l1 has-children"><a class="reference internal" href="../../../../control/grid/index.html">Grid Converters</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/dc_voltage_ctrl.html">DC-Bus Voltage Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/current_ctrl.html">Current Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/synchronization.html">Disturbance-Observer-Based PLL</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/pll.html">Phase-Locked Loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/grid-forming.html">Grid-Forming Control</a></li>
</ul>
</li>
</ul>
Expand Down
3 changes: 2 additions & 1 deletion docs/_modules/motulator/common/model/_converter.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
<li class="toctree-l1 has-children"><a class="reference internal" href="../../../../control/grid/index.html">Grid Converters</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/dc_voltage_ctrl.html">DC-Bus Voltage Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/current_ctrl.html">Current Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/synchronization.html">Disturbance-Observer-Based PLL</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/pll.html">Phase-Locked Loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/grid-forming.html">Grid-Forming Control</a></li>
</ul>
</li>
</ul>
Expand Down
3 changes: 2 additions & 1 deletion docs/_modules/motulator/common/model/_simulation.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
<li class="toctree-l1 has-children"><a class="reference internal" href="../../../../control/grid/index.html">Grid Converters</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/dc_voltage_ctrl.html">DC-Bus Voltage Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/current_ctrl.html">Current Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/synchronization.html">Disturbance-Observer-Based PLL</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/pll.html">Phase-Locked Loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/grid-forming.html">Grid-Forming Control</a></li>
</ul>
</li>
</ul>
Expand Down
3 changes: 2 additions & 1 deletion docs/_modules/motulator/common/utils/_utils.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
<li class="toctree-l1 has-children"><a class="reference internal" href="../../../../control/grid/index.html">Grid Converters</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/dc_voltage_ctrl.html">DC-Bus Voltage Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/current_ctrl.html">Current Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/synchronization.html">Disturbance-Observer-Based PLL</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/pll.html">Phase-Locked Loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/grid-forming.html">Grid-Forming Control</a></li>
</ul>
</li>
</ul>
Expand Down
3 changes: 2 additions & 1 deletion docs/_modules/motulator/drive/control/_common.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
<li class="toctree-l1 has-children"><a class="reference internal" href="../../../../control/grid/index.html">Grid Converters</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/dc_voltage_ctrl.html">DC-Bus Voltage Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/current_ctrl.html">Current Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/synchronization.html">Disturbance-Observer-Based PLL</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/pll.html">Phase-Locked Loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../control/grid/grid-forming.html">Grid-Forming Control</a></li>
</ul>
</li>
</ul>
Expand Down
3 changes: 2 additions & 1 deletion docs/_modules/motulator/drive/control/im/_common.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
<li class="toctree-l1 has-children"><a class="reference internal" href="../../../../../control/grid/index.html">Grid Converters</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/dc_voltage_ctrl.html">DC-Bus Voltage Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/current_ctrl.html">Current Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/synchronization.html">Disturbance-Observer-Based PLL</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/pll.html">Phase-Locked Loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/grid-forming.html">Grid-Forming Control</a></li>
</ul>
</li>
</ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
<li class="toctree-l1 has-children"><a class="reference internal" href="../../../../../control/grid/index.html">Grid Converters</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/dc_voltage_ctrl.html">DC-Bus Voltage Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/current_ctrl.html">Current Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/synchronization.html">Disturbance-Observer-Based PLL</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/pll.html">Phase-Locked Loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/grid-forming.html">Grid-Forming Control</a></li>
</ul>
</li>
</ul>
Expand Down
3 changes: 2 additions & 1 deletion docs/_modules/motulator/drive/control/im/_flux_vector.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
<li class="toctree-l1 has-children"><a class="reference internal" href="../../../../../control/grid/index.html">Grid Converters</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/dc_voltage_ctrl.html">DC-Bus Voltage Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/current_ctrl.html">Current Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/synchronization.html">Disturbance-Observer-Based PLL</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/pll.html">Phase-Locked Loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/grid-forming.html">Grid-Forming Control</a></li>
</ul>
</li>
</ul>
Expand Down
3 changes: 2 additions & 1 deletion docs/_modules/motulator/drive/control/im/_obs_vhz.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
<li class="toctree-l1 has-children"><a class="reference internal" href="../../../../../control/grid/index.html">Grid Converters</a><input class="toctree-checkbox" id="toctree-checkbox-13" name="toctree-checkbox-13" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-13"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/dc_voltage_ctrl.html">DC-Bus Voltage Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/current_ctrl.html">Current Control</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/synchronization.html">Disturbance-Observer-Based PLL</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/pll.html">Phase-Locked Loop</a></li>
<li class="toctree-l2"><a class="reference internal" href="../../../../../control/grid/grid-forming.html">Grid-Forming Control</a></li>
</ul>
</li>
</ul>
Expand Down
Loading

0 comments on commit bb36abe

Please sign in to comment.