Skip to content
Snippets Groups Projects
Commit b29b1287 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

STYLE: typo in name of Stoppingprofile

parent 30291b8f
No related branches found
No related tags found
1 merge request!2Code style
...@@ -2,7 +2,7 @@ deposition = deposition ...@@ -2,7 +2,7 @@ deposition = deposition
$(deposition)/depositionModel/depositionModel.C $(deposition)/depositionModel/depositionModel.C
$(deposition)/depositionModel/depositionModelNew.C $(deposition)/depositionModel/depositionModelNew.C
$(deposition)/depositionOff/depositionOff.C $(deposition)/depositionOff/depositionOff.C
$(deposition)/Stopingprofile/Stopingprofile.C $(deposition)/Stoppingprofile/Stoppingprofile.C
entrainment = entrainment entrainment = entrainment
$(entrainment)/entrainmentModel/entrainmentModel.C $(entrainment)/entrainmentModel/entrainmentModel.C
......
...@@ -28,7 +28,7 @@ Author ...@@ -28,7 +28,7 @@ Author
#include "fvCFD.H" #include "fvCFD.H"
#include "faCFD.H" #include "faCFD.H"
#include "Stopingprofile.H" #include "Stoppingprofile.H"
#include "addToRunTimeSelectionTable.H" #include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
...@@ -37,15 +37,15 @@ namespace Foam ...@@ -37,15 +37,15 @@ namespace Foam
{ {
namespace depositionModels namespace depositionModels
{ {
defineTypeNameAndDebug(Stopingprofile, 0); defineTypeNameAndDebug(Stoppingprofile, 0);
addToRunTimeSelectionTable(depositionModel, Stopingprofile, dictionary); addToRunTimeSelectionTable(depositionModel, Stoppingprofile, dictionary);
} }
} }
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::depositionModels::Stopingprofile::Stopingprofile Foam::depositionModels::Stoppingprofile::Stoppingprofile
( (
const dictionary& depositionProperties, const dictionary& depositionProperties,
const areaVectorField& Us, const areaVectorField& Us,
...@@ -69,7 +69,7 @@ Foam::depositionModels::Stopingprofile::Stopingprofile ...@@ -69,7 +69,7 @@ Foam::depositionModels::Stopingprofile::Stopingprofile
// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
const Foam::areaScalarField& const Foam::areaScalarField&
Foam::depositionModels::Stopingprofile::Sd() const Foam::depositionModels::Stoppingprofile::Sd() const
{ {
const dimensionedScalar smallVel("small", dimVelocity, SMALL); const dimensionedScalar smallVel("small", dimVelocity, SMALL);
...@@ -97,7 +97,7 @@ Foam::depositionModels::Stopingprofile::Sd() const ...@@ -97,7 +97,7 @@ Foam::depositionModels::Stopingprofile::Sd() const
} }
bool Foam::depositionModels::Stopingprofile::read bool Foam::depositionModels::Stoppingprofile::read
( (
const dictionary& depositionProperties const dictionary& depositionProperties
) )
......
...@@ -22,21 +22,21 @@ License ...@@ -22,21 +22,21 @@ License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class Class
Foam::depositionModels::Stopingprofile Foam::depositionModels::Stoppingprofile
Description Description
A deposition model following a new approach. Presented at OFW12 in Exeter. A deposition model following a new approach. Presented at OFW12 in Exeter.
SourceFiles SourceFiles
Stopingprofile.C Stoppingprofile.C
Author Author
Matthias Rauter matthias.rauter@uibk.ac.at Matthias Rauter matthias.rauter@uibk.ac.at
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#ifndef Stopingprofile_H #ifndef Stoppingprofile_H
#define Stopingprofile_H #define Stoppingprofile_H
#include "depositionModel.H" #include "depositionModel.H"
#include "dimensionedScalar.H" #include "dimensionedScalar.H"
...@@ -58,10 +58,10 @@ namespace depositionModels ...@@ -58,10 +58,10 @@ namespace depositionModels
{ {
/*---------------------------------------------------------------------------*\ /*---------------------------------------------------------------------------*\
Class Stopingprofile Declaration Class Stoppingprofile Declaration
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
class Stopingprofile class Stoppingprofile
: :
public depositionModel public depositionModel
{ {
...@@ -80,13 +80,13 @@ class Stopingprofile ...@@ -80,13 +80,13 @@ class Stopingprofile
public: public:
//- Runtime type information //- Runtime type information
TypeName("Stopingprofile"); TypeName("Stoppingprofile");
// Constructors // Constructors
//- Construct from components //- Construct from components
Stopingprofile Stoppingprofile
( (
const dictionary& frictionProperties, const dictionary& frictionProperties,
const areaVectorField& Us, const areaVectorField& Us,
...@@ -98,7 +98,7 @@ public: ...@@ -98,7 +98,7 @@ public:
//- Destructor //- Destructor
virtual ~Stopingprofile() = default; virtual ~Stoppingprofile() = default;
// Member Functions // Member Functions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment