本文整理匯總了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)
示例2: __init__
def __init__(self, model):
"""
Defines the FORCE2 object.
:param model: the BDF object
.. todo:: collapse loads
"""
VectorizedCard.__init__(self, model)
示例3: __init__
def __init__(self, model):
"""
Defines the CONM2 object.
Parameters
----------
model : BDF
the BDF object
"""
VectorizedCard.__init__(self, model)
示例4: __init__
def __init__(self, model):
"""
Defines the DPHASE object.
Parameters
----------
model : BDF
the BDF object
.. todo:: collapse loads
"""
VectorizedCard.__init__(self, model)
示例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)
示例6: __init__
def __init__(self, model):
"""
::
1
| \
| \
| \
| 4
| |
| |
2------3
"""
VectorizedCard.__init__(self, model)
示例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 = []
示例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')
示例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')
示例10: __init__
def __init__(self, model):
VectorizedCard.__init__(self, model)
示例11: __init__
def __init__(self, model):
VectorizedCard.__init__(self, model)
self.material_id = array([], dtype='int32')