blob: b840cec1599839ee69f0d57084e3c0e649da1776 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
v=5//ft/s
f=0.5//in
e=5.27//in
w=1.98//in
k=2.96//in
x=1.7//in
h=3.4//in
i=7.2//in
d=0.76//in
Va=((200*2*%pi*1)/60)/7.75//rad/s
Vc=Va*i/k
//CALCULATIONS
F=f*v//ft/s
CE=(e*v)/4//rad/s
EF=w*v/3//rad/s
VCD=Va*i/k//rad/s
E=VCD*x/h//rad/s
V=E*d//ft/s
//RESULTS
printf('The velocity of F in=% f ft/s',F)
printf('The angular velocity of CE in=% f rad/s',CE)
printf('The angular velocity of EF=% f rad/s',EF)
printf('the velocity of link=% f rad/s',V)
|