Пример #1
0
 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
 def __init__(self, sid, scale, scale_factors, load_ids, comment=''):
     LoadCombination.__init__(self, sid, scale, scale_factors, load_ids,
                              comment=comment)
Пример #5
0
 def __init__(self, card=None, data=None):
     LoadCombination.__init__(self, card, data)
Пример #6
0
 def __init__(self, card=None, data=None):
     LoadCombination.__init__(self, card, data)