Hi pamakela,
sorry for not responding earlier (I have been a bit busy).
Nice to know that all ingredients (gmsh, dolfyn and paraview) run on your platform. You obviously did not ran into the (slight) troubles related to the newer version of gmsh (the file format changed slightly). So only the stl-man is cumbersome. Please note that by design gmsh produces every run a different mesh (some randomness is built in); this means that an (occasional) awkward cell might be produced. Next what might help is to note that the scaling factor in the tutorial is set to 0.1. Finally, without knowing how your *.din file looks like, some suggestions you might check:
- If turbulence is switched on, switch it off (in troublesome cases switching turbulence on normally does not improve the behaviour)
- Start with only the 1st order upwind scheme (UD); in the case of the tutorial comment out (with '#') this line: #scheme UVW GAMMA
switch to your scheme of choice later (using restart)
- Check underrelaxation and relax further if necessary: relax 0.4 0.1 0.4 0.8
- With bad cells and awkwardly starting nonlinear equation behaviour the idea is that when a code stumbles severely it cannot recover from it and diverges instead of converges. try using the limiters:
limit uvw lower -10.0
limit uvw upper 10.0
(I'not sure they are in the January 2009 version yet)
- One can increase the laminar viscosity (to 0.001?) and lower it later
- Damping can also achieved by the slope limiters: change the face based limiter to the cell limiter:
slope UVW vnc
- Assure yourself that the pressure reference cell is in a spot where the pressure does not change much (far away from the man) this should not be the trick but should help a bit
- Note that density and the density in the inlet should be the same (for now)
The idea is to get dolfyn started and later switching to higher order differencing schemes etcetera.
Hope one or more ideas help

Enjoy!