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

How to setup cyclic BCs in simpleFOAM

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By tom ato

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 1, 2009, 13:43
Default How to setup cyclic BCs in simpleFOAM
  #1
New Member
 
Huang
Join Date: Sep 2009
Posts: 11
Rep Power: 16
hhuang84 is on a distinguished road
I am trying to simulate fully developed turbulent flow in a square duct with cyclic BC in simpleFoam with K-Epsilon model. The mesh was generated in pointwise, with cyclic BCs automatically specified. here attach my setup files, but it fail to get a converged solution. Any hits? Thanks in advance.
0/U &p
dimensions [0 1 -1 0 0 0 0];

internalField uniform (0.329 0 0);

boundaryField
{
Cyclic
{
type cyclic;
value uniform (0.329 0 0);
}

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

}

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

internalField uniform 0;

boundaryField
{
Cyclic
{
type cyclic;
}

Wall
{
type zeroGradient;
}


}


and I also set Ubar in constant/transportProperties
Ubar Ubar [ 0 1 -1 0 0 0 0 ] (0.329 0 0 );
transportModel Newtonian;

nu nu [ 0 2 -1 0 0 0 0 ] 1.003e-06;
in system/fvSchemes I set
SIMPLE
{

nNonOrthogonalCorrectors 0;
pRefCell 0;
pRefValue 0;
}

I has been trying for days, but got no good results, even if I turned off turbulence. the maximum stream velocity from simpleFoam is 0.329, so the mass is not conserved.

Last edited by hhuang84; October 1, 2009 at 17:17.
hhuang84 is offline   Reply With Quote

Old   October 7, 2009, 10:38
Default
  #2
Senior Member
 
lakeat's Avatar
 
Daniel WEI (老魏)
Join Date: Mar 2009
Location: Beijing, China
Posts: 689
Blog Entries: 9
Rep Power: 21
lakeat is on a distinguished road
Send a message via Skype™ to lakeat
How about this,
Code:
Cyclic 
{
type cyclic;
}
and why did you use simplefoam to simulate a fully developed turbulence???
__________________
~
Daniel WEI
-------------
Boeing Research & Technology - China
Beijing, China
Email
lakeat is offline   Reply With Quote

Old   October 7, 2009, 14:51
Default
  #3
New Member
 
Huang
Join Date: Sep 2009
Posts: 11
Rep Power: 16
hhuang84 is on a distinguished road
Any other solvers that can implement the periodic boundary conditions?
hhuang84 is offline   Reply With Quote

Old   October 7, 2009, 18:48
Default
  #4
Senior Member
 
santos's Avatar
 
Jose Luis Santos
Join Date: Mar 2009
Location: Portugal
Posts: 215
Rep Power: 18
santos is on a distinguished road
Send a message via Skype™ to santos
Have you looked into channelFoam? It can handle cyclics, while simpleFoam doesnt by default (I think).

Regards,
Jose Santos
santos is offline   Reply With Quote

Old   October 7, 2009, 19:51
Default
  #5
New Member
 
Huang
Join Date: Sep 2009
Posts: 11
Rep Power: 16
hhuang84 is on a distinguished road
However, if I just wanna run a laminar or RANS , what solver can I chose?
hhuang84 is offline   Reply With Quote

Old   October 7, 2009, 22:47
Default
  #6
Senior Member
 
lakeat's Avatar
 
Daniel WEI (老魏)
Join Date: Mar 2009
Location: Beijing, China
Posts: 689
Blog Entries: 9
Rep Power: 21
lakeat is on a distinguished road
Send a message via Skype™ to lakeat
Try pisoFoam.
__________________
~
Daniel WEI
-------------
Boeing Research & Technology - China
Beijing, China
Email
lakeat is offline   Reply With Quote

Old   October 8, 2009, 10:08
Default
  #7
Senior Member
 
santos's Avatar
 
Jose Luis Santos
Join Date: Mar 2009
Location: Portugal
Posts: 215
Rep Power: 18
santos is on a distinguished road
Send a message via Skype™ to santos
For laminar, change LESModel in channelFoam to laminar. For RANS I guess you need to make your own solver, combining eg pisoFoam (as suggested above) and channelFoam.

Regards,
Jose Santos
santos is offline   Reply With Quote

Old   October 14, 2009, 10:41
Default
  #8
New Member
 
ouafa
Join Date: Jul 2009
Posts: 15
Rep Power: 16
ouafa is on a distinguished road
hi everybody,

i try to run the biperiodic tutorial channelOoddles initially proposed in LES, with the solver simpleFoam for steady RANS using the K-omega SST model and taking the same parameters Ubar and nu.

so i add the term gradP like in the channelOoddles solver in the Ueqn but the result was a laminar regime even after long time simulations. k and omega are not zero. can someone help me please, here after my proposed:

fvVectorMatrix UEqn
(
fvm::div(phi, U)
+ turbulence->divDevReff(U)
==
flowDirection*gradP

);


UEqn.relax();

eqnResidual = solve
(
UEqn == -fvc::grad(p)
).initialResidual();


maxResidual = max(eqnResidual, maxResidual);

-----------------------------------------------------------------------------

p.boundaryField().updateCoeffs();

volScalarField AU =UEqn.A();
volScalarField rUA = 1.0/UEqn.A();

U = UEqn.H()/AU;


phi = fvc::interpolate(U) & mesh.Sf();
adjustPhi(phi, U, p);


// Non-orthogonal pressure corrector loop
for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
{
fvScalarMatrix pEqn
(
fvm::laplacian(1.0/AU, p) == fvc::div(phi)
);


pEqn.setReference(pRefCell, pRefValue);
// retain the residual from the first iteration
if (nonOrth == 0)
{
eqnResidual = pEqn.solve().initialResidual();
maxResidual = max(eqnResidual, maxResidual);
}
else
{
pEqn.solve();
}


if (nonOrth == nNonOrthCorr)
{
phi -= pEqn.flux();
}
}


# include "continuityErrs.H"

// Explicitly relax pressure for momentum corrector
p.relax();


// Momentum corrector
U -= fvc::grad(p)/AU;
U.correctBoundaryConditions();



// Correct driving force for a constant mass flow rate

// Extract the velocity in the flow direction
dimensionedScalar magUbarStar =
(flowDirection & U)().weightedAverage(mesh.V());


// Calculate the pressure gradient increment needed to
// adjust the average flow-rate to the correct value
dimensionedScalar gragPplus =
(magUbar - magUbarStar)/rUA.weightedAverage(mesh.V());


U += flowDirection*rUA*gragPplus;

gradP += gragPplus;

Info<< "Uncorrected Ubar = " << magUbarStar.value() << tab
<< "pressure gradient = " << gradP.value() << endl;
ouafa is offline   Reply With Quote

Old   August 31, 2011, 17:25
Default channel flow with simpleFoam aka simpleChannelFoam
  #9
Senior Member
 
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0
chegdan will become famous soon enoughchegdan will become famous soon enough
This is an old thread, but its close to what I would like to discuss. I have made some changes to simpleFoam using channelFoam as a guide to model steady-state channel flow using RANS. I noticed this thread that was left hanging....has anyone managed to get periodic boundary conditions in simpleFoam to work WITHOUT direct mapped patches? Ubar and gradP diverge after a few hundred iterations. Thoughts? Below is my code so far.

Dan

Code:
/*---------------------------------------------------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     |
    \\  /    A nd           | Copyright held by original author
     \\/     M anipulation  |
-------------------------------------------------------------------------------
License
    This file is part of OpenFOAM.

    OpenFOAM is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by the
    Free Software Foundation; either version 2 of the License, or (at your
    option) any later version.

    OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    for more details.

    You should have received a copy of the GNU General Public License
    along with OpenFOAM; if not, write to the Free Software Foundation,
    Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

Application
    simpleChannelFoam

Description
    Steady-state solver for incompressible, laminar or turbulent flow with 
    periodic boundary conditions

\*---------------------------------------------------------------------------*/

#include "fvCFD.H"
#include "singlePhaseTransportModel.H"
#include "IFstream.H"  //added
#include "OFstream.H"  //added
#include "RASModel.H"

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

int main(int argc, char *argv[])
{
#   include "setRootCase.H"
#   include "createTime.H"
#   include "createMesh.H"
#   include "readTransportProperties.H" //added from channelFoam
#   include "createFields.H"
#   include "initContinuityErrs.H"
#   include "createGradP.H" //added from channelFoam

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

    Info<< "\nStarting time loop\n" << endl;

    while (runTime.loop())
    {
        Info<< "Time = " << runTime.timeName() << nl << endl;

#       include "readSIMPLEControls.H"
#       include "initConvergenceCheck.H"

        p.storePrevIter();

        // Pressure-velocity SIMPLE corrector
	
	turbulence->correct();//moved here

//solve the U-equation

	    tmp<fvVectorMatrix> UEqn
	    (
	        fvm::div(phi, U)
	      + turbulence->divDevReff(U)
	      ==
	        flowDirection*gradP
	    );
	
	    UEqn().relax();
	
	    eqnResidual = solve
	    (
	        UEqn() == -fvc::grad(p)
	    ).initialResidual();
	
	    maxResidual = max(eqnResidual, maxResidual);

//end solving the U-equation
//solve the p-equation with SIMPLE Algorithm
	    p.boundaryField().updateCoeffs();

	    volScalarField rUA = 1.0/UEqn().A();//added
	    U = rUA*UEqn().H();
	    UEqn.clear();
	    phi = fvc::interpolate(U) & mesh.Sf();
	    adjustPhi(phi, U, p);

	    // Non-orthogonal pressure corrector loop
	    for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
	    {
	        fvScalarMatrix pEqn
        	(
	            fvm::laplacian(rUA, p) == fvc::div(phi)
        	);

        	pEqn.setReference(pRefCell, pRefValue);

        	// Retain the residual from the first iteration
	        if (nonOrth == 0)
        	{
        	    eqnResidual = pEqn.solve().initialResidual();
        	    maxResidual = max(eqnResidual, maxResidual);
        	}
        	else
        	{
        	    pEqn.solve();
        	}

        	if (nonOrth == nNonOrthCorr)
        	{
        	    phi -= pEqn.flux();
        	}
    	   }

	#   include "continuityErrs.H"

	    // Explicitly relax pressure for momentum corrector
	    p.relax();

	    // Momentum corrector
	    U -= rUA*fvc::grad(p);
	    U.correctBoundaryConditions();

//end solve the p-equation with SIMPLE Algorithm

	// Correct driving force for a constant mass flow rate

        // Extract the velocity in the flow direction
        dimensionedScalar magUbarStar =
            (flowDirection & U)().weightedAverage(mesh.V());

        // Calculate the pressure gradient increment needed to
        // adjust the average flow-rate to the correct value
        dimensionedScalar gragPplus =
            (magUbar - magUbarStar)/rUA.weightedAverage(mesh.V());

        U += flowDirection*rUA*gragPplus;

        gradP += gragPplus;

        //- Solve the turbulence equations and correct the turbulence viscosity after U has been updated
        //turbulence->correct();

        Info<< "Uncorrected Ubar = " << magUbarStar.value() << tab
            << "pressure gradient = " << gradP.value() << endl;

        runTime.write();

        #include "writeGradP.H"	//added from channelFoam

        Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
            << "  ClockTime = " << runTime.elapsedClockTime() << " s"
            << nl << endl;

#       include "convergenceCheck.H"
    }

    Info<< "End\n" << endl;

    return 0;
}


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

Last edited by chegdan; August 31, 2011 at 19:20.
chegdan is offline   Reply With Quote

Old   July 11, 2012, 08:01
Default
  #10
New Member
 
Join Date: Apr 2012
Posts: 8
Rep Power: 14
tom ato is on a distinguished road
Dear Dan,

in the thread above about „channel flow with simpleFoam aka simpleChannelFoam“ you wrote
about having problems with convergence of Ubar and gradP.

I'm having the same problem right now (not surprising since I'm using a quite similar solver)
and I'm not able to find the problem.

Have you been able to identify or even solve the problem of the solver you posted?
It would be great to get some feedback :-)

Kind Regards

Tom
tom ato is offline   Reply With Quote

Old   July 11, 2012, 10:15
Default
  #11
Senior Member
 
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0
chegdan will become famous soon enoughchegdan will become famous soon enough
Quote:
Originally Posted by tom ato View Post
Dear Dan,

in the thread above about „channel flow with simpleFoam aka simpleChannelFoam“ you wrote
about having problems with convergence of Ubar and gradP.

I'm having the same problem right now (not surprising since I'm using a quite similar solver)
and I'm not able to find the problem.

Have you been able to identify or even solve the problem of the solver you posted?
It would be great to get some feedback :-)

Kind Regards

Tom
Dear Tom,

Not yet.

Regards, Dan
chegdan is offline   Reply With Quote

Old   July 16, 2012, 06:32
Default
  #12
New Member
 
Join Date: Apr 2012
Posts: 8
Rep Power: 14
tom ato is on a distinguished road
Dear Dan,
Dear Foamers,

the solver posted above by Dan should be correct. A very similar solver
I used is running quite fine by considering the following aspects:

1. it is absolutely vital to use an upwind scheme for solving U (can be changed in the fvSchemes-dictionary if not set by default)

2. relaxationFactors for pressure and velocity must be reduced and should not be bigger than

p 0.15;
U 0.5;

(The relaxation factors can be changed in the fvSolution dictionary)

3. one should take at least 8000 iteration-steps ( set in the controldict-file), although in some cases 4000 iterations might be sufficient as well. I made best experiences with 10000 steps.


In particular, I posted this for Dan in the hope of giving him, and anybody else
having the same problem and reading this thread, an helpful answer, but I fear this is coming to late.

Kind Regards

Tom
1/153 likes this.
tom ato is offline   Reply With Quote

Old   July 16, 2012, 07:01
Default
  #13
Senior Member
 
Daniel P. Combest
Join Date: Mar 2009
Location: St. Louis, USA
Posts: 621
Rep Power: 0
chegdan will become famous soon enoughchegdan will become famous soon enough
Tom,

Thanks. I'll give it a try and If I can add anything I'll get back here and post it.

Thanks.

Dan
chegdan is offline   Reply With Quote

Old   September 15, 2016, 22:01
Default
  #14
Member
 
Mirage
Join Date: Jul 2012
Posts: 43
Rep Power: 13
Mirage is on a distinguished road
Quote:
Originally Posted by chegdan View Post
This is an old thread, but its close to what I would like to discuss. I have made some changes to simpleFoam using channelFoam as a guide to model steady-state channel flow using RANS. I noticed this thread that was left hanging....has anyone managed to get periodic boundary conditions in simpleFoam to work WITHOUT direct mapped patches? Ubar and gradP diverge after a few hundred iterations. Thoughts? Below is my code so far.

Dan

Code:
/*---------------------------------------------------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     |
    \\  /    A nd           | Copyright held by original author
     \\/     M anipulation  |
-------------------------------------------------------------------------------
License
    This file is part of OpenFOAM.

    OpenFOAM is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by the
    Free Software Foundation; either version 2 of the License, or (at your
    option) any later version.

    OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    for more details.

    You should have received a copy of the GNU General Public License
    along with OpenFOAM; if not, write to the Free Software Foundation,
    Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

Application
    simpleChannelFoam

Description
    Steady-state solver for incompressible, laminar or turbulent flow with 
    periodic boundary conditions

\*---------------------------------------------------------------------------*/

