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

Modify the previous case of OpenFOAM

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 28, 2024, 22:43
Default Modify the previous case of OpenFOAM
  #1
New Member
 
infrared's Avatar
 
Rohmawati Iis
Join Date: Apr 2014
Posts: 13
Rep Power: 12
infrared is on a distinguished road
Hello everyone,

I am a newcomer to using OpenFOAM. I tried to run an impinging jet simulation and modified a previous case. I have the 'constant' folder, 'system' folder, '.foam' file, and a results folder named '533' containing the iteration data. As I understand, we should use the '0' folder instead of copying the previous case data. I tried to modify the necessary files in the '533' folder, but it didn't work well. It works when I run 'blockMesh', but I cannot run the solver (simpleFoam/pisoFoam/icoFoam).

Is there anything wrong? Please give me suggestions. I appreciate your kindness.

Thank you!
infrared is offline   Reply With Quote

Old   May 29, 2024, 03:17
Default
  #2
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,118
Rep Power: 26
Yann will become famous soon enough
What are you modifying between the old and new case?
Yann is offline   Reply With Quote

Old   May 29, 2024, 03:20
Default
  #3
New Member
 
infrared's Avatar
 
Rohmawati Iis
Join Date: Apr 2014
Posts: 13
Rep Power: 12
infrared is on a distinguished road
I want to modify the mesh to a coarser one. The old case is a non-reacting jet, but in the new one, I would like to perform the reacting/combustion process as well.
infrared is offline   Reply With Quote

Old   May 29, 2024, 07:38
Default
  #4
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,118
Rep Power: 26
Yann will become famous soon enough
Alright, you cannot just copy the result folder because its content won't match your new mesh.

you should instead use the mapFields utility to map the results of your first case on your new mesh.

Cheers,
Yann
Yann is offline   Reply With Quote

Old   June 9, 2024, 22:40
Default
  #5
New Member
 
infrared's Avatar
 
Rohmawati Iis
Join Date: Apr 2014
Posts: 13
Rep Power: 12
infrared is on a distinguished road
Quote:
Originally Posted by Yann View Post
Alright, you cannot just copy the result folder because its content won't match your new mesh.

you should instead use the mapFields utility to map the results of your first case on your new mesh.

Cheers,
Yann
Hello Yann, thank you for your response.

I did it by using the '0' directory instead of the '533' result. Now, I am going to change the previous case from a non-reacting condition to a reacting/combustion condition. I tried to modify it as per the attachments, but it didn't work well. Could you help me fix it?

You can view the attachments here
https://drive.google.com/drive/folde...gU?usp=sharing

Thank you for your kindness.
infrared is offline   Reply With Quote

Old   June 10, 2024, 07:42
Default
  #6
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,118
Rep Power: 26
Yann will become famous soon enough
Hello,

Could you elaborate? What did you do and what is not working?
Yann is offline   Reply With Quote

Old   June 10, 2024, 23:16
Default
  #7
New Member
 
infrared's Avatar
 
Rohmawati Iis
Join Date: Apr 2014
Posts: 13
Rep Power: 12
infrared is on a distinguished road
Quote:
Originally Posted by Yann View Post
Hello,

Could you elaborate? What did you do and what is not working?
It appears the message when I wrote the command in the terminal as "reactingFoam", the message is

--> FOAM FATAL IO ERROR: (openfoam-2312 patch=240220)
Entry 'CHEMKINFile' not found in dictionary "/home/ishrein/OpenFOAM/ishrein-v2312/run/combCoarse/constant/thermophysicalProperties"


file: constant/thermophysicalProperties at line 20 to 118.

From bool Foam::dictionary::readEntry(const Foam::word&, T&, Foam::keyType:ption, Foam::IOobjectOption::readOption) const [with T = Foam::fileName]
in file ./src/OpenFOAM/lnInclude/dictionaryTemplates.C at line 327.

Could you help me to fix it? Thank you for your kindness.
infrared is offline   Reply With Quote

Old   June 11, 2024, 03:28
Default
  #8
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,118
Rep Power: 26
Yann will become famous soon enough
I'm not very familiar with reaction solvers, but I think you get this error because your CHEMKINFile parameter is misplaced in thermophysicalProperties.

