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

How to specify p in the flux required subdictionary

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

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 6, 2006, 17:49
Default fvschemes Hi I am getting t
  #1
New Member
 
Amit Shah
Join Date: Mar 2009
Posts: 5
Rep Power: 17
amitshah is on a distinguished road
fvschemes
Hi
I am getting the following error. Can anyone tell me what I am doing wrong.
Thanks


--> FOAM FATAL ERROR : flux requested but p not specified in the fluxRequired sub-dictionary of fvSchemes.



Here is the fvSchemes file

fvSchemes

ddtSchemes
{
default Euler;
}

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

divSchemes
{
default none;
div(phi,rho) Gauss limitedLinear 1;
div(phiU,p) Gauss linear;
div(phi,U) Gauss limitedLinearV 1;
div(phi,k) Gauss limitedLinear 1;
div(phi,epsilon) Gauss limitedLinear 1;
div(phi,R) Gauss upwind;
div(R) Gauss linear;
div(phi,nuTilda) Gauss upwind;
div((muEff*dev2(grad(U).T()))) Gauss linear;
div(phi,Yi) Gauss upwind;
}

laplacianSchemes
{
default Gauss linear corrected;;
laplacian(muEff,U) Gauss linear corrected;
laplacian(1|A(U),p) Gauss linear corrected;
laplacian(DkEff,k) Gauss linear corrected;
laplacian(DepsilonEff,epsilon) Gauss linear corrected;
laplacian(DREff,R) Gauss linear corrected;
laplacian(DnuTildaEff,nuTilda) Gauss linear corrected;
laplacian(diff,Yi) Gauss linear corrected;
laplacian(alphaEff,O2) Gauss linear corrected;
laplacian(alphaEff,C6H6) Gauss linear corrected;
}

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

snGradSchemes
{
default corrected;
}

fluxRequired
{
p;
}
amitshah is offline   Reply With Quote

Old   July 7, 2006, 00:14
Default That would be the following bi
  #2
Senior Member
 
Hrvoje Jasak
Join Date: Mar 2009
Location: London, England
Posts: 1,904
Rep Power: 33
hjasak will become famous soon enough
That would be the following bit:

fluxRequired
{
p;
}

I'm not sure what the problem is: if you are running this case, it should work.

Hmm,

Hrv
__________________
Hrvoje Jasak
Providing commercial FOAM/OpenFOAM and CFD Consulting: http://wikki.co.uk
hjasak is offline   Reply With Quote

Old   July 23, 2008, 13:32
Default As there is only one thread on
  #3
New Member
 
Fluid Path
Join Date: Mar 2009
Posts: 1
Rep Power: 0
fluid_path is on a distinguished road
As there is only one thread on this subject I thought I would chip in for thread "completeness". I had this message (full error messages below) and eventually discovered that it occurred because I'd accidently introduced an extra "}" in my fvSchemes file. Once removed the message disappeared and it ran fine. OF1.4.1.

laplacianSchemes
{
default none;
/*etc*/
/*etc*/
laplacian(DnuTildaEff,nuTilda) Gauss linear corrected;
}

} /*<---Opps!*/





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


--> FOAM FATAL ERROR : flux requested but p not specified in the fluxRequired sub-dictionary of fvSchemes.#0 Foam::error::printStack(Foam:stream&) in "/caesw1/OpenFOAM/OpenFOAM-1.4.1/lib/linux64GccSPOpt/libOpenFOAM.so"
#1 Foam::error::abort() in "/caesw1/OpenFOAM/OpenFOAM-1.4.1/lib/linux64GccSPOpt/libOpenFOAM.so"
#2 Foam::fvMatrix<float>::flux() const in "/caesw1/OpenFOAM/OpenFOAM-1.4.1/applications/bin/linux64GccSPOpt/simpleFoam"
#3 main in "/caesw1/OpenFOAM/OpenFOAM-1.4.1/applications/bin/linux64GccSPOpt/simpleFoam"
#4 __libc_start_main in "/lib64/tls/libc.so.6"
#5 Foam::regIOobject::readIfModified() in "/caesw1/OpenFOAM/OpenFOAM-1.4.1/applications/bin/linux64GccSPOpt/simpleFoam"


From function fvMatrix<type>::flux()
in file /home/dm2/henry/OpenFOAM/OpenFOAM-1.4.1/src/finiteVolume/lnInclude/fvMatrix.C at line 841.

FOAM aborting



------------------------------------------------------
fluid_path is offline   Reply With Quote

Old   March 22, 2014, 01:29
Default
  #4
Member
 
Jubayer
Join Date: Oct 2009
Location: The University of Western Ontario, London, Ontario
Posts: 42
Blog Entries: 1
Rep Power: 16
cm_jubayer is on a distinguished road
Sometime these little things help so much.....
__________________
Jubayer

-------------------------------------------------
www.windresearch.net
cm_jubayer is offline   Reply With Quote

Old   February 15, 2016, 01:34
Default
  #5
New Member
 
Ved Merchant
Join Date: Feb 2016
Posts: 2
Rep Power: 0
Ved Merchant is on a distinguished road
I checked my fvschemes file again. There are no errors in the file and I still have this problem with the cylinder case for reactingparcelfilmfoam solver.
Any idea what is going wrong here?

Error:
--> FOAM FATAL ERROR:
flux requested but deltaf not specified in the fluxRequired sub-dictionary of fvSchemes.

From function fvMatrix<Type>::flux()
in file /root/OpenFOAM/OpenFOAM-2.4.0/src/finiteVolume/lnInclude/fvMatrix.C at line 887.

FOAM aborting

I have declared deltaf in my fvschemes file under fluxRequired section.



Last edited by Ved Merchant; February 15, 2016 at 04:03. Reason: Solved: Was using different version's tutorial case.
Ved Merchant is offline   Reply With Quote

Reply

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
ratio of total heat flux and radiative heat flux S.Karthikeyan FLUENT 2 July 1, 2008 04:48
flux required keyword in fvSchemes srinath OpenFOAM Running, Solving & CFD 1 June 19, 2008 12:44
Help required! Adi FLUENT 1 May 20, 2008 00:58
What does the term bHbyAblendb mean in the PISO subdictionary shaun OpenFOAM Running, Solving & CFD 0 October 20, 2007 03:29
help required rajesh Siemens 1 February 18, 2005 04:15


All times are GMT -4. The time now is 11:46.