Problem 44084. Determine if a four bar mechanism is of Grashof type
A four bar mechanism is composed of four links. if s is the smallest link, l the longest and p,q are the length of the other links. Grashof states that, in order that one of the link is a crank we have to satisfy s+l <= p+q
Solution Stats
Problem Comments
-
1 Comment
Mustafa Gurbuz
on 27 Sep 2022
function y = Grashof(x)
s=min(x)
l=max(x)
if (s+l)<=()
y = true
else
y = false
end
end is what I have but I cannot find out how to get p or q from this vector
Solution Comments
Show commentsGroup

Physics
- 18 Problems
- 13 Finishers
- Mechanics 1
- jogging?
- Bouncing disk
- Energy of an object
- Kepler's Equation
- Mechanical Advantage of a Gear Train
- What gear ratio does the cyclist need?
- Bernoulli's Equation
- Juggling
- Find the jerk
- Determine if a four bar mechanism is of Grashof type
- center of mass
- Center of mass
- Elastic Collision 001: 1-D
- Calculate compression ratio of engine
- Distance of the centroids of the balls
- Calculate the height of an object dropped from the sky
- How Far Can You Throw Something?
Problem Recent Solvers79
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!