#include "fvCFD.H"
#include "singlePhaseTransportModel.H"
#include "IFstream.H"  //added
#include "OFstream.H"  //added
#include "RASModel.H"

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

int main(int argc, char *argv[])
{
#   include "setRootCase.H"
#   include "createTime.H"
#   include "createMesh.H"
#   include "readTransportProperties.H" //added from channelFoam
#   include "createFields.H"
#   include "initContinuityErrs.H"
#   include "createGradP.H" //added from channelFoam

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

    Info<< "\nStarting time loop\n" << endl;

    while (runTime.loop())
    {
        Info<< "Time = " << runTime.timeName() << nl << endl;

#       include "readSIMPLEControls.H"
#       include "initConvergenceCheck.H"

        p.storePrevIter();

        // Pressure-velocity SIMPLE corrector
    
    turbulence->correct();//moved here

//solve the U-equation

        tmp<fvVectorMatrix> UEqn
        (
            fvm::div(phi, U)
          + turbulence->divDevReff(U)
          ==
            flowDirection*gradP
        );
    
        UEqn().relax();
    
        eqnResidual = solve
        (
            UEqn() == -fvc::grad(p)
        ).initialResidual();
    
        maxResidual = max(eqnResidual, maxResidual);

//end solving the U-equation
//solve the p-equation with SIMPLE Algorithm
        p.boundaryField().updateCoeffs();

        volScalarField rUA = 1.0/UEqn().A();//added
        U = rUA*UEqn().H();
        UEqn.clear();
        phi = fvc::interpolate(U) & mesh.Sf();
        adjustPhi(phi, U, p);

        // Non-orthogonal pressure corrector loop
        for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
        {
            fvScalarMatrix pEqn
            (
                fvm::laplacian(rUA, p) == fvc::div(phi)
            );

            pEqn.setReference(pRefCell, pRefValue);

            // Retain the residual from the first iteration
            if (nonOrth == 0)
            {
                eqnResidual = pEqn.solve().initialResidual();
                maxResidual = max(eqnResidual, maxResidual);
            }
            else
            {
                pEqn.solve();
            }

            if (nonOrth == nNonOrthCorr)
            {
                phi -= pEqn.flux();
            }
           }

    #   include "continuityErrs.H"

        // Explicitly relax pressure for momentum corrector
        p.relax();

        // Momentum corrector
        U -= rUA*fvc::grad(p);
        U.correctBoundaryConditions();

//end solve the p-equation with SIMPLE Algorithm

    // Correct driving force for a constant mass flow rate

        // Extract the velocity in the flow direction
        dimensionedScalar magUbarStar =
            (flowDirection & U)().weightedAverage(mesh.V());

        // Calculate the pressure gradient increment needed to
        // adjust the average flow-rate to the correct value
        dimensionedScalar gragPplus =
            (magUbar - magUbarStar)/rUA.weightedAverage(mesh.V());

        U += flowDirection*rUA*gragPplus;

        gradP += gragPplus;

        //- Solve the turbulence equations and correct the turbulence viscosity after U has been updated
        //turbulence->correct();

        Info<< "Uncorrected Ubar = " << magUbarStar.value() << tab
            << "pressure gradient = " << gradP.value() << endl;

        runTime.write();

        #include "writeGradP.H"    //added from channelFoam

        Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
            << "  ClockTime = " << runTime.elapsedClockTime() << " s"
            << nl << endl;

#       include "convergenceCheck.H"
    }

    Info<< "End\n" << endl;

    return 0;
}


// ************************************************************************* //
Thanks for sharing your code

