freefoam-changeDictionary — Utility to change dictionary entries.
freefoam changeDictionary [-region <name>] [-help] [-srcDoc] [-doc] [-parallel] [-literalRE] [-case <dir>]
Reads dictionaries (fields) and entries to change from a dictionary.
E.g. to make the movingWall a fixedValue for p but all other
Walls a zeroGradient boundary condition, the
system/changeDictionaryDict would contain the following:
dictionaryReplacement
{
p // field to change
{
boundaryField
{
".*Wall" // entry to change
{
type zeroGradient;
}
movingWall // entry to change
{
type fixedValue;
value uniform 123.45;
}
}
}
}