Skip to content
Snippets Groups Projects
Commit b7a1975e authored by Kutalmış Berçin's avatar Kutalmış Berçin
Browse files

BUG: PlessisMasliyahDragForce: remove redundant CdRe function

parent 96cc6024
Branches
Tags
1 merge request!495Improve the Lagrangian drag models
......@@ -28,25 +28,6 @@ License
#include "PlessisMasliyahDragForce.H"
#include "volFields.H"
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
template<class CloudType>
Foam::scalar Foam::PlessisMasliyahDragForce<CloudType>::CdRe
(
const scalar Re
) const
{
if (Re > 1000.0)
{
return 0.44*Re;
}
else
{
return 24.0*(1.0 + 0.15*pow(Re, 0.687));
}
}
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template<class CloudType>
......
......@@ -6,6 +6,7 @@
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2013-2017 OpenFOAM Foundation
Copyright (C) 2021 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
......@@ -60,12 +61,6 @@ class PlessisMasliyahDragForce
const volScalarField& alphac_;
// Private Member Functions
//- Drag coefficient multiplied by Reynolds number
scalar CdRe(const scalar Re) const;
public:
//- Runtime type information
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment