Skip to content

No/#405 add olm model #505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: dev
Choose a base branch
from
Open
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
45 changes: 45 additions & 0 deletions docs/readthedocs/models/input/OLM.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
.. _olm_model:

overhead line monitoring
----
Representation of an olm type according to IEEE Standard 2012.

Attributes, Units and Remarks
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Type Model
""""""""""

+-------------------+---------+---------------------------------------------+
| Attribute | Unit | Remarks |
+===================+=========+=============================================+
| uuid | -- | |
+-------------------+---------+---------------------------------------------+
| id | -- | Human readable identifier |
+-------------------+---------+---------------------------------------------+
| temperatureMax | °C | Max. line temperature |
+-------------------+---------+---------------------------------------------+
| alphaLine | 1/K | Coefficient of thermal expansion |
+-------------------+---------+---------------------------------------------+
| layers | -- | Number of layers per line |
+-------------------+---------+---------------------------------------------+
| conductorArea | mm^2 | Cross section |
+-------------------+---------+---------------------------------------------+
| conductorDiameter | m | Conductor diameter |
+-------------------+---------+---------------------------------------------+
| rDC20 | Ω / km | Specific DC resistance at 20°C |
+-------------------+---------+---------------------------------------------+
| bundles | -- | Overall number of bundles |
+-------------------+---------+---------------------------------------------+
| emissivity | -- | Emissivity according to IEEE Standard 2012 |
+-------------------+---------+---------------------------------------------+
| alphaSolar | -- | Solar absorptivity |
+-------------------+---------+---------------------------------------------+




Caveats
^^^^^^^
Nothing - at least not known.
If you found something, please contact us!
7 changes: 2 additions & 5 deletions docs/readthedocs/models/input/grid/line.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ Type Model
+-----------+---------+---------------------------------------------+
| vRated | kV | Rated voltage |
+-----------+---------+---------------------------------------------+
| olmModel | -- | |
+-----------+---------+---------------------------------------------+

Entity Model
""""""""""""
Expand Down Expand Up @@ -59,11 +61,6 @@ Entity Model
| geoPosition | -- | | Line string of geographical locations describing the |
| | | | position of the line |
+-------------------+------+--------------------------------------------------------+
| olmCharacteristic | -- | | Characteristic of possible overhead line monitoring |
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Within the line model, we need some reference to the OLM model. That is, that I'd like to keep this field and possibly rename it to olmModel or so. Moreover, it would also be desired, that we can have simple models as well. That said, would you mind proposing a second olm model (in the way with the above file) to keep the functionality of this simple model?

| | | | Can be given in the form of `olm:{<List of Pairs>}`. |
| | | | The pairs are wind velocity in x and permissible |
| | | | loading in y. |
+-------------------+------+--------------------------------------------------------+

Caveats
^^^^^^^
Expand Down
32 changes: 32 additions & 0 deletions docs/readthedocs/models/input/olmSimple.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.. _olm_model:

overhead line monitoring
----
Representation of a simple olm type.

Attributes, Units and Remarks
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Type Model
""""""""""

+-------------------+---------+--------------------------------------------------------+
| Attribute | Unit | Remarks |
+===================+=========+========================================================+
| uuid | -- | |
+-------------------+---------+--------------------------------------------------------+
| id | -- | Human readable identifier |
+-------------------+---------+--------------------------------------------------------+
| olmCharacteristic | -- | | Characteristic of possible overhead line monitoring |
| | | | Can be given in the form of `olm:{<List of Pairs>}`. |
| | | | The pairs are wind velocity in x and permissible |
| | | | loading in y. |
+-------------------+---------+--------------------------------------------------------+




Caveats
^^^^^^^
Nothing - at least not known.
If you found something, please contact us!