當前位置: 首頁>>代碼示例>>Python>>正文


Python vectorized_card.VectorizedCard類代碼示例

本文整理匯總了Python中pyNastran.bdf.dev_vectorized.cards.vectorized_card.VectorizedCard的典型用法代碼示例。如果您正苦於以下問題:Python VectorizedCard類的具體用法?Python VectorizedCard怎麽用?Python VectorizedCard使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了VectorizedCard類的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

    def __init__(self, model):
        """
        Defines the CONM2 object.

        :param model: the BDF object
        """
        VectorizedCard.__init__(self, model)
開發者ID:EmanueleCannizzaro,項目名稱:pyNastran,代碼行數:7,代碼來源:conm2.py

示例2: __init__

    def __init__(self, model):
        """
        Defines the FORCE2 object.

        :param model: the BDF object

        .. todo:: collapse loads
        """
        VectorizedCard.__init__(self, model)
開發者ID:marcinch18,項目名稱:pyNastran,代碼行數:9,代碼來源:force2.py

示例3: __init__

    def __init__(self, model):
        """
        Defines the CONM2 object.

        Parameters
        ----------
        model : BDF
           the BDF object
        """
        VectorizedCard.__init__(self, model)
開發者ID:hurlei,項目名稱:pyNastran,代碼行數:10,代碼來源:conm2.py

示例4: __init__

    def __init__(self, model):
        """
        Defines the DPHASE object.

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

        .. todo:: collapse loads
        """
        VectorizedCard.__init__(self, model)
開發者ID:hurlei,項目名稱:pyNastran,代碼行數:12,代碼來源:dphase.py

示例5: __init__

    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)
開發者ID:EmanueleCannizzaro,項目名稱:pyNastran,代碼行數:13,代碼來源:grid.py

示例6: __init__

    def __init__(self, model):
        """
        ::

          1
          | \
          |   \
          |     \
          |      4
          |      |
          |      |
          2------3
        """
        VectorizedCard.__init__(self, model)
開發者ID:marcinch18,項目名稱:pyNastran,代碼行數:14,代碼來源:spline1.py

示例7: __init__

    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 = []
開發者ID:hurlei,項目名稱:pyNastran,代碼行數:18,代碼來源:pointax.py

示例8: __init__

    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')
開發者ID:marcinch18,項目名稱:pyNastran,代碼行數:22,代碼來源:coord.py

示例9: __init__

    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')
開發者ID:hurlei,項目名稱:pyNastran,代碼行數:22,代碼來源:coord.py

示例10: __init__

 def __init__(self, model):
     VectorizedCard.__init__(self, model)
開發者ID:EmanueleCannizzaro,項目名稱:pyNastran,代碼行數:2,代碼來源:paero1.py

示例11: __init__

 def __init__(self, model):
     VectorizedCard.__init__(self, model)
     self.material_id = array([], dtype='int32')
開發者ID:umvarma,項目名稱:pynastran,代碼行數:3,代碼來源:material.py


注:本文中的pyNastran.bdf.dev_vectorized.cards.vectorized_card.VectorizedCard類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。