コード例 #1
0
ファイル: ptube.py プロジェクト: marcinch18/pyNastran
    def __init__(self, model):
        """
        Defines the PTUBE object.

        :param model: the BDF object
        """
        Property.__init__(self, model)
コード例 #2
0
ファイル: psolid.py プロジェクト: umvarma/pynastran
    def __init__(self, model):
        """
        Defines the PSOLID object.

        :param self: the PSOLID object
        :param model: the BDF object
        """
        Property.__init__(self, model)
コード例 #3
0
    def __init__(self, model):
        """
        Defines the PSHELL object.

        :param model: the BDF object
        :param cards: the list of PSHELL cards
        """
        Property.__init__(self, model)
コード例 #4
0
    def __init__(self, model):
        """
        Defines the PROD object.

        :param self: the PROD object
        :param model: the BDF object
        """
        Property.__init__(self, model)
コード例 #5
0
ファイル: pshell.py プロジェクト: umvarma/pynastran
    def __init__(self, model):
        """
        Defines the PSHELL object.

        :param self: the PSHELL object
        :param model: the BDF object
        :param cards: the list of PSHELL cards
        """
        Property.__init__(self, model)
コード例 #6
0
ファイル: pbarl.py プロジェクト: EmanueleCannizzaro/pyNastran
    def __init__(self, model):
        """
        Defines the PCOMP object.

        :param model: the BDF object
        :param cards: the list of PBARL cards
        """
        Property.__init__(self, model)
        self._cards = []
コード例 #7
0
ファイル: pbar.py プロジェクト: umvarma/pynastran
    def __init__(self, model):
        """
        Defines the PBAR object.

        :param self: the PBAR object
        :param model: the BDF object
        :param cards: the list of PBAR cards
        """
        Property.__init__(self, model)
コード例 #8
0
ファイル: psolid.py プロジェクト: hurlei/pyNastran
    def __init__(self, model):
        """
        Defines the PSOLID object.

        Parameters
        ----------
        model : BDF
           the BDF object
        """
        Property.__init__(self, model)
コード例 #9
0
ファイル: plsolid.py プロジェクト: dsegroup22/pyNastran
    def __init__(self, model):
        """
        Defines the PLSOLID object.

        Parameters
        ----------
        model : BDF
           the BDF object
        """
        Property.__init__(self, model)
コード例 #10
0
ファイル: pbarl.py プロジェクト: umvarma/pynastran
    def __init__(self, model):
        """
        Defines the PCOMP object.

        :param self: the PBARL object
        :param model: the BDF object
        :param cards: the list of PBARL cards
        """
        Property.__init__(self, model)
        self._cards = []
コード例 #11
0
ファイル: pcomp.py プロジェクト: EmanueleCannizzaro/pyNastran
    def __init__(self, model):
        """
        Defines the PCOMP object.

        :param model: the BDF object
        :param cards: the list of PCOMP cards
        """
        Property.__init__(self, model)
        #self.model = model
        del self.i
        self.properties = {}
        self.nplies = None
コード例 #12
0
ファイル: pcomp.py プロジェクト: umvarma/pynastran
    def __init__(self, model):
        """
        Defines the PCOMP object.

        :param self: the PCOMP object
        :param model: the BDF object
        :param cards: the list of PCOMP cards
        """
        Property.__init__(self, model)
        #self.model = model
        del self.i
        self.properties = {}
        self.nplies = None
コード例 #13
0
ファイル: pcomp.py プロジェクト: hurlei/pyNastran
    def __init__(self, model):
        """
        Defines the PCOMP object.

        Parameters
        ----------
        model : BDF
           the BDF object
        """
        Property.__init__(self, model)
        #self.model = model
        del self.i
        self.properties = {}
        self.nplies = None
コード例 #14
0
ファイル: pcomp.py プロジェクト: charlyDevor/pyNastran
    def __init__(self, model):
        """
        Defines the PCOMP object.

        Parameters
        ----------
        model : BDF
           the BDF object
        """
        Property.__init__(self, model)
        #self.model = model
        del self.i
        self.properties = {}
        self.nplies = None
コード例 #15
0
 def __init__(self, model):
     Property.__init__(self, model)
コード例 #16
0
ファイル: pshear.py プロジェクト: dsegroup22/pyNastran
 def __init__(self, model):
     Property.__init__(self, model)