mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: minor code formatting
This commit is contained in:
@ -114,15 +114,15 @@ private:
|
||||
const word methodName_;
|
||||
|
||||
//- Flag to indicate that the two patches are co-directional and
|
||||
// that the orientation of the target patch should be reversed
|
||||
//- that the orientation of the target patch should be reversed
|
||||
const bool reverseTarget_;
|
||||
|
||||
//- Flag to indicate that the two patches must be matched/an overlap
|
||||
// exists between them
|
||||
//- exists between them
|
||||
const bool requireMatch_;
|
||||
|
||||
//- Index of processor that holds all of both sides. -1 in all other
|
||||
// cases
|
||||
//- cases
|
||||
label singlePatchProc_;
|
||||
|
||||
//- Threshold weight below which interpolation is deactivated
|
||||
@ -234,7 +234,7 @@ private:
|
||||
// Evaluation
|
||||
|
||||
//- Normalise the (area) weights - suppresses numerical error in
|
||||
// weights calculation
|
||||
//- weights calculation
|
||||
// NOTE: if area weights are incorrect by 'a significant amount'
|
||||
// normalisation may stabilise the solution, but will introduce
|
||||
// numerical error!
|
||||
@ -358,7 +358,7 @@ public:
|
||||
// Access
|
||||
|
||||
//- Set to -1, or the processor holding all faces (both sides) of
|
||||
// the AMI
|
||||
//- the AMI
|
||||
inline label singlePatchProc() const;
|
||||
|
||||
//- Threshold weight below which interpolation is deactivated
|
||||
@ -389,16 +389,16 @@ public:
|
||||
inline scalarListList& srcWeights();
|
||||
|
||||
//- Return const access to normalisation factor of source
|
||||
// patch weights (i.e. the sum before normalisation)
|
||||
//- patch weights (i.e. the sum before normalisation)
|
||||
inline const scalarField& srcWeightsSum() const;
|
||||
|
||||
//- Return access to normalisation factor of source
|
||||
// patch weights (i.e. the sum before normalisation)
|
||||
//- patch weights (i.e. the sum before normalisation)
|
||||
inline scalarField& srcWeightsSum();
|
||||
|
||||
//- Source map pointer - valid only if singlePatchProc = -1
|
||||
// This gets source data into a form to be consumed by
|
||||
// tgtAddress, tgtWeights
|
||||
//- This gets source data into a form to be consumed by
|
||||
//- tgtAddress, tgtWeights
|
||||
inline const mapDistribute& srcMap() const;
|
||||
|
||||
|
||||
@ -423,16 +423,16 @@ public:
|
||||
inline scalarListList& tgtWeights();
|
||||
|
||||
//- Return const access to normalisation factor of target
|
||||
// patch weights (i.e. the sum before normalisation)
|
||||
//- patch weights (i.e. the sum before normalisation)
|
||||
inline const scalarField& tgtWeightsSum() const;
|
||||
|
||||
//- Return access to normalisation factor of target
|
||||
// patch weights (i.e. the sum before normalisation)
|
||||
//- patch weights (i.e. the sum before normalisation)
|
||||
inline scalarField& tgtWeightsSum();
|
||||
|
||||
//- Target map pointer - valid only if singlePatchProc=-1.
|
||||
// This gets target data into a form to be consumed by
|
||||
// srcAddress, srcWeights
|
||||
//- This gets target data into a form to be consumed by
|
||||
//- srcAddress, srcWeights
|
||||
inline const mapDistribute& tgtMap() const;
|
||||
|
||||
|
||||
@ -461,7 +461,7 @@ public:
|
||||
// Low-level
|
||||
|
||||
//- Interpolate from target to source with supplied op
|
||||
// to combine existing value with remote value and weight
|
||||
//- to combine existing value with remote value and weight
|
||||
template<class Type, class CombineOp>
|
||||
void interpolateToSource
|
||||
(
|
||||
@ -472,7 +472,7 @@ public:
|
||||
) const;
|
||||
|
||||
//- Interpolate from source to target with supplied op
|
||||
// to combine existing value with remote value and weight
|
||||
//- to combine existing value with remote value and weight
|
||||
template<class Type, class CombineOp>
|
||||
void interpolateToTarget
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user