swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 5284175198d16fcfb4ba114587da7a763f389a2d authored by Thomas Fischer on 06 July 2021, 11:56:44 UTC
[NL/DOF] Split MatrixProviderUser into ML/LinAlg/MatrixProvider and ML/LinAlg/VectorProvider.
Tip revision: 5284175
DensityMette.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */

#pragma once

#include "Adsorption.h"

namespace Adsorption
{

class DensityMette : public AdsorptionReaction
{
public:
    double getAdsorbateDensity(const double T_Ads) const override;
    double getAlphaT(const double T_Ads) const override;
    double characteristicCurve(const double A) const override;
    double dCharacteristicCurve(const double A) const override;
};

}  // namespace Adsorption
back to top