39 lines
1013 B
C++
39 lines
1013 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: 12
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object functions;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
setDeltaT
|
|
{
|
|
libs ("libutilityFunctionObjects.so");
|
|
|
|
type setTimeStep;
|
|
|
|
deltaT
|
|
{
|
|
type table;
|
|
values
|
|
(
|
|
(-180 0.25)
|
|
(-15 0.025)
|
|
);
|
|
interpolationScheme step;
|
|
outOfBounds clamp;
|
|
}
|
|
}
|
|
|
|
#includeFunc multiValveEngineState
|
|
|
|
// ************************************************************************* //
|