pyNastran
0.5.0
pyNastran BDF Reader/Writer, OP2 Parser, and GUI
|
Classes | |
class | BaseCard |
class | Property |
class | Material |
Base Material Class. More... | |
class | Element |
Functions | |
def | Mid |
def | expandThru |
expands a list of values of the form [1,5,THRU,9,13] to be [1,5,6,7,8,9,13] | |
def | expandThruBy |
expands a list of values of the form [1,5,THRU,9,BY,2,13] to be [1,5,7,9,13] | |
def | expandThruExclude |
expands a list of values of the form [1,5,THRU,11,EXCEPT,7,8,13] to be [1,5,6,9,10,11,13] | |
def | collapseThru |
def | collapseThruBy |
Variables | |
tuple | card = BaseCard() |
def pyNastran.bdf.cards.baseCard.Mid | ( | self | ) |
Definition at line 155 of file baseCard.py.
References pyNastran::bdf::cards::aero.__init__().
Referenced by pyNastran.bdf.cards.baseCard.BaseCard.__repr__(), and pyNastran::bdf::cards::elements::bars.k_Bending().
def pyNastran.bdf.cards.baseCard.expandThru | ( | fields | ) |
expands a list of values of the form [1,5,THRU,9,13] to be [1,5,6,7,8,9,13]
Definition at line 328 of file baseCard.py.
References expandThruBy().
Referenced by pyNastran.bdf.cards.sets.QSET.__init__(), pyNastran.bdf.cards.sets.BSET1.__init__(), pyNastran.bdf.cards.constraints.ConstraintADD.__init__(), pyNastran.bdf.cards.loads.staticLoads.PLOAD2.getLoads(), pyNastran.bdf.cards.baseCard.Element.Jacobian(), pyNastran.bdf.cards.sets.SET1.rawFields(), pyNastran.bdf.cards.sets.SET3.rawFields(), pyNastran.bdf.cards.sets.SESET.rawFields(), pyNastran.bdf.cards.constraints.SPCAX.rawFields(), and pyNastran.bdf.cards.constraints.SPCADD.rawFields().
def pyNastran.bdf.cards.baseCard.expandThruBy | ( | fields | ) |
expands a list of values of the form [1,5,THRU,9,BY,2,13] to be [1,5,7,9,13]
Definition at line 357 of file baseCard.py.
References expandThruExclude().
Referenced by expandThru().
def pyNastran.bdf.cards.baseCard.expandThruExclude | ( | self, | |
fields | |||
) |
expands a list of values of the form [1,5,THRU,11,EXCEPT,7,8,13] to be [1,5,6,9,10,11,13]
Definition at line 403 of file baseCard.py.
References collapseThru(), and collapseThruBy().
Referenced by expandThruBy().
def pyNastran.bdf.cards.baseCard.collapseThru | ( | fields | ) |
Definition at line 424 of file baseCard.py.
Referenced by expandThruExclude(), and pyNastran.bdf.cards.nodes.SPOINTs.rawFields().
def pyNastran.bdf.cards.baseCard.collapseThruBy | ( | fields | ) |
Definition at line 427 of file baseCard.py.
Referenced by pyNastran.bdf.cards.thermal.thermal.RADBC.Eid(), expandThruExclude(), pyNastran.bdf.cards.thermal.loads.QBDY3.rawFields(), and pyNastran.bdf.cards.thermal.loads.QBDY1.reprFields().
Definition at line 541 of file baseCard.py.