コード例 #1
0
ファイル: dloads.py プロジェクト: dsegroup22/pyNastran
 def __init__(self, sid, scale, scale_factors, load_ids, comment=''):
     LoadCombination.__init__(self,
                              sid,
                              scale,
                              scale_factors,
                              load_ids,
                              comment=comment)
コード例 #2
0
    def __init__(self, sid, scale, scale_factors, load_ids, comment=''):
        """
        Creates a DLOAD card

        Parameters
        ----------
        sid : int
            Load set identification number. See Remarks 1. and 4. (Integer > 0)
        scale : float
            Scale factor. See Remarks 2. and 8. (Real)
        Si : List[float]
            Scale factors. See Remarks 2., 7. and 8. (Real)
        load_ids : List[int]
            Load set identification numbers of RLOAD1, RLOAD2, TLOAD1,
            TLOAD2, and ACSRCE entries. See Remarks 3. and 7. (Integer > 0)
        comment : str; default=''
            the card comment
        """
        LoadCombination.__init__(self, sid, scale, scale_factors, load_ids,
                                 comment=comment)
コード例 #3
0
 def __init__(self, card=None, data=None, comment=''):
     LoadCombination.__init__(self, card, data)
     if comment:
         self._comment = comment
コード例 #4
0
ファイル: dloads.py プロジェクト: hurlei/pyNastran
 def __init__(self, sid, scale, scale_factors, load_ids, comment=''):
     LoadCombination.__init__(self, sid, scale, scale_factors, load_ids,
                              comment=comment)
コード例 #5
0
ファイル: staticLoads.py プロジェクト: xirxa/pynastran-locr
 def __init__(self, card=None, data=None):
     LoadCombination.__init__(self, card, data)
コード例 #6
0
ファイル: staticLoads.py プロジェクト: xirxa/pynastran-locr
 def __init__(self, card=None, data=None):
     LoadCombination.__init__(self, card, data)