예제 #1
0
    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
    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
    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
    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
    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
 def __init__(self, model):
     Property.__init__(self, model)