Skip to content
Snippets Groups Projects
Commit fd9cf0c1 authored by Andrew Heather's avatar Andrew Heather
Browse files

removed kappa from argument list - not used

parent 66cd3630
Branches
Tags
No related merge requests found
...@@ -45,8 +45,7 @@ namespace RASModels ...@@ -45,8 +45,7 @@ namespace RASModels
scalar nutRoughWallFunctionFvPatchScalarField::fnRough scalar nutRoughWallFunctionFvPatchScalarField::fnRough
( (
const scalar KsPlus, const scalar KsPlus,
const scalar Cs, const scalar Cs
const scalar kappa
) const ) const
{ {
// Return fn based on non-dimensional roughness height // Return fn based on non-dimensional roughness height
...@@ -205,7 +204,7 @@ void nutRoughWallFunctionFvPatchScalarField::updateCoeffs() ...@@ -205,7 +204,7 @@ void nutRoughWallFunctionFvPatchScalarField::updateCoeffs()
if (KsPlus > 2.25) if (KsPlus > 2.25)
{ {
Edash = E/fnRough(KsPlus, Cs_[faceI], kappa); Edash = E/fnRough(KsPlus, Cs_[faceI]);
} }
if (yPlus > yPlusLam) if (yPlus > yPlusLam)
......
...@@ -80,12 +80,7 @@ class nutRoughWallFunctionFvPatchScalarField ...@@ -80,12 +80,7 @@ class nutRoughWallFunctionFvPatchScalarField
// Private member functions // Private member functions
//- Compute the roughness function //- Compute the roughness function
scalar fnRough scalar fnRough(const scalar KsPlus, const scalar Cs) const;
(
const scalar KsPlus,
const scalar Cs,
const scalar kappa
) const;
public: public:
......
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