Try something like this (basically getting CHEMKINFile and CHEMKINThermoFile out of the mixture dictionary) and see if it solves the error:

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

thermoType
{
    type            hePsiThermo;
    mixture         reactingMixture;
    transport       sutherland;
    thermo          janaf;
    equationOfState perfectGas;
    specie          specie;
    energy          sensibleEnthalpy;
}

mixture
{
    specie
    {
        nMoles          1;
        molWeight       28.97; // Adjust based on your mixture
    }
    thermodynamics
    {
        Tlow            200;
        Thigh           5000;
        Tcommon         1000;
        Hf              0;
    }
    transport
    {
        As              1.67212e-6;
        Ts              170.672;
    }
    
}

CHEMKINFile         "chem.inp";
CHEMKINThermoFile   "therm.dat";

[...]
Yann is offline   Reply With Quote

Old   June 11, 2024, 04:10
Default
  #9
New Member
 
infrared's Avatar
 
Rohmawati Iis
Join Date: Apr 2014
Posts: 13
Rep Power: 12
infrared is on a distinguished road
Quote:
Originally Posted by Yann View Post
I'm not very familiar with reaction solvers, but I think you get this error because your CHEMKINFile parameter is misplaced in thermophysicalProperties.

Try something like this (basically getting CHEMKINFile and CHEMKINThermoFile out of the mixture dictionary) and see if it solves the error:

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

thermoType
{
    type            hePsiThermo;
    mixture         reactingMixture;
    transport       sutherland;
    thermo          janaf;
    equationOfState perfectGas;
    specie          specie;
    energy          sensibleEnthalpy;
}

mixture
{
    specie
    {
        nMoles          1;
        molWeight       28.97; // Adjust based on your mixture
    }
    thermodynamics
    {
        Tlow            200;
        Thigh           5000;
        Tcommon         1000;
        Hf              0;
    }
    transport
    {
        As              1.67212e-6;
        Ts              170.672;
    }
    
}

CHEMKINFile         "chem.inp";
CHEMKINThermoFile   "therm.dat";

[...]

Thank you for your response. The CHEMKINFile and CHEMKINThermoFile parameters are already outside of the mixture dictionary. I don't know why I always encounter error messages like the one listed above.
infrared is offline   Reply With Quote

Old   June 11, 2024, 04:21
Default
  #10
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,118
Rep Power: 26
Yann will become famous soon enough
As long as you get this error:

Code:
--> FOAM FATAL IO ERROR: (openfoam-2312 patch=240220)
Entry 'CHEMKINFile' not found in dictionary "/home/ishrein/OpenFOAM/ishrein-v2312/run/combCoarse/constant/thermophysicalProperties"
It means something is wrong and the solver cannot find the entry where it is supposed to be. So it's either misplaced, or there is a typo something in the file.

What is your current thermophysicalProperties file?
Yann is offline   Reply With Quote

Old   June 11, 2024, 05:07
Default
  #11
New Member
 
infrared's Avatar
 
Rohmawati Iis
Join Date: Apr 2014
Posts: 13
Rep Power: 12
infrared is on a distinguished road
Quote:
Originally Posted by Yann View Post
As long as you get this error:

Code:
--> FOAM FATAL IO ERROR: (openfoam-2312 patch=240220)
Entry 'CHEMKINFile' not found in dictionary "/home/ishrein/OpenFOAM/ishrein-v2312/run/combCoarse/constant/thermophysicalProperties"
It means something is wrong and the solver cannot find the entry where it is supposed to be. So it's either misplaced, or there is a typo something in the file.

What is your current thermophysicalProperties file?
Here is the thermophysicalProperties file:

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

thermoType
{
type hePsiThermo;
mixture reactingMixture;
transport sutherland;
thermo janaf;
equationOfState perfectGas;
specie specie;
energy sensibleEnthalpy;
}

mixture
{
specie
{
nMoles 1;
molWeight 28.97;
}
thermodynamics
{
Tlow 200;
Thigh 5000;
Tcommon 1000;
Hf 0;
}
transport
{
As 1.67212e-6;
Ts 170.672;
}

CHEMKINFile "chem.inp";
CHEMKINThermoFile "therm.dat";
}

species
(
O2
{
molWeight 32.0;
thermodynamics
{
Tlow 200;
Thigh 5000;
Tcommon 1000;
Hf 0;
}
transport
{
As 1.67212e-6;
Ts 170.672;
}
}
H2
{
molWeight 2.016;
thermodynamics
{
Tlow 200;
Thigh 5000;
Tcommon 1000;
Hf 0;
}
transport
{
As 1.67212e-6;
Ts 170.672;
}
}
H2O
{
molWeight 18.01528;
thermodynamics
{
Tlow 200;
Thigh 5000;
Tcommon 1000;
Hf -241.826; // Standard enthalpy of formation in kJ/mol
}
transport
{
As 1.67212e-6;
Ts 170.672;
}
}
N2
{
molWeight 28.0134;
thermodynamics
{
Tlow 200;
Thigh 5000;
Tcommon 1000;
Hf 0;
}
transport
{
As 1.67212e-6;
Ts 170.672;
}
}
);

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

What do you think about that?
infrared is offline   Reply With Quote

Old   June 11, 2024, 05:12
Default
  #12
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,118
Rep Power: 26
Yann will become famous soon enough
This is what I was saying in my previous post. Your CHEMKINFile is inside the mixture dictionary:

Code:
mixture
{
	specie
	{
		nMoles 1;
		molWeight 28.97;
	}
	thermodynamics
	{
		Tlow 200;
		Thigh 5000;
		Tcommon 1000;
		Hf 0;
	}
	transport
	{
		As 1.67212e-6;
		Ts 170.672;
	}
	
	CHEMKINFile "chem.inp";
	CHEMKINThermoFile "therm.dat";
}
Try to get it out:

Code:
mixture
{
	specie
	{
		nMoles 1;
		molWeight 28.97;
	}
	thermodynamics
	{
		Tlow 200;
		Thigh 5000;
		Tcommon 1000;
		Hf 0;
	}
	transport
	{
		As 1.67212e-6;
		Ts 170.672;
	}
}	

CHEMKINFile "chem.inp";
CHEMKINThermoFile "therm.dat";
Yann is offline   Reply With Quote

Old   June 11, 2024, 05:24
Default
  #13
New Member
 
infrared's Avatar
 
Rohmawati Iis
Join Date: Apr 2014
Posts: 13
Rep Power: 12
infrared is on a distinguished road
Quote:
Originally Posted by Yann View Post
This is what I was saying in my previous post. Your CHEMKINFile is inside the mixture dictionary:

Code:
mixture
{
	specie
	{
		nMoles 1;
		molWeight 28.97;
	}
	thermodynamics
	{
		Tlow 200;
		Thigh 5000;
		Tcommon 1000;
		Hf 0;
	}
	transport
	{
		As 1.67212e-6;
		Ts 170.672;
	}
	
	CHEMKINFile "chem.inp";
	CHEMKINThermoFile "therm.dat";
}
Try to get it out:

Code:
mixture
{
	specie
	{
		nMoles 1;
		molWeight 28.97;
	}
	thermodynamics
	{
		Tlow 200;
		Thigh 5000;
		Tcommon 1000;
		Hf 0;
	}
	transport
	{
		As 1.67212e-6;
		Ts 170.672;
	}
}	

CHEMKINFile "chem.inp";
CHEMKINThermoFile "therm.dat";
Sorry, the last one is modified. I tried to write the CHEMKINFile both outside and inside the mixture, but I got the same error message.
infrared is offline   Reply With Quote

Old   June 11, 2024, 05:41
Default
  #14
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,118
Rep Power: 26
Yann will become famous soon enough
Alright, I just tried myself.
It is important to carefully read the error messages.

You initial error message states:

Code:
--> FOAM FATAL IO ERROR: (openfoam-2312 patch=240220)
Entry 'CHEMKINFile' not found in dictionary "/home/ishrein/OpenFOAM/ishrein-v2312/run/combCoarse/constant/thermophysicalProperties"
If you move the CHEMKINFile and CHEMKINThermoFile out of the mixture dictionary, you should get this error:

