# Code automatically extracted from steel_strip_profile.ipynb.
from blueprints.structural_sections.steel.standard_profiles import Strip

strip_profile = Strip.STRIP160x5

strip_profile = strip_profile.with_corrosion(corrosion=1.0)

plot = strip_profile.plot(show=True)

properties = strip_profile.section_properties()

from blueprints.structural_sections.steel.profile_definitions import StripProfile

custom_strip_profile = StripProfile(
    width=100,
    height=41,
)

plot = custom_strip_profile.plot(show=True)

properties = custom_strip_profile.section_properties()
