Modular Anemometer with roller scate bearing

Modular Anemometer with roller scate bearing

thingiverse

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. To create a frequency counter using the EE-SX672 sensor with a Raspberry Pi, you can follow these steps:Connect the EE-SX672 sensor to the Raspberry Pi. The sensor has four pins: Vcc, Gnd, Output, and Input. Connect Vcc to a 5V pin on the Raspberry Pi, Gnd to a ground pin, Output to a GPIO pin (e.g., GPIO 17), and Input to the signal you want to measure the frequency of.Install the necessary software libraries. You will need the RPi.GPIO library for Python to control the GPIO pins. You can install it by running the command pip install RPi.GPIO.Write a Python program to read the GPIO pin and measure the frequency. Here is an example code:Python code for rpm counterimport RPi.GPIO as GPIOimport timeGPIO.setmode(GPIO.BCM)GPIO.setup(17, GPIO.IN)def count_frequency(channel): global count count += 1count = 0GPIO.add_event_detect(17, GPIO.RISING, callback=count_frequency)try: while True: time.sleep(1) print("Frequency: ", count, "Hz") count = 0except 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.Save the program as a Python file (e.g., frequency_counter.py) and run it using the command python frequency_counter.py.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.Calculating wind speedFor 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:D is the diameter of the cups (in meters)RPM is the revolutions per minuteC is the distance from the cup center to the rotation point (in meters)In our case:D = 80mm = 0.08mRPM = 60 (revolutions per minute)C = 155mm = 0.155mPlugging in the values into the formula:Wind Speed = (π 0.08 60) / (2 * 0.155)Simplifying the equation:Wind Speed ≈ 7.307 m/sTherefore, with a rotation speed of 60 RPM, the resulting wind speed would be approximately 7.307 meters per second.

Download Model from thingiverse

With this file you will be able to print Modular Anemometer with roller scate bearing with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Modular Anemometer with roller scate bearing.