Skip to content

Commit 7ce9888

Browse files
committed
Correct text
Signed-off-by: Coline PILOQUET <coline.piloquet@rte-france.com>
1 parent 8601845 commit 7ce9888

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

network_modifications_node_breaker.ipynb

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,28 @@
1414
"# Network modifications \n",
1515
"\n",
1616
"This notebook explains how to easily create a network in Node/Breaker topology and how to modify network elements.\n",
17-
"The methods shown in this notebook can be used to create a network from scratch or to modify an existing network after importing it. \n",
17+
"In the Node/Breaker topology, all the switches are represented and each equipment is associated with a node. It is the most detailed representation of a network. \n",
18+
"The methods shown in this notebook can be used to create a network from scratch or to modify an existing network after it has been imported. They allow to easily create voltage levels and equipment with their bay i.e. with the associated breakers and disconnectors in one line.\n",
1819
"We will only need two libraries, pypowsybl and pandas, to deal with dataframes."
1920
]
2021
},
2122
{
2223
"cell_type": "code",
2324
"execution_count": 1,
2425
"metadata": {},
25-
"outputs": [],
26+
"outputs": [
27+
{
28+
"ename": "ModuleNotFoundError",
29+
"evalue": "No module named 'pypowsybl'",
30+
"output_type": "error",
31+
"traceback": [
32+
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
33+
"\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)",
34+
"\u001b[0;32m<ipython-input-1-83135ffb712e>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mimport\u001b[0m \u001b[0mpypowsybl\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mpp\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mpandas\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mpd\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
35+
"\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'pypowsybl'"
36+
]
37+
}
38+
],
2639
"source": [
2740
"import pypowsybl as pp\n",
2841
"import pandas as pd"
@@ -7794,7 +7807,7 @@
77947807
"name": "python",
77957808
"nbconvert_exporter": "python",
77967809
"pygments_lexer": "ipython3",
7797-
"version": "3.8.5"
7810+
"version": "3.8.10"
77987811
}
77997812
},
78007813
"nbformat": 4,

0 commit comments

Comments
 (0)