Code:
--> FOAM FATAL IO ERROR: (openfoam-2312 patch=240220)
Entry 'CHEMKINTransportFile' not found in dictionary "/home/ishrein/OpenFOAM/ishrein-v2312/run/combCoarse/constant/thermophysicalProperties"
Which is not the same thing. Now the solver cannot find the CHEMKINTransportFile parameter, as it is indeed not defined.
Yann is offline   Reply With Quote

Old   June 18, 2024, 22:30
Default
  #15
New Member
 
infrared's Avatar
 
Rohmawati Iis
Join Date: Apr 2014
Posts: 13
Rep Power: 12
infrared is on a distinguished road
Thank you for your response,
After trying to inspect the Chemkin file problem, I found out that one of the causes is the sum of each chemical compound not being 1; it must be 1, isn't it? However, I also discovered another problem:

Create time

Create mesh for time = 0


PIMPLE: Operating solver in PISO mode

Reading thermophysical properties

Selecting thermodynamics package
{
type hePsiThermo;
mixture reactingMixture;
transport sutherland;
thermo janaf;
energy sensibleEnthalpy;
equationOfState perfectGas;
specie specie;
}

Selecting chemistryReader foamChemistryReader
Reading field U

Reading/calculating face flux field phi

Creating turbulence model.

Selecting turbulence model type laminar
Selecting laminar stress model Stokes
Creating reaction model

Selecting combustion model laminar
Selecting chemistry solver
{
solver EulerImplicit;
method standard;
}

StandardChemistryModel: Number of species = 5 and reactions = 1
using integrated reaction rate
Creating field dpdt

Creating field kinetic energy K

No MRF models present

No finite volume options present
Courant Number mean: 0 max: 0

Starting time loop


BilgerMixtureFraction BilgerMixtureFraction1:
Courant Number mean: 0 max: 0
deltaT = 0.120482
Time = 0.120482

diagonal: Solving for rho, Initial residual = 0, Final residual = 0, No Iterations 0
PIMPLE: iteration 1
[stack trace]
=============
#1 Foam::sigFpe::sigHandler(int) in /usr/lib/openfoam/openfoam2312/platforms/linux64GccDPInt32Opt/lib/libOpenFOAM.so
#2 ? in /lib/x86_64-linux-gnu/libc.so.6
#3 Foam::divide(Foam::Field<double>&, Foam::UList<double> const&, Foam::UList<double> const&) in /usr/lib/openfoam/openfoam2312/platforms/linux64GccDPInt32Opt/lib/libOpenFOAM.so
#4 ? in /usr/lib/openfoam/openfoam2312/platforms/linux64GccDPInt32Opt/lib/libcompressibleTurbulenceModels.so
#5 ? in /usr/lib/openfoam/openfoam2312/platforms/linux64GccDPInt32Opt/lib/libcompressibleTurbulenceModels.so
#6 ? in /usr/lib/openfoam/openfoam2312/platforms/linux64GccDPInt32Opt/lib/libcompressibleTurbulenceModels.so
#7 ? in /usr/lib/openfoam/openfoam2312/platforms/linux64GccDPInt32Opt/lib/libcompressibleTurbulenceModels.so
#8 ? in /usr/lib/openfoam/openfoam2312/platforms/linux64GccDPInt32Opt/lib/libcompressibleTurbulenceModels.so
#9 ? in /usr/lib/openfoam/openfoam2312/platforms/linux64GccDPInt32Opt/bin/reactingFoam
#10 ? in /lib/x86_64-linux-gnu/libc.so.6
#11 __libc_start_main in /lib/x86_64-linux-gnu/libc.so.6
#12 ? in /usr/lib/openfoam/openfoam2312/platforms/linux64GccDPInt32Opt/bin/reactingFoam
=============
Floating point exception

Could you give me some suggestions as to why I experienced these problems?
Thank you in advance.

Best regards,
Ir
infrared is offline   Reply With Quote

Old   June 19, 2024, 03:39
Default
  #16
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,118
Rep Power: 26
Yann will become famous soon enough
Hello,

This kind of error usually happens when there is some bad math happening. Typically trying to divide by 0, which might be what's happening here.

Now the question is why is it happening?

The crash is happening when the solver is supposed to solve the velocity and the error message mentions turbulence libraries, so it's most probably related to one of these things.

Since it is crashing at the first iteration, first thing to do is to check your boundary conditions to make sure there is nothing wrong with the initialization and conditions defined.
Yann is offline   Reply With Quote

Old   June 24, 2024, 02:38
Default
  #17
New Member
 
infrared's Avatar
 
Rohmawati Iis
Join Date: Apr 2014
Posts: 13
Rep Power: 12
infrared is on a distinguished road
Hello Yann,

I tried to check the initialization and its boundary condition for days but it didn't work out well. Could you give me some suggestions about that?

Here is the initialization and its boundary condition.

1. Velocity (U)
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField uniform (0 0 0);

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

outlet
{
type zeroGradient;
}

top_wall
{
type noSlip;
}

bottom_wall
{
type noSlip;
}

}

2. Pressure
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField uniform 0;

boundaryField
{
bottom_wall
{
type zeroGradient;
}

inlet
{
type zeroGradient;
}

top_wall
{
type zeroGradient;
}

outlet
{
type fixedValue;
value uniform 0;
}
}

3. Temperature
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];

internalField uniform 300;

boundaryField
{
inlet
{
type fixedValue;
value uniform 300;
}

outlet
{
type zeroGradient;
}

top_wall
{
type zeroGradient;
}

bottom_wall
{
type zeroGradient;
}
}

4. k
*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField uniform 0.005;

boundaryField
{
bottom_wall
{
type kqRWallFunction;
value uniform 0.1;
}

top_wall
{
type kqRWallFunction;
value uniform 0.1;
}

inlet
{
type fixedValue;
value uniform 0.1;
}

outlet
{
type zeroGradient;
}
}

5. epsilon
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField uniform 0.01; // Adjust initial turbulence dissipation rate as required

boundaryField
{
bottom_wall
{
type epsilonWallFunction;
value uniform 0.1;
}

top_wall
{
type epsilonWallFunction;
value uniform 0.1;
}

inlet
{
type fixedValue;
value uniform 0.1;
}

outlet
{
type zeroGradient;
}
}

6. controlDict
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object controlDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

application reactingFoam;

startFrom startTime;

startTime 0;

stopAt endTime;

endTime 100;

deltaT 1;

writeControl timeStep;

writeInterval 1;

purgeWrite 0;

writeFormat ascii;

writePrecision 6;

writeCompression off;

timeFormat general;

timePrecision 6;

runTimeModifiable yes;

maxCo 0.5;

adjustTimeStep yes;

debugSwitches
{
default 1;
general 1;
}

7. fvSchemes
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

ddtSchemes
{
default Euler;
}

gradSchemes
{
default Gauss linear;
grad(U) cellLimited Gauss linear 1;
}

divSchemes
{
default none;
div(phi,U) Gauss linearUpwind grad(U);
div(phi,k) Gauss upwind;
div(phi,epsilon) Gauss upwind;
div(phi,R) Gauss upwind;
div(R) Gauss linear;
}

laplacianSchemes
{
default Gauss linear corrected;
}

interpolationSchemes
{
default linear;
}

snGradSchemes
{
default corrected;
}

8. fvSolution
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

U
{
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-05;
relTol 0.1;
}

"(k|epsilon|omega)"
{
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-05;
relTol 0.1;
}
}

PISO
{
nCorrectors 2;
nNonOrthogonalCorrectors 0;
}

Thank you in advance.
infrared is offline   Reply With Quote

Old   June 24, 2024, 03:41
Default
  #18
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,118
Rep Power: 26
Yann will become famous soon enough
Hello,

Try setting an absolute pressure instead of 0.

Yann
Yann 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
Sandia Flame D OpenFoam tutorial case - bad result? Brandani OpenFOAM Programming & Development 8 January 18, 2022 13:29
use latest time of a reconstructed case in another case in openfoam mb.pejvak Main CFD Forum 0 October 4, 2019 10:23
How to contribute to the community of OpenFOAM users and to the OpenFOAM technology wyldckat OpenFOAM 17 November 10, 2017 15:54
OpenFOAM v3.0+ ?? SBusch OpenFOAM 22 December 26, 2016 14:24
Superlinear speedup in OpenFOAM 13 msrinath80 OpenFOAM Running, Solving & CFD 18 March 3, 2015 05:36


All times are GMT -4. The time now is 18:53.