mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
access to transformation
This commit is contained in:
@ -125,6 +125,31 @@ public:
|
||||
|
||||
// Member Functions
|
||||
|
||||
//- scaling vector per subsurface
|
||||
const vectorField& scale() const
|
||||
{
|
||||
return scale_;
|
||||
}
|
||||
|
||||
//- scaling vector per subsurface
|
||||
vectorField& scale()
|
||||
{
|
||||
return scale_;
|
||||
}
|
||||
|
||||
//- coordinate system per subsurface
|
||||
const PtrList<coordinateSystem>& transform() const
|
||||
{
|
||||
return transform_;
|
||||
}
|
||||
|
||||
//- coordinate system per subsurface
|
||||
PtrList<coordinateSystem>& transform()
|
||||
{
|
||||
return transform_;
|
||||
}
|
||||
|
||||
|
||||
virtual const wordList& regions() const;
|
||||
|
||||
//- Whether supports volume type below
|
||||
|
||||
Reference in New Issue
Block a user