Skip to content

resgroup/mini-wake

Repository files navigation

mini-wake

Build status codecov Maintainability

An open-source, light weight, fast to run, easy to understand & carefully crafted implementation of the Ainslie eddy viscosity wake model and associated sub-models

Example Usage

from miniwake import SingleWake

upwind_diameter = 76.0
upwind_thrust_coefficient = 0.4
upwind_rpm = 17.0
upwind_velocity = 9.
ambient_turbulence_intensity = 0.1
upwind_local_turbulence_intensity = ambient_turbulence_intensity

single_wake = miniwake.SingleWake(
	ambient_turbulence_intensity=ambient_turbulence_intensity,
	upwind_diameter=upwind_diameter,
	upwind_thrust_coefficient=upwind_thrust_coefficient,
	upwind_velocity=upwind_velocity,
	upwind_local_turbulence_intensity=upwind_local_turbulence_intensity,
	upwind_rpm=upwind_rpm,
	apply_meander=True)

wake = single_wake.calculate(upwind_diameter * 4.0)

print(wake.velocity_deficit(distance_from_wake_center=0.0))
print(wake.added_turbulence(distance_from_wake_center=0.0))

Releasing

Any push to master will release the latest version of the package to the PyPi server. If the version number hasn't changed, then it won't overwrite existing files, so won't normally cause problems, but it is still best avoided.

About

A light weight, fast, easy to understand & carefully crafted implementation of the Ainslie eddy viscosity wake model and associated sub-models

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages