CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

Flow around cylinder at Re=40

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 14, 2014, 22:04
Default Flow around cylinder at Re=40
  #1
New Member
 
leeminjae
Join Date: Jan 2014
Posts: 1
Rep Power: 0
leeminjae is on a distinguished road
Hello ladies & gentlemen
I'm working to simulate "flow around cylinder at Re=40"
I generated the mesh using Gambit.
It's a very simple simulation.
the objective of simulation is to get a good matching results of Cd & Cl
But I think my result is not that matching with an another paper.
I don't know what's wrong.
I attached my code below.



And another problem, Co(Courant Number) is around 1.6
Is it O.K ?
The property I used
Ux 0.071576 (m/s)
Diameter 0.01 (m)
Nu 1.7894e-05
Re 40



I'm sorry to attach my file not comfortably.
I don't know how to attach my code with files.

I'm looking forward to taking advice from you.









/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/

forceCoeffs1
{
type forceCoeffs;

functionObjectLibs ( "libforces.so" );

outputControl outputTime;

log yes;

patches ( cy );
pName p;
UName U;
rhoName rhoInf; // Indicates incompressible
log true;
rhoInf 1.225; // Redundant for incompressible
liftDir (0 1 0);
dragDir (1 0 0);
CofR (0 0 0); // Axle midpoint on ground
pitchAxis (0 0 1);
magUInf 0.4;
lRef 0.01; // Wheelbase length
Aref 0.0001; // Estimated


}


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

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

internalField uniform 0;

boundaryField
{
down
{
type symmetryPlane;
}
up
{
type symmetryPlane;

}
wall
{
type zeroGradient;

}
back
{
type symmetryPlane;

}
front
{
type symmetryPlane;

}
outlet
{
type fixedValue;
value uniform 0;

}
inlet
{
type zeroGradient;

}
}

// ************************************************** *********************** //
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField uniform (0 0 0);

boundaryField
{
down
{
type symmetryPlane;

}
up
{
type symmetryPlane;

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

}
back
{
type symmetryPlane;

}
front
{
type symmetryPlane;

}
outlet
{
type zeroGradient;
}
inlet
{
type fixedValue;
value uniform (0.071576 0 0);

}
}
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

libs
(
"libOpenFOAM.so"
"libincompressibleTurbulenceModel.so"
"libincompressibleRASModels.so"
);

application icoFoam;

startFrom startTime;

startTime 0;

stopAt endTime;

endTime 150;

deltaT 0.005;

writeControl timeStep;

writeInterval 200;

purgeWrite 0;

writeFormat ascii;

writePrecision 6;

writeCompression off;

timeFormat general;

timePrecision 6;

runTimeModifiable true;

functions
{

#include "forceCoeffs"
}


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

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

ddtSchemes
{
default backward;
}

gradSchemes
{
default Gauss linear;
grad(p) Gauss linear;
}

divSchemes
{
default none;
div(phi,U) Gauss linear;
}

laplacianSchemes
{
default none;
laplacian(nu,U) Gauss linear orthogonal;
laplacian((1|A(U)),p) Gauss linear orthogonal;
}

interpolationSchemes
{
default linear;
interpolate(HbyA) linear;
}

snGradSchemes
{
default orthogonal;
}

fluxRequired
{
default no;
p ;
}


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

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

solvers
{
p
{
solver PCG;
preconditioner DIC;
tolerance 1e-06;
relTol 0;
}

U
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}

PISO
{
nCorrectors 2;
nNonOrthogonalCorrectors 0;
pRefCell 0;
pRefValue 0;
}


// ************************************************** *********************** //
leeminjae is offline   Reply With Quote

Old   January 16, 2014, 21:22
Default
  #2
New Member
 
Josh
Join Date: Jun 2013
Posts: 19
Rep Power: 12
joshm is on a distinguished road
This could be any number of issues. If you post your case as a zip file, people might take a look at it for you.
joshm 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
benchmark: flow over a circular cylinder goodegg Main CFD Forum 12 January 22, 2013 11:47
1 Was FSI for a flow over a cylinder vmlxb6 CFX 17 May 16, 2011 02:29
Moving a Cylinder in cross flow after solving Dynamics equations of motion maruthamuthu_venkatraman OpenFOAM 1 November 19, 2009 13:55
Flow over a flat plate & Flow over a cylinder cfdxue Main CFD Forum 0 November 26, 2007 23:26
Flow over a cylinder Anna Main CFD Forum 9 March 24, 2006 14:32


All times are GMT -4. The time now is 19:48.