[Python] Add setter for Species.transport
This commit is contained in:
parent
00ed585f18
commit
a4252480aa
1 changed files with 2 additions and 0 deletions
|
|
@ -167,6 +167,8 @@ cdef class Species:
|
|||
data = GasTransportData(init=False)
|
||||
data._assign(self.species.transport)
|
||||
return data
|
||||
def __set__(self, GasTransportData tran):
|
||||
self.species.transport = tran._data
|
||||
|
||||
|
||||
cdef class ThermoPhase(_SolutionBase):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue