Answer:
ω=314.15 rad/s.
0.02 s.
Explanation:
Given that
Motor speed ,N= 3000 revolutions per minute
N= 3000 RPM
The speed of the motor in rad/s given as
Now by putting the values in the above equation
ω=314.15 rad/s
Therefore the speed in rad/s will be 314.15 rad/s.
The speed in rev/sec given as
ω= 50 rev/s
It take 1 sec to cover 50 revolutions
That is why to cover 1 revolution it take
Answer:
b). Occurs at the outer surface of the shaft
Explanation:
We know from shear stress and torque relationship, we know that
where, T = torque
J = polar moment of inertia of shaft
τ = torsional shear stress
r = raduis of the shaft
Therefore from the above relation we see that
Thus torsional shear stress, τ is directly proportional to the radius,r of the shaft.
When r= 0, then τ = 0
and when r = R , τ is maximum
Thus, torsional shear stress is maximum at the outer surface of the shaft.
Answer:
The value of critical length = 3.46 mm
The value of volume of fraction of fibers = 0.43
Explanation:
Given data
= 800 M pa
D = 0.017 mm
L = 2.3 mm
= 5500 M pa
= 18 M pa
= 13.5 M pa
(a) Critical fiber length is given by
Put all the values in above equation we get
mm
This is the value of critical length.
(b).Since this critical length is greater than fiber length Than the volume fraction of fibers is given by
Put all the values in above formula we get
= 0.43
This is the value of volume of fraction of fibers.
Maybe it’s a vending machine, I’m confused too
Write a statement that assigns freeBooks the appropriate value based on the values of the boolean variable isPremiumCustomer and the int variable nbooksPurchased is described below
Explanation:
Online Book Merchants offers premium customers 1 free book with every purchase of 5 or more books and offers 2 free books with every purchase of 8 or more books. It offers regular customers 1 free book with every purchase of 7 or more books, and offers 2 free books with every purchase of 12 or more books.
A statement that assigns freeBooks the appropriate value based on the values of the boolean variable isPremiumCustomer and the int variable nbooksPurchased. Here's what we have:
if(isPremiumCustomer = true){
if(nbooksPurchased >= 5));
freeBooks = 1;
}else if(nbooksPurchased >= 8){
freeBooks = 2;
}else {
if(nbooksPurchased >= 7);
freeBooks = 1;
}else if(nbooksPurchased >= 12){
freeBooks = 2;
}
We are getting an error of "illegal start of expression".
Two of the hints are "You are using an incorrect number somewhere in your solution" and "We think you might want to consider using: ==".
I do not want the answer, I just want pointed in the right direction.