Merge branch 'master' of github.com:OpenFOAM/OpenFOAM-2.3.x
This commit is contained in:
commit
983483df90
3 changed files with 19 additions and 3 deletions
|
|
@ -2,7 +2,7 @@
|
|||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
|
|
@ -128,6 +128,21 @@ public:
|
|||
//- Type of values the UList contains.
|
||||
typedef T value_type;
|
||||
|
||||
//- Type that can be used for storing into
|
||||
// UList::value_type objects.
|
||||
typedef T& reference;
|
||||
|
||||
//- Type that can be used for storing into
|
||||
// constant UList::value_type objects
|
||||
typedef const T& const_reference;
|
||||
|
||||
//- The type that can represent the difference between any two
|
||||
// UList iterator objects.
|
||||
typedef label difference_type;
|
||||
|
||||
//- The type that can represent the size of a UList.
|
||||
typedef label size_type;
|
||||
|
||||
|
||||
// Ostream operator
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
|
|
@ -92,6 +92,7 @@ clearTopology()
|
|||
deleteDemandDrivenData(pointEdgesPtr_);
|
||||
deleteDemandDrivenData(pointFacesPtr_);
|
||||
deleteDemandDrivenData(edgeLoopsPtr_);
|
||||
deleteDemandDrivenData(localPointOrderPtr_);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ void Foam::sixDoFRigidBodyMotion::write(Ostream& os) const
|
|||
|
||||
os.writeKeyword("centreOfMass")
|
||||
<< initialCentreOfMass_ << token::END_STATEMENT << nl;
|
||||
os.writeKeyword("orientation")
|
||||
os.writeKeyword("initialOrientation")
|
||||
<< initialQ_ << token::END_STATEMENT << nl;
|
||||
os.writeKeyword("mass")
|
||||
<< mass_ << token::END_STATEMENT << nl;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue