Source code for simdesign.rcmrf.bnsm.cp01.floor

"""This module provides the floor diaphragm class implementation for the
``CP01`` model in the BNSM layer.
"""
# Imports from bnsm base library
from ..baselib.floor import FloorDiaphragmBase


[docs] class FloorDiaphragm(FloorDiaphragmBase): """Floor diaphragm implementation for the ``CP01`` model. This class directly uses the behaviour defined in ``FloorDiaphragmBase``. See Also -------- :class:`~FloorDiaphragmBase.` Base class defining the core behaviour and configuration. """