Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
4413212d
Commit
4413212d
authored
Nov 12, 2013
by
andy
Browse files
ENH: regionModel - AMI list now mutable to allow const access
parent
feacb903
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/regionModels/regionModel/regionModel/regionModel.C
View file @
4413212d
...
...
@@ -197,7 +197,7 @@ Foam::regionModels::regionModel::interRegionAMI
const
label
regionPatchI
,
const
label
nbrPatchI
,
const
bool
flip
)
)
const
{
label
nbrRegionID
=
findIndex
(
interRegionAMINames_
,
nbrRegion
.
name
());
...
...
src/regionModels/regionModel/regionModel/regionModel.H
View file @
4413212d
...
...
@@ -125,10 +125,11 @@ protected:
// Inter-region AMI interpolation caching
//- List of region names this region is coupled to
wordList
interRegionAMINames_
;
mutable
wordList
interRegionAMINames_
;
//- List of AMI objects per coupled region
PtrList
<
PtrList
<
AMIPatchToPatchInterpolation
>
>
interRegionAMI_
;
mutable
PtrList
<
PtrList
<
AMIPatchToPatchInterpolation
>
>
interRegionAMI_
;
// Protected member functions
...
...
@@ -146,7 +147,7 @@ protected:
const
label
regionPatchI
,
const
label
nbrPatchI
,
const
bool
flip
);
)
const
;
public:
...
...
@@ -257,7 +258,7 @@ public:
const
label
nbrPatchI
,
const
Field
<
Type
>&
nbrField
,
const
bool
flip
=
false
);
)
const
;
//- Map patch field from another region model to local patch
template
<
class
Type
>
...
...
@@ -267,7 +268,7 @@ public:
const
word
&
fieldName
,
const
label
regionPatchI
,
const
bool
flip
=
false
);
)
const
;
//- Map patch internal field from another region model to local
// patch
...
...
@@ -278,7 +279,7 @@ public:
const
word
&
fieldName
,
const
label
regionPatchI
,
const
bool
flip
=
false
);
)
const
;
//- Convert a local region field to the primary region
template
<
class
Type
>
...
...
src/regionModels/regionModel/regionModel/regionModelTemplates.C
View file @
4413212d
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-201
2
OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-201
3
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -32,7 +32,7 @@ Foam::regionModels::regionModel::mapRegionPatchField
const
label
nbrPatchI
,
const
Field
<
Type
>&
nbrField
,
const
bool
flip
)
)
const
{
int
oldTag
=
UPstream
::
msgType
();
UPstream
::
msgType
()
=
oldTag
+
1
;
...
...
@@ -56,7 +56,7 @@ Foam::regionModels::regionModel::mapRegionPatchField
const
word
&
fieldName
,
const
label
regionPatchI
,
const
bool
flip
)
)
const
{
typedef
GeometricField
<
Type
,
fvPatchField
,
volMesh
>
fieldType
;
...
...
@@ -108,7 +108,7 @@ Foam::regionModels::regionModel::mapRegionPatchInternalField
const
word
&
fieldName
,
const
label
regionPatchI
,
const
bool
flip
)
)
const
{
typedef
GeometricField
<
Type
,
fvPatchField
,
volMesh
>
fieldType
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment