The keyword 'select' is now used to specify the cell, face or point set
selection method consistently across all classes requiring this functionality.
'select' replaces the inconsistently named 'regionType' and 'selectionMode'
keywords used previously but backwards-compatibility is provided for user
convenience. All configuration files and tutorials have been updated.
Examples of 'select' from the tutorial cases:
functionObjects:
cellZoneAverage
{
type volFieldValue;
libs ("libfieldFunctionObjects.so");
writeControl writeTime;
writeInterval 1;
fields (p);
select cellZone;
cellZone injection;
operation volAverage;
writeFields false;
}
#includeFunc populationBalanceSizeDistribution
(
name=numberDensity,
populationBalance=aggregates,
select=cellZone,
cellZone=outlet,
functionType=numberDensity,
coordinateType=projectedAreaDiameter,
allCoordinates=yes,
normalise=yes,
logTransform=yes
)
fvModel:
cylinderHeat
{
type heatSource;
select all;
q 5e7;
}
fvConstraint:
momentumForce
{
type meanVelocityForce;
select all;
Ubar (0.1335 0 0);
}
62 lines
2.1 KiB
Bash
Executable File
62 lines
2.1 KiB
Bash
Executable File
#!/bin/sh
|
|
#------------------------------------------------------------------------------
|
|
# ========= |
|
|
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
# \\ / O peration | Website: https://openfoam.org
|
|
# \\ / A nd | Copyright (C) 2022-2023 OpenFOAM Foundation
|
|
# \\/ M anipulation |
|
|
#------------------------------------------------------------------------------
|
|
# License
|
|
# This file is part of OpenFOAM.
|
|
#
|
|
# OpenFOAM is free software: you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
# for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# Script
|
|
# SRFSimpleFoam
|
|
#
|
|
# Description
|
|
# Script to inform the user that SRFSimpleFoam has been superseded
|
|
# and replaced by the more general incompressibleFluid solver module
|
|
# executed by the foamRun application.
|
|
#
|
|
#------------------------------------------------------------------------------
|
|
|
|
cat <<EOF
|
|
|
|
SRFSimpleFoam has been superseded and replaced by the more general
|
|
incompressibleFluid solver module executed by the foamRun application:
|
|
|
|
foamRun -solver incompressibleFluid
|
|
|
|
The MRF functionality has been further developed to replace SRF, enabled by
|
|
setting the MRF zone to all the cells in the mesh using the optional
|
|
'select' entry to 'all' in the constant/MRFProperties dictionary, e.g.
|
|
|
|
SRF
|
|
{
|
|
select all;
|
|
|
|
origin (0 0 0);
|
|
axis (0 0 1);
|
|
|
|
rpm 60;
|
|
}
|
|
|
|
Additionally the new 'MRFnoSlip' velocity boundary condition should be applied to the
|
|
rotating wall patche in the MRF region.
|
|
|
|
EOF
|
|
|
|
#------------------------------------------------------------------------------
|