I d like to simulate a cyclic flow inside a ribbed Channel and i 'd like to know, if i should modify my solver to get the cyclic behavior. I thought, that I have just to use the cyclic BC in 0 in the case folder to simulate a cyclic flow. Are U editing the code to solve a convergence problem? I don't really understand the added line code (colored in red). Could you please briefly explain the meaning of the equations Or could U post a link, where I can read more about what U did Thank you

For the other Foamers, please feel free to interact, if you could help
Mirage is offline   Reply With Quote

Old   December 8, 2016, 11:39
Default
  #15
New Member
 
Join Date: Apr 2012
Posts: 8
Rep Power: 14
tom ato is on a distinguished road
Dear Mirage,

I'm sorry not to have answered you sooner, but my mail-adress changed and I got your answer just yesterday, again it seems that an answer in this thread is coming too late.

First of all, you have to be aware, that the entries in this post are related to OpenFOAM Versions 1.7 or lower, so with your current version you might not face the same problem. But I will try to share what is left on my mind from that time and how I remember the problem. The code posted above was about to solve the following problem during the solution of a cyclic channel:

A cyclic channel has the same velocity profile over all of its length. Anyway, the channel of infinite length has also a certain pressure drop which is constant depending on viscosity and the curvature of the wall (indeed, the pressure drop is the quantitiy driving the flow through the channel). Since you discretize the channel of infinite length with an equivalent channel of finite length and applying periodic boundary conditions, you will get different values for your pressure on the outlet than on the inlet caused by the pressure drop, the difference will be the pressure drop integrated over the length of your channel.

As I remember, what the solver did at that time by using periodic boundary conditions, was to take ALL(!) quantities from the outlet and prescribe it on the inlet and repeat the solution process until convergence (this is of course just a simplified way to describe the solution process to give you a short overview over the problem). So the pressure field in the iteration step n+1 at the inlet what the pressure field from the outlet at iteration n.

So with every single iteration step, the starting pressure level was decreased by the calculated pressure drop and after a certain number of steps the flow felt "asleep" and nothing happened anymore because pressure and driving pressure drop were zero. The code above fixed this problem by adding the pressure drop of the channel at the outlet before being described on the inlet of the next iteration step (at least this is was I remember, I didn't take the time to read the code again. Let me know, if I'm wrong here).

To your rather technical questions: I implemented this solver in my own openFoam version, but I cannot tell you, if or how this is handled in newer versions of openFoam. In the version above, you had to set periodic/cyclic boundary conditions as you described it and then you had a solution which was real fine.

About the red code lines: 1. the pressure gradient is implemented as the source term in the momentum predictor on the right hand side of the equation system (see the dissertation of Prof. Jasak or something like this for information about implicit pressure correction solvers...), the terms of the left hand side are convection and diffusion-terms of ico Navier-Stokes equations.

2. In the second red snippet the pressure is increased to enforce a constant mass flow (as mentioned in the comment on top). If you need details, let me know or refer to the userGuide, it's always worth trying to understand the code.

I hope I could help you after all this time, if not simply ignore it.

Kind regards,
Tom
tom ato 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
[Commercial meshers] Cyclic BCs in PointwiseOpenFOAM export cnsidero OpenFOAM Meshing & Mesh Conversion 18 July 30, 2013 09:36
Problems with Cyclic & init. BCs for turbulent (k-eps) pipe flow florian_krause OpenFOAM 3 December 1, 2012 04:11
Pressure instability with rhoSimpleFoam daniel_mills OpenFOAM Running, Solving & CFD 44 February 17, 2011 17:08
[blockMesh] Cyclic BC's: Possible face ordering problem? (Channel flow) sega OpenFOAM Meshing & Mesh Conversion 3 September 28, 2010 12:46
Recommended setup for cyclic turbomachinery computations hani OpenFOAM Running, Solving & CFD 5 January 25, 2006 03:11


All times are GMT -4. The time now is 14:27.