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

No residual control data found

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 19, 2020, 01:04
Default No residual control data found
  #1
New Member
 
CH VINOD KUMAR REDDY
Join Date: Oct 2020
Posts: 16
Rep Power: 5
vinod956 is on a distinguished road
Hi friends,
I am very new to Openfoam. I copied a tutorial from combustion XiFoam then modified its geometry as per my project. After that I had run blockMesh. It was successful and polymesh was created. Then tried to run XiFoam solver on it and ended up with the error that no residual control data found. This is how it is shown
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : _b45f8f6f58-20200629 OPENFOAM=2006
Arch : "LSB;label=32;scalar=64"
Exec : XiFoam
Date : Nov 19 2020
Time : 11:21:17
Host : LAPTOP-PE3G8S0K
PID : 434
I/O : uncollated
Case : /home/chitti/OpenFOAM_files/sim3b
nProcs : 1
trapFpe: Floating point exception trapping enabled (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster (fileModificationSkew 5, maxFileModificationPolls 20)
allowSystemOperations : Allowing user-supplied system call operations

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

Create mesh for time = 0


PIMPLE: no residual control data found. Calculations will employ 2 corrector loops

Reading combustion properties

Found ignition cells:

14
(
0
1
2
40
41
42
80
81
82
120
121
160
161
200
)


Ignition on
Reading thermophysical properties

Selecting thermodynamics package
{
type heheuPsiThermo;
mixture homogeneousMixture;
transport const;
thermo janaf;
equationOfState perfectGas;
specie specie;
energy absoluteEnthalpy;
}

min(b) = 1

Reading field U

Reading/calculating face flux field phi

Creating turbulence model

Selecting turbulence model type RAS
Selecting RAS turbulence model LaunderSharmaKE
RAS
{
RASModel LaunderSharmaKE;
turbulence on;
printCoeffs on;
Cmu 0.09;
C1 1.44;
C2 1.92;
C3 0;
sigmak 1;
sigmaEps 1.3;
}

Creating field Xi

Creating the unstrained laminar flame speed

Selecting laminar flame speed correlation Gulders
Reading strained laminar flame speed field Su

Calculating turbulent flame speed field St

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

Courant Number mean: 0 max: 0
Time = 5e-06

diagonal: Solving for rho, Initial residual = 0, Final residual = 0, No Iterations 0
PIMPLE: iteration 1
DILUPBiCGStab: Solving for Uy, Initial residual = 0.999996, Final residual = 0.000344645, No Iterations 1
Max St-Courant Number = 0.00432165
Igniting cell 0 state : 1 1 0.434 1e-15
Igniting cell 1 state : 1 1 0.434 1e-15
Igniting cell 2 state : 1 1 0.434 1e-15
Igniting cell 40 state : 1 1 0.434 1e-15
Igniting cell 41 state : 1 1 0.434 1e-15
Igniting cell 42 state : 1 1 0.434 1e-15
Igniting cell 80 state : 1 1 0.434 1e-15
Igniting cell 81 state : 1 1 0.434 1e-15
Igniting cell 82 state : 1 1 0.434 1e-15
Igniting cell 120 state : 1 1 0.434 1e-15
Igniting cell 121 state : 1 1 0.434 1e-15
Igniting cell 160 state : 1 1 0.434 4.24516e-13
Igniting cell 161 state : 1 1 0.434 1e-15
Igniting cell 200 state : 1 1 0.434 4.24516e-13
DILUPBiCGStab: Solving for b, Initial residual = 1, Final residual = 0.000382049, No Iterations 1
min(b) = 0.985393
I am also pasting my fvsolution file here
solvers
{
"(p|rho)"
{
solver PCG;
preconditioner DIC;
tolerance 1e-06;
relTol 0.1;
}

"(p|rho)Final"
{
$p;
tolerance 1e-06;
relTol 0;
}

"(U|b|Su|Xi|ha|hau|k|epsilon)"
{
solver PBiCGStab;
preconditioner DILU;
tolerance 1e-05;
relTol 0.1;
}

"(U|b|Su|Xi|ha|hau|k|epsilon)Final"
{
solver PBiCGStab;
preconditioner DILU;
tolerance 1e-05;
relTol 0;
}
}

PIMPLE
{
nOuterCorrectors 2;
nCorrectors 1;
nNonOrthogonalCorrectors 0;
Can someone please help me in finding the error
vinod956 is offline   Reply With Quote

Old   November 19, 2020, 02:23
Default
  #2
Senior Member
 
Troy Snyder
Join Date: Jul 2009
Location: Akron, OH
Posts: 219
Rep Power: 18
tas38 is on a distinguished road
You are missing a residual control block from within the PIMPLE block. You need something like the following if you plan to set "nOuterCorrectors" to a large value


Code:
PIMPLE
{
    nOuterCorrectors    50;    
    nCorrectors       2;
    nNonOrthogonalCorrectors 0;


    residualControl
    {
        U
        {
                tolerance  1e-6;
                relTol      0;
        }
        p
        {
                tolerance  1e-6;
                relTol      0;
        }
    }
    relaxationFactors
    {
        fields
        {
              p        0.3;
              pFinal   1;
        }
        equations
        {
              "U|k|epsilon"          0.3;
              "(U|k|epsilon)Final"   1;
        }
    
    }


} // END PIMPLE
tas38 is offline   Reply With Quote

Old   November 19, 2020, 02:43
Default
  #3
New Member
 
CH VINOD KUMAR REDDY
Join Date: Oct 2020
Posts: 16
Rep Power: 5
vinod956 is on a distinguished road
Quote:
Originally Posted by tas38 View Post
You are missing a residual control block from within the PIMPLE block. You need something like the following if you plan to set "nOuterCorrectors" to a large value


Code:
PIMPLE
{
    nOuterCorrectors    50;    
    nCorrectors       2;
    nNonOrthogonalCorrectors 0;


    residualControl
    {
        U
        {
                tolerance  1e-6;
                relTol      0;
        }
        p
        {
                tolerance  1e-6;
                relTol      0;
        }
    }
    relaxationFactors
    {
        fields
        {
              p        0.3;
              pFinal   1;
        }
        equations
        {
              "U|k|epsilon"          0.3;
              "(U|k|epsilon)Final"   1;
        }
    
    }


} // END PIMPLE
Thank you for your reply. I will try
vinod956 is offline   Reply With Quote

Old   November 19, 2020, 04:01
Default
  #4
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,066
Rep Power: 26
Yann will become famous soon enough
Hello,

This message is not an error:

Code:
PIMPLE: no residual control data found. Calculations will employ 2 corrector loops

It is just here to tell you there is no residual control defined, hence the solver will just run for 2 loops no matter what is the residual.

AFAIK this is not a problem. If the solver crashes this is certainly not because you did not define the residual controls. The problem is somewhere else.

Regards,
Yann
Yann is online now   Reply With Quote

Old   November 19, 2020, 07:57
Default
  #5
New Member
 
CH VINOD KUMAR REDDY
Join Date: Oct 2020
Posts: 16
Rep Power: 5
vinod956 is on a distinguished road
Quote:
Originally Posted by Yann View Post
Hello,

This message is not an error:

Code:
PIMPLE: no residual control data found. Calculations will employ 2 corrector loops

It is just here to tell you there is no residual control defined, hence the solver will just run for 2 loops no matter what is the residual.

AFAIK this is not a problem. If the solver crashes this is certainly not because you did not define the residual controls. The problem is somewhere else.

Regards,
Yann
Thanks for your reply
Can u please figure out where the problem is?
vinod956 is offline   Reply With Quote

Old   November 19, 2020, 08:31
Default
  #6
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,066
Rep Power: 26
Yann will become famous soon enough
I cannot really help, I have never used XiFoam and there is no error displayed in the log on your first post.


Is there anything else written in your terminal when you run the solver?


Yann
Yann is online now   Reply With Quote

Old   November 19, 2020, 20:19
Default
  #7
New Member
 
CH VINOD KUMAR REDDY
Join Date: Oct 2020
Posts: 16
Rep Power: 5
vinod956 is on a distinguished road
Quote:
Originally Posted by Yann View Post
I cannot really help, I have never used XiFoam and there is no error displayed in the log on your first post.


Is there anything else written in your terminal when you run the solver?


Yann
The problem is iterations are not running.
Do you know how to run iterations.
vinod956 is offline   Reply With Quote

Old   November 20, 2020, 03:13
Default
  #8
Senior Member
 
Yann
Join Date: Apr 2012
Location: France
Posts: 1,066
Rep Power: 26
Yann will become famous soon enough
Does the solver just hang forever?

Can you post a full log of your run?


I have no experience with XiFoam so if the solver is just hanging I am not sure I can help you. Maybe XiFoam users can help.



Regards,
Yann
Yann is online now   Reply With Quote

Old   November 20, 2020, 22:08
Default
  #9
New Member
 
CH VINOD KUMAR REDDY
Join Date: Oct 2020
Posts: 16
Rep Power: 5
vinod956 is on a distinguished road
Quote:
Originally Posted by Yann View Post
Does the solver just hang forever?

Can you post a full log of your run?


I have no experience with XiFoam so if the solver is just hanging I am not sure I can help you. Maybe XiFoam users can help.



Regards,
Yann

chitti@LAPTOP-PE3G8S0K:~/OpenFOAM_files/sim3b$ XiFoam
/*---------------------------------------------------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
Build : _b45f8f6f58-20200629 OPENFOAM=2006
Arch : "LSB;label=32;scalar=64"
Exec : XiFoam
Date : Nov 21 2020
Time : 08:33:11
Host : LAPTOP-PE3G8S0K
PID : 473
I/O : uncollated
Case : /home/chitti/OpenFOAM_files/sim3b
nProcs : 1
trapFpe: Floating point exception trapping enabled (FOAM_SIGFPE).
fileModificationChecking : Monitoring run-time modified files using timeStampMaster (fileModificationSkew 5, maxFileModificationPolls 20)
allowSystemOperations : Allowing user-supplied system call operations

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

Create mesh for time = 0


PIMPLE: no residual control data found. Calculations will employ 2 corrector loops

Reading combustion properties

Found ignition cells:

14
(
0
1
2
40
41
42
80
81
82
120
121
160
161
200
)


Ignition on
Reading thermophysical properties

Selecting thermodynamics package
{
type heheuPsiThermo;
mixture homogeneousMixture;
transport const;
thermo janaf;
equationOfState perfectGas;
specie specie;
energy absoluteEnthalpy;
}

min(b) = 1

Reading field U

Reading/calculating face flux field phi

Creating turbulence model

Selecting turbulence model type RAS
Selecting RAS turbulence model LaunderSharmaKE
RAS
{
RASModel LaunderSharmaKE;
turbulence on;
printCoeffs on;
Cmu 0.09;
C1 1.44;
C2 1.92;
C3 0;
sigmak 1;
sigmaEps 1.3;
}

Creating field Xi

Creating the unstrained laminar flame speed

Selecting laminar flame speed correlation Gulders
Reading strained laminar flame speed field Su

Calculating turbulent flame speed field St

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

Courant Number mean: 0 max: 0
Time = 5e-06

diagonal: Solving for rho, Initial residual = 0, Final residual = 0, No Iterations 0
PIMPLE: iteration 1
DILUPBiCGStab: Solving for Uy, Initial residual = 0.999996, Final residual = 0.000344645, No Iterations 1
Max St-Courant Number = 0.00432165
Igniting cell 0 state : 1 1 0.434 1e-15
Igniting cell 1 state : 1 1 0.434 1e-15
Igniting cell 2 state : 1 1 0.434 1e-15
Igniting cell 40 state : 1 1 0.434 1e-15
Igniting cell 41 state : 1 1 0.434 1e-15
Igniting cell 42 state : 1 1 0.434 1e-15
Igniting cell 80 state : 1 1 0.434 1e-15
Igniting cell 81 state : 1 1 0.434 1e-15
Igniting cell 82 state : 1 1 0.434 1e-15
Igniting cell 120 state : 1 1 0.434 1e-15
Igniting cell 121 state : 1 1 0.434 1e-15
Igniting cell 160 state : 1 1 0.434 4.24516e-13
Igniting cell 161 state : 1 1 0.434 1e-15
Igniting cell 200 state : 1 1 0.434 4.24516e-13
DILUPBiCGStab: Solving for b, Initial residual = 1, Final residual = 0.000382049, No Iterations 1
min(b) = 0.985393
chitti@LAPTOP-PE3G8S0K:~/OpenFOAM_files/sim3b$
This is the full log of my run. it is not hanging.
vinod956 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
chtMultiRegionSimpleFoam: maximum number of iterations excedeed. Nkl OpenFOAM Running, Solving & CFD 19 October 10, 2019 02:42
Cannot run the code properly: very large time step continuity error crst15 OpenFOAM Running, Solving & CFD 9 December 14, 2014 18:17
Micro Scale Pore, icoFoam gooya_kabir OpenFOAM Running, Solving & CFD 2 November 2, 2013 13:58
pisoFoam with k-epsilon turb blows up - Some questions Heroic OpenFOAM Running, Solving & CFD 26 December 17, 2012 03:34
Error while running rhoPisoFoam.. nileshjrane OpenFOAM Running, Solving & CFD 8 August 26, 2010 12:50


All times are GMT -4. The time now is 10:55.