Source code for simdesign.rcmrf.bnsm.cp03.infill
"""This module provides the infill class implementation for the ``CP03`` model
in the BNSM layer.
"""
# Imports from bnsm base library
from ..cp01.infill import Infill as InfillCP01
[docs]
class Infill(InfillCP01):
"""Masonry infill wall implementation for the ``CP03`` model.
This class directly uses the behaviour defined in ``InfillCP01``.
See Also
--------
:class:`~InfillCP01`
CP01 Infill model definition used by this class.
"""