Skip to content
Snippets Groups Projects
Commit e385e603 authored by mattijs's avatar mattijs
Browse files

STYLE: selfContainedDirectMapped : line length

parent 68408e68
Branches
Tags
No related merge requests found
...@@ -35,7 +35,8 @@ namespace Foam ...@@ -35,7 +35,8 @@ namespace Foam
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template<class Type> template<class Type>
selfContainedDirectMappedFixedValueFvPatchField<Type>::selfContainedDirectMappedFixedValueFvPatchField selfContainedDirectMappedFixedValueFvPatchField<Type>::
selfContainedDirectMappedFixedValueFvPatchField
( (
const fvPatch& p, const fvPatch& p,
const DimensionedField<Type, volMesh>& iF const DimensionedField<Type, volMesh>& iF
...@@ -51,7 +52,8 @@ selfContainedDirectMappedFixedValueFvPatchField<Type>::selfContainedDirectMapped ...@@ -51,7 +52,8 @@ selfContainedDirectMappedFixedValueFvPatchField<Type>::selfContainedDirectMapped
template<class Type> template<class Type>
selfContainedDirectMappedFixedValueFvPatchField<Type>::selfContainedDirectMappedFixedValueFvPatchField selfContainedDirectMappedFixedValueFvPatchField<Type>::
selfContainedDirectMappedFixedValueFvPatchField
( (
const selfContainedDirectMappedFixedValueFvPatchField<Type>& ptf, const selfContainedDirectMappedFixedValueFvPatchField<Type>& ptf,
const fvPatch& p, const fvPatch& p,
...@@ -129,7 +131,8 @@ selfContainedDirectMappedFixedValueFvPatchField ...@@ -129,7 +131,8 @@ selfContainedDirectMappedFixedValueFvPatchField
template<class Type> template<class Type>
selfContainedDirectMappedFixedValueFvPatchField<Type>::selfContainedDirectMappedFixedValueFvPatchField selfContainedDirectMappedFixedValueFvPatchField<Type>::
selfContainedDirectMappedFixedValueFvPatchField
( (
const selfContainedDirectMappedFixedValueFvPatchField<Type>& ptf const selfContainedDirectMappedFixedValueFvPatchField<Type>& ptf
) )
...@@ -144,7 +147,8 @@ selfContainedDirectMappedFixedValueFvPatchField<Type>::selfContainedDirectMapped ...@@ -144,7 +147,8 @@ selfContainedDirectMappedFixedValueFvPatchField<Type>::selfContainedDirectMapped
template<class Type> template<class Type>
selfContainedDirectMappedFixedValueFvPatchField<Type>::selfContainedDirectMappedFixedValueFvPatchField selfContainedDirectMappedFixedValueFvPatchField<Type>::
selfContainedDirectMappedFixedValueFvPatchField
( (
const selfContainedDirectMappedFixedValueFvPatchField<Type>& ptf, const selfContainedDirectMappedFixedValueFvPatchField<Type>& ptf,
const DimensionedField<Type, volMesh>& iF const DimensionedField<Type, volMesh>& iF
...@@ -277,7 +281,8 @@ void selfContainedDirectMappedFixedValueFvPatchField<Type>::updateCoeffs() ...@@ -277,7 +281,8 @@ void selfContainedDirectMappedFixedValueFvPatchField<Type>::updateCoeffs()
{ {
FatalErrorIn FatalErrorIn
( (
"void selfContainedDirectMappedFixedValueFvPatchField<Type>::" "void "
"selfContainedDirectMappedFixedValueFvPatchField<Type>::"
"updateCoeffs()" "updateCoeffs()"
)<< "Unable to find sample patch " << samplePatch() )<< "Unable to find sample patch " << samplePatch()
<< " in region " << sampleRegion() << " in region " << sampleRegion()
...@@ -320,9 +325,10 @@ void selfContainedDirectMappedFixedValueFvPatchField<Type>::updateCoeffs() ...@@ -320,9 +325,10 @@ void selfContainedDirectMappedFixedValueFvPatchField<Type>::updateCoeffs()
{ {
FatalErrorIn FatalErrorIn
( (
"selfContainedDirectMappedFixedValueFvPatchField<Type>::updateCoeffs()" "selfContainedDirectMappedFixedValueFvPatchField<Type>::"
)<< "Unknown sampling mode: " << mode() "updateCoeffs()"
<< nl << abort(FatalError); ) << "Unknown sampling mode: " << mode()
<< nl << abort(FatalError);
} }
} }
...@@ -360,7 +366,8 @@ void selfContainedDirectMappedFixedValueFvPatchField<Type>::updateCoeffs() ...@@ -360,7 +366,8 @@ void selfContainedDirectMappedFixedValueFvPatchField<Type>::updateCoeffs()
template<class Type> template<class Type>
void selfContainedDirectMappedFixedValueFvPatchField<Type>::write(Ostream& os) const void selfContainedDirectMappedFixedValueFvPatchField<Type>::write(Ostream& os)
const
{ {
fvPatchField<Type>::write(os); fvPatchField<Type>::write(os);
directMappedPatchBase::write(os); directMappedPatchBase::write(os);
......
...@@ -126,7 +126,8 @@ public: ...@@ -126,7 +126,8 @@ public:
const word& interpolationScheme const word& interpolationScheme
); );
//- Construct by mapping given selfContainedDirectMappedFixedValueFvPatchField //- Construct by mapping given
// selfContainedDirectMappedFixedValueFvPatchField
// onto a new patch // onto a new patch
selfContainedDirectMappedFixedValueFvPatchField selfContainedDirectMappedFixedValueFvPatchField
( (
...@@ -147,7 +148,10 @@ public: ...@@ -147,7 +148,10 @@ public:
{ {
return tmp<fvPatchField<Type> > return tmp<fvPatchField<Type> >
( (
new selfContainedDirectMappedFixedValueFvPatchField<Type>(*this) new selfContainedDirectMappedFixedValueFvPatchField<Type>
(
*this
)
); );
} }
...@@ -166,7 +170,11 @@ public: ...@@ -166,7 +170,11 @@ public:
{ {
return tmp<fvPatchField<Type> > return tmp<fvPatchField<Type> >
( (
new selfContainedDirectMappedFixedValueFvPatchField<Type>(*this, iF) new selfContainedDirectMappedFixedValueFvPatchField<Type>
(
*this,
iF
)
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment