

Along the following jurney i learned a lot about designing and claibrating anemometer. I encountered a a
The python code for the project is published here: jattie-ire/anemometer: 3D printed anemometer with a raspberry pi data logger (github.com)
I designed this in order to find the best place in my garden to mount my vertical wind turbine, it turned out so well I decided to share it.
Also see the rain meter that works on the same principles used here: Tipping Bucket Rain Meter by jattie | Download free STL model | Printables.com
To create a frequency counter using the EE-SX672 sensor with a Raspberry Pi, you can follow these steps:
import RPi.GPIO as GPIO import time
GPIO.setmode(GPIO.BCM) GPIO.setup(17, GPIO.IN)
def count_frequency(channel): global count count += 1
count = 0 GPIO.add_event_detect(17, GPIO.RISING, callback=count_frequency)
try: while True: time.sleep(1) print("Frequency: ", count, "Hz") count = 0
except KeyboardInterrupt: GPIO.cleanup() In this code, we set up GPIO 17 as an input pin and use the GPIO.add_event_detect function to detect rising edges on the pin. Each time a rising edge is detected, the count_frequency callback function is called, which increments the count variable. We then print the frequency every second and reset the count.
This code will count the number of rising edges on the GPIO pin within a one-second interval and print the frequency in Hz. You can modify the code to suit your specific requirements, such as storing the frequency in a file or displaying it on an LCD screen.
For a three cup anemometer with half spherical cups of 80mm diameter and the cup centers at 155mm from rotation point and the device turns and 60 rpm, what is the resulting wind speed?
To calculate the wind speed, you can use the formula:
Wind Speed (in meters per second) = (πD RPM) / (2* C)
Where:
In our case:
Plugging in the values into the formula:
Wind Speed = (π0.08 60) / (2* 0.155)
Simplifying the equation:
Wind Speed ≈ 7.307 m/s
Therefore, with a rotation speed of 60 RPM, the resulting wind speed would be approximately 7.307 meters per second.
Printer Brand:
Creality
Printer:
CR-10S
Rafts:
No
Supports:
Yes
Resolution:
0.2
Infill:
10%
Filament: Xinting PETG+ White
Started with a sphere, sliced it in half, added a shaft with supports for strength. Then proceeded with a bearing holder and insets to screw the cups into.
Lastly I designed and printed mountings.
Category: Physics & Astronomy
The author marked this model as their own original creation. Imported from Thingiverse.