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

Artefacts in vorticity profile

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 31, 2021, 02:34
Default Artefacts in vorticity profile
  #1
New Member
 
Goli
Join Date: Jul 2019
Posts: 7
Rep Power: 7
Goli is on a distinguished road
Hi everyone,

I am simulating a 2D incompressible flow with a Reynolds number of 6e6 around a NACA 0012 airfoil with 0-degree angle of attack using simpleFoam with Spalart-Allmaras model. The average y+ is 0.12 (min=0.007, max=0.15) over the airfoil, and I am not using any wall function. The anisotropic grids around the airfoil are structured, and around this layer, the grids are unstructured.

I calculate the vorticity in Paraview (v5.9.0) using these two ways:
1- Defining curl(U) in PythonCalculator.
2- Setting U for “Scalar Array” in GradientOfUnstructuredDataSet, then defining “Gradients_3-Gradients_1” in Calculator.

Both of these two approaches give the same vorticity profile, and there are some unwanted artifacts, which appear strictly at meshes around the airfoil. I also tried different gradSchemes, but the vorticity profile didn’t improve.

Figures 1, 2 and 3 are pictures of these artifacts after I rescale the vorticity to the range -7 and 7 (the range of vorticity at the outlet).

Also, as seen in figure 4, the vorticity has very high values on the airfoil, which I am not sure if it is something usual or not.

Here are the boundary conditions:

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1906                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 2 -1 0 0 0 0];

internalField   uniform 8.58e-06;

boundaryField
{
    inlet
    {
        type            fixedValue;
        value           uniform 8.58e-06;
    }

    outlet
    {
        type            zeroGradient;
    }

    top
    {
        type            fixedValue;
        value           uniform 8.58e-06;
    }

    bottom
    {
        type            fixedValue;
        value           uniform 8.58e-06;
    }

    walls
    {
        type            fixedValue;
        value           uniform 0;
    }

    frontAndBack
    {
        type            empty;
    }
}

// ************************************************************************* //
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1906                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      nuTilda;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 2 -1 0 0 0 0];

internalField   uniform 3.432e-5;

boundaryField
{
    inlet
    {
        type            fixedValue;
        value           uniform 3.432e-5;
    }

    outlet
    {
        type            zeroGradient;
    }

    top
    {
        type            fixedValue;
        value           uniform 3.432e-5;
    }

    bottom
    {
        type            fixedValue;
        value           uniform 3.432e-5;
    }

    walls
    {
        type            fixedValue;
        value           uniform 0;
    }

    frontAndBack
    {
        type            empty;
    }
}

// ************************************************************************* //
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1906                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 2 -2 0 0 0 0];

internalField   uniform 0;

boundaryField
{
    inlet
    {
        type               zeroGradient;
    }

    outlet
    {
        type               fixedValue;
        value    uniform 0;
    }
    
    top
    {
        type            zeroGradient;
    }

    bottom
    {
        type            zeroGradient;
    }

    walls
    {
        type            zeroGradient;
    }

    frontAndBack
    {
        type            empty;
    }
}

// ************************************************************************* //
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1906                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 1 -1 0 0 0 0];

internalField   uniform (51.4815 0 0);

boundaryField
{
    inlet
    {
        type            fixedValue;
        value           uniform (51.4815 0 0);
    }

    outlet
    {
        type            zeroGradient;
    }

    top
    {
        type            fixedValue;
        value           uniform (51.4815 0 0);
    }

    bottom
    {
        type            fixedValue;
        value           uniform (51.4815 0 0);
    }

    walls
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    frontAndBack
    {
        type            empty;
    }
}

// ************************************************************************* //
I am struggling with this problem for several weeks, but I couldn’t figure it out. I would be very grateful if anyone has any idea regarding how to solve this problem.
Attached Images
File Type: jpg 1.jpg (36.1 KB, 16 views)
File Type: jpg 2.jpg (62.1 KB, 19 views)
File Type: jpg 3.jpg (91.6 KB, 11 views)
File Type: jpg 4.jpg (23.0 KB, 10 views)

Last edited by Goli; April 14, 2021 at 14:05.
Goli is offline   Reply With Quote

Reply


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
SU2 inlet profile error dwstevens SU2 1 June 8, 2020 16:08
Choice of numerical schemes for high accuracy in vorticity D.B OpenFOAM Running, Solving & CFD 1 February 5, 2018 10:44
3D UDF Paraboilc Velocity Profile (Can't Maintain) Sing FLUENT 12 August 7, 2017 06:25
Boundary Profile E61 FLUENT 0 January 5, 2011 08:13
vorticity boundary condition bearcharge Main CFD Forum 0 May 14, 2010 11:32


All times are GMT -4. The time now is 22:09.