示例#1
0
    def __init__(self, id, locator=None):
        Declaration.__init__(self, locator)

        self.id = id

        self.products = []
        self.reactants = []
        self.efficiencies = []
        self.ford = []

        self.arrhenius = None
        self.units = {}

        self.lt = None
        self.rev = None
        self.rlt = None

        self.duplicate = None
        self.thirdBody = None
        self.reversible = None

        self.falloff = None
        self.low = None
        self.sri = None
        self.troe = None

        self.radiation = None

        return
    def __init__(self, symbol, weight=None, locator=None):
        Declaration.__init__(self, locator)

        self.symbol = symbol
        self.weight = weight

        return
示例#3
0
    def __init__(self, symbol, locator=None):
        Declaration.__init__(self, locator)

        self.symbol = symbol
        self.phase = None
        self.composition = []

        return
示例#4
0
    def __init__(self, symbol, locator=None):
        Declaration.__init__(self, locator)

        self.symbol = symbol
        self.phase = None
        self.composition = []

        self.range = None
        self.lowParameters = []
        self.highParameters = []

        return
 def __init__(self, symbol, locator=None):
     Declaration.__init__(self, locator)
     self.symbol = symbol
     return