mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: consistent access for particle sizeofFields, particle iterators
This commit is contained in:
committed by
Andrew Heather
parent
3d0ed07fff
commit
743311df7d
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2017 OpenCFD Ltd
|
||||
\\ / A nd | Copyright (C) 2017-2019 OpenCFD Ltd
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -64,9 +64,6 @@ class DTRMParticle
|
||||
{
|
||||
// Private data
|
||||
|
||||
//- Size in bytes of the fields
|
||||
static const std::size_t sizeofFields_;
|
||||
|
||||
//- Initial position
|
||||
point p0_;
|
||||
|
||||
@ -144,7 +141,12 @@ public:
|
||||
inline scalar& Q(label celli);
|
||||
};
|
||||
|
||||
// Static data members
|
||||
|
||||
// Static Data Members
|
||||
|
||||
//- Size in bytes of the fields
|
||||
static const std::size_t sizeofFields_;
|
||||
|
||||
|
||||
//- String representation of properties
|
||||
AddToPropertyList
|
||||
|
||||
Reference in New Issue
Block a user