diff --git a/src/fvMeshMovers/engine/engineValve/valveBank.H b/src/fvMeshMovers/engine/engineValve/valveBank.H
deleted file mode 100644
index 279273e63c..0000000000
--- a/src/fvMeshMovers/engine/engineValve/valveBank.H
+++ /dev/null
@@ -1,100 +0,0 @@
-/*---------------------------------------------------------------------------*\
- ========= |
- \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
- \\ / O peration | Website: https://openfoam.org
- \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation
- \\/ M anipulation |
--------------------------------------------------------------------------------
-License
- This file is part of OpenFOAM.
-
- OpenFOAM is free software: you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
- for more details.
-
- You should have received a copy of the GNU General Public License
- along with OpenFOAM. If not, see .
-
-Class
- Foam::valveBank
-
-Description
- A list of valves.
-
-\*---------------------------------------------------------------------------*/
-
-#ifndef valveBank_H
-#define valveBank_H
-
-#include "PtrList.H"
-#include "engineValve.H"
-
-// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
-
-namespace Foam
-{
-
-/*---------------------------------------------------------------------------*\
- Class valveBank Declaration
-\*---------------------------------------------------------------------------*/
-
-class valveBank
-:
- public PtrList
-{
-public:
-
- // Constructors
-
- //- Construct from Istream
- valveBank
- (
- const polyMesh& mesh,
- Istream& is
- )
- {
- PtrList valveEntries(is);
-
- setSize(valveEntries.size());
-
- forAll(valveEntries, valveI)
- {
- valveI,
- set
- (
- new engineValve
- (
- valveEntries[valveI].keyword(),
- mesh,
- valveEntries[valveI].dict()
- )
- );
- }
- }
-
- //- Disallow default bitwise copy construction
- valveBank(const valveBank&) = delete;
-
-
- // Member Operators
-
- //- Disallow default bitwise assignment
- void operator=(const valveBank&) = delete;
-};
-
-
-// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
-
-} // End namespace Foam
-
-// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
-
-#endif
-
-// ************************************************************************* //