Skip to content
Snippets Groups Projects
Constant.C 3.23 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*---------------------------------------------------------------------------*\
      =========                 |
      \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
       \\    /   O peration     |
    
        \\  /    A nd           | Copyright (C) 2011-2015 OpenFOAM Foundation
    
         \\/     M anipulation  | Copyright (C) 2015 OpenCFD Ltd
    
    -------------------------------------------------------------------------------
    License
        This file is part of OpenFOAM.
    
    
        OpenFOAM is free software: you can redistribute it and/or modify it
        under the terms of the GNU General Public License as published by
        the Free Software Foundation, either version 3 of the License, or
        (at your option) any later version.
    
    
        OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
        ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
        FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
        for more details.
    
        You should have received a copy of the GNU General Public License
    
        along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
    
    
    \*---------------------------------------------------------------------------*/
    
    #include "Constant.H"
    
    // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
    
    template<class Type>
    
    andy's avatar
    andy committed
    Foam::Constant<Type>::Constant(const word& entryName, const dictionary& dict)
    
        DataEntry<Type>(entryName),
    
        value_(pTraits<Type>::zero),
        dimensions_(dimless)
    
    andy's avatar
    andy committed
        Istream& is(dict.lookup(entryName));
        word entryType(is);
    
        token firstToken(is);
        if (firstToken.isWord())
        {
            token nextToken(is);
            if (nextToken == token::BEGIN_SQR)
            {
                is.putBack(nextToken);
                is >> dimensions_;
                is >> value_;
            }
        }
        else
        {
            is.putBack(firstToken);
            is  >> value_;
        }
    
    template<class Type>
    Foam::Constant<Type>::Constant
    (
        const word& entryName,
        const Type& value,
        const dimensionSet& dimensions
    )
    :
        DataEntry<Type>(entryName),
        value_(value),
        dimensions_(dimensions)
    {}
    
    
    
    template<class Type>
    Foam::Constant<Type>::Constant(const Constant<Type>& cnst)
    :
        DataEntry<Type>(cnst),
    
        value_(cnst.value_),
        dimensions_(cnst.dimensions_)
    
    // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
    
    template<class Type>
    Foam::Constant<Type>::~Constant()
    {}
    
    
    // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
    
    template<class Type>
    Type Foam::Constant<Type>::value(const scalar x) const
    {
        return value_;
    }
    
    
    template<class Type>
    Type Foam::Constant<Type>::integrate(const scalar x1, const scalar x2) const
    {
        return (x2 - x1)*value_;
    }
    
    
    
    template<class Type>
    Foam::dimensioned<Type> Foam::Constant<Type>::dimValue(const scalar x) const
    {
        return dimensioned<Type>("dimensionedValue", dimensions_, value_);
    }
    
    
    template<class Type>
    Foam::dimensioned<Type> Foam::Constant<Type>::dimIntegrate
    (
        const scalar x1, const scalar x2
    ) const
    {
        return dimensioned<Type>("dimensionedValue", dimensions_, (x2-x1)*value_);
    }
    
    
    // * * * * * * * * * * * * * *  IOStream operators * * * * * * * * * * * * * //
    
    #include "ConstantIO.C"
    
    
    
    // ************************************************************************* //