Skip to content

Water Rocket

Advertising
Advertising
?
Creation quality: 5.0/5 (1 vote)
Evaluation of members on the printability, utility, level of detail, etc.

  • 299 views
  • 1 like

License
3D design format
ZIP Folder details Close
  • Archive Water Rocket.zip
    • STL's Files/Curved Fins.stl
    • STL's Files/Cone.stl
    • STL's Files/Straight Fins.stl
    • STL's Files/housing.stl
    • STL's Files/Support for Sensor.stl
    • STL's Files/MIddle Part.stl
    • Step File/Water Rocket.step

Learn more about the formats

Publication date 2023-12-10 at 11:05
Design number 1633646

3D printer file info

3D model description

Water rocket, with Arduino and a gyroscope accelerometer.
This rocket has a program which detects when it is in free fall, and when it detects it opens the parachute.
The rocket goes with the base (it is separate) can reach up to 50 meters high.

Materials:

  • x1 Arduino Nano
  • x1 GY-521 (gyroscope accelerometer)
  • x1 SG90 (servo)
  • x6 M3x8mm
  • x6 M3 nuts

Code (Arduino):

#include

// Librerias I2C para controlar el mpu6050
// la libreria MPU6050.h necesita I2Cdev.h, I2Cdev.h necesita Wire.h
#include "I2Cdev.h"
#include "MPU6050.h"
#include "Wire.h"

// La dirección del MPU6050 puede ser 0x68 o 0x69, dependiendo
// del estado de AD0. Si no se especifica, 0x68 estará implicito
MPU6050 sensor;
Servo myservo;
// Valores RAW (sin procesar) del acelerometro y giroscopio en los ejes x,y,z
int ax, ay, az;
int gx, gy, gz;
int retardo= 0;

void setup() {
Serial.begin(57600); //Iniciando puerto serial
Wire.begin();

//Iniciando I2C

delay(1000);
sensor.initialize(); //Iniciando el sensor
myservo.attach(6);
myservo.write(0);
}

void loop() {
// Leer las aceleraciones y velocidades angulares
sensor.getAcceleration(&ax, &ay, &az);
sensor.getRotation(&gx, &gy, &gz);
float ax_m_s2 = ax * (9.81/16384.0);
float ay_m_s2 = ay * (9.81/16384.0);
float az_m_s2 = az * (9.81/16384.0);
float gx_deg_s = gx * (250.0/32768.0);
float gy_deg_s = gy * (250.0/32768.0);
float gz_deg_s = gz * (250.0/32768.0);
float a_tot = sqrt((ax_m_s2*ax_m_s2) + (ay_m_s2*ay_m_s2) + (az_m_s2*az_m_s2));
//Mostrar las lecturas separadas por un [tab]
Serial.print("a_tot ax y z gx y z:\t");
Serial.print(a_tot); Serial.print("\t");
Serial.print(ax_m_s2); Serial.print("\t");
Serial.print(ay_m_s2); Serial.print("\t");
Serial.print(az_m_s2); Serial.print("\t");
Serial.print(gx_deg_s); Serial.print("\t");
Serial.print(gy_deg_s); Serial.print("\t");
Serial.println(gz_deg_s);

if ((a_tot < 2) && (retardo > 500)){
Serial.println("====================");
Serial.println("FREEEE FAAAAAAALLLL");
Serial.println("====================");
myservo.write(90);
delay(1000);
//myservo.write(0);
//delay(1000);
}
retardo = retardo+1;
delay(10);

}

3D printing settings

Al the pieces were printed with 5% gyroid PLA

Advertising


Issue with this design? Report a problem.

Would you like to support Cults?

You like Cults and you want to help us continue the adventure independently? Please note that we are a small team of 3 people, therefore it is very simple to support us to maintain the activity and create future developments. Here are 4 solutions accessible to all:

  • ADVERTISING: Disable your banner blocker (AdBlock, …) and click on our banner ads.

  • AFFILIATION: Make your purchases online by clicking on our affiliate links here Amazon.

  • DONATE: If you want, you can make a donation via Ko-Fi 💜.

  • WORD OF MOUTH: Invite your friends to come, discover the platform and the magnificent 3D files shared by the community!


Sharing and downloading on Cults3D guarantees that designs remain in makers community hands! And not in the hands of the 3D printing or software giants who own the competing platforms and exploit the designs for their own commercial interests.

Cults3D is an independent, self-financed site that is not accountable to any investor or brand. Almost all of the site's revenues are paid back to the platform's makers. The content published on the site serves only the interests of its authors and not those of 3D printer brands who also wish to control the 3D modeling market.

100% secure payment by credit card, PayPal, Apple Pay, Google Pay, etc.
View all payment options.