EnvironmentalSystemsLab / Eddy3D-Public

Public repository for documentation and user issue tracking
MIT License
3 stars 0 forks source link

Annual Wind Velocities calculation method #5

Closed monsieurpablo closed 2 years ago

monsieurpablo commented 2 years ago

Hi everyone,

I would want you to help me clarify the Wind Factors calculation, because I am getting different results from my python workflow than from Eddy3D.

To my understanding, the Wind Factors are calculated by:

Is this process correct? I am getting different results from Eddy than from Python or native GH components.

In another question, I am using the following formula for the Logarithmic wind profile, is this right?

def scaleWind (Uinit, Zinit = 10, Zend = 1.5,  z0 = 1.0, d = 0):
    if Zend > z0: Uend = (Uinit * ((math.log(Zend - d /z0) / (math.log(Zinit - d /z0)))))
    else: Uend = 0
    return Uend
kastnerp commented 2 years ago

Calculation method is explained here.

In another question, I am using the following formula for the Logarithmic wind profile, is this right?

We use these equations to scale the ABL: https://www.openfoam.com/documentation/guides/latest/doc/guide-bcs-inlet-atm-atmBoundaryLayerInletVelocity.html#sec-bcs-inlet-atmBoundaryLayerInletVelocity-usage