I notice in the ADTwr_CalcOutput routine that the relative velocity is calculated as:
Code: Select all
V_rel = u%InflowOnTower(:,j) - u%TowerMotion%TranslationDisp(:,j) ! relative wind speed at tower nodeShould it not be:
Code: Select all
V_rel = u%InflowOnTower(:,j) - u%TowerMotion%TranslationVel(:,j) ! relative wind speed at tower nodeor am I mistaken?
Thanks