1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Alik [6]
3 years ago
9

A steel wire of diameter 2.000 mm and length 1.000 m is attached between two immovable supports.When the temperature is 60.00 Ce

lsius the tension in the wire is (essentially) zero. The temperature is then reduced to 20.00 Celsius. Young's Modulus for steel is 2.000E10 Pa and the density of steel is 7.860E3 kg/m3 and the coefficient of linear expansion of steel is 11.0E-6 C-1.
A. Find the tension in the steel wire.
B. What would the velocity of a traveling wave be at this lower temperature?
C. Find the pattern of allowed frequencies of standing waves allowed on this wire.
Engineering
1 answer:
REY [17]3 years ago
4 0

Answer:

a. 27.65 N b. 5.93 cm/s c. 0.03n where n = 1,2,3....

Explanation:

a. Since Young's Modulus E = stress/strain = σ/ε and σ = εE, we find the stain in the steel wire by finding its strain at 20°C.

Now Δl = lαΔθ where l = length of steel wire = 1.000 m, α = coefficient of linear expansion of steel = 11.0 × 10⁻⁶ C⁻¹ and Δθ = change in temperature = 20 °C - 60 °C = -40 °C

The strain  ε = Δl/l = αΔθ = 11.0 × 10⁻⁶ C⁻¹ × -40 °C = -4.4 × 10⁻⁴

σ = T/A= εE, where T = tension in steel wire and A = cross-sectional area of steel wire

T = εEA = εEπd²/4 where d = diameter of wire = 2.000 mm = 2 × 10⁻³ m

So,

T = εEπd²/4

= 4.4 × 10⁻⁴ × 2× 10¹⁰ Pa × π ×  (2 × 10⁻³ m )²/4

= 27.65 N

b. The velocity of the travelling wave at this lower temperature is

v = √(T/μ) where μ = mass per unit length = ρl where ρ = density of steel wire = 7.86 × 10³ kg/m³ and l = length of wire = 1.000 m

v = √(T/μ)

= √(T/ρl)

= √(27.65 N/(7.86 × 10³ kg/m³ × 1.000 m))

= √(27.65 N/7.86 × 10³ kg/m²)

= √(0.3517 × 10⁻² N/kg/m²)

= 0.05931 m/s

≅ 0.0593 m/s

= 5.93 cm/s

c. To find the allowable frequencies, we first find the fundamental frequency f₀ = v/2l

= 0.0593 m/s ÷ (2 × 1 m)

= 0.0593 m/s ÷ 2

= 0.0297 Hz

≅ 0.03 Hz

So, the allowable modes of frequency are multiples of f₀, that is fₙ = nf₀ where n = 1,2,3....

So, fₙ = 0.03n Hz where n = 1,2,3....

You might be interested in
Just some random stufff
NeTakaya

Answer:

Nice!

Explanation:

5 0
3 years ago
A large increase in elevation can cause a carbureted engine to run ________ if not properly adjusted for the altitude. a Rich b
mash [69]

Answer:

B - Poor

Explanation:

As you get higher up, There is less oxygen which causes the engine to create less power.

3 0
2 years ago
For some transformation having kinetics that obey the Avrami equation (Equation 10.17), the parameter n is known to have a value
OleMash [197]

Answer:

t = 25.10 sec

Explanation:

we know that Avrami equation

Y = 1 - e^{-kt^n}

here Y is percentage of completion  of reaction = 50%

t  is duration of reaction = 146 sec

so,

0.50 = 1 - e^{-k^146^2.1}

0.50 = e^{-k306.6}

taking natural log on both side

ln(0.5) = -k(306.6)

k = 2.26\times 10^{-3}

for 86 % completion

0.86 = 1 - e^{-2.26\times 10^{-3} \times t^{2.1}}

e^{-2.26\times 10^{-3} \times t^{2.1}} = 0.14

-2.26\times 10^{-3} \times t^{2.1} = ln(0.14)

t^{2.1} = 869.96

t = 25.10 sec

5 0
3 years ago
Which of the following best reflects a shield system?
Dafna11 [192]
C, because a narrow structure evacuation below surface ground isn’t the best and a structure holding forces and isn’t to do with the question at all and d doesn’t matter if there include away or not
8 0
3 years ago
Find the largest number. The process of finding the maximum value (i.e., the largest of a group of values) is used frequently in
salantis [7]

Answer:

See Explanation

Explanation:

Required

- Pseudocode to determine the largest of 10 numbers

- C# program to determine the largest of 10 numbers

The pseudocode and program makes use of a 1 dimensional array to accept input for the 10 numbers;

The largest of the 10 numbers is then saved in variable Largest and printed afterwards.

Pseudocode (Number lines are used for indentation to illustrate the program flow)

1. Start:

2. Declare Number as 1 dimensional array of 10 integers

3. Initialize: counter = 0

4. Do:

4.1 Display “Enter Number ”+(counter + 1)

4.2 Accept input for Number[counter]

4.3 While counter < 10

5. Initialize: Largest = Number[0]

6. Loop: i = 0 to 10

6.1 if Largest < Number[i] Then

6.2 Largest = Number[i]

6.3 End Loop:

7. Display “The largest input is “+Largest

8. Stop

C# Program (Console)

Comments are used for explanatory purpose

using System;

namespace ConsoleApplication1

{

   class Program

   {

       static void Main(string[] args)

       {

           int[] Number = new int[10];  // Declare array of 10 elements

           //Accept Input

           int counter = 0;

           while(counter<10)

           {

               Console.WriteLine("Enter Number " + (counter + 1)+": ");

               string var = Console.ReadLine();

               Number[counter] = Convert.ToInt32(var);

               counter++;                  

           }

           //Initialize largest to first element of the array

           int Largest = Number[0];

           //Determine Largest

           for(int i=0;i<10;i++)

           {

               if(Largest < Number[i])

               {

                   Largest = Number[i];

               }

           }

           //Print Largest

           Console.WriteLine("The largest input is "+ Largest);

           Console.ReadLine();

       }

   }

}

8 0
3 years ago
Other questions:
  • A cylindrical drill with radius 4 is used to bore a hole through the center of a sphere of radius 5. Find the volume of the ring
    15·1 answer
  • Are ocean currents always cold
    10·1 answer
  • For a given set of input values, a NAND gate produces the opposite output as an OR gate with inverted inputs.A. True
    7·1 answer
  • What gage pressure does a skin diver experience when they dive to 35 ft in the ocean with a water temperature of 55 °F? Report y
    9·1 answer
  • Identify the measurement shown in figure 7 and state in centimeters ​
    5·1 answer
  • 3. Which of the following is not a common impact
    7·1 answer
  • Tech a says the higher the numarical gear ratio (4:1), the more torque that will be applied to the wheels. Tech b says that the
    13·2 answers
  • Which step in the engineering design process likely broke down in the following scenario?
    14·1 answer
  • The period of an 800 hertz sine wave is
    10·1 answer
  • Deviations from the engineering drawing cannot be made without the approval of the
    15·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!