The goal of this lesson is to familiarize you with the various ways of modeling generators in GridLAB-D. The specific learning objectives are the following
- How to connect a diesel generator.
- How to connect a solar generator.
- How to connect a wind turbine.
To define generators, you must include the generators
module using the module generators;
GLM directive.
Generators can be connected to any single phase or 3-phase nodes on a network. Some generators such as diesel generators can be directly connected to the network. Renewables resources such as wind and solar must be connected through meters. Some renewables, such as solar panels, must also be connected through inverters.
When a generator's output depends on weather, then the weather data and the time must be specified.
The following tasks are illustrated in main.glm
:
- Load the
generators
module (seemain.glm@7
). - Add a 1 cylinder, 2 stroke, 3-phase diesel generator running at 360 rpm with 680 N.m of torque to
node_8
(seemain.glm@8
). - Add a 4 kW 100 sf solar panel with 13.5% efficiency titled at 45 deg facing south to
node_10
(seemain.glm@21
).- Get and load the weather data (
main.glm@22
). - Set the time to use for the weather data (
main.glm@26
). - Connect a meter to
load_10
(main.glm@32
). - Connect an inverter to the meter (
main.glm@39
). - Connect the solar panel to the inverter (
main.glm@46
).
- Get and load the weather data (
- Add a 100 kW generic small induction wind turbine to
load_28
(seemain.glm@57
).- Connect a meter to
load_28
(main.glm@57
). - Connect the wind turbine to the meter (
main.glm@57
).
- Connect a meter to
- Change the diesel generator to a single phase (A) connected to and with the same power as
load_9
. (Hint:$power = \frac{2 \pi}{60} \frac{rpm \times torque}{stroke \times cylinders}$ ). - Increase the size of the solar panel to 1000 sf, and increase the capacity of the panel and inverter to support the potential output of the panel.