View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000706 | OpenFOAM | Bug | public | 2012-12-18 15:37 | 2012-12-18 15:48 |
Reporter | Lieven | Assigned To | henry | ||
Priority | low | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Platform | Linux | OS | Ubuntu | OS Version | 10.04 |
Summary | 0000706: Unnecessary warning when using anisotropic LESfilter | ||||
Description | When using the anisotropic LESfilter, the following warning is printed: --> FOAM Warning : From function GeometricField<Type, PatchField, GeoMesh>::readIfPresent() in file /opt/openfoam211/src/OpenFOAM/lnInclude/GeometricField.C at line 129 read option IOobject::MUST_READ or MUST_READ_IF_MODIFIEDsuggests that a read constructor for field anisotropicFilteredSymmTensorField would be more appropriate. | ||||
Steps To Reproduce | Set LESModel in LESProperties to a dynamic model. E.g. LESModel homogeneousDynSmagorinsky homogeneousDynSmagorinskyCoeffs { filter anisotropic; anisotropicCoeffs { widthCoeff 6; } } | ||||
Additional Information | Easy to fix by replacing (similar for anisotropicFilteredSymmTensorField) IOobject ( "anisotropicFilteredTensorField", mesh().time().timeName(), mesh(), IOobject::MUST_READ, IOobject::AUTO_WRITE ), with IOobject ( "anisotropicFilteredTensorField", mesh().time().timeName(), mesh(), IOobject::NO_READ, IOobject::AUTO_WRITE ), in file src/turbulenceModels/LES/LESfilters/anisotropicFilter/anisotropicField.C | ||||
Tags | No tags attached. | ||||