Introduction: RC Car Damper Dynamometer

This instructable was created in fulfillment of the project requirement of the Makecourse at the University of South Florida (www.makecourse.com). In this instructable you will learn how to make a damper dynamometer to create a force vs. velocity curve from which a damping ratio can be extracted. Other than having access to a 3D printer, this project can be done with basic tools, such as a soldering iron and a dremel.

Step 1: Tools & Items Required

Tools Required

  • 3D printer
  • Soldering iron
  • Solder
  • Dremel
  • Vernier Calipers
  • Power Drill
  • Drill bit set
  • Hot glue gun

Parts Needed

  1. Black Box (for electronics)
  2. Arduino UNO
  3. Small breadboard
  4. Assortment of jumper wires
  5. Push button
  6. 10k ohm rotary potentiometer
  7. LCD Display
  8. Two 220 ohm resistors
  9. One 1N4007 diode
  10. One mosfet IRF520 transistor
  11. One 6-9V DC motor
  12. 5kg load cell
  13. Sparfun HX711 load cell amplifier
  14. Two M5 fully threaded bolts
  15. One 8mm x 15mm x 24mm linear bearing
  16. Two 3/8" OD by 0.049" wall thickness steel tubes
  17. Traxxas damper
  18. USB cable
  19. 2" x 2" wood
  20. Paper clip

Step 2: Load Cell Preparation

In order to prepare the load cell for wiring, the following needs to be completed:
  1. Solder 9 male pins to the HX711 load cell amplifier.
  2. Solder 4 female connections to the four wires coming out of the load cell.
  3. Using the HX711 library and calibration code found on SparkFun, calibrate the load cell using a known weight.

Step 3: Black Box Preparation

In order to prepare the black box for assembly, the following needs to be completed:

  1. Using a dremel, cut a square hole in the box's lid for the LCD screen.
  2. Using a set of drill bits, cut 5 holes to the lid.
    • One hole for the push button
    • One hole for the rotary potentiometer
    • One hole for the crank-slider mechanism
    • Two holes for the steel tubes that support the damper mounting
  3. Drill a hole on the side of the box to fit a USB cable which will be used for data transfer from the Arduino, as well as a power source.
  4. Drill another hole on the side of the box to route the load cell wires.

Step 4: Component Manufacturing

The following components need to be 3D printed:

  1. Linear bearing holder
  2. Damper collar
  3. Damper collar spacers
  4. Load cell spacer
  5. Piston
  6. Connecting rod
  7. Spinning disk

***NOTE: All STL files have been included. The linear bearing is press fitted, so pay close attention to tolerances.

Step 5: Component & Black Box Assembly

To assemble the 3D printed components, follow these steps:

  1. Glue the spinning disk to the output shaft of the DC motor.
  2. Cut two pieces from a paper clip that will be used as connecting pins for the connecting rod.
  3. Line up the holes of the spinning disk and the connecting rod and secure the two with the piece of paper clip.
    • It is recommended that you put a drop of solder on both ends of the paper clip to prevent the connecting pins from falling out of place.
  4. Repeat step 3 for the connecting rod and the piston.
  5. Press the linear bearing into the holder.
  6. Cut 3 holes on the 2" x 2" piece of wood, spaced by about 1.3"
    • Two of the holes will be used for the steel tubing and the third hole will be used for the load cell mounting.
  7. Using an M5 bolt and the load cell spacer, screw the load cell into the piece of wood.
  8. On the other end of the load cell, and using an M5 bolt, secure the 3D printed collar to the load cell.
  9. Once the collar has been attached to the load cell, use the collar spacers to attach the damper to the collar.

To assemble the black box, follow these steps:

  1. Using a hot glue gun, secure the push button and the rotary potentiometer in place
  2. Press the LCD screen into the square hole that was previously cut. Note: the screen should have a tight fit. In case that the screen does not fit, sand the hole accordingly.
  3. Line up the linear bering with its corresponding hole that had been drilled in the lid previously.
  4. Glue the bearing holder in place.
  5. Using another piece of wood, glue the DC motor with the crank slider to the base of the box. Be careful to align the piston with the linear bearing!
  6. Guide the crank-slider mechanism through the hole in the lid and into the linear bearing.

Step 6: Wiring

Follow the Fritzing diagram to wire all the electrical components to the breadboard and the Arduino. The accompanying picture shows the packaging and electrical component arrangement in the black box.

Wiring Guidelines:

  1. Wire 5V and ground to the Arduino. Make sure that the 5V and ground is passed to the secondary power rail in the breadboard.
  2. Wire the rotary potentiometer to analog pin number 3 (A3).
  3. Wire the push button to digital pin number 10.
  4. Wire the load cell white and green wires to digital pins 2 and 3 respectively.
  5. Wire the LCD's green and yellow wires to pins SCL and SDA respectively.
  6. Wire the motor output to digital pin number 11 (PWM)

**NOTE: make sure that the code has this same pinout setting. Otherwise, modify the code depending on where you place your wires in the Arduino.

Step 7: Code

  • The Arduino sketch is provided here. Make sure that all the pins that you have selected in the "Wiring" step are defined correctly within your sketch. Additionally, use the calibration factor for the load cell that you previously found.
  • The video included describes the code and its functionalities. The video serves as a guideline to the sketch that has already been provided.

Step 8: Final Assembly and Use!

Once the wiring is done, the program uploaded and the components all assembled, follow these steps to finalise the dynamometer:

  1. Fasten the lid of the black box using 4 screws.
  2. Insert the steel tubes through the holes that were previously drilled.
  3. Press the wooden piece into the steel tubes.
  4. Attach the shaft of the damper to the piston of the crank slider mechanism.
  5. Select the speed setting through the rotary potentiometer and press the push button to start the system.
  6. Open the serial monitor to save the data recorder by the load cell.
  7. Post-process the data in order to determine the damping ratio through a force vs, velocity curve.