I have a case which runs perfectly fine on my computer in CS v_4.0 but when I attempt to run the same code on a cluster which has CS v_4.0.5 installed I get the floating point error described in listing:
In your cs_user_boundary_conditions.f90 file, you commented the definition of Area, so you probably use it undefined, which might explain the error.
Also, you computation of Ubulk_verif is valid only when running on a single process. In parallel, you would need to add a call to "parsom" (see examples under Doxygen) to have a valid value on all ranks.
Thanks that solved the issue and now it is running. As for the parsom, I still am able to run the case in parallel the way it already is. Is that unexpected?