The question is incomplete. The complete question is :
The solid rod shown is fixed to a wall, and a torque T = 85N?m is applied to the end of the rod. The diameter of the rod is 46mm .
When the rod is circular, radial lines remain straight and sections perpendicular to the axis do not warp. In this case, the strains vary linearly along radial lines. Within the proportional limit, the stress also varies linearly along radial lines. If point A is located 12 mm from the center of the rod, what is the magnitude of the shear stress at that point?
Solution :
Given data :
Diameter of the rod : 46 mm
Torque, T = 85 Nm
The polar moment of inertia of the shaft is given by :
J = 207.6
So the shear stress at point A is :
Therefore, the magnitude of the shear stress at point A is 4913.29 MPa.
The first one is the answer
Answer:
a. ε₁=-0.000317
ε₂=0.000017
θ₁= -13.28° and θ₂=76.72°
b. maximum in-plane shear strain =3.335 *10^-4
Associated average normal strain ε(avg) =150 *10^-6
θ = 31.71 or -58.29
Explanation:
ε₁=-0.000317
ε₂=0.000017
To determine the orientation of ε₁ and ε₂
θ= -13.28° and 76.72°
To determine the direction of ε₁ and ε₂
=-0.000284 -0.0000335 = -0.000317 =ε₁
Therefore θ₁= -13.28° and θ₂=76.72°
b. maximum in-plane shear strain
=3.335 *10^-4
ε(avg) =150 *10^-6
orientation of γmax
θ = 31.71 or -58.29
To determine the direction of γmax
= 1.67 *10^-4
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.