Skip to content

Commit

Permalink
Added multicomponent descriptor to transport.pyx, reverted DustyGasTr…
Browse files Browse the repository at this point in the history
…ansport.h doxygen to original
  • Loading branch information
chinahg committed Apr 16, 2021
1 parent 251be51 commit a9146f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 2 additions & 4 deletions include/cantera/transport/DustyGasTransport.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@ namespace Cantera
{
//! Class DustyGasTransport implements the Dusty Gas model for transport in porous media.
/*!
* As implemented here, only species transport is handled. The viscosity
* and thermal diffusion coefficients are not implemented. Thermal conductivity
* is calculated as the conductivity of the gas phase.
*
* As implemented here, only species transport is handled. The viscosity,
* thermal conductivity, and thermal diffusion coefficients are not implemented.
* The dusty gas model includes the effects of Darcy's law. There is a net flux
* of species due to a pressure gradient that is part of Darcy's law.
*
Expand Down
6 changes: 5 additions & 1 deletion interfaces/cython/cantera/transport.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,11 @@ cdef class Transport(_SolutionBase):
return self.transport.electricalConductivity()

property thermal_conductivity:
"""Thermal conductivity. [W/m/K]."""
"""
Thermal conductivity. [W/m/K]
Returns thermal conductivity of the ideal gas object using the multicomponent model.
Value is not specific to the dusty gas model.
"""
def __get__(self):
return self.transport.thermalConductivity()

Expand Down

0 comments on commit a9146f3

Please sign in to comment.