Updated notImplemented -> NotImplemented
The new NotImplemented macro uses __PRETTY_FUNCTION__ for GNU compatible compilers otherwise __func__ to provide the function name string.
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2012-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2012-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -149,11 +149,7 @@ public:
|
||||
point& result
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"dynamicTreeDataPoint::intersects"
|
||||
"(const label, const point&, const point&, point&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -232,18 +232,7 @@ void Foam::treeDataCell::findNearestOp::operator()
|
||||
point& nearestPoint
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"treeDataCell::findNearestOp::operator()"
|
||||
"("
|
||||
" const labelUList&,"
|
||||
" const linePointRef&,"
|
||||
" treeBoundBox&,"
|
||||
" label&,"
|
||||
" point&,"
|
||||
" point&"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -203,11 +203,7 @@ public:
|
||||
const point&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"treeDataCell::getVolumeType"
|
||||
"(const indexedOctree<treeDataCell>&, const point&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return volumeType::UNKNOWN;
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -145,10 +145,7 @@ void reduce
|
||||
label& request
|
||||
)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"reduce(T&, const BinaryOp&, const int, const label, label&"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -170,7 +170,7 @@ Foam::Ostream& Foam::UOPstream::write(const token& t)
|
||||
}
|
||||
else
|
||||
{
|
||||
notImplemented("Ostream& UOPstream::write(const token&)");
|
||||
NotImplemented;
|
||||
setBad();
|
||||
}
|
||||
return *this;
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -108,49 +108,49 @@ Foam::Istream& Foam::ITstream::read(token& t)
|
||||
|
||||
Foam::Istream& Foam::ITstream::read(char&)
|
||||
{
|
||||
notImplemented("Istream& ITstream::read(char&)");
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
Foam::Istream& Foam::ITstream::read(word&)
|
||||
{
|
||||
notImplemented("Istream& ITstream::read(word&)");
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
Foam::Istream& Foam::ITstream::read(string&)
|
||||
{
|
||||
notImplemented("Istream& ITstream::read(string&)");
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
Foam::Istream& Foam::ITstream::read(label&)
|
||||
{
|
||||
notImplemented("Istream& ITstream::read(label&)");
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
Foam::Istream& Foam::ITstream::read(floatScalar&)
|
||||
{
|
||||
notImplemented("Istream& ITstream::read(floatScalar&)");
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
Foam::Istream& Foam::ITstream::read(doubleScalar&)
|
||||
{
|
||||
notImplemented("Istream& ITstream::read(doubleScalar&)");
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
Foam::Istream& Foam::ITstream::read(char*, std::streamsize)
|
||||
{
|
||||
notImplemented("Istream& ITstream::read(char*, std::streamsize)");
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -101,7 +101,7 @@ public:
|
||||
//- Return clone
|
||||
autoPtr<functionObject> clone() const
|
||||
{
|
||||
notImplemented("functionObject::clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<functionObject>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -213,11 +213,7 @@ public:
|
||||
// for this class, write is used instead
|
||||
virtual bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"void objectRegistry::writeData(Ostream&) const: "
|
||||
"use write() instead"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -66,7 +66,7 @@ Foam::cloud::~cloud()
|
||||
|
||||
void Foam::cloud::autoMap(const mapPolyMesh&)
|
||||
{
|
||||
notImplemented("cloud::autoMap(const mapPolyMesh&)");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -169,7 +169,7 @@ void Foam::csvTableReader<Type>::operator()
|
||||
List<Tuple2<scalar, List<Tuple2<scalar, Type> > > >& data
|
||||
)
|
||||
{
|
||||
notImplemented("csvTableReader<Type>::operator()");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2012 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2012-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -100,10 +100,7 @@ public:
|
||||
scalarField& weights
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"splineInterpolationWeights::integrationWeights(..)"
|
||||
);
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -84,7 +84,7 @@ public:
|
||||
|
||||
autoPtr<procLduInterface> clone()
|
||||
{
|
||||
notImplemented("procLduInterface::clone()");
|
||||
NotImplemented;
|
||||
return autoPtr<procLduInterface>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -449,11 +449,7 @@ public:
|
||||
const Field<Type>& rT
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
type() +"::preconditionT"
|
||||
"(Field<Type>& wT, const Field<Type>& rT)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -500,12 +500,7 @@ public:
|
||||
const direction cmpt=0
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
type() +"::preconditionT"
|
||||
"(scalarField& wT, const scalarField& rT, "
|
||||
"const direction cmpt)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -39,7 +39,7 @@ defineTypeNameAndDebug(lduMesh, 0);
|
||||
|
||||
const Foam::objectRegistry& Foam::lduMesh::thisDb() const
|
||||
{
|
||||
notImplemented("lduMesh::thisDb() const");
|
||||
NotImplemented;
|
||||
const objectRegistry* orPtr_ = NULL;
|
||||
return *orPtr_;
|
||||
}
|
||||
|
||||
@ -229,10 +229,7 @@ public:
|
||||
|
||||
void updateMesh(const mapPolyMesh&)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"mapAddedPolyMesh::updateMesh(const mapPolyMesh&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -666,10 +666,7 @@ public:
|
||||
//- Correct for topo change.
|
||||
void updateMesh(const mapPolyMesh&)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"mapDistribute::updateMesh(const mapPolyMesh&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
// Member Operators
|
||||
|
||||
@ -106,10 +106,7 @@ public:
|
||||
//- Correct for topo change.
|
||||
void updateMesh(const mapPolyMesh&)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"mapDistributeLagrangian::updateMesh(const mapPolyMesh&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -249,10 +249,7 @@ public:
|
||||
//- Correct for topo change.
|
||||
void updateMesh(const mapPolyMesh&)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"mapDistributePolyMesh::updateMesh(const mapPolyMesh&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -73,7 +73,7 @@ public:
|
||||
|
||||
bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented("writeData(Ostream&) const");
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
@ -247,20 +247,20 @@ public:
|
||||
//- Does this side own the patch ?
|
||||
virtual bool owner() const
|
||||
{
|
||||
notImplemented("oldCyclicPolyPatch::owner()");
|
||||
NotImplemented;
|
||||
return true;
|
||||
}
|
||||
|
||||
//- Transform a patch-based position from other side to this side
|
||||
virtual void transformPosition(pointField& l) const
|
||||
{
|
||||
notImplemented("transformPosition(pointField&)");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
//- Transform a patch-based position from other side to this side
|
||||
virtual void transformPosition(point&, const label facei) const
|
||||
{
|
||||
notImplemented("transformPosition(point&, const label)");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
//- Calculate the patch geometry
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -102,7 +102,7 @@ protected:
|
||||
const pointField& nbrCc
|
||||
)
|
||||
{
|
||||
notImplemented("processorPolyPatch::calcGeometry(..)");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
//- Initialise the patches for moving points
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -87,7 +87,7 @@ protected:
|
||||
const pointField& nbrCc
|
||||
)
|
||||
{
|
||||
notImplemented("processorCyclicPolyPatch::calcGeometry(..)");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
//- Initialise the patches for moving points
|
||||
|
||||
@ -70,7 +70,7 @@ void Foam::DataEntry<Type>::convertTimeBase(const Time&)
|
||||
template<class Type>
|
||||
Type Foam::DataEntry<Type>::value(const scalar x) const
|
||||
{
|
||||
notImplemented("Type Foam::DataEntry<Type>::value(const scalar) const");
|
||||
NotImplemented;
|
||||
|
||||
return pTraits<Type>::zero;
|
||||
}
|
||||
@ -79,14 +79,7 @@ Type Foam::DataEntry<Type>::value(const scalar x) const
|
||||
template<class Type>
|
||||
Type Foam::DataEntry<Type>::integrate(const scalar x1, const scalar x2) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"Type Foam::DataEntry<Type>::integrate"
|
||||
"("
|
||||
"const scalar, "
|
||||
"const scalar"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return pTraits<Type>::zero;
|
||||
}
|
||||
@ -131,11 +124,7 @@ Foam::tmp<Foam::Field<Type> > Foam::DataEntry<Type>::integrate
|
||||
template<class Type>
|
||||
Foam::dimensioned<Type> Foam::DataEntry<Type>::dimValue(const scalar x) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"dimensioned<Type> Foam::DataEntry<dimensioned<Type> >::dimValue"
|
||||
"(const scalar) const"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return dimensioned<Type>("zero", dimless, pTraits<Type>::zero);
|
||||
}
|
||||
@ -148,14 +137,7 @@ Foam::dimensioned<Type> Foam::DataEntry<Type>::dimIntegrate
|
||||
const scalar x2
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"dimensioned<Type> Foam::DataEntry<Type>::dimIntegrate"
|
||||
"("
|
||||
"const scalar, "
|
||||
"const scalar"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return dimensioned<Type>("zero", dimless, pTraits<Type>::zero);
|
||||
}
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -53,21 +53,7 @@ Foam::UIPstream::UIPstream
|
||||
clearAtEnd_(clearAtEnd),
|
||||
messageSize_(0)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"UIPstream::UIPstream\n"
|
||||
"(\n"
|
||||
"const commsTypes,\n"
|
||||
"const int,\n"
|
||||
"DynamicList<char>&,\n"
|
||||
"label&,\n"
|
||||
"const int,\n"
|
||||
"const label,\n"
|
||||
"const bool,\n"
|
||||
"streamFormat,\n"
|
||||
"versionNumber\n"
|
||||
")"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
@ -83,14 +69,7 @@ Foam::UIPstream::UIPstream(const int fromProcNo, PstreamBuffers& buffers)
|
||||
clearAtEnd_(true),
|
||||
messageSize_(0)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"UIPstream::UIPstream\n"
|
||||
"(\n"
|
||||
"const int,\n"
|
||||
"PstreamBuffers&\n"
|
||||
")"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
@ -106,18 +85,7 @@ Foam::label Foam::UIPstream::read
|
||||
const label communicator
|
||||
)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"UIPstream::read"
|
||||
"("
|
||||
"const commsTypes,"
|
||||
"const int fromProcNo,"
|
||||
"char* buf,"
|
||||
"const label bufSize,"
|
||||
"const int tag,"
|
||||
"const label communicator"
|
||||
")"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -40,18 +40,7 @@ bool Foam::UOPstream::write
|
||||
const label communicator
|
||||
)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"UOPstream::write"
|
||||
"("
|
||||
"const commsTypes commsType,"
|
||||
"const int fromProcNo,"
|
||||
"char* buf,"
|
||||
"const label bufSize,"
|
||||
"const int tag,"
|
||||
"const label communicator"
|
||||
")"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -45,13 +45,13 @@ bool Foam::UPstream::init(int& argc, char**& argv)
|
||||
|
||||
void Foam::UPstream::exit(int errnum)
|
||||
{
|
||||
notImplemented("UPstream::exit(int errnum)");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
void Foam::UPstream::abort()
|
||||
{
|
||||
notImplemented("UPstream::abort()");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
@ -113,7 +113,7 @@ void Foam::UPstream::waitRequest(const label i)
|
||||
|
||||
bool Foam::UPstream::finishedRequest(const label i)
|
||||
{
|
||||
notImplemented("UPstream::finishedRequest()");
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -121,11 +121,7 @@ Foam::tmp<Foam::volSymmTensorField>
|
||||
Foam::IncompressibleTurbulenceModel<TransportModel>::
|
||||
devRhoReff() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"IncompressibleTurbulenceModel<TransportModel>::"
|
||||
"devRhoReff()"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return devReff();
|
||||
}
|
||||
@ -139,11 +135,7 @@ divDevRhoReff
|
||||
volVectorField& U
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"IncompressibleTurbulenceModel<TransportModel>::"
|
||||
"divDevRhoReff(volVectorField& U)"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return divDevReff(U);
|
||||
}
|
||||
@ -158,11 +150,7 @@ divDevRhoReff
|
||||
volVectorField& U
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"IncompressibleTurbulenceModel<TransportModel>::"
|
||||
"divDevRhoReff(const volScalarField& rho, volVectorField& U)"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return divDevReff(U);
|
||||
}
|
||||
|
||||
@ -213,7 +213,7 @@ void kkLOmega::correctNut()
|
||||
{
|
||||
// Currently this function is not implemented due to the complexity of
|
||||
// evaluating nut. Better calculate nut at the end of correct()
|
||||
notImplemented("kkLOmega::correctNut()");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -169,11 +169,7 @@ Foam::tmp<Foam::volSymmTensorField>
|
||||
Foam::PhaseIncompressibleTurbulenceModel<TransportModel>::
|
||||
devRhoReff() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"PhaseIncompressibleTurbulenceModel<TransportModel>::"
|
||||
"devRhoReff()"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return devReff();
|
||||
}
|
||||
@ -187,11 +183,7 @@ divDevRhoReff
|
||||
volVectorField& U
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"PhaseIncompressibleTurbulenceModel<TransportModel>::"
|
||||
"divDevRhoReff(volVectorField& U)"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return divDevReff(U);
|
||||
}
|
||||
|
||||
@ -340,7 +340,7 @@ public:
|
||||
//- Disallow default bitwise assignment
|
||||
void operator=(const ensightPart&)
|
||||
{
|
||||
notImplemented("ensightPart::operator=(const ensightPart&)");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -145,7 +145,7 @@ public:
|
||||
//- Clone
|
||||
autoPtr<cellLooper> clone() const
|
||||
{
|
||||
notImplemented("autoPtr<tcellLooper> clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<cellLooper>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -96,17 +96,7 @@ public:
|
||||
Ostream&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"jplotSetWriter<Type>::write\n"
|
||||
"(\n"
|
||||
" const bool,\n"
|
||||
" const PtrList<coordSet>&,\n"
|
||||
" const wordList&,\n"
|
||||
" const List<List<Field<Type> > >&,\n"
|
||||
" Ostream&\n"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -164,7 +164,7 @@ public:
|
||||
//- Return clone
|
||||
autoPtr<MRFZone> clone() const
|
||||
{
|
||||
notImplemented("autoPtr<MRFZone> clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<MRFZone>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -181,7 +181,7 @@ template<class Type>
|
||||
Foam::tmp<Foam::Field<Type> >
|
||||
Foam::coupledFvPatchField<Type>::gradientInternalCoeffs() const
|
||||
{
|
||||
notImplemented("coupledFvPatchField<Type>::gradientInternalCoeffs()");
|
||||
NotImplemented;
|
||||
return -Type(pTraits<Type>::one)*this->patch().deltaCoeffs();
|
||||
}
|
||||
|
||||
@ -201,7 +201,7 @@ template<class Type>
|
||||
Foam::tmp<Foam::Field<Type> >
|
||||
Foam::coupledFvPatchField<Type>::gradientBoundaryCoeffs() const
|
||||
{
|
||||
notImplemented("coupledFvPatchField<Type>::gradientBoundaryCoeffs()");
|
||||
NotImplemented;
|
||||
return -this->gradientInternalCoeffs();
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -147,10 +147,7 @@ public:
|
||||
//- Return patch-normal gradient
|
||||
virtual tmp<Field<Type> > snGrad() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
type() + "::coupledFvPatchField<Type>::snGrad()"
|
||||
);
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -69,12 +69,7 @@ slicedFvPatchField<Type>::slicedFvPatchField
|
||||
:
|
||||
fvPatchField<Type>(ptf, p, iF, mapper)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"slicedFvPatchField(const slicedFvPatchField<Type>&, "
|
||||
"const fvPatch&, const Field<Type>&, const fvPatchFieldMapper&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
@ -88,11 +83,7 @@ slicedFvPatchField<Type>::slicedFvPatchField
|
||||
:
|
||||
fvPatchField<Type>(p, iF, dict)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"slicedFvPatchField(const Field<Type>&, const dictionary&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
@ -164,11 +155,7 @@ slicedFvPatchField<Type>::~slicedFvPatchField<Type>()
|
||||
template<class Type>
|
||||
tmp<Field<Type> > slicedFvPatchField<Type>::snGrad() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"snGrad()"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return Field<Type>::null();
|
||||
}
|
||||
@ -177,22 +164,14 @@ tmp<Field<Type> > slicedFvPatchField<Type>::snGrad() const
|
||||
template<class Type>
|
||||
void slicedFvPatchField<Type>::updateCoeffs()
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"updateCoeffs()"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
template<class Type>
|
||||
tmp<Field<Type> > slicedFvPatchField<Type>::patchInternalField() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"patchInternalField()"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return Field<Type>::null();
|
||||
}
|
||||
@ -201,11 +180,7 @@ tmp<Field<Type> > slicedFvPatchField<Type>::patchInternalField() const
|
||||
template<class Type>
|
||||
void slicedFvPatchField<Type>::patchInternalField(Field<Type>&) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"patchInternalField(Field<Type>&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
@ -215,11 +190,7 @@ tmp<Field<Type> > slicedFvPatchField<Type>::patchNeighbourField
|
||||
const Field<Type>& iField
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"patchNeighbourField(const DimensionedField<Type, volMesh>& iField)"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return Field<Type>::null();
|
||||
}
|
||||
@ -228,11 +199,7 @@ tmp<Field<Type> > slicedFvPatchField<Type>::patchNeighbourField
|
||||
template<class Type>
|
||||
tmp<Field<Type> > slicedFvPatchField<Type>::patchNeighbourField() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"patchNeighbourField()"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return Field<Type>::null();
|
||||
}
|
||||
@ -244,11 +211,7 @@ tmp<Field<Type> > slicedFvPatchField<Type>::valueInternalCoeffs
|
||||
const tmp<scalarField>&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"valueInternalCoeffs(const tmp<scalarField>&)"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return Field<Type>::null();
|
||||
}
|
||||
@ -260,11 +223,7 @@ tmp<Field<Type> > slicedFvPatchField<Type>::valueBoundaryCoeffs
|
||||
const tmp<scalarField>&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"valueBoundaryCoeffs(const tmp<scalarField>&)"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return Field<Type>::null();
|
||||
}
|
||||
@ -273,11 +232,7 @@ tmp<Field<Type> > slicedFvPatchField<Type>::valueBoundaryCoeffs
|
||||
template<class Type>
|
||||
tmp<Field<Type> > slicedFvPatchField<Type>::gradientInternalCoeffs() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"gradientInternalCoeffs()"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return Field<Type>::null();
|
||||
}
|
||||
@ -286,11 +241,7 @@ tmp<Field<Type> > slicedFvPatchField<Type>::gradientInternalCoeffs() const
|
||||
template<class Type>
|
||||
tmp<Field<Type> > slicedFvPatchField<Type>::gradientBoundaryCoeffs() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvPatchField<Type>::"
|
||||
"gradientBoundaryCoeffs()"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return Field<Type>::null();
|
||||
}
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -138,17 +138,7 @@ void Foam::jumpCyclicFvPatchField<Type>::updateInterfaceMatrix
|
||||
const Pstream::commsTypes
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"void Foam::jumpCyclicFvPatchField<Type>::updateInterfaceMatrix"
|
||||
"("
|
||||
"scalarField&, "
|
||||
"const scalarField&, "
|
||||
"const scalarField&, "
|
||||
"const direction, "
|
||||
"const Pstream::commsTypes"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2012-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2012-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -140,17 +140,7 @@ void Foam::jumpCyclicAMIFvPatchField<Type>::updateInterfaceMatrix
|
||||
const Pstream::commsTypes
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"void Foam::jumpCyclicAMIFvPatchField<Type>::updateInterfaceMatrix"
|
||||
"("
|
||||
"scalarField&, "
|
||||
"const scalarField&, "
|
||||
"const scalarField& coeffs,"
|
||||
"const direction, "
|
||||
"const Pstream::commsTypes"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -386,10 +386,7 @@ public:
|
||||
const scalarField& deltaCoeffs
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
type() + "::snGrad(const scalarField& deltaCoeffs)"
|
||||
);
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -411,7 +408,7 @@ public:
|
||||
//- Return patchField on the opposite patch of a coupled patch
|
||||
virtual tmp<Field<Type> > patchNeighbourField() const
|
||||
{
|
||||
notImplemented(type() + "patchNeighbourField()");
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -436,11 +433,7 @@ public:
|
||||
const tmp<Field<scalar> >&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
type()
|
||||
+ "::valueInternalCoeffs(const tmp<Field<scalar> >&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -451,11 +444,7 @@ public:
|
||||
const tmp<Field<scalar> >&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
type()
|
||||
+ "::valueBoundaryCoeffs(const tmp<Field<scalar> >&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -463,7 +452,7 @@ public:
|
||||
// evaluation of the gradient of this patchField
|
||||
virtual tmp<Field<Type> > gradientInternalCoeffs() const
|
||||
{
|
||||
notImplemented(type() + "::gradientInternalCoeffs()");
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -475,11 +464,7 @@ public:
|
||||
const scalarField& deltaCoeffs
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
type()
|
||||
+ "::gradientInternalCoeffs(const scalarField& deltaCoeffs)"
|
||||
);
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -487,7 +472,7 @@ public:
|
||||
// evaluation of the gradient of this patchField
|
||||
virtual tmp<Field<Type> > gradientBoundaryCoeffs() const
|
||||
{
|
||||
notImplemented(type() + "::gradientBoundaryCoeffs()");
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -499,11 +484,7 @@ public:
|
||||
const scalarField& deltaCoeffs
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
type()
|
||||
+ "::gradientBoundaryCoeffs(const scalarField& deltaCoeffs)"
|
||||
);
|
||||
NotImplemented;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -69,12 +69,7 @@ slicedFvsPatchField<Type>::slicedFvsPatchField
|
||||
:
|
||||
fvsPatchField<Type>(ptf, p, iF, mapper)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvsPatchField<Type>::"
|
||||
"slicedFvsPatchField(const slicedFvsPatchField<Type>&, "
|
||||
"const fvPatch&, const Field<Type>&, const fvPatchFieldMapper&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
@ -88,11 +83,7 @@ slicedFvsPatchField<Type>::slicedFvsPatchField
|
||||
:
|
||||
fvsPatchField<Type>(p, iF, Field<Type>("value", dict, p.size()))
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"slicedFvsPatchField<Type>::"
|
||||
"slicedFvsPatchField(const Field<Type>&, const dictionary&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -105,7 +105,7 @@ tmp<GeometricField<Type, fvPatchField, volMesh> > ddtScheme<Type>::fvcDdt
|
||||
const GeometricField<Type, fvPatchField, volMesh>& vf
|
||||
)
|
||||
{
|
||||
notImplemented("fvmDdt(alpha, rho, psi");
|
||||
NotImplemented;
|
||||
|
||||
return tmp<GeometricField<Type, fvPatchField, volMesh> >
|
||||
(
|
||||
@ -122,7 +122,7 @@ tmp<fvMatrix<Type> > ddtScheme<Type>::fvmDdt
|
||||
const GeometricField<Type, fvPatchField, volMesh>& vf
|
||||
)
|
||||
{
|
||||
notImplemented("fvmDdt(alpha, rho, psi");
|
||||
NotImplemented;
|
||||
|
||||
return tmp<fvMatrix<Type> >
|
||||
(
|
||||
|
||||
@ -288,7 +288,7 @@ tmp<surfaceScalarField> SS<scalar>::fvcDdtUfCorr \
|
||||
const surfaceScalarField& Uf \
|
||||
) \
|
||||
{ \
|
||||
notImplemented(#SS"<scalar>::fvcDdtUfCorr"); \
|
||||
NotImplemented; \
|
||||
return surfaceScalarField::null(); \
|
||||
} \
|
||||
\
|
||||
@ -299,7 +299,7 @@ tmp<surfaceScalarField> SS<scalar>::fvcDdtPhiCorr \
|
||||
const surfaceScalarField& phi \
|
||||
) \
|
||||
{ \
|
||||
notImplemented(#SS"<scalar>::fvcDdtPhiCorr"); \
|
||||
NotImplemented; \
|
||||
return surfaceScalarField::null(); \
|
||||
} \
|
||||
\
|
||||
@ -311,7 +311,7 @@ tmp<surfaceScalarField> SS<scalar>::fvcDdtUfCorr \
|
||||
const surfaceScalarField& Uf \
|
||||
) \
|
||||
{ \
|
||||
notImplemented(#SS"<scalar>::fvcDdtUfCorr"); \
|
||||
NotImplemented; \
|
||||
return surfaceScalarField::null(); \
|
||||
} \
|
||||
\
|
||||
@ -323,7 +323,7 @@ tmp<surfaceScalarField> SS<scalar>::fvcDdtPhiCorr \
|
||||
const surfaceScalarField& phi \
|
||||
) \
|
||||
{ \
|
||||
notImplemented(#SS"<scalar>::fvcDdtPhiCorr"); \
|
||||
NotImplemented; \
|
||||
return surfaceScalarField::null(); \
|
||||
} \
|
||||
\
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -56,11 +56,7 @@ orthogonalSnGrad<Type>::correction
|
||||
const GeometricField<Type, fvPatchField, volMesh>&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"orthogonalSnGrad<Type>::correction"
|
||||
"(const GeometricField<Type, fvPatchField, volMesh>&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<GeometricField<Type, fvsPatchField, surfaceMesh> >(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -56,11 +56,7 @@ uncorrectedSnGrad<Type>::correction
|
||||
const GeometricField<Type, fvPatchField, volMesh>&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"uncorrectedSnGrad<Type>::correction"
|
||||
"(const GeometricField<Type, fvPatchField, volMesh>&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<GeometricField<Type, fvsPatchField, surfaceMesh> >(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -39,10 +39,7 @@ namespace MULES
|
||||
template<class RhoType>
|
||||
inline tmp<surfaceScalarField> interpolate(const RhoType& rho)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<surfaceScalarField> interpolate(const RhoType& rho)"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<surfaceScalarField>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -108,11 +108,7 @@ public:
|
||||
const GeometricField<scalar, fvPatchField, volMesh>&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"harmonic::weights"
|
||||
"(const GeometricField<scalar, fvPatchField, volMesh>&)"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return tmp<surfaceScalarField>(NULL);
|
||||
}
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -108,11 +108,7 @@ public:
|
||||
const GeometricField<Type, fvPatchField, volMesh>&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"localMax::weights"
|
||||
"(const GeometricField<Type, fvPatchField, volMesh>&)"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return tmp<surfaceScalarField>(NULL);
|
||||
}
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -108,11 +108,7 @@ public:
|
||||
const GeometricField<Type, fvPatchField, volMesh>&
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"localMin::weights"
|
||||
"(const GeometricField<Type, fvPatchField, volMesh>&)"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return tmp<surfaceScalarField>(NULL);
|
||||
}
|
||||
|
||||
@ -131,7 +131,7 @@ public:
|
||||
//- Return clone
|
||||
autoPtr<option> clone() const
|
||||
{
|
||||
notImplemented("autoPtr<option> clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<option>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -254,11 +254,7 @@ public:
|
||||
const label fieldI
|
||||
)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"effectivenessHeatExchangerSource::addSup(eqn, fieldI): "
|
||||
"only compressible solvers supported."
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -29,13 +29,7 @@ License
|
||||
|
||||
bool Foam::fv::meanVelocityForce::read(const dictionary& dict)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"bool Foam::fv::meanVelocityForce::read"
|
||||
"("
|
||||
"const dictionary&"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -42,11 +42,7 @@ genericPointPatchField<Type>::genericPointPatchField
|
||||
:
|
||||
calculatedPointPatchField<Type>(p, iF)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"genericPointPatchField<Type>::genericPointPatchField"
|
||||
"(const pointPatch& p, const DimensionedField<Type, volMesh>& iF)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -94,7 +94,7 @@ bool Foam::CollidingParcel<ParcelType>::move
|
||||
|
||||
case TrackData::tpRotationalTrack:
|
||||
{
|
||||
notImplemented("TrackData::tpRotationalTrack");
|
||||
NotImplemented;
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -30,7 +30,7 @@ License
|
||||
template<class CloudType>
|
||||
void Foam::CloudFunctionObject<CloudType>::write()
|
||||
{
|
||||
notImplemented("void Foam::CloudFunctionObject<CloudType>::write()");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -608,13 +608,7 @@ Foam::PairCollision<CloudType>::PairCollision
|
||||
il_(cm.owner().mesh())
|
||||
{
|
||||
// Need to clone to PairModel and WallModel
|
||||
notImplemented
|
||||
(
|
||||
"Foam::PairCollision<CloudType>::PairCollision"
|
||||
"("
|
||||
"PairCollision<CloudType>& cm"
|
||||
")"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -152,14 +152,7 @@ public:
|
||||
const kinematicParcelInjectionData& b
|
||||
)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"operator=="
|
||||
"("
|
||||
"const kinematicParcelInjectionData&, "
|
||||
"const kinematicParcelInjectionData&"
|
||||
")"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return false;
|
||||
}
|
||||
@ -170,14 +163,7 @@ public:
|
||||
const kinematicParcelInjectionData& b
|
||||
)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"operator=="
|
||||
"("
|
||||
"const kinematicParcelInjectionData&, "
|
||||
"const kinematicParcelInjectionData&"
|
||||
")"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2013-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -108,12 +108,7 @@ Foam::ParticleStressModels::Lun::dTaudTheta
|
||||
const Field<scalar>& uSqr
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"Foam::scalar Foam::ParticleStressModels::Lun::dTau_dTheta"
|
||||
"(const Field<scalar>&, const Field<scalar>&, const Field<scalar>&) "
|
||||
"const"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return tmp<Field<scalar> >(NULL);
|
||||
}
|
||||
|
||||
@ -271,11 +271,7 @@ public:
|
||||
//- Update local data for topology changes
|
||||
virtual void updateMesh(const mapPolyMesh&)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"medialAxisMeshMover::updateMesh"
|
||||
"(const mapPolyMesh&)"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
@ -112,7 +112,7 @@ public:
|
||||
//- Clone
|
||||
autoPtr<block> clone() const
|
||||
{
|
||||
notImplemented("block::clone()");
|
||||
NotImplemented;
|
||||
return autoPtr<block>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -129,7 +129,7 @@ public:
|
||||
//- Clone
|
||||
autoPtr<blockDescriptor> clone() const
|
||||
{
|
||||
notImplemented("blockDescriptor::clone()");
|
||||
NotImplemented;
|
||||
return autoPtr<blockDescriptor>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -132,7 +132,7 @@ Foam::point Foam::BSpline::position
|
||||
|
||||
Foam::scalar Foam::BSpline::length() const
|
||||
{
|
||||
notImplemented("BSpline::length() const");
|
||||
NotImplemented;
|
||||
return 1.0;
|
||||
}
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -132,7 +132,7 @@ Foam::point Foam::CatmullRomSpline::position
|
||||
|
||||
Foam::scalar Foam::CatmullRomSpline::length() const
|
||||
{
|
||||
notImplemented("CatmullRomSpline::length() const");
|
||||
NotImplemented;
|
||||
return 1.0;
|
||||
}
|
||||
|
||||
|
||||
@ -68,7 +68,7 @@ Foam::curvedEdge::curvedEdge(const curvedEdge& c)
|
||||
|
||||
Foam::autoPtr<Foam::curvedEdge> Foam::curvedEdge::clone() const
|
||||
{
|
||||
notImplemented("curvedEdge::clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<curvedEdge>(NULL);
|
||||
}
|
||||
|
||||
@ -135,7 +135,7 @@ Foam::pointField Foam::curvedEdge::appendEndPoints
|
||||
|
||||
void Foam::curvedEdge::operator=(const curvedEdge&)
|
||||
{
|
||||
notImplemented("void curvedEdge::operator=(const curvedEdge&)");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2013-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -155,10 +155,7 @@ public:
|
||||
{
|
||||
//TBD. How to serialise the AMI such that we can stream
|
||||
// cyclicACMIGAMGInterface.
|
||||
notImplemented
|
||||
(
|
||||
"cyclicACMIGAMGInterface::write(Ostream&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -155,7 +155,7 @@ public:
|
||||
{
|
||||
//TBD. How to serialise the AMI such that we can stream
|
||||
// cyclicAMIGAMGInterface.
|
||||
notImplemented("cyclicAMIGAMGInterface::write(Ostream&) const");
|
||||
NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -69,11 +69,7 @@ Foam::tmp<Foam::vectorField> Foam::EulerCoordinateRotation::transform
|
||||
const vectorField& st
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<vectorField> Foam::EulerCoordinateRotation:: "
|
||||
"transform(const vectorField& st) const"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<vectorField>(NULL);
|
||||
}
|
||||
|
||||
@ -83,21 +79,14 @@ Foam::tmp<Foam::vectorField> Foam::EulerCoordinateRotation::invTransform
|
||||
const vectorField& st
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<vectorField> Foam::EulerCoordinateRotation::"
|
||||
"invTransform(const vectorField& st) const"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<vectorField>(NULL);
|
||||
}
|
||||
|
||||
|
||||
const Foam::tensorField& Foam::EulerCoordinateRotation::Tr() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"const tensorField& EulerCoordinateRotation::Tr() const"
|
||||
);
|
||||
NotImplemented;
|
||||
return NullObjectRef<tensorField>();
|
||||
}
|
||||
|
||||
@ -107,10 +96,7 @@ Foam::tmp<Foam::tensorField> Foam::EulerCoordinateRotation::transformTensor
|
||||
const tensorField& st
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"const tensorField& EulerCoordinateRotation::transformTensor() const"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<tensorField>(NULL);
|
||||
}
|
||||
|
||||
@ -130,13 +116,7 @@ Foam::tmp<Foam::tensorField> Foam::EulerCoordinateRotation::transformTensor
|
||||
const labelList& cellMap
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<Foam::tensorField> EulerCoordinateRotation::transformTensor "
|
||||
" const tensorField& st,"
|
||||
" const labelList& cellMap "
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<tensorField>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -70,11 +70,7 @@ Foam::tmp<Foam::vectorField> Foam::STARCDCoordinateRotation::transform
|
||||
const vectorField& st
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<vectorField> Foam::STARCDCoordinateRotation:: "
|
||||
"transform(const vectorField& st) const"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<vectorField>(NULL);
|
||||
}
|
||||
|
||||
@ -84,21 +80,14 @@ Foam::tmp<Foam::vectorField> Foam::STARCDCoordinateRotation::invTransform
|
||||
const vectorField& st
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<vectorField> Foam::STARCDCoordinateRotation::"
|
||||
"invTransform(const vectorField& st) const"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<vectorField>(NULL);
|
||||
}
|
||||
|
||||
|
||||
const Foam::tensorField& Foam::STARCDCoordinateRotation::Tr() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"const tensorField& STARCDCoordinateRotatio::Tr() const"
|
||||
);
|
||||
NotImplemented;
|
||||
return NullObjectRef<tensorField>();
|
||||
}
|
||||
|
||||
@ -108,10 +97,7 @@ Foam::tmp<Foam::tensorField> Foam::STARCDCoordinateRotation::transformTensor
|
||||
const tensorField& st
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<Foam::tensorField> STARCDCoordinateRotation::transformTensor()"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<tensorField>(NULL);
|
||||
}
|
||||
|
||||
@ -131,13 +117,7 @@ Foam::tmp<Foam::tensorField> Foam::STARCDCoordinateRotation::transformTensor
|
||||
const labelList& cellMap
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<Foam::tensorField> STARCDCoordinateRotation::transformTensor "
|
||||
" const tensorField& st,"
|
||||
" const labelList& cellMap "
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<tensorField>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -169,10 +169,7 @@ Foam::axesRotation::axesRotation(const tensor& R)
|
||||
|
||||
const Foam::tensorField& Foam::axesRotation::Tr() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"const Foam::tensorField& axesRotation::Tr() const"
|
||||
);
|
||||
NotImplemented;
|
||||
return NullObjectRef<tensorField>();
|
||||
}
|
||||
|
||||
@ -212,10 +209,7 @@ Foam::tmp<Foam::tensorField> Foam::axesRotation::transformTensor
|
||||
const tensorField& st
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"const tensorField& axesRotation::transformTensor() const"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<tensorField>(NULL);
|
||||
}
|
||||
|
||||
@ -235,14 +229,7 @@ Foam::tmp<Foam::tensorField> Foam::axesRotation::transformTensor
|
||||
const labelList& cellMap
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<Foam::tensorField> axesRotation::transformTensor "
|
||||
"("
|
||||
"const tensorField&,"
|
||||
"const labelList&"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
return tmp<tensorField>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -224,10 +224,7 @@ Foam::tmp<Foam::vectorField> Foam::cylindrical::transform
|
||||
|
||||
Foam::vector Foam::cylindrical::transform(const vector& v) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"vector cylindrical::transform(const vector&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
return vector::zero;
|
||||
}
|
||||
|
||||
@ -253,10 +250,7 @@ Foam::tmp<Foam::vectorField> Foam::cylindrical::invTransform
|
||||
|
||||
Foam::vector Foam::cylindrical::invTransform(const vector& v) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"vector cylindrical::invTransform(const vector&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
return vector::zero;
|
||||
}
|
||||
|
||||
@ -297,10 +291,7 @@ Foam::tensor Foam::cylindrical::transformTensor
|
||||
const tensor& t
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tensor cylindrical::transformTensor(const tensor&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return tensor::zero;
|
||||
}
|
||||
@ -369,10 +360,7 @@ Foam::symmTensor Foam::cylindrical::transformVector
|
||||
const vector& v
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tensor cylindrical::transformVector(const vector&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
return symmTensor::zero;
|
||||
}
|
||||
|
||||
|
||||
@ -143,28 +143,28 @@ public:
|
||||
//- Return local-to-global transformation tensor
|
||||
virtual const tensor& R() const
|
||||
{
|
||||
notImplemented("const tensor& cylindrical::R() const");
|
||||
NotImplemented;
|
||||
return tensor::zero;
|
||||
}
|
||||
|
||||
//- Return global-to-local transformation tensor
|
||||
virtual const tensor& Rtr() const
|
||||
{
|
||||
notImplemented("const tensor& cylindrical::Rtr() const");
|
||||
NotImplemented;
|
||||
return tensor::zero;
|
||||
}
|
||||
|
||||
//- Return local Cartesian x-axis
|
||||
virtual const vector e1() const
|
||||
{
|
||||
notImplemented("const tensor& cylindrical::e1() const");
|
||||
NotImplemented;
|
||||
return vector::zero;
|
||||
}
|
||||
|
||||
//- Return local Cartesian y-axis
|
||||
virtual const vector e2() const
|
||||
{
|
||||
notImplemented("const tensor& cylindrical::e2() const");
|
||||
NotImplemented;
|
||||
return vector::zero;
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -276,11 +276,7 @@ bool Foam::treeDataEdge::findIntersectOp::operator()
|
||||
point& result
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"treeDataEdge::intersects(const label, const point&,"
|
||||
"const point&, point&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -537,18 +537,7 @@ void Foam::treeDataFace::findNearestOp::operator()
|
||||
point& nearestPoint
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"treeDataFace::findNearestOp::operator()"
|
||||
"("
|
||||
" const labelUList&,"
|
||||
" const linePointRef&,"
|
||||
" treeBoundBox&,"
|
||||
" label&,"
|
||||
" point&,"
|
||||
" point&"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -240,11 +240,7 @@ bool Foam::treeDataPoint::findIntersectOp::operator()
|
||||
point& result
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"treeDataPoint::intersects(const label, const point&,"
|
||||
"const point&, point&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -542,18 +542,7 @@ void Foam::treeDataPrimitivePatch<PatchType>::findNearestOp::operator()
|
||||
point& nearestPoint
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"treeDataPrimitivePatch<PatchType>::findNearestOp::operator()"
|
||||
"("
|
||||
" const labelUList&,"
|
||||
" const linePointRef&,"
|
||||
" treeBoundBox&,"
|
||||
" label&,"
|
||||
" point&,"
|
||||
" point&"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -92,10 +92,7 @@ public:
|
||||
{
|
||||
//TBD. How to serialise the AMI such that we can stream
|
||||
// regionCoupledGAMGInterface.
|
||||
notImplemented
|
||||
(
|
||||
"regionCoupledGAMGInterface::write(Ostream&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -94,10 +94,7 @@ public:
|
||||
{
|
||||
//TBD. How to serialise the AMI such that we can stream
|
||||
// regionCoupledWallGAMGInterface.
|
||||
notImplemented
|
||||
(
|
||||
"regionCoupledWallGAMGInterface::write(Ostream&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
@ -377,11 +377,7 @@ Foam::pointIndexHit Foam::searchableBox::findNearest
|
||||
point& linePoint
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"searchableBox::findNearest"
|
||||
"(const linePointRef&, treeBoundBox&, point&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return pointIndexHit();
|
||||
}
|
||||
|
||||
|
||||
@ -261,7 +261,7 @@ public:
|
||||
|
||||
bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented("searchableBox::writeData(Ostream&) const");
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
@ -171,10 +171,7 @@ public:
|
||||
//- Does any part of the surface overlap the supplied bound box?
|
||||
virtual bool overlaps(const boundBox& bb) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"searchableCylinder::overlaps(const boundBox&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return false;
|
||||
}
|
||||
@ -238,7 +235,7 @@ public:
|
||||
|
||||
bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented("searchableCylinder::writeData(Ostream&) const");
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -164,10 +164,7 @@ public:
|
||||
//- Does any part of the surface overlap the supplied bound box?
|
||||
virtual bool overlaps(const boundBox& bb) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"searchableDisk::overlaps(const boundBox&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return false;
|
||||
}
|
||||
@ -231,7 +228,7 @@ public:
|
||||
|
||||
bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented("searchableDisk::writeData(Ostream&) const");
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -148,10 +148,7 @@ public:
|
||||
//- Does any part of the surface overlap the supplied bound box?
|
||||
virtual bool overlaps(const boundBox& bb) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"searchablePlane::overlaps(const boundBox&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return false;
|
||||
}
|
||||
@ -215,7 +212,7 @@ public:
|
||||
|
||||
bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented("searchablePlane::writeData(Ostream&) const");
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -223,7 +223,7 @@ public:
|
||||
|
||||
bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented("searchablePlate::writeData(Ostream&) const");
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
@ -218,7 +218,7 @@ public:
|
||||
|
||||
bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented("searchableSphere::writeData(Ostream&) const");
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -137,7 +137,7 @@ public:
|
||||
//- Clone
|
||||
virtual autoPtr<searchableSurface> clone() const
|
||||
{
|
||||
notImplemented("autoPtr<searchableSurface> clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<searchableSurface>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -193,10 +193,7 @@ public:
|
||||
//- Does any part of the surface overlap the supplied bound box?
|
||||
virtual bool overlaps(const boundBox& bb) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"searchableSurfaceCollection::overlaps(const boundBox&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return false;
|
||||
}
|
||||
@ -281,10 +278,7 @@ public:
|
||||
|
||||
bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"searchableSurfaceCollection::writeData(Ostream&) const"
|
||||
);
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -276,7 +276,7 @@ public:
|
||||
|
||||
bool writeData(Ostream&) const
|
||||
{
|
||||
notImplemented("triSurfaceMesh::writeData(Ostream&) const");
|
||||
NotImplemented;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -242,7 +242,7 @@ public:
|
||||
//- Clone
|
||||
autoPtr<topoSetSource> clone() const
|
||||
{
|
||||
notImplemented("autoPtr<topoSetSource> clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<topoSetSource>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -514,7 +514,7 @@ void Foam::topoSet::deleteSet(const topoSet& set)
|
||||
|
||||
void Foam::topoSet::sync(const polyMesh&)
|
||||
{
|
||||
notImplemented("topoSet::sync(const polyMesh&)");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
@ -557,7 +557,7 @@ bool Foam::topoSet::writeData(Ostream& os) const
|
||||
|
||||
void Foam::topoSet::updateMesh(const mapPolyMesh&)
|
||||
{
|
||||
notImplemented("topoSet::updateMesh(const mapPolyMesh&)");
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -219,7 +219,7 @@ public:
|
||||
//- Clone
|
||||
autoPtr<topoSet> clone() const
|
||||
{
|
||||
notImplemented("autoPtr<topoSet> clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<topoSet>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -134,21 +134,14 @@ public:
|
||||
const scalarField& pointWeights
|
||||
)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"decompositionMethod:decompose(const pointField&"
|
||||
", const scalarField&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return labelList(0);
|
||||
}
|
||||
|
||||
//- Like decompose but with uniform weights on the points
|
||||
virtual labelList decompose(const pointField&)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"decompositionMethod:decompose(const pointField&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return labelList(0);
|
||||
}
|
||||
|
||||
|
||||
@ -108,11 +108,7 @@ public:
|
||||
const scalarField& cWeights
|
||||
)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"decompose(const labelListList&, const pointField&"
|
||||
", const scalarField&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return labelList(0);
|
||||
}
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -174,15 +174,7 @@ Foam::labelList Foam::structuredDecomp::decompose
|
||||
const scalarField& pointWeights
|
||||
)
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"structuredDecomp::decompose\n"
|
||||
"(\n"
|
||||
" const labelListList&,\n"
|
||||
" const pointField&,\n"
|
||||
" const scalarField&\n"
|
||||
")\n"
|
||||
);
|
||||
NotImplemented;
|
||||
|
||||
return labelList::null();
|
||||
}
|
||||
|
||||
@ -463,15 +463,7 @@ void Foam::energyRegionCoupledFvPatchScalarField::updateInterfaceMatrix
|
||||
const Pstream::commsTypes
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"energyRegionCoupledFvPatchScalarField::updateInterfaceMatrix()"
|
||||
"("
|
||||
"Field<scalar>& "
|
||||
"const Field<scalar>&"
|
||||
"const scalarField& "
|
||||
"const Pstream::commsTypes"
|
||||
);
|
||||
NotImplemented;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -155,7 +155,7 @@ public:
|
||||
//- Return clone
|
||||
autoPtr<pyrolysisModel> clone() const
|
||||
{
|
||||
notImplemented("autoPtr<pyrolysisModel> clone() const");
|
||||
NotImplemented;
|
||||
return autoPtr<pyrolysisModel>(NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -91,10 +91,7 @@ Foam::scalar surfaceFilmModel::CourantNumber() const
|
||||
|
||||
tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Srho() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Srho() const"
|
||||
)
|
||||
NotImplemented;
|
||||
|
||||
return tmp<DimensionedField<scalar, volMesh> >(NULL);
|
||||
}
|
||||
@ -103,11 +100,7 @@ tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Srho() const
|
||||
tmp<DimensionedField<scalar, volMesh> >
|
||||
surfaceFilmModel::Srho(const label) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Srho"
|
||||
"(const label) const"
|
||||
)
|
||||
NotImplemented;
|
||||
|
||||
return tmp<DimensionedField<scalar, volMesh> >(NULL);
|
||||
}
|
||||
@ -115,10 +108,7 @@ surfaceFilmModel::Srho(const label) const
|
||||
|
||||
tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Sh() const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"tmp<DimensionedField<scalar, volMesh> > surfaceFilmModel::Sh() const"
|
||||
)
|
||||
NotImplemented;
|
||||
|
||||
return tmp<DimensionedField<scalar, volMesh> >(NULL);
|
||||
}
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2012 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2012-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -87,7 +87,7 @@ public:
|
||||
// This is only defined for geometric renumberMethods.
|
||||
virtual labelList renumber(const pointField&) const
|
||||
{
|
||||
notImplemented("SloanRenumber::renumber(const pointField&)");
|
||||
NotImplemented;
|
||||
return labelList(0);
|
||||
}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -85,7 +85,7 @@ public:
|
||||
// This is only defined for geometric renumberMethods.
|
||||
virtual labelList renumber(const pointField&) const
|
||||
{
|
||||
notImplemented("CuthillMcKeeRenumber::renumber(const pointField&)");
|
||||
NotImplemented;
|
||||
return labelList(0);
|
||||
}
|
||||
|
||||
|
||||
@ -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-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -84,7 +84,7 @@ public:
|
||||
// This is only defined for geometric renumberMethods.
|
||||
virtual labelList renumber(const pointField&) const
|
||||
{
|
||||
notImplemented("manualRenumber::renumber(const pointField&)");
|
||||
NotImplemented;
|
||||
return labelList(0);
|
||||
}
|
||||
|
||||
@ -107,11 +107,7 @@ public:
|
||||
const pointField& cc
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"manualRenumber::renumber"
|
||||
"(const labelListList&, const pointField&)"
|
||||
);
|
||||
NotImplemented;
|
||||
return labelList(0);
|
||||
}
|
||||
};
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -96,15 +96,7 @@ Foam::labelList Foam::renumberMethod::renumber
|
||||
const pointField& cc
|
||||
) const
|
||||
{
|
||||
notImplemented
|
||||
(
|
||||
"renumberMethod::renumber\n"
|
||||
"(\n"
|
||||
" const labelList&,\n"
|
||||
" const labelList&,\n"
|
||||
" const pointField&\n"
|
||||
") const"
|
||||
);
|
||||
NotImplemented;
|
||||
return labelList();
|
||||
}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user