mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object sourcesProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
disk1
|
|
{
|
|
type actuationDiskSource;
|
|
active on; //on/off switch
|
|
timeStart 0.0; //start time
|
|
duration 1000.0; //duration
|
|
selectionMode cellSet; //cellSet // points //cellZone
|
|
cellSet actuationDisk1;//cellSet name when selectionMode = cellSet
|
|
|
|
actuationDiskSourceCoeffs
|
|
{
|
|
fieldNames (U);
|
|
diskDir (-1 0 0); // orientation of the disk
|
|
Cp 0.386; // Cp
|
|
Ct 0.58; // Ct
|
|
diskArea 40; // disk area
|
|
upstreamPoint (581849 4785810 1065);
|
|
}
|
|
}
|
|
|
|
disk2
|
|
{
|
|
type actuationDiskSource;
|
|
active on;
|
|
timeStart 0.0;
|
|
duration 1000.0;
|
|
selectionMode cellSet;
|
|
cellSet actuationDisk2;
|
|
|
|
actuationDiskSourceCoeffs
|
|
{
|
|
fieldNames (U);
|
|
diskDir (-1 0 0);
|
|
Cp 0.53;
|
|
Ct 0.58;
|
|
diskArea 40;
|
|
upstreamPoint (581753 4785663 1070);
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|