Typesetting math: 100%

Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Placements

Student Reviews


For Business


More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Loading...
Executive Programs
Workshops
For Business

Success Stories

Placements

Student Reviews

More

Projects

Blogs

Academic Training

Find Jobs

Informative Articles

We're Hiring!

phone+91 9342691281Log in
  1. Home/
  2. Faizan Akhtar/
  3. Week 12 - Validation studies of Symmetry BC vs Wedge BC in OpenFOAM vs Analytical H.P equation

Week 12 - Validation studies of Symmetry BC vs Wedge BC in OpenFOAM vs Analytical H.P equation

 Aim: Validation studies of Symmetry BC vs Wedge BC in OpenFOAM vs Analytical HP equation Abstract: The simulation of flow through a pipe in OpenFOAM is the case of the internal flow. The flow is governed by the Hagen-Poiseuille equation.  The assumptions in the Hagen-Poiseuille equation are as under The flow…

  • CFD
  • Faizan Akhtar

    updated on 30 Mar 2021

 Aim: Validation studies of Symmetry BC vs Wedge BC in OpenFOAM vs Analytical HP equation

Abstract: The simulation of flow through a pipe in OpenFOAM is the case of the internal flow. The flow is governed by the Hagen-Poiseuille equation.

 The assumptions in the Hagen-Poiseuille equation are as under

  • The flow is steady, incompressible, laminar.
  • Reynolds number for laminar flow is 21002100
  • There is no acceleration of the fluid since it is steady.
  • There is no velocity in the radial direction.
  • Only the wedge shape of the pipe is considered because the flow is axis-symmetric.

Hagen-Poiseuille equation

The fluid enters into the inlet section of the pipe. The velocity of the fluid molecules near the wall is zero because of the no-slip condition. As such the entire responsibility hangs on the shoulder of the fluid molecules present in the center of the pipe to produce a velocity profile as shown in the figure. The region where the velocity is fully developed is the hydrodynamically fully developed region, the velocity gradient and shear stress at the wall remain unchanged.

 

  • Hydrodynamically fully developed region=∂u(r,x)∂x=0∂u(r,x)∂x=0 u=u(r)u=u(r)
  • Hydrodynamically entry length LD=Re∗0.06LD=Re∗0.06 2.52m2.52m
  • Dynamic viscosity of water μ=0.00089μ=0.00089 Pa−secPa-sec
  • Density of water ρ=997kgm3ρ=997kgm3
  • Kinematic viscosity of water ν=μρν=μρ  =8.9268e−07m2sec=8.9268e-07m2sec
  • Average velocity=μ∗Reρ∗Dμ∗Reρ∗D 0.0937ms0.0937ms
  • The velocity profile u(r)=2∗vavg(1−r2R2)u(r)=2∗vavg(1-r2R2)
  • umax=2∗vavgumax=2∗vavg 0.1875ms0.1875ms
  • Pressure difference △p=32⋅μ⋅vavg∗LD2△p=32⋅μ⋅vavg∗LD2 0.0169kPa0.0169kPa
  • Shear stress τ=2∗μ∗umax∗rR2τ=2∗μ∗umax∗rR2

The simulation is being performed for different wedge angles 10∘,25∘,45∘10∘,25∘,45∘, and the difference between symmetry, wedge boundary condition, and analytical Hagen-Poiseuille equation is studied.

Plotting wall shear stress for all the profiles.

  • The wall shear stress is maximum at the wall but is minimum at the center of pipe.
  • In Newtonian fluid dynamic viscosity is constant ,so τ∝dudrτ∝dudr

 

 Applying wedge boundary condition

Please note that p, U, controlDict, Transportproperties remains the same for wedge angle 25∘,45∘25∘,45∘ respectively.

BlockMeshDict file for wedge angle ten degrees.

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\       /  F ield         | OpenFOAM: The Open Source CFD Toolbox\n
   \\     /   O peration     | Website:  https://openfoam.org\n
    \\   /    A nd           | Version:  8
      \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
    (0.000000 0.000000 0.000000)
    (0.000000 0.009962 -0.000872)
    (0.000000 0.009962 0.000872)
    (2.520000 0.000000 0.000000)
    (2.520000 0.009962 -0.000872)
    (2.520000 0.009962 0.000872)
);

blocks
(
    hex (0 1 2 0 3 4 5 3) (50 1 200) simpleGrading (0.4 1 1)
);

edges
(
    arc 1 2 (0.000000 0.010000 0.000000)
    arc 4 5 (2.520000 0.010000 0.000000)
);

boundary
(
    axis
    {
        type empty;
        faces
        (
            (0 3 3 0)
        );
    }
    inlet
    {
        type patch;
        faces
        (
            (0 1 2 0)
        );
    }
    pipe_surface
    {
        type wall;
        faces
        (
            (1 4 5 2)
        );
    }
    outlet
    {
        type patch
        faces
        (
            (3 4 5 3)
        );
    }
    front
    {
        type wedge
        faces
        (
            (0 3 5 2)
        );
    }
    back
    {
        type wedge
        faces
        (
            (0 1 4 3)
        );
    }
);
mergePatchPairs
(
);
// ************************************************************************* //

 Pressure

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 0;

boundaryField
{
    axis
    {
        type            empty;
    }

    inlet
    {
        type            zeroGradient;
    }

    pipe_surface
    {
        type            zeroGradient;
    }
    outlet
    {
         type           fixedValue;
         value           uniform 0.0169;
    }
    front
    {
         type            wedge;
    } 
    back
    {
         type            wedge;
    }     
         
}

// ************************************************************************* //

Velocity 

*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform (0.0937 0 0);

boundaryField
{
    axis
    {
        type            empty;
        
    }
    inlet
    {
        type            fixedValue;
        value           uniform (0.0937 0 0);
    }
    pipe_surface
    {
        type            fixedValue;
        value           uniform (0 0 0);
        
    }

    outlet
    {
        type            zeroGradient;
        
    }
    front
    {
         type            wedge;
    }
    back
    {
         type            wedge;
    }
    
}

// ************************************************************************* //              

 

Transport properties

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "constant";
    object      transportProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

nu              [0 2 -1 0 0 0 0] 8.9268e-07;


// ************************************************************************* //

Control Dict file

*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

application     icoFoam;

startFrom       startTime;

startTime       0;

stopAt          endTime;

endTime         10;

deltaT          0.01;

writeControl    timeStep;

writeInterval   10;

purgeWrite      0;

writeFormat     ascii;

writePrecision  6;

writeCompression off;

timeFormat      general;

timePrecision   6;

runTimeModifiable true;

Geometry profile for wedge angle 10∘10∘

fewff

Velocity profile at the inlet of the pipe.

2eed2

Velocity profile for the fully developed flow

jckug

Pressure profile of the wedge

fer

Velocity and pressure profile at a distance of 0.01m0.01m from the inlet of a pipe.

eew

Velocity and pressure profile at a distance of 0.5m0.5m from the inlet of a pipe.

hdy

Velocity and pressure profile at a distance of 1m1m from the inlet of a pipe.

sqwqw

Velocity and pressure profile at a distance of 2m2m from the inlet of a pipe.

swq

Shear stress plots

sdfse

 

fgdfs

xyj

hfxyj

 

BlockMeshDict file for wedge angle twenty-five degrees.

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\       /  F ield         | OpenFOAM: The Open Source CFD Toolbox\n
   \\     /   O peration     | Website:  https://openfoam.org\n
    \\   /    A nd           | Version:  8
      \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
    (0.000000 0.000000 0.000000)
    (0.000000 0.009763 -0.002164)
    (0.000000 0.009763 0.002164)
    (2.520000 0.000000 0.000000)
    (2.520000 0.009763 -0.002164)
    (2.520000 0.009763 0.002164)
);

blocks
(
    hex (0 1 2 0 3 4 5 3) (50 1 200) simpleGrading (0.4 1 1)
);

edges
(
    arc 1 2 (0.000000 0.010000 0.000000)
    arc 4 5 (2.520000 0.010000 0.000000)
);

boundary
(
    axis
    {
        type empty;
        faces
        (
            (0 3 3 0)
        );
    }
    inlet
    {
        type patch;
        faces
        (
            (0 1 2 0)
        );
    }
    pipe_surface
    {
        type wall;
        faces
        (
            (1 4 5 2)
        );
    }
    outlet
    {
        type patch
        faces
        (
            (3 4 5 3)
        );
    }
    front
    {
        type wedge
        faces
        (
            (0 3 5 2)
        );
    }
    back
    {
        type wedge
        faces
        (
            (0 1 4 3)
        );
    }
);
mergePatchPairs
(
);
// ************************************************************************* //

 Geometry for wedge angle 25∘25∘

sxqd

Velocity profile at the inlet of a pipe.

ed2e

Velocity profile for a fully developed flow

cdw

 

Velocity and pressure profile at 0.01m0.01mfrom the inlet of the pipe.

gsd

Velocity and pressure profile 0.5m0.5m from the inlet of the pipe.

cwerfrfew

Velocity and pressure profile at 1m1m from the inlet of the pipe

ggr

 

Velocity and pressure profile at 2m2m from the inlet of the pipe`

qdqew

Shear stress plots

fhufl

hxyfx

xfxhm

hxm

 

 

 

BlockMeshDict file for wedge angle forty-five degrees.

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\       /  F ield         | OpenFOAM: The Open Source CFD Toolbox\n
   \\     /   O peration     | Website:  https://openfoam.org\n
    \\   /    A nd           | Version:  8
      \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
    (0.000000 0.000000 0.000000)
    (0.000000 0.009239 -0.003827)
    (0.000000 0.009239 0.003827)
    (2.520000 0.000000 0.000000)
    (2.520000 0.009239 -0.003827)
    (2.520000 0.009239 0.003827)
);

blocks
(
    hex (0 1 2 0 3 4 5 3) (50 1 200) simpleGrading (0.4 1 1)
);

edges
(
    arc 1 2 (0.000000 0.010000 0.000000)
    arc 4 5 (2.520000 0.010000 0.000000)
);

boundary
(
    axis
    {
        type empty;
        faces
        (
            (0 3 3 0)
        );
    }
    inlet
    {
        type patch;
        faces
        (
            (0 1 2 0)
        );
    }
    pipe_surface
    {
        type wall;
        faces
        (
            (1 4 5 2)
        );
    }
    outlet
    {
        type patch
        faces
        (
            (3 4 5 3)
        );
    }
    front
    {
        type wedge
        faces
        (
            (0 3 5 2)
        );
    }
    back
    {
        type wedge
        faces
        (
            (0 1 4 3)
        );
    }
);
mergePatchPairs
(
);
// ************************************************************************* //

Geometry for wedge angle 45∘45∘

sdfsf

Velocity profile at the inlet of the pipe.

gxtj

 

Velocity profile for the fully developed flow

jckug

Velocity and pressure profile at 0.01m0.01m from the inlet of the pipe.

u

 

Velocity and pressure profile at 0.5m0.5mfrom the inlet of the pipe.

gmghmgh

Velocity and pressure profile at 1m1mfrom the inlet

gsdf

Velocity and pressure profile at 2m2m from the inlet of the pipe.

wcdwe

Shear stress plots.

l

deqw

;l

Applying symmetry boundary condition

  • The p, U, controlDict, transportProperties remains the same as above for wedge angle 25∘,45∘25∘,45∘ respectively.
  • Please note that the geometry of the profile remains the same, therefore the behavior of parameters is shown below.

BlockMeshDict file for wedge angle ten degrees.

 

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\       /  F ield         | OpenFOAM: The Open Source CFD Toolbox\n
   \\     /   O peration     | Website:  https://openfoam.org\n
    \\   /    A nd           | Version:  8
      \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
    (0.000000 0.000000 0.000000)
    (0.000000 0.009962 -0.000872)
    (0.000000 0.009962 0.000872)
    (2.520000 0.000000 0.000000)
    (2.520000 0.009962 -0.000872)
    (2.520000 0.009962 0.000872)
);

blocks
(
    hex (0 1 2 0 3 4 5 3) (50 1 200) simpleGrading (0.4 1 1)
);

edges
(
    arc 1 2 (0.000000 0.010000 0.000000)
    arc 4 5 (2.520000 0.010000 0.000000)
);

boundary
(
    axis
    {
        type empty;
        faces
        (
            (0 3 3 0)
        );
    }
    inlet
    {
        type patch;
        faces
        (
            (0 1 2 0)
        );
    }
    pipe_surface
    {
        type wall;
        faces
        (
            (1 4 5 2)
        );
    }
    outlet
    {
        type patch
        faces
        (
            (3 4 5 3)
        );
    }
    front
    {
        type symmetry
        faces
        (
            (0 3 5 2)
        );
    }
    back
    {
        type symmetry
        faces
        (
            (0 1 4 3)
        );
    }
);
mergePatchPairs
(
);
// ************************************************************************* //

 Pressure

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 0;

boundaryField
{
    axis
    {
        type            empty;
    }

    inlet
    {
        type            zeroGradient;
    }

    pipe_surface
    {
        type            zeroGradient;
    }
    outlet
    {
         type           fixedValue;
         value           uniform 0.0169;
    }
    front
    {
         type            symmetry;
    } 
    back
    {
         type            symmetry;
    }     
         
}

// ************************************************************************* //

Velocity profile

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform (0.0937 0 0);

boundaryField
{
    axis
    {
        type            empty;
        
    }
    inlet
    {
        type            fixedValue;
        value           uniform (0.0937 0 0);
    }
    pipe_surface
    {
        type            fixedValue;
        value           uniform (0 0 0);
        
    }

    outlet
    {
        type            zeroGradient;
        
    }
    front
    {
         type            symmetry;
    }
    back
    {
         type            symmetry;
    }
    
}

// ************************************************************************* //              

ControlDict

*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

application     icoFoam;

startFrom       startTime;

startTime       0;

stopAt          endTime;

endTime         10;

deltaT          0.01;

writeControl    timeStep;

writeInterval   10;

purgeWrite      0;

writeFormat     ascii;

writePrecision  6;

writeCompression off;

timeFormat      general;

timePrecision   6;

runTimeModifiable true;

Transportproperties

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  8
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "constant";
    object      transportProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

nu              [0 2 -1 0 0 0 0] 8.9268e-07;


// ************************************************************************* //

 

Velocity and pressure profile at 1m1m from the inlet of the pipe.

wcdwe

Velocity and pressure profile at 2m2m from the inlet of the pipe.

dcw

Shear stress plots

ghmg

jmj

 

 

 

 

BlockMeshDict file for wedge angle twenty-five degrees.

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\       /  F ield         | OpenFOAM: The Open Source CFD Toolbox\n
   \\     /   O peration     | Website:  https://openfoam.org\n
    \\   /    A nd           | Version:  8
      \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
    (0.000000 0.000000 0.000000)
    (0.000000 0.009763 -0.002164)
    (0.000000 0.009763 0.002164)
    (2.520000 0.000000 0.000000)
    (2.520000 0.009763 -0.002164)
    (2.520000 0.009763 0.002164)
);

blocks
(
    hex (0 1 2 0 3 4 5 3) (50 1 200) simpleGrading (0.4 1 1)
);

edges
(
    arc 1 2 (0.000000 0.010000 0.000000)
    arc 4 5 (2.520000 0.010000 0.000000)
);

boundary
(
    axis
    {
        type empty;
        faces
        (
            (0 3 3 0)
        );
    }
    inlet
    {
        type patch;
        faces
        (
            (0 1 2 0)
        );
    }
    pipe_surface
    {
        type wall;
        faces
        (
            (1 4 5 2)
        );
    }
    outlet
    {
        type patch
        faces
        (
            (3 4 5 3)
        );
    }
    front
    {
        type symmetry
        faces
        (
            (0 3 5 2)
        );
    }
    back
    {
        type symmetry
        faces
        (
            (0 1 4 3)
        );
    }
);
mergePatchPairs
(
);
// ************************************************************************* //

 

Velocity and pressure profile at 1m1m from the inlet of the pipe

uvul

Velocity and pressure profile at 2m2m from the inlet of the pipe.

ewdf

Shear stress plots

sxccdc

xas

 

BlockMeshDict file for wedge angle forty-five degrees.

/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\       /  F ield         | OpenFOAM: The Open Source CFD Toolbox\n
   \\     /   O peration     | Website:  https://openfoam.org\n
    \\   /    A nd           | Version:  8
      \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
    (0.000000 0.000000 0.000000)
    (0.000000 0.009239 -0.003827)
    (0.000000 0.009239 0.003827)
    (2.520000 0.000000 0.000000)
    (2.520000 0.009239 -0.003827)
    (2.520000 0.009239 0.003827)
);

blocks
(
    hex (0 1 2 0 3 4 5 3) (50 1 200) simpleGrading (0.4 1 1)
);

edges
(
    arc 1 2 (0.000000 0.010000 0.000000)
    arc 4 5 (2.520000 0.010000 0.000000)
);

boundary
(
    axis
    {
        type empty;
        faces
        (
            (0 3 3 0)
        );
    }
    inlet
    {
        type patch;
        faces
        (
            (0 1 2 0)
        );
    }
    pipe_surface
    {
        type wall;
        faces
        (
            (1 4 5 2)
        );
    }
    outlet
    {
        type patch
        faces
        (
            (3 4 5 3)
        );
    }
    front
    {
        type symmetry
        faces
        (
            (0 3 5 2)
        );
    }
    back
    {
        type symmetry
        faces
        (
            (0 1 4 3)
        );
    }
);
mergePatchPairs
(
);
// ************************************************************************* //

Velocity and pressure profile at 1m1m from the inlet of the pipe.

qqwsqw

Velocity and pressure profile at 2m2m from the inlet of the pipe.

yck

 

 

Shear stress plots.

kop

kcgj

Conclusion

The OpenFOAM results are tabulated as under

Output

Hagen-Poiseuille equation

Wedge angle 10∘10∘

BC: Wedge

Wedge angle 10∘10∘

BC: Symmetry

Wedge angle 25∘25∘

BC: Wedge

Wedge angle 25∘25∘

BC: Symmetry

Wedge angle 45∘45∘

BC: Wedge

Wedge angle 45∘45∘

BC: Symmetry

Mean Courant number  −- 0.028720.02872 0.07692890.0769289 0.07694070.0769407  0.076940.07694 0.07690.0769  0.07696920.0769692
Max Courant number  −- 0.379470.37947 0.3053950.305395 0.3088340.308834  0.30880.3088 0.31810.3181  0.3181860.318186
Execution time  −- 117.74s117.74s 122.7s122.7s 116.36s116.36s  120.76s120.76s 119.69s119.69s  126.68s126.68s
Clock time −- 145s145s 148s148s 142s142s  148s148s 147s147s  153s153s
umaxumax  0.18750.1875 0.179520.17952  0.179520.17952  0.179520.17952  0.179520.17952  0.179520.17952  0.179520.17952
Kinematic pressure  0.01690.0169  0.01690.0169  0.01690.0169  0.01690.0169  0.01690.0169  0.01690.0169  0.01690.0169
Wall shear stress 0.0340.034 0.0340.034 0.0340.034 0.0340.034 0.0340.034 0.0340.034 0.0340.034

From the above data, it can be concluded that simulation performed for different wedge angles produces similar analytical results. 

The deviation from the Hagen-Poiseuille equation is negligible.

The execution time for symmetry boundary condition is more as compared to wedge boundary condition.

Leave a comment

Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.

Please  login to add a comment

Other comments...

No comments yet!
Be the first to add a comment

Read more Projects by Faizan Akhtar (34)

Week-4 : Basic Calibration of Single cylinder CI-Engine

Objective:

Aim: Basic Calibration of Single cylinder CI-Engine Objective :  Explore Tutorial No 1- CI final 1.Compare SI vs CI and list down differences (assignment no 2-SI) 2. Comments on the following parameters BSFC Exhaust Temperature A/F ratios 3.Change MFB 50 and observe impact on performance Introduction Difference…

calendar

11 Nov 2021 05:26 AM IST

    Read more

    Week 2 : Basic Calibration of Single cylinder SI-Engine

    Objective:

     Aim: Basic Calibration of Single-cylinder SI-Engine Objective:  1. Run the case at 1800 rpm and list down important parameters (20 Marks) air flow rate BMEP BSFC In-cylinder pressure 2. Increase the power output at 3600 rpm by 10% (30 Marks) Introduction A spark-ignition engine (SI engine) is…

    calendar

    22 Oct 2021 07:11 AM IST

      Read more

      Week 1 : Exploring the GUI of GT-POWER

      Objective:

       Aim: Exploring the GUI of GT-suite GT-suite can be used in a wide range of applications. There are several industries that are using GT-suite for various applications On-highway and off-highway vehicle Marine and rail Industrial machinery Aerospace Power generation Multiphysics platform GT-Suite has a versatile multiphysics…

      calendar

      12 Oct 2021 02:52 PM IST

      • CFD
      Read more

      Week 8: Literature review - RANS derivation and analysis

      Objective:

      Aim: Literature review - RANS derivation and analysis Objective:  Apply Reynolds decomposition to the NS equations and come up with the expression for Reynolds stress. Explain your understanding of the terms Reynolds stress What is turbulent viscosity? How is it different from molecular viscosity? Introduction…

      calendar

      01 Sep 2021 07:52 AM IST

        Read more

        Schedule a counselling session

        Please enter your name
        Please enter a valid email
        Please enter a valid number

        Related Courses

        coursecardcoursetype

        Post Graduate Program in CFD Solver Development

        4.8

        119 Hours of Content

        coursecard

        Introduction to OpenFOAM Development

        4.9

        18 Hours of Content

        coursecardcoursetype

        Post Graduate Program in Battery Technology for Mechanical Engineers

        4.8

        81 Hours of Content

        coursecardcoursetype

        Post Graduate Program in Automation & Pre-Processing for FEA & CFD Analysis

        4.7

        81 Hours of Content

        coursecardcoursetype

        Post Graduate Program in Hybrid Electric Vehicle Design and Analysis

        4.8

        343 Hours of Content

        Schedule a counselling session

        Please enter your name
        Please enter a valid email
        Please enter a valid number

                    Do You Want To Showcase Your Technical Skills?
                    Sign-Up for our projects.