+ All Categories
Home > Documents > Semester Project

Semester Project

Date post: 17-Feb-2016
Category:
Upload: autumn-hall
View: 10 times
Download: 0 times
Share this document with a friend
Description:
This is the Fall semester project that I had to do for my Intro to Engineering class.
Popular Tags:
18
Transcript
Page 1: Semester Project
Page 2: Semester Project

i

Table of Contents

Introduction ................................................................................................................................................................ 1

Design Phase (Drawings) ........................................................................................................................................... 2

Design Phase (Photos) ............................................................................................................................................... 3

Design Phase (Drawings) ........................................................................................................................................... 4

Receipts ........................................................................................................................................................................ 5

Materials....................................................................................................................................................................... 6

Construction Procedure............................................................................................................................................. 6

Preliminary Trial Outcomes ...................................................................................................................................... 9

Testing and Trials ....................................................................................................................................................... 9

Results ........................................................................................................................................................................ 10

Appendix .................................................................................................................................................... 11

Page 3: Semester Project

Autumn Hall 1

Page 4: Semester Project

Design Phase - Drawings

Autumn Hall 2

Page 5: Semester Project

Autumn Hall 3

Page 6: Semester Project

Autumn Hall 4

Page 7: Semester Project

Autumn Hall 5

Receipts

Page 8: Semester Project

Autumn Hall 6

Page 9: Semester Project

Autumn Hall 7

Page 10: Semester Project

Autumn Hall 8

Page 11: Semester Project

Autumn Hall 9

Page 12: Semester Project

Autumn Hall 10

Page 13: Semester Project

Trial #

Deviation from center of

finish line (cm)

Autumn Hall 11

Page 14: Semester Project

Trial #

Velocity (ft/s)

Autumn Hall 12

Page 15: Semester Project

Trial #

Distance traveled (ft)

Autumn Hall 13

Page 16: Semester Project

Autumn Hall 14

Page 17: Semester Project

% Autumn Hall % ENGR 1315 - D01 % November 27, 2015 % Semester Project % This script makes a scatterplot of the accuracy data of my final device.

clear close all clc

x = 1:1:20; y = [2.5, 19, 19, 6, 5, 0, 3, 3, 3, 6, 3, 3, 2.5, 6, 3, 3, 3, 3, 3, 3];

scatter(x,y, 'r', 'filled'); xlabel('Trial Number'); ylabel('Deviation from center of finish line (cm)'); title('Accuracy Data of Mousetrap Car');

fprintf('mean: %.2f\n', mean(y)); fprintf('standard deviation: %.2f\n', std(y));

% Autumn Hall % ENGR 1315 - D01 % November 27, 2015 % Semester Project % This script makes a scatterplot of the speed data of my final device.

clear close all clc

x = 1:1:20; y = [3.33, 3.33, 3.33, 3.33, 3.33, 3.33, 3.33, 2.5, 3.33, 3.33, 3.33, 3.33,

3.33, 3.33, 3.33, 3.33, 2.5, 2, 3.33, 3.33];

scatter(x,y,'r', 'filled'); axis([0 20 0 3.5]); xlabel('Trial Number'); ylabel('Velocity (ft/s)'); title('Velocity Data of Mousetrap Car');

fprintf('mean: %.2f\n', mean(y)); fprintf('standard deviation: %.2f\n', std(y));

% Autumn Hall % ENGR 1315 - D01 % November 27, 2015 % Semester Project % This script makes a scatterplot of the distance data of my final device.

Autumn Hall 15

Page 18: Semester Project

clear close all clc

% There isn't much variation in my distance because the string on my % mousetrap car was fairly short. The axles stopped moving once the string % was done unwinding around the axle.

x = 1:1:20; y = [23.33, 21, 23.17, 23.33, 23.42, 23.33, 23.33, 23.33, 23.33, 23.33,

23.17, 23.17, 23.33, 23, 23.42, 23.33, 21.83, 23.33, 23.17, 23.17];

scatter(x,y,'r', 'filled'); axis([0 20 20 24]); xlabel('Trial Number'); ylabel('Distance traveled (ft)'); title('Distance Data of Mousetrap Car');

fprintf('mean: %.2f\n', mean(y)); fprintf('standard deviation: %.2f\n', std(y));

Autumn Hall 16


Recommended