Esempio n. 1
0
    def __init__(self, model):
        """
        Defines the CONM2 object.

        :param model: the BDF object
        """
        VectorizedCard.__init__(self, model)
Esempio n. 2
0
    def __init__(self, model):
        """
        Defines the CONM2 object.

        :param self: the CONM2 object
        :param model: the BDF object
        """
        VectorizedCard.__init__(self, model)
Esempio n. 3
0
    def __init__(self, model):
        """
        Defines the FORCE2 object.

        :param model: the BDF object

        .. todo:: collapse loads
        """
        VectorizedCard.__init__(self, model)
Esempio n. 4
0
    def __init__(self, model):
        """
        Defines the FORCE1 object.

        :param self: the FORCE1 object
        :param model: the BDF object

        ..todo:: collapse loads
        """
        VectorizedCard.__init__(self, model)
Esempio n. 5
0
    def __init__(self, model):
        """
        Defines the CONM2 object.

        Parameters
        ----------
        model : BDF
           the BDF object
        """
        VectorizedCard.__init__(self, model)
Esempio n. 6
0
    def __init__(self, model):
        """
        Defines the CONM2 object.

        Parameters
        ----------
        model : BDF
           the BDF object
        """
        VectorizedCard.__init__(self, model)
Esempio n. 7
0
    def __init__(self, model):
        """
        Defines the DELAY object.

        Parameters
        ----------
        model : BDF
           the BDF object

        .. todo:: collapse loads
        """
        VectorizedCard.__init__(self, model)
Esempio n. 8
0
    def __init__(self, model):
        """
        Defines the DPHASE object.

        Parameters
        ----------
        model : BDF
           the BDF object

        .. todo:: collapse loads
        """
        VectorizedCard.__init__(self, model)
Esempio n. 9
0
    def __init__(self, model):
        """
        Defines the GRID object.

        :param model: the BDF object

        +------+-----+----+----+----+----+----+----+------+
        |   1  |  2  | 3  | 4  | 5  | 6  |  7 | 8  |  9   |
        +======+=====+====+====+====+====+====+====+======+
        | GRID | NID | CP | X1 | X2 | X3 | CD | PS | SEID |
        +------+-----+----+----+----+----+----+----+------+
        """
        VectorizedCard.__init__(self, model)
Esempio n. 10
0
    def __init__(self, model):
        """
        ::

          1
          | \
          |   \
          |     \
          |      4
          |      |
          |      |
          2------3
        """
        VectorizedCard.__init__(self, model)
Esempio n. 11
0
    def __init__(self, model):
        """
        Defines the GRID object.

        :param self: the GRID object
        :param model: the BDF object

        +------+-----+----+----+----+----+----+----+------+
        |   1  |  2  | 3  | 4  | 5  | 6  |  7 | 8  |  9   |
        +======+=====+====+====+====+====+====+====+======+
        | GRID | NID | CP | X1 | X2 | X3 | CD | PS | SEID |
        +------+-----+----+----+----+----+----+----+------+
        """
        VectorizedCard.__init__(self, model)
Esempio n. 12
0
    def __init__(self, model):
        """
        ::

          1
          | \
          |   \
          |     \
          |      4
          |      |
          |      |
          2------3
        """
        VectorizedCard.__init__(self, model)
Esempio n. 13
0
    def __init__(self, model):
        """
        Defines the POINTAX object.

        Parameters
        ----------
        model : BDF
           the BDF object

        +---------+-----+-----+-----+
        |    1    |  2  |  3  |  4  |
        +=========+=====+=====+=====+
        | POINTAX | NID | RID | PHI |
        +---------+-----+-----+-----+
        """
        VectorizedCard.__init__(self, model)
        self._cards = []
        self._comments = []
Esempio n. 14
0
    def __init__(self, model):
        """
        Defines the POINTAX object.

        Parameters
        ----------
        model : BDF
           the BDF object

        +---------+-----+-----+-----+
        |    1    |  2  |  3  |  4  |
        +=========+=====+=====+=====+
        | POINTAX | NID | RID | PHI |
        +---------+-----+-----+-----+
        """
        VectorizedCard.__init__(self, model)
        self._cards = []
        self._comments = []
Esempio n. 15
0
    def __init__(self, model):
        """
        Defines the ShellProperties object.

        :param model: the BDF object
        :param pshells: the list of PSHELL cards
        :param pcomps: the list of PCOMP cards
        :param pshears: the list of PSHEAR cards
        """
        VectorizedCard.__init__(self, model)
        float_fmt = self.model.float

        self.n = 1
        ncards = 1
        self.coords = {0: CORD2R(),}
        self.coord_id = zeros(ncards, dtype='int32')
        self.Type = full(ncards, 'R', dtype='|S1')  # R-CORD2R, S-CORD2S, C-CORD2C

        self.T = full((ncards, 3, 3), nan, dtype=float_fmt)
        self.T[0, :, :] = eye(3)
        self.origin = zeros((ncards, 3), dtype=float_fmt)
        self.is_resolved = full(ncards, True, dtype='bool')
Esempio n. 16
0
    def __init__(self, model):
        """
        Defines the ShellProperties object.

        Parameters
        ----------
        model : BDF
           the BDF object
        """
        VectorizedCard.__init__(self, model)
        float_fmt = self.model.float_fmt

        self.n = 1
        ncards = 1
        self.coords = {0: CORD2R(0),}
        self.coord_id = zeros(ncards, dtype='int32')
        self.Type = full(ncards, 'R', dtype='|S1')  # R-CORD2R, S-CORD2S, C-CORD2C

        self.T = full((ncards, 3, 3), nan, dtype=float_fmt)
        self.T[0, :, :] = eye(3)
        self.origin = zeros((ncards, 3), dtype=float_fmt)
        self.is_resolved = full(ncards, True, dtype='bool')
Esempio n. 17
0
 def __init__(self, model):
     VectorizedCard.__init__(self, model)
     self.material_id = array([], dtype='int32')
Esempio n. 18
0
 def __init__(self, model):
     VectorizedCard.__init__(self, model)
Esempio n. 19
0
 def __init__(self, model):
     VectorizedCard.__init__(self, model)