

Hi
I was trying to simualte this case in openfoam using icoFoam, whose BCs are these.
and I'm getting this error
Courant Number mean: 53.8675 max: 11997.2
#0 Foam::error::printStack(Foam::Ostream&) at ??:?
#1 Foam::sigFpe::sigHandler(int) at ??:?
#2 ? in "/lib/x86_64-linux-gnu/libc.so.6"
#3 Foam::symGaussSeidelSmoother::smooth(Foam::word const&, Foam::Field<double>&, Foam::lduMatrix const&, Foam::Field<double> const&, Foam::FieldField<Foam::Field, double> const&, Foam::UPtrList<Foam::lduInterfaceField const> const&, unsigned char, int) at ??:?
#4 Foam::symGaussSeidelSmoother::smooth(Foam::Field<double>&, Foam::Field<double> const&, unsigned char, int) const at ??:?
#5 Foam::smoothSolver::solve(Foam::Field<double>&, Foam::Field<double> const&, unsigned char) const at ??:?
#6 ? in "/opt/openfoam8/platforms/linux64GccDPInt32Opt/bin/icoFoam"
#7 ? in "/opt/openfoam8/platforms/linux64GccDPInt32Opt/bin/icoFoam"
#8 ? in "/opt/openfoam8/platforms/linux64GccDPInt32Opt/bin/icoFoam"
#9 ? in "/opt/openfoam8/platforms/linux64GccDPInt32Opt/bin/icoFoam"
#10 __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6"
#11 ? in "/opt/openfoam8/platforms/linux64GccDPInt32Opt/bin/icoFoam"
Floating point exception (core dumped)
Please Help
these are my case files
OpenFOAM


The solver (icoFoam) you are using is transient. So it is necessary to evaluate CFL no and deltaT. If your mesh is unstructured and difficult to calculate CFL no manually, you can set deltaT as adjustable and specify maximum CFL no. It will calculate deltaT at every iteration for max CFL no you are specifying. Have a look at these two lines and modify/edit in your controlDict file:
writeControl adjustableRunTime;
maxCo 1.0;
Regards,
Divyesh Variya




Regarding documentation on errors, there is no such documentation available but based on your theoretical knowledge and error message you can resolve the issue.
Regards,
Divyesh Variya




Login to add comment