Skip to content
Snippets Groups Projects
Commit f5ae1a6a authored by andy's avatar andy
Browse files

STYLE: limit code to 80 chars

parent 96f51164
Branches
Tags
No related merge requests found
...@@ -175,13 +175,21 @@ public: ...@@ -175,13 +175,21 @@ public:
} }
//- Add the Coriolis force contribution to the acceleration field //- Add the Coriolis force contribution to the acceleration field
void addCoriolis(const volVectorField& U, volVectorField& ddtU) const; void addCoriolis
(
const volVectorField& U,
volVectorField& ddtU
) const;
//- Add the Coriolis force contribution to the momentum equation //- Add the Coriolis force contribution to the momentum equation
void addCoriolis(fvVectorMatrix& UEqn) const; void addCoriolis(fvVectorMatrix& UEqn) const;
//- Add the Coriolis force contribution to the momentum equation //- Add the Coriolis force contribution to the momentum equation
void addCoriolis(const volScalarField& rho, fvVectorMatrix& UEqn) const; void addCoriolis
(
const volScalarField& rho,
fvVectorMatrix& UEqn
) const;
//- Make the given absolute velocity relative within the MRF region //- Make the given absolute velocity relative within the MRF region
void relativeVelocity(volVectorField& U) const; void relativeVelocity(volVectorField& U) const;
......
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