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

what this error comes from?

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   December 4, 2012, 17:17
Default what this error comes from?
  #1
Senior Member
 
immortality's Avatar
 
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 26
immortality is on a distinguished road
Create time

Create mesh for time = 0

Reading thermophysical properties

Selecting thermodynamics package ePsiThermo<pureMixture<constTransport<specieThermo <hConstThermo<perfectGas>>>>>
#0 Foam::error::printStack(Foam::Ostream&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
#1 Foam::sigFpe::sigHandler(int) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libOpenFOAM.so"
#2 in "/lib/x86_64-linux-gnu/libc.so.6"
#3 Foam::ePsiThermo<Foam::pureMixture<Foam::constTran sport<Foam::specieThermo<Foam::hConstThermo<Foam:: perfectGas> > > > >::calculate() in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#4 Foam::ePsiThermo<Foam::pureMixture<Foam::constTran sport<Foam::specieThermo<Foam::hConstThermo<Foam:: perfectGas> > > > >::ePsiThermo(Foam::fvMesh const&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#5 Foam::basicPsiThermo::addfvMeshConstructorToTable< Foam::ePsiThermo<Foam::pureMixture<Foam::constTran sport<Foam::specieThermo<Foam::hConstThermo<Foam:: perfectGas> > > > > >::New(Foam::fvMesh const&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#6 Foam::basicPsiThermo::New(Foam::fvMesh const&) in "/opt/openfoam211/platforms/linux64GccDPOpt/lib/libbasicThermophysicalModels.so"
#7
in "/opt/openfoam211/platforms/linux64GccDPOpt/bin/rhoCentralFoam"
#8 __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6"
#9
in "/opt/openfoam211/platforms/linux64GccDPOpt/bin/rhoCentralFoam"
Floating point exception
immortality is offline   Reply With Quote

Old   December 5, 2012, 02:08
Default
  #2
Senior Member
 
immortality's Avatar
 
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 26
immortality is on a distinguished road
I use a 64-bit version on a system by 2Gb Ram.could the problem arises from this point?or what?
immortality is offline   Reply With Quote

Old   December 5, 2012, 03:24
Default
  #3
Member
 
Join Date: Nov 2010
Location: Tokyo / Japan
Posts: 40
Rep Power: 15
Hanzo is on a distinguished road
I would check the source code for

Code:
ePsiThermo<Foam::pureMixture<Foam::constTran   sport<Foam::specieThermo<Foam::hConstThermo<Foam::   perfectGas> > > > >::calculate()
There could be the chance that you somehow divide by a zero value like division by zero density or similar. I once had that case.
Hanzo is offline   Reply With Quote

Old   December 5, 2012, 05:40
Default
  #4
Senior Member
 
immortality's Avatar
 
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 26
immortality is on a distinguished road
may be this is because of initial condition.I put pressure and temperature zero due to empty channel that should become full.is it incorrect?
immortality is offline   Reply With Quote

Old   December 5, 2012, 07:26
Default
  #5
Senior Member
 
immortality's Avatar
 
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 26
immortality is on a distinguished road
for instance see this time step:


Mean and max Courant Numbers = 0.140537 0.296461
deltaT = 1.31579e-07
Time = 4.86842e-06

diagonal: Solving for rho, Initial residual = 0, Final residual = 0, No Iterations 0
diagonal: Solving for rhoUx, Initial residual = 0, Final residual = 0, No Iterations 0
diagonal: Solving for rhoUy, Initial residual = 0, Final residual = 0, No Iterations 0
smoothSolver: Solving for Ux, Initial residual = 1.13168e-05, Final residual = 2.04904e-17, No Iterations 3
smoothSolver: Solving for Uy, Initial residual = 0.00894171, Final residual = 1.97135e-17, No Iterations 3
diagonal: Solving for rhoE, Initial residual = 0, Final residual = 0, No Iterations 0
smoothSolver: Solving for e, Initial residual = 1.43136e-05, Final residual = 1.55745e-10, No Iterations 201
smoothSolver: Solving for omega, Initial residual = 0.000587127, Final residual = 1.92363e-11, No Iterations 2
smoothSolver: Solving for k, Initial residual = 0.00730572, Final residual = 1.34671e-10, No Iterations 2
ExecutionTime = 38.88 s ClockTime = 58 s
immortality is offline   Reply With Quote

Old   December 5, 2012, 22:07
Default
  #6
Member
 
Join Date: Nov 2010
Location: Tokyo / Japan
Posts: 40
Rep Power: 15
Hanzo is on a distinguished road
Quote:
Originally Posted by immortality View Post
may be this is because of initial condition.I put pressure and temperature zero due to empty channel that should become full.is it incorrect?
Maybe you should post an overview what you are doing. Setting Temperature to zero may cause your error. I am not sure if there is a valid setting for such an initial condition.
Try to check the
Code:
calculate()
method if your error still occurs.
Hanzo is offline   Reply With Quote

Old   December 22, 2012, 10:57
Default
  #7
Senior Member
 
immortality's Avatar
 
Ehsan
Join Date: Oct 2012
Location: Iran
Posts: 2,208
Rep Power: 26
immortality is on a distinguished road
thanks.how shuld I use calculate method?
immortality is offline   Reply With Quote

Old   December 24, 2012, 00:53
Default
  #8
Member
 
Join Date: Nov 2010
Location: Tokyo / Japan
Posts: 40
Rep Power: 15
Hanzo is on a distinguished road
Did you try to find the source code of

Quote:
Originally Posted by Hanzo View Post

Code:
ePsiThermo<Foam::pureMixture<Foam::constTran   sport<Foam::specieThermo<Foam::hConstThermo<Foam::   perfectGas> > > > >::calculate()
Hanzo 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



All times are GMT -4. The time now is 00:57.