mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: Code formatting
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -142,9 +142,6 @@ public:
|
|||||||
virtual void convertTimeBase(const Time& t);
|
virtual void convertTimeBase(const Time& t);
|
||||||
|
|
||||||
|
|
||||||
public:
|
|
||||||
|
|
||||||
|
|
||||||
// Evaluation
|
// Evaluation
|
||||||
|
|
||||||
//- Return value as a function of (scalar) independent variable
|
//- Return value as a function of (scalar) independent variable
|
||||||
@ -172,14 +169,15 @@ public:
|
|||||||
const scalarField& x
|
const scalarField& x
|
||||||
) const;
|
) const;
|
||||||
|
|
||||||
//- Integrate between two scalars and returns a dimensioned type
|
//- Integrate between two scalars and return a dimensioned type
|
||||||
virtual dimensioned<Type> dimIntegrate
|
virtual dimensioned<Type> dimIntegrate
|
||||||
(
|
(
|
||||||
const scalar x1,
|
const scalar x1,
|
||||||
const scalar x2
|
const scalar x2
|
||||||
) const;
|
) const;
|
||||||
|
|
||||||
//- Integrate between two scalars and returns list of dimensioned type
|
//- Integrate between two scalar fields and return a field of
|
||||||
|
// dimensioned type
|
||||||
virtual tmp<Field<dimensioned<Type> > > dimIntegrate
|
virtual tmp<Field<dimensioned<Type> > > dimIntegrate
|
||||||
(
|
(
|
||||||
const scalarField& x1,
|
const scalarField& x1,
|
||||||
|
|||||||
Reference in New Issue
Block a user