mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
* added '#remove' function * changed insert() method name to more general execute() * using #inputMode or #remove within a primitiveEntry now provokes an error * adjusted the dictionaryTest accordingly
31 lines
1.0 KiB
C++
31 lines
1.0 KiB
C++
/*-------------------------------*- C++ -*---------------------------------*\
|
|
| ========= |
|
|
| \\ / OpenFOAM |
|
|
| \\ / |
|
|
| \\ / The Open Source CFD Toolbox |
|
|
| \\/ http://www.OpenFOAM.org |
|
|
\*-------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object testDict;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
boundaryField
|
|
{
|
|
Default_Boundary_Region
|
|
{
|
|
value $internalField;
|
|
note "actually a noslip wall";
|
|
}
|
|
|
|
inlet_3 "a primitiveEntry squashes directory entry";
|
|
}
|
|
|
|
#inputMode overwrite
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|