.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/plot_cigre.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_plot_cigre.py: Standard example from CIGRE TB 601 ---------------------------------- In this example, we see how we can use ``linerate`` to compute the steady state thermal rating and the steady state conductor temperature with the conductor, span and weather parameters listed in Example B on page 79-81 of :cite:p:`cigre601`. .. GENERATED FROM PYTHON SOURCE LINES 10-12 Imports and utilities ^^^^^^^^^^^^^^^^^^^^^ .. GENERATED FROM PYTHON SOURCE LINES 12-18 .. code-block:: Python import matplotlib.pyplot as plt import numpy as np import linerate .. GENERATED FROM PYTHON SOURCE LINES 19-21 Define conductor type ^^^^^^^^^^^^^^^^^^^^^ .. GENERATED FROM PYTHON SOURCE LINES 21-39 .. code-block:: Python conductor = linerate.Conductor( core_diameter=10.4e-3, conductor_diameter=28.1e-3, outer_layer_strand_diameter=2.2e-3, emissivity=0.9, solar_absorptivity=0.9, temperature1=25, temperature2=75, resistance_at_temperature1=7.283e-5, resistance_at_temperature2=8.688e-5, aluminium_cross_section_area=float("nan"), # No core magnetisation loss constant_magnetic_effect=1, current_density_proportional_magnetic_effect=0, max_magnetic_core_relative_resistance_increase=1, ) .. GENERATED FROM PYTHON SOURCE LINES 40-42 Create towers for a span that faces east-west ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. GENERATED FROM PYTHON SOURCE LINES 42-54 .. code-block:: Python start_tower = linerate.Tower(latitude=50 - 0.0045, longitude=0, altitude=500 - 88) end_tower = linerate.Tower(latitude=50 + 0.0045, longitude=0, altitude=500 + 88) span = linerate.Span( conductor=conductor, start_tower=start_tower, end_tower=end_tower, ground_albedo=0.15, num_conductors=1, ) .. GENERATED FROM PYTHON SOURCE LINES 55-57 Create the weather data class ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. GENERATED FROM PYTHON SOURCE LINES 57-66 .. code-block:: Python weather = linerate.Weather( air_temperature=20, wind_direction=np.radians(80), # Conductor azimuth is 0, so angle of attack is 80 wind_speed=1.66, clearness_ratio=0.5, ) .. GENERATED FROM PYTHON SOURCE LINES 67-69 Setup CIGRE 601 model ^^^^^^^^^^^^^^^^^^^^^ .. GENERATED FROM PYTHON SOURCE LINES 69-73 .. code-block:: Python time_of_measurement = np.datetime64("2016-10-03 14:00") model = linerate.Cigre601(span, weather, time_of_measurement) .. GENERATED FROM PYTHON SOURCE LINES 74-76 Compute line rating and temperature ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. GENERATED FROM PYTHON SOURCE LINES 76-83 .. code-block:: Python max_conductor_temperature = np.linspace(26, 100, 75) current_load = np.linspace(0, 1_000, 101) conductor_rating = model.compute_steady_state_ampacity(max_conductor_temperature) conductor_temperature = model.compute_conductor_temperature(current_load, tolerance=0.01) .. GENERATED FROM PYTHON SOURCE LINES 84-86 Plot line rating and temperature ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. GENERATED FROM PYTHON SOURCE LINES 86-97 .. code-block:: Python fig, axes = plt.subplots(1, 2, figsize=(8, 2.5), tight_layout=True) axes[0].plot(max_conductor_temperature, conductor_rating, "k") axes[0].set_xlabel(r"Max conductor temperature $[^\circ \mathrm{C}]$") axes[0].set_ylabel(r"Ampacity rating $[\mathrm{A}]$") axes[1].plot(current_load, conductor_temperature, "k") axes[1].set_xlabel(r"Current $[\mathrm{A}]$") axes[1].set_ylabel(r"Conductor temperature $[^\circ \mathrm{C}]$") plt.show() .. image-sg:: /auto_examples/images/sphx_glr_plot_cigre_001.png :alt: plot cigre :srcset: /auto_examples/images/sphx_glr_plot_cigre_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 3.052 seconds) .. _sphx_glr_download_auto_examples_plot_cigre.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_cigre.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_cigre.py ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_