| 211 | |
| 212 | |
| 213 | void Foam::fvMeshTools::setPatchFields |
| 214 | ( |
| 215 | fvMesh& mesh, |
| 216 | const label patchi, |
| 217 | const dictionary& patchFieldDict |
| 218 | ) |
| 219 | { |
| 220 | setPatchFields<volScalarField>(mesh, patchi, patchFieldDict); |
| 221 | setPatchFields<volVectorField>(mesh, patchi, patchFieldDict); |
| 222 | setPatchFields<volSphericalTensorField>(mesh, patchi, patchFieldDict); |
| 223 | setPatchFields<volSymmTensorField>(mesh, patchi, patchFieldDict); |
| 224 | setPatchFields<volTensorField>(mesh, patchi, patchFieldDict); |
| 225 | setPatchFields<surfaceScalarField>(mesh, patchi, patchFieldDict); |
| 226 | setPatchFields<surfaceVectorField>(mesh, patchi, patchFieldDict); |
| 227 | setPatchFields<surfaceSphericalTensorField> |
| 228 | ( |
| 229 | mesh, |
| 230 | patchi, |
| 231 | patchFieldDict |
| 232 | ); |
| 233 | setPatchFields<surfaceSymmTensorField>(mesh, patchi, patchFieldDict); |
| 234 | setPatchFields<surfaceTensorField>(mesh, patchi, patchFieldDict); |
| 235 | } |
| 236 | |
| 237 | |
| 238 | void Foam::fvMeshTools::zeroPatchFields(fvMesh& mesh, const label patchi) |
no outgoing calls
no test coverage detected