mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
and replaced pimpleDyMFoam with a script which reports this change. The pimpleDyMFoam tutorials have been moved into the pimpleFoam directory. This change is the first of a set of developments to merge dynamic mesh functionality into the standard solvers to improve consistency, usability, flexibility and maintainability of these solvers. Henry G. Weller CFD Direct Ltd.
31 lines
1.0 KiB
C++
31 lines
1.0 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
forces
|
|
{
|
|
type forces;
|
|
|
|
libs ("libforces.so");
|
|
|
|
writeControl timeStep;
|
|
timeInterval 1;
|
|
|
|
log yes;
|
|
|
|
patches ("propeller.*");
|
|
rho rhoInf; // Indicates incompressible
|
|
log true;
|
|
rhoInf 1; // Redundant for incompressible
|
|
|
|
CofR (0 0 0); // Rotation around centre line of propeller
|
|
pitchAxis (0 1 0);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|