CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Bugs

Bugs in LES filter codes

Register Blogs Members List Search Today's Posts Mark Forums Read

Like Tree1Likes
  • 1 Post By henry

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 17, 2008, 04:12
Default Bug in LES Filter Codes: Desc
  #1
New Member
 
YekaniYasari
Join Date: Mar 2009
Location: Göteborg
Posts: 6
Rep Power: 17
yekaniyasari is on a distinguished road
Bug in LES Filter Codes:
Description:
1-The problem is about the laplace filter and anisotropic filter:
with running a case in LES solvers (oodles, channelOodles …) and using "laplace" filter or "anisotropic" filter with "dynamic or mix models" an error about laplace or anisotropic filtercoeffs occurred .for solving this problem we should add the following line in "turbulenceproperties" file in "constant" directory of relevant case.
For example:

mixedSmagorinskyCoeffs
{
ce ce [0 0 0 0 0 0 0] 1.05;
ck ck [0 0 0 0 0 0 0] 0.07;
filter anisotropic;
anisotropicCoeffs
{
widthCoeff 24; or 6 (for box or Gaussian filter)
}
}


2.The second problem was seen about definition of "widthcoeff" vector in "anisotropicfilter.C" file that was placed in"/src/lesmodel/lesfilter" .
In order to modify this problem, instead of the statement below:
"
for (direction d=0; d<vector::nComponents; d++)
{
coeff_.internalField().replace
(
d,
(2.0/widthCoeff_)*mesh.V()
/fvc::surfaceSum(mag(mesh.Sf().component(d)))().int ernalField()
);
}
"
We should use the following code:
"
for (direction d=0; d<vector::nComponents; d++)
{
coeff_.internalField().replace
(
d,
(4.0/widthCoeff_)*(mesh.V()/fvc::surfaceSum(mag(mesh.Sf().component(d)))().int ernalField())*(mesh.V()/fvc::surfaceSum(mag(mesh.Sf().component(d)))().int ernalField())
);
}
"
3. The third one , was about dimension problem : in "anisotropicfilter.C" file , in definition of filtration for tensor field , with substituting this part of code :
tmp<voltensorfield> tmpFilteredField
(
new volTensorField
(
IOobject
(
"anisotropicFilteredTensorField",
mesh().time().timeName(),
mesh(),
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh(),
dimLength
)
);

With this form :
tmp<voltensorfield> tmpFilteredField
(
new volTensorField
(
IOobject
(
"anisotropicFilteredTensorField",
mesh().time().timeName(),
mesh(),
IOobject::NO_READ,
IOobject::AUTO_WRITE
),
mesh(),
dimLength*dimLength/(dimTime*dimTime)
)
);

the problem is solved.
You can download the correct file from here.

anisotropicFilter.C

Testcase:
All case for example: channel395

Version:
OpenFOAM version 1.3
yekaniyasari is offline   Reply With Quote

Old   February 17, 2008, 04:41
Default in number 2 change " "widthcoe
  #2
New Member
 
YekaniYasari
Join Date: Mar 2009
Location: Göteborg
Posts: 6
Rep Power: 17
yekaniyasari is on a distinguished road
in number 2 change " "widthcoeff" vector " to " "coeff_" vector "
yekaniyasari is offline   Reply With Quote

Old   February 17, 2008, 07:10
Default I think it would be better to
  #3
Senior Member
 
Join Date: Mar 2009
Posts: 854
Rep Power: 22
henry is on a distinguished road
I think it would be better to use unFilteredField().dimensions() rather than hard-coding dimLength*dimLength/(dimTime*dimTime) as the dimensions of the tensor field resulting from the filtering of given field.

Henry
wenxu likes this.
henry is offline   Reply With Quote

Old   February 18, 2008, 02:59
Default Dr Henry Weller, Thanks for
  #4
New Member
 
YekaniYasari
Join Date: Mar 2009
Location: Göteborg
Posts: 6
Rep Power: 17
yekaniyasari is on a distinguished road
Dr Henry Weller,
Thanks for your attention.
Could you kindly comment about a problem in :

http://www.cfd-online.com/OpenFOAM_D...ages/1/40.html

By ehsan yasari on Tuesday, January 01, 2008 - 12:59 am
Best Regards
yekaniyasari is offline   Reply With Quote

Old   February 19, 2018, 07:51
Default
  #5
Senior Member
 
Canakkale Dardanelspor
Join Date: Aug 2012
Posts: 135
Rep Power: 13
HakikiCanakkaleli is on a distinguished road
Hi,

Would you please mind to consider to read the following thread, if possible, as the fact that the proposed correction herein was not embedded into the current OpenFOAM made me think that you have some solid reference to rely on and keep the anisotropicFilter implementation as it was?

What is the academic reference of the implementation for Foam::anisotropicFilter?


Kind regards,
HakikiCanakkaleli is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Bugs in fvcsurfaceIntegrate su_junwei OpenFOAM Bugs 4 July 7, 2013 11:29
Bugs in FFT luca OpenFOAM Bugs 2 January 27, 2009 16:40
Wiki - Bugs Andy R Main CFD Forum 0 July 25, 2008 14:15
bugs in starcd 4.06 whitemelon Siemens 0 July 11, 2008 07:26
starcd 3.24 has bugs? whitemelon Siemens 6 May 16, 2008 11:44


All times are GMT -4. The time now is 06:28.