-
Notifications
You must be signed in to change notification settings - Fork 490
Description
Background
When a course grid is used in TurbSim, the tower points may be disabled when the bottom of the grid is too close to the ground to allow for a point on the tower with the same spacing. Then in the simulation, the aero for the tower and tower potential must be turned off to avoid errors. This can create some confusion when doing studies based on grid resolution (@ewquon ran into this).
InflowWind based solution
After a brief chat with @bjonkman, rather than change anything in TurbSim, we can change InflowWind to interpolate between the bottom of the grid and the ground when tower points are requested (set p%InterpTower
to true if the bottom of the grid is less than dz
from the ground). Any points below ground would be set to zero (Envision ran into a few cases where this was needed -- slight numerical rounding issues if I recall correctly).
The only concern with this is that the linear interpolation will be rather crude, but this may not be much of a concern when only a very small number of grid points (i.e. 5 on a 140 m grid) since the wind field is very course to start with.
Aternatives
Modifying TurbSim could be problematic due to the the factorization, so that is likely not a good approach.