New issue 52 by kuksamax: n_pot > 2 error
http://code.google.com/p/pencil-code/issues/detail?id=52
There is an error in hydro.f90, line 2091
if (n_pot/=2) &
call stop_it("don't you dare using less smoothing than n_pot=2")
The right code is
if (n_pot.le.2) &
call stop_it("don't you dare using less smoothing than n_pot=2")
--
Max Kuksa
Comment #1 on issue 52 by sven.bingert: n_pot > 2 error
http://code.google.com/p/pencil-code/issues/detail?id=52
These lines where moved to initial_conditions/centrifugal_balance.f90
In there I changed it according to the comment by Max Kuksa in revision
15358.