|
117 | 117 | "metadata": {}, |
118 | 118 | "source": [ |
119 | 119 | "# 🏗️ 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" |
127 | 121 | ] |
128 | 122 | }, |
129 | 123 | { |
|
143 | 137 | "id": "4d2df7f4", |
144 | 138 | "metadata": {}, |
145 | 139 | "source": [ |
| 140 | + "We now loaded our the network visualised here\n", |
| 141 | + "\n", |
146 | 142 | "" |
147 | 143 | ] |
148 | 144 | }, |
|
152 | 148 | "metadata": {}, |
153 | 149 | "source": [ |
154 | 150 | "# 🧯 Step 3: Detect the Overload\n", |
| 151 | + "This is your first excercise.\n", |
| 152 | + "\n", |
155 | 153 | "Goal: Identify which line(s) are exceeding their rated current.\n", |
156 | 154 | "\n", |
157 | 155 | "You’ll:\n", |
|
195 | 193 | "# %load solutions/advanced_3_check_for_capacity_issues.py" |
196 | 194 | ] |
197 | 195 | }, |
| 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 | + }, |
198 | 204 | { |
199 | 205 | "cell_type": "code", |
200 | 206 | "execution_count": null, |
|
211 | 217 | "metadata": {}, |
212 | 218 | "source": [ |
213 | 219 | "# 🧭 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", |
214 | 222 | "\n", |
215 | 223 | "\n", |
216 | | - "Goal: Place a second substation near the overloaded path.\n", |
| 224 | + "Goal: Place a second substation near the overloaded paths.\n", |
217 | 225 | "\n", |
218 | 226 | "You’ll:\n", |
219 | 227 | "- Add a new substation at a specified location\n", |
|
0 commit comments