The disk is originally rotating at v0 = 12 rad>s. If it is subjected to a constant angular acceleration of a = 20 rad>s2, determine the magnitudes of the velocity and the n and t components of acceleration of point B when the disk undergoes 2 revolutions.
%ECE 102 assignment 6 problem solving %Mausam Rayamajhi PROBLEM STATEMENT To find whether the velocity of at the second point increases, decreases or remains the same as the first point INPUT AND OUTPUT Input = A1 and A2 output = V2 1. Enter the Area of the first point, A1 and area of the second point, A2 2. Initialize V1 = 3 3. Calculate V2 = (A1*V1)/A2; 4. If V2 > V1, print increased 5. Else if V2 = V1, print equal 6. else V2 < V1, print decreased 7. end Test If A1 = 1 and A2 = 3 then V2 would be 1 which will give an output, decreased If A1 = 9 and A2 = 3 then V2 would be 9 which will be an output, increased If A1 = 6 and A2 = 6 the V2 would be 3 which will be an output, equa