|
[Sponsors] |
September 2, 2018, 19:37 |
|
#21 |
Senior Member
Join Date: Jan 2013
Posts: 135
Rep Power: 13 |
I also had the same error after the upgrade of our HPC. Before that the same case ran well. I think it might be a problem of system setting.
|
|
September 21, 2018, 20:01 |
|
#22 | ||
Member
Join Date: Oct 2013
Posts: 92
Rep Power: 13 |
Quote:
But any more insight would be extremely valuable. I have a custom PISO solver with GAMG as matrix solver and with CyclicBC. Right now I use a GaussSeidel smoother, what smoother did you use to mitigate this problem? Regards, Quote:
you have cyclic BCs? Last edited by wyldckat; September 23, 2018 at 14:38. Reason: merged posts a few minutes apart |
|||
September 21, 2018, 20:31 |
|
#23 |
Senior Member
Join Date: Jan 2013
Posts: 135
Rep Power: 13 |
||
September 24, 2018, 17:32 |
|
#24 | |
Member
Join Date: Oct 2013
Posts: 92
Rep Power: 13 |
Quote:
But may I know more specific details? which version of OpenFOAM? did you/admin compile OF with system MPI or OPENMPI from ThirdParty? which version of OPENMPI gave you this trouble and which(original) version solved it. |
||
November 30, 2018, 08:00 |
|
#25 |
New Member
Gazi Yavuz
Join Date: Apr 2018
Posts: 17
Rep Power: 8 |
That issue still exist with OF 6.0 but you may not have any problem with newer release OF 6.2xx. The problem is basically about the fact that OpenMPI divides CFD case into the processors to solve it simultaneously with different processors and fork() environment might do the same job as an sub-program (let's say) such that it blocks OpenMPI to communicate between processors. It is a bug about OpenMPI and OpenFOAM enviroments
|
|
December 2, 2018, 21:46 |
|
#26 | |
Member
Join Date: Oct 2013
Posts: 92
Rep Power: 13 |
Quote:
is there a specific bug report or reports of this to OF devs? it is very difficult for me to reproduce, sometimes the simulation crashes/sometimes doesn't if i change my pressure solver from GAMG to PCG it helps and in some other cases it doesn't |
||
December 4, 2018, 18:12 |
|
#27 | |
New Member
Gazi Yavuz
Join Date: Apr 2018
Posts: 17
Rep Power: 8 |
Quote:
Actually, i did not report a bug to OF but my institution to upgrade software in clusters. They installed the release OpenFOAM/OpenFoam.org-6.20180918.git, which is still a 6.x version so compatible with older 6.0 version. I would recommend you to do so and you would not need to change anything in your case folders as you had to do between different versions (i.e 2.x to 3.x). |
||
January 31, 2019, 16:55 |
|
#28 | |
Member
Join Date: Oct 2013
Posts: 92
Rep Power: 13 |
Quote:
What software did your institute upgrade? apart from you installing OF-dev? |
||
January 31, 2019, 17:15 |
|
#29 | |
New Member
Gazi Yavuz
Join Date: Apr 2018
Posts: 17
Rep Power: 8 |
Quote:
They have just installed "OpenFOAM/OpenFoam.org-6.20180918.git". That solved the problem. |
||
January 31, 2019, 17:18 |
|
#30 |
New Member
Gazi Yavuz
Join Date: Apr 2018
Posts: 17
Rep Power: 8 |
If you still have the same problem with the new release. Please, post here the given error such that we might find another solution.
|
|
January 31, 2019, 20:20 |
|
#31 | |
Member
Join Date: Oct 2013
Posts: 92
Rep Power: 13 |
Quote:
I will try to install OF-dev with Intel compiler and MPI(system). If I have same problem [random crashes of my cases], I will post them. It might take a few days because sometimes the cases crash quickly and sometimes they don't. I am going to make a detailed report of why this problem persists and ask my cluster admin to install it on my behalf. |
||
January 31, 2019, 20:23 |
|
#32 | |
Member
Join Date: Oct 2013
Posts: 92
Rep Power: 13 |
Quote:
specifically OS, Compiler used to compile latest OF, MPI used (whether it was system or ThirdParty) This would be very helpful for me. |
||
February 6, 2019, 19:15 |
|
#33 | |
Senior Member
Mark Olesen
Join Date: Mar 2009
Location: https://olesenm.github.io/
Posts: 1,714
Rep Power: 40 |
Quote:
If you cannot or do not wish to change OpenFOAM versions, often times you can avoid problems by making certain that all #calc and #code statements in the dictionaries are evaluated prior to sending things off in parallel. For example, by running 1 iteration in serial just to ensure that all dynamic code has been compiled. |
||
February 6, 2019, 19:24 |
Compiling with IntelMPI and appropriately including impi headers
|
#34 |
Member
Join Date: Oct 2013
Posts: 92
Rep Power: 13 |
The problem arose due to, compiling openfoam with ThirdParty OpenMPI, but compiling with IntelMPI and Intel compiler (System) seems to have alleviated the problem.
Previously I was unable to install using Intel C++ and MPi because I wasn't including the IMPI headers correctly. @olesen I don't have any cases with calc or code in my dictionaries. |
|
May 1, 2019, 00:15 |
|
#35 |
New Member
Join Date: Feb 2019
Posts: 1
Rep Power: 0 |
I encountered also with the same problem when I try to run my case in HPC, which has OpenFOAM 5.0 installed. I am running the same case in my desktop without any problem with OpenFOAM 6.0.
|
|
May 14, 2019, 23:50 |
|
#36 |
Member
Join Date: Oct 2013
Posts: 92
Rep Power: 13 |
try to reinstall OF-6 with intel-mpi with icc or opnmpi with gcc on your cluster, I think that is the only way you can solve this.
|
|
August 3, 2021, 08:33 |
printStack() error with k omega SST model
|
#37 |
New Member
Join Date: Oct 2019
Posts: 10
Rep Power: 7 |
Hello everyone,
recently I came across the discussed error. I am running pimpleFOAM with kOmegaSST RAS model in OFv1912. I was able to fix it by changing my initial conditions for k and omega. Previous starting values at inlet and outlet that produced the error were: k = 1e-10; omega = 0; The error disappeared with: k= 0.07; omega = 0.97; Inlet is "inletOutlet" boundary condition for both and outlet "zeroGradient". The k and omega values were calculated for a turbulence intensity Tu = 0 and Tu = 0.1. The case also has some cyclicAMI boundary conditions. Maybe this is helpful for someone. Greetings, Kraneberger |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
polynomial thermophysical properties II | sebastian | OpenFOAM Running, Solving & CFD | 54 | November 21, 2019 08:12 |
[OpenFOAM] Native ParaView Reader Bugs | tj22 | ParaView | 270 | January 4, 2016 12:39 |
[OpenFOAM] Saving ParaFoam views and case | sail | ParaView | 9 | November 25, 2011 16:46 |
CGNS lib and Fortran compiler | manaliac | Main CFD Forum | 2 | November 29, 2010 07:25 |
Version 15 on Mac OS X | gschaider | OpenFOAM Installation | 113 | December 2, 2009 11:23 |