Skip to content

Commit 4f21787

Browse files
feat: text
1 parent b34b1d3 commit 4f21787

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

power-grid-model-ds/advanced.ipynb

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,7 @@
117117
"metadata": {},
118118
"source": [
119119
"# 🏗️ Step 2: Load and Prepare the Grid\n",
120-
"Goal: Load a synthetic medium-voltage grid from the provided data.\n",
121-
"\n",
122-
"You'll use pandas to load the data from included CSV files and then:\n",
123-
"- Create an empty Grid object using your custom MyGrid class\n",
124-
"- Create and fill NodeArray, LineArray and LoadArray objects with data from the CSV files and append them to your Grid\n",
125-
"- Using a SourceArray, add a voltage source to each substation in the Grid\n",
126-
"- You’ll then compute a power flow on the synthetic grid to get realistic line currents"
120+
"Goal: Load a synthetic medium-voltage grid from the provided data"
127121
]
128122
},
129123
{
@@ -143,6 +137,8 @@
143137
"id": "4d2df7f4",
144138
"metadata": {},
145139
"source": [
140+
"We now loaded our the network visualised here\n",
141+
"\n",
146142
"![input_network.png](input_network.png)"
147143
]
148144
},
@@ -152,6 +148,8 @@
152148
"metadata": {},
153149
"source": [
154150
"# 🧯 Step 3: Detect the Overload\n",
151+
"This is your first excercise.\n",
152+
"\n",
155153
"Goal: Identify which line(s) are exceeding their rated current.\n",
156154
"\n",
157155
"You’ll:\n",
@@ -195,6 +193,14 @@
195193
"# %load solutions/advanced_3_check_for_capacity_issues.py"
196194
]
197195
},
196+
{
197+
"cell_type": "markdown",
198+
"id": "4bd3aea9",
199+
"metadata": {},
200+
"source": [
201+
"We can use PGM-DSs visualization function to explore the resulting grid. Check out the highlighting parts of the grid based on it's attributes to find out where the overload occurs"
202+
]
203+
},
198204
{
199205
"cell_type": "code",
200206
"execution_count": null,
@@ -211,9 +217,11 @@
211217
"metadata": {},
212218
"source": [
213219
"# 🧭 Step 4: Plan a Relief Strategy\n",
220+
"We found out the north west part of the area is overloaded. To relieve the problem we will build a new substation near the overloaded area and connect part of the grid there.\n",
221+
"\n",
214222
"![input_network_with_overload.png](input_network_with_overload.png)\n",
215223
"\n",
216-
"Goal: Place a second substation near the overloaded path.\n",
224+
"Goal: Place a second substation near the overloaded paths.\n",
217225
"\n",
218226
"You’ll:\n",
219227
"- Add a new substation at a specified location\n",

0 commit comments

Comments
 (0)