The spring has a stiffness k = 200 N>m and an unstretched length of 0.5 m. If it is attached to the 3-kg smooth collar and the collar is released from rest at A, determine the speed of the collar when it reaches B. Neglect the size of the collar.
%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