Skip to main content

Definition of a Microgrid

The microgrid is a concept that is modernizing the conventional power system in many countries. It was first proposed in the early 2000s and a lot of research from academia and industry has been conducted to improve the concept as well as the technologies required. Here the definitions of the microgrid are given.

USA Department of Energy (DOE) definition (Ton & Smith, 2012):

"A group of interconnected loads and distributed energy resources within clearly defined electrical boundaries that acts as a single controllable entity with respect to the grid. A microgrid can connect and disconnect from the grid to enable it to operate in both grid-connected or island mode."

European Union (EU) Research Projects definition (Schwaegerl & Tao, 2013):

"Microgrids comprise LV distribution systems with distributed energy resources (DER) (microturbines, fuel cells, PV, etc.) together with storage devices (flywheels, energy capacitors, and batteries) and flexible loads. Such systems can be operated in a non-autonomous way, if interconnected to the grid, or in an autonomous way, if disconnected from the main grid. The operation of micro sources in the network can provide distinct benefits to the overall system performance, if managed and coordinated efficiently."

From these definitions, the USA DOE definition is widely used in many research and industry literature and projects.

References

Schwaegerl, C., & Tao, L. (2013). The Microgrids Concept. In Microgrids (pp. 1–24). Chichester, United Kingdom: John Wiley and Sons Ltd.

Ton, D. T., & Smith, M. A. (2012). The U.s. department of energy’s microgrid initiative. Electricity Journal, 25(8), 84–94.


Comments

Popular posts from this blog

Cracking the Black Box: Six Lenses for Understanding Deep Learning

Deep learning has revolutionised technology, giving us everything from uncannily smart chatbots to medical imaging that can spot diseases better than the human eye. Yet, for a long time, a central mystery has haunted the field: why do these enormous models work so well? According to classical statistics, a model with billions of parameters—far more than its training data—should fail spectacularly. It ought to memorise the data, noise and all, and be unable to generalise to new, unseen examples. But deep neural networks defy this wisdom. They generalise brilliantly. How do we explain this apparent magic? There isn't one single answer. Instead, researchers view the problem through several different theoretical "lenses." Here are six of the most important ones. 1. The Linearisation Lens: The Neural Tangent Kernel (NTK) ⚙️ The NTK offers a startling insight: what if, under the right conditions, a massively complex neural network is just a simple, linear model in disguise? The...

How to program in R language in Jupyter Notebooks using Conda environments

In this blog post, we will discuss how to use conda environments to install the R kernel and program in R in Jupyter notebooks. 1. Install conda The first step in using conda environments is to install conda itself. You can download the conda installer from the Anaconda website and follow the instructions to install it on your system. Once you have conda installed, you can create and manage virtual environments. 2. Create a new conda environment To create a new conda environment, you can use the following command in your terminal: conda create -n myrenv This will create a new environment called "myenv" that you can use to manage your packages and dependencies. You can activate this environment by using the following command: conda activate myrenv 3. Install the R kernel Now that you have an active conda environment, you can use it to install the R kernel. You can do this by using the following command (you may have to press Enter key several times to finish the process): c...

Studying Machine Learning and Deep Learning from Scratch

I was interested in learning machine learning and deep learning ever since I realized its potential to apply to many research problems in power systems research. So I started learning it. So far, I have done one Coursera specialization, a course (you can probably guess this) and I'm currently doing another specialization. Before this, I went through several youtube videos to get a feel for what ML really is. Apart from this, I'm enrolled in the program by Dr. Michal Fabinger @ Tokyo Data Science My goal here is to recommend the flow of this process, which would have been very helpful in the beginning for me. Although I have given Coursera links most of the content is available open-source for free . So here it goes, Search youtube for videos that explain what machine learning is. There are a lot out there. Don't get stuck in this just take one hour that should be enough.  TensorFlow ML Zero to Hero Then start learning. A good place to start is Coursera - AMII specialization...