pytabs.diaphragm

 1# pyTABS - ETABS .NET API python wrapper
 2# Diaphragm - cDiaphragm
 3__all__ = ['Diaphragm']
 4
 5# import ETABS namespace and pyTABS error handler
 6from pytabs.etabs_config import *
 7from pytabs.error_handle import *
 8
 9# import custom enumerations
10
11
12# import typing
13
14
15class Diaphragm:
16    """Diaphragm interface"""
17    def __init__(self, sap_model : etabs.cSapModel) -> None:
18        # link of SapModel interface
19        self.sap_model = sap_model
20        # create Diaphragm interface
21        self.diaphragm = etabs.cDiaphragm(sap_model.Diaphragm)
22        
23        # relate custom enumerations
class Diaphragm:
16class Diaphragm:
17    """Diaphragm interface"""
18    def __init__(self, sap_model : etabs.cSapModel) -> None:
19        # link of SapModel interface
20        self.sap_model = sap_model
21        # create Diaphragm interface
22        self.diaphragm = etabs.cDiaphragm(sap_model.Diaphragm)
23        
24        # relate custom enumerations

Diaphragm interface

Diaphragm(sap_model: ETABSv1.cSapModel)
18    def __init__(self, sap_model : etabs.cSapModel) -> None:
19        # link of SapModel interface
20        self.sap_model = sap_model
21        # create Diaphragm interface
22        self.diaphragm = etabs.cDiaphragm(sap_model.Diaphragm)
23        
24        # relate custom enumerations