Source code for openpnm.algorithms._fourier_conduction

import logging
from openpnm.algorithms import ReactiveTransport
from openpnm.utils import Docorator


logger = logging.getLogger(__name__)
docstr = Docorator()


__all__ = ['FourierConduction']


@docstr.dedent
class FourierConductionSettings:
    r'''

    Parameters
    ----------
    %(ReactiveTransportSettings.parameters)s

    '''
    quantity = 'pore.temperature'
    conductance = 'throat.thermal_conductance'


[docs] class FourierConduction(ReactiveTransport): r""" A subclass of LinearTransport to simulate heat conduction """ def __init__(self, name='fourier_?', **kwargs): super().__init__(name=name, **kwargs) self.settings._update(FourierConductionSettings())