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

MRF case - simpleFoam quits after building mesh for time = 0

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

Like Tree2Likes
  • 1 Post By Krao
  • 1 Post By .bastian

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 25, 2019, 10:40
Post MRF case - simpleFoam quits after building mesh for time = 0
  #1
New Member
 
Join Date: Mar 2017
Posts: 25
Rep Power: 9
.bastian is on a distinguished road
Hi.

I tried to set up an MRF case to be solved with simpleFoam based on the mixerVessel2D tutorial.
When i try to run simpleFoam the process quits after creating the mesh for time = 0 without an reasonable error.



Can anyone give me a hint what i'm doing wrong?


Here is the log.simpleFoam file:
Code:
/*---------------------------------------------------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  6
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
Build  : 6-47517f2ebb1b
Exec   : simpleFoam
Date   : Nov 25 2019
Time   : 16:34:20
Host   : "892836"
PID    : 254
I/O    : uncollated
Case   : /mnt/c/Users/72/Documents/lnxWork/TSOLA
nProcs : 1
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster (fileModificationSkew 10)
allowSystemOperations : Allowing user-supplied system call operations

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time

Create mesh for time = 0


SIMPLE: No convergence criteria found

Reading field p

Reading field U

Reading/calculating face flux field phi

AMI: Creating addressing and weights between 12536 source faces and 6271 target faces
AMI: Patch source sum(weights) min/max/average = 0.0919981, 1.0503, 0.982951
AMI: Patch target sum(weights) min/max/average = 0, 1.00164, 0.983866
AMI: Creating addressing and weights between 7424 source faces and 3337 target faces
AMI: Patch source sum(weights) min/max/average = 0.999738, 1.0005, 1.00006
AMI: Patch target sum(weights) min/max/average = 0.999067, 1.00017, 0.999992
Selecting incompressible transport model Newtonian
Selecting turbulence model type RAS
Selecting RAS turbulence model kEpsilon
bounding k, min: 0 max: 0.075 average: 0
bounding epsilon, min: 0 max: 2 average: 2
RAS
{
    RASModel        kEpsilon;
    turbulence      on;
    printCoeffs     on;
    Cmu             0.09;
    C1              1.44;
    C2              1.92;
    C3              0;
    sigmak          1;
    sigmaEps        1.3;
}

Creating MRF zone list from MRFProperties
    creating MRF zone: MRF1
No finite volume options present
.bastian is offline   Reply With Quote

Old   November 25, 2019, 11:10
Default
  #2
Senior Member
 
Kmeti Rao
Join Date: May 2019
Posts: 145
Rep Power: 7
Krao is on a distinguished road
With the information provided by you, it is very difficult to add any input without seeing the case setup.
Krao is offline   Reply With Quote

Old   November 25, 2019, 12:25
Default
  #3
New Member
 
Join Date: Mar 2017
Posts: 25
Rep Power: 9
.bastian is on a distinguished road
Quote:
Originally Posted by Krao View Post
With the information provided by you, it is very difficult to add any input without seeing the case setup.
Mainly I used the tutorial "mixerVessel2D", which runs without any issues, for my setup. fvSolution, fvSchemes and controlDict are taken from it.
Below additional information to my case-setup.
Do you have any particular file in mind that might give the solution?

What surprises me the most is that the termination is done without error message.



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

application     simpleFoam;

startFrom       startTime;

startTime       0;

stopAt          endTime;

endTime         500;

deltaT          1;

writeControl    timeStep;

writeInterval   50;

purgeWrite      0;

writeFormat     ascii;

writePrecision  6;

writeCompression off;

timeFormat      general;

timePrecision   6;

runTimeModifiable true;


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

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

ddtSchemes
{
    default         steadyState;
}

gradSchemes
{
    default         Gauss linear;
}

divSchemes
{
    default         none;
    div(phi,U)      bounded Gauss limitedLinearV 1;
    div(phi,k)      bounded Gauss limitedLinear 1;
    div(phi,epsilon) bounded Gauss limitedLinear 25;
    div((nuEff*dev2(T(grad(U))))) Gauss linear;
}

laplacianSchemes
{
    default         Gauss linear corrected;
}

interpolationSchemes
{
    default         linear;
}

snGradSchemes
{
    default         corrected;
}


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

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

solvers
{
    p
    {
        solver          GAMG;
        tolerance       1e-08;
        relTol          0.05;
        smoother        GaussSeidel;
        nCellsInCoarsestLevel 20;
    }

    U
    {
        solver          smoothSolver;
        smoother        GaussSeidel;
        nSweeps         2;
        tolerance       1e-07;
        relTol          0.1;
    }

    k
    {
        solver          smoothSolver;
        smoother        GaussSeidel;
        nSweeps         2;
        tolerance       1e-07;
        relTol          0.1;
    }

    epsilon
    {
        solver          smoothSolver;
        smoother        GaussSeidel;
        nSweeps         2;
        tolerance       1e-07;
        relTol          0.1;
    }
}

SIMPLE
{
    nNonOrthogonalCorrectors 2;
  //  pRefCell        0;
  //  pRefValue       0;
}

relaxationFactors
{
    fields
    {
        p               0.3;
    }
    equations
    {
        U               0.5;
        k               0.5;
        epsilon         0.5;
    }
}


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

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

transportModel  Newtonian;

nu              [0 2 -1 0 0 0 0] 1e-05;

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

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

MRF1
{
    cellZone    rotor;
    active      yes;

    nonRotatingPatches ();

    origin    (0 0 0);
    axis      (0 0 1);
    omega     -753.98; //in rad/sec
}

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

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

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

internalField   uniform (0 0 0);

boundaryField
{
    rotorInlet
    {
        type            flowRateInletVelocity;
        massFlowRate    6.93;
        value           $internalField;
    }

    rotorOutlet
    {
        type            cyclicAMI;
        value           $internalField;
    }

    rotorWalls
    {
        type            noSlip;
    }

    statorInlet
    {
        type            cyclicAMI;
        value           $internalField;
    }
    statorOutlet
    {
        type            cyclicAMI;
        value           $internalField;
    }

    statorWalls
    {
        type            noSlip;
    }

    voluteInlet
    {
        type            cyclicAMI;
        value           $internalField;
    }
    voluteOutlet
    {
        type            pressureInletOutletVelocity;
        value           $internalField;
    }

    voluteWalls
    {
        type            noSlip;
    }

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

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

internalField   uniform 0;

boundaryField
{
    rotorInlet
    {
        type            zeroGradient;
    }

    rotorOutlet
    {
        type            cyclicAMI;
        value           $internalField;
    }

    rotorWalls
    {
        type            zeroGradient;
    }

    statorInlet
    {
        type            cyclicAMI;
        value           $internalField;
    }
    statorOutlet
    {
        type            cyclicAMI;
        value           $internalField;
    }

    statorWalls
    {
        type            zeroGradient;
    }

    voluteInlet
    {
        type            cyclicAMI;
        value           $internalField;
    }
    voluteOutlet
    {
        type            fixedValue;
        value           5e5;
    }

    voluteWalls
    {
        type            zeroGradient;
    }

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

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

internalField   uniform 0;

boundaryField
{
  rotorInlet
  {
    type            calculated;
    value           uniform 0;
  }

  rotorOutlet
  {
      type            cyclicAMI;
      value           $internalField;
  }

  rotorWalls
  {
    type            nutkWallFunction;
    value           uniform 0;
  }

  statorInlet
  {
      type            cyclicAMI;
      value           $internalField;
  }
  statorOutlet
  {
      type            cyclicAMI;
      value           $internalField;
  }

  statorWalls
  {
    type            nutkWallFunction;
    value           uniform 0;
  }

  voluteInlet
  {
      type            cyclicAMI;
      value           $internalField;
  }
  voluteOutlet
  {
      type            zeroGradient;
  }

  voluteWalls
  {
    type            nutkWallFunction;
    value           uniform 0;
  }

}
// ************************************************************************* //

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

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

internalField   uniform 0;

boundaryField
{
  rotorInlet
  {
    type            turbulentIntensityKineticEnergyInlet;
    intensity       0.05;
    value           uniform 0.075;
  }

  rotorOutlet
  {
      type            cyclicAMI;
      value           $internalField;
  }

  rotorWalls
  {
    type            kqRWallFunction;
    value           uniform 0;
  }

  statorInlet
  {
      type            cyclicAMI;
      value           $internalField;
  }
  statorOutlet
  {
      type            cyclicAMI;
      value           $internalField;
  }

  statorWalls
  {
    type            kqRWallFunction;
    value           uniform 0;
  }

  voluteInlet
  {
      type            cyclicAMI;
      value           $internalField;
  }
  voluteOutlet
  {
      type            zeroGradient;
  }

  voluteWalls
  {
    type            kqRWallFunction;
    value           uniform 0;
  }
}
// ************************************************************************* //

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

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

internalField   uniform 2;

boundaryField
{

    rotorInlet
    {
      type            fixedValue;
      value           uniform 0;
    }

    rotorOutlet
    {
        type            cyclicAMI;
        value           $internalField;
    }

    rotorWalls
    {
      type            epsilonWallFunction;
      value           uniform 0;
    }

    statorInlet
    {
        type            cyclicAMI;
        value           $internalField;
    }
    statorOutlet
    {
        type            cyclicAMI;
        value           $internalField;
    }

    statorWalls
    {
      type            epsilonWallFunction;
      value           uniform 0;
    }

    voluteInlet
    {
        type            cyclicAMI;
        value           $internalField;
    }
    voluteOutlet
    {
        type            zeroGradient;
    }

    voluteWalls
    {
      type            epsilonWallFunction;
      value           uniform 0;
    }
}
// ************************************************************************* //
.bastian is offline   Reply With Quote

Old   November 26, 2019, 02:21
Default
  #4
Senior Member
 
Kmeti Rao
Join Date: May 2019
Posts: 145
Rep Power: 7
Krao is on a distinguished road
Hi Bastian,

your setup looks ok, now I found out the problem,

Quote:
AMI: Creating addressing and weights between 12536 source faces and 6271 target faces
AMI: Patch source sum(weights) min/max/average = 0.0919981, 1.0503, 0.982951
AMI: Patch target sum(weights) min/max/average = 0, 1.00164, 0.983866
AMI: Creating addressing and weights between 7424 source faces and 3337 target faces
AMI: Patch source sum(weights) min/max/average = 0.999738, 1.0005, 1.00006
AMI: Patch target sum(weights) min/max/average = 0.999067, 1.00017, 0.999992
Selecting incompressible transport model Newtonian
As it can be seen from the bold text, the problem lies with AMI patch weight, the patch weight is zero somewhere. That means there is no matching between the stationary cell zone and rotor cell zone. I think the mesh should be investigated thoroughly.

But I am not sure why OpenFOAM is not throwing out any error. Go through the following threads, to know more about 0 weight error. One half propeller simulation with MRFSimpleFoam crashing and Periodic cyclic AMI + MRF crashing on pressure

Best wishes,

K. Rao
Krao is offline   Reply With Quote

Old   November 28, 2019, 11:16
Default
  #5
New Member
 
Join Date: Mar 2017
Posts: 25
Rep Power: 9
.bastian is on a distinguished road
Hi Krao,



Thank you for your answer.



I did a complete rework of the case including a better mesh.
Although the weighting has improved, the result remains the same as you can see in the log file.

Any idea what to check next?


Code:
/*---------------------------------------------------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  6
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
Build  : 6-47517f2ebb1b
Exec   : simpleFoam
Date   : Nov 28 2019
Time   : 17:12:12
Host   : "892836"
PID    : 316
I/O    : uncollated
Case   : /mnt/c/Users/72/Documents/lnxWork/TSOLA
nProcs : 1
sigFpe : Enabling floating point exception trapping (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster (fileModificationSkew 10)
allowSystemOperations : Allowing user-supplied system call operations

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Create time

Create mesh for time = 0


SIMPLE: No convergence criteria found

Reading field p

Reading field U

Reading/calculating face flux field phi

AMI: Creating addressing and weights between 9430 source faces and 4928 target faces
AMI: Patch source sum(weights) min/max/average = 0.999215, 1.02469, 0.999989
AMI: Patch target sum(weights) min/max/average = 0.990802, 1.00066, 1.00006
Selecting incompressible transport model Newtonian
Selecting turbulence model type RAS
Selecting RAS turbulence model kEpsilon
bounding k, min: 0 max: 0.075 average: 0
bounding epsilon, min: 0 max: 2 average: 2
RAS
{
    RASModel        kEpsilon;
    turbulence      on;
    printCoeffs     on;
    Cmu             0.09;
    C1              1.44;
    C2              1.92;
    C3              0;
    sigmak          1;
    sigmaEps        1.3;
}

Creating MRF zone list from MRFProperties
    creating MRF zone: MRF1
No finite volume options present
.bastian is offline   Reply With Quote

Old   November 29, 2019, 01:41
Default
  #6
Senior Member
 
Kmeti Rao
Join Date: May 2019
Posts: 145
Rep Power: 7
Krao is on a distinguished road
Hi Bastian,

difficult to add anything, the setup looks decent. Leave log file, before stopping does the terminal shows anything or is it also blank? If I get time on weekend I can go through your setup. If you don't want to share geometry, you can remove the geometry and important info from mesh and you can send the case to me. I can see if I could do something. Or if you think it is not a big secret then you can post it here and anyone can help you.

K. Rao
.bastian likes this.
Krao is offline   Reply With Quote

Old   January 28, 2020, 04:43
Default
  #7
New Member
 
Join Date: Mar 2017
Posts: 25
Rep Power: 9
.bastian is on a distinguished road
Hello Krao, sorry I'm late back.

It seems that the problem was due to a too big imbalance between the number of source faces to target faces.
After I adjusted the mesh again, it worked.

Nevertheless, I have switched to foam-extend. The GGI interfaces have more options and look much more stable and evolved than AMI.
.bastian is offline   Reply With Quote

Old   February 6, 2020, 03:50
Default
  #8
Senior Member
 
Kmeti Rao
Join Date: May 2019
Posts: 145
Rep Power: 7
Krao is on a distinguished road
Hi Bastian,

After receiving your feedback about foam-extend, I have though to make a comparison of results obtained using openFoam and foam-extend. I tried MRFsimpleFoam with ggi instead of AMI. I am facing problems during parallel running. My case runs very well in serial, when I decompose and run the case in parallel, my simulation stop after reading 'Reading/calculating face flux field phi'. Did you face similar problem by any chance? Which type of decomposition method are you using? It would be nice to know.

Thank you,
K. Rao
Krao is offline   Reply With Quote

Old   February 7, 2020, 16:42
Default
  #9
New Member
 
Join Date: Mar 2017
Posts: 25
Rep Power: 9
.bastian is on a distinguished road
Quote:
Originally Posted by Krao View Post
[...] Which type of decomposition method are you using? [...]
Hi Krao,

generally, in the decomposeParDict, you have to specify all interfaces (ggi/mixingPlane) as globalFaceZones.

Additionally, at least for mixing planes, you have to do the partitioning patchConstrained. This means that the interfaces are assigned to a single processor instead of getting "cutted".
Like i mentioned before, i'm not sure if its a only necessary in case of mixing planes or also affects ggi interfaces. Anyway it works for both.

See below my decomposePar dict. Just adapt the names of the interfaces to your case. The numbers after the names in the patchConstrainedCoeffs sets the number of the processor to which they will be assigned to.

Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | foam-extend: Open Source CFD                    |
|  \\    /   O peration     | Version:     4.1                                |
|   \\  /    A nd           | Web:         http://www.foam-extend.org         |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      decomposeParDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

nCores    12;

numberOfSubdomains $nCores;

method    patchConstrained;

globalFaceZones
(
    rotorOutletZone
    rotorPeriodicPSZone
    rotorPeriodicSSZone
    statorInletZone
);

patchConstrainedCoeffs
{
    method                         metis;
    numberOfSubdomains    $nCores;
    patchConstraints
    (
        (rotorOutletMP 1)
        (statorInletMP 1)
        (rotorPeriodic_PS 2)
        (rotorPeriodic_SS 2)
    );
}


metisCoeffs
{
    processorWeights
    (
        1
        1
        1
        1
        1
        1
        1
        1
        1
        1
        1
        1
    );
}
// ************************************************************************* //
.bastian
Krao likes this.

Last edited by .bastian; February 9, 2020 at 12:59.
.bastian is offline   Reply With Quote

Reply

Tags
mrf simplefoam, simplefoam

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
[OpenFOAM.org] Instructions to install OpenFOAM-2.4.x on CentOS-6.10 redbullah OpenFOAM Installation 9 September 7, 2019 17:18
[foam-extend.org] Error compiling OpenFOAM-1.6-ext Canesin OpenFOAM Installation 137 January 20, 2016 14:56
[snappyHexMesh] No layers in a small gap bobburnquist OpenFOAM Meshing & Mesh Conversion 6 August 26, 2015 09:38
[snappyHexMesh] snappyHexMesh won't work - zeros everywhere! sc298 OpenFOAM Meshing & Mesh Conversion 2 March 27, 2011 21:11
Free surface boudary conditions with SOLA-VOF Fan Main CFD Forum 10 September 9, 2006 12:24


All times are GMT -4. The time now is 04:16.