Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/model_interface.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"\n",
"## Array interface\n",
"\n",
"The array container is build around a extension of numpy arrays with the `FancyArray` class. This allows for easy and consistent definition of array types, recognition of array-type from its class and features which improve readability such as dot-notation and autocompletion. It contains a `._data` attribute with the base numpy array and extra settings can be provided using `._defaults` and `._str_lengths`. Note these values should only be used in defining the array classes and remain private when using the arrays.\n",
"The array container is build around an extension of numpy arrays with the `FancyArray` class. This allows for easy and consistent definition of array types, recognition of array-type from its class and features which improve readability such as dot-notation and autocompletion. It contains a `._data` attribute with the base numpy array and extra settings can be provided using `._defaults` and `._str_lengths`. Note these values should only be used in defining the array classes and remain private when using the arrays.\n",
"\n",
"### Array definition\n",
"\n",
Expand Down
6 changes: 3 additions & 3 deletions docs/quick_start.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"source": [
"# Quick Start\n",
"\n",
"In this quick start we create an extension of the Grid object, generate a random instance of it and perform power flow calculations and modifactions.\n"
"In this quick start we create an extension of the Grid object, generate a random instance of it and perform power flow calculations and modifications.\n"
]
},
{
Expand All @@ -15,7 +15,7 @@
"source": [
"## Setting up a grid extension\n",
"\n",
"This shows how to add extra values to a `Grid` object. If these are present in the PGM output they will updated after a power flow calculation.\n"
"This shows how to add extra values to a `Grid` object. If these are present in the PGM output they will be updated after a power flow calculation.\n"
]
},
{
Expand Down Expand Up @@ -198,7 +198,7 @@
"source": [
"## Analyzing Grid structure\n",
"\n",
"The `Grid` also contains a graph representation which can be used for anayling structure. Such as finding the shortest path between two nodes.\n"
"The `Grid` also contains a graph representation which can be used for analyzing structure. Such as finding the shortest path between two nodes.\n"
]
},
{
Expand Down