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
Free_Kalibri [48]
3 years ago
10

The two boxcars A and B have a weight of 20 000 Ib and 30 000 Ib, respectively. If they coast freely down the incline when the b

rakes are applied to all the wheels of car A causing it to skid, determine the force in the coupling C between the two cars. The coefficient of kinetic friction between the wheels of A and the tracks is μk=0.5. The wheels of car B are free to roll. Neglect their mass in calculation.

Engineering
2 answers:
harkovskaia [24]3 years ago
8 0

Answer:

a = 3.608 ft/s²

T = 5.977 kip

Explanation:

Angle of inclined track is not given. It is 5 degree as shown in attached image 1.

Given data:

Weight of boxcar A = Wα = 20,000 lb

Weight of boxcar B = Wb = 30,000 lb

Coefficient of kinetic friction = υk = 0.5

angle of inclined track = 5 degree

Value of g = 32.2 ft/s²

Solution:

These boxcars are moving therefore,

∑Fₓ = ma

∑Fy = 0

Car A

Use ∑Fy = 0

Forces acting in Y-axis are weight and its counter N (as shown in Free body diagram). Weight is Negative (acting downward) while N is positive (acting upward)

∑Fy = Nα - Wα*Cos(∅) = 0

∑Fy = Nα - 20,000*Cos(5°) = 0

∑Fy = Nα - 20,000*0.9962 = 0

∑Fy = Nα - 19,924 = 0                

Nα = 19,924

Use ∑Fₓ = maₓ

Forces acting in x-axis are Fa, T and horizontal component of weight and force having acceleration a (as shown in Free body diagram). Horizontal component of weight and Tension (T) are Negative (acting in negative X-axis direction) while Fa is positive (acting in positive X-axis direction)

∑Fₓ = maₓ

(0.5*19924) - 20,000*Sin(5°) - T = (20,000/32.2)*a

9962 - 1744 - T = 621.12*a

8218 - T = 621.12*a  .................. Eq(1)

Both cars

∑Fₓ = maₓ

Forces acting are; horizontal component of weights, Fa and force having acceleration a (as shown in Free body diagram).

(0.5*19924) - 20,000*Sin(5°) - 30,000*Sin(5°) = (20,000/32.2)/a + (30,000/32.2)/a

9962 - 1744 - 2616 = 621.12/a + 931.68/a

5602 = 1552.8 / a

⇒ a = 3.608 ft/s²

put a = 3.608 ft/s² in equation (1)

⇒ T = 8218 - 621.12*3.608

    T = 8218 - 2240.79

    T = 5977.21 lb

    T = 5.977 kip

Tpy6a [65]3 years ago
3 0

Answer:

Answer for the question :

"the two boxcars A and B have a weight of 20 000 Ib and 30 000 Ib, respectively. If they coast freely down the incline when the brakes are applied to all the wheels of car A causing it to skid, determine the force in the coupling C between the two cars. The coefficient of kinetic friction between the wheels of A and the tracks is μk=0.5. The wheels of car B are free to roll. Neglect their mass in calculation."

is explained in the attachment.

Explanation:

Download pdf
You might be interested in
A car engine operates with a thermal efficiency of 20%. Assume the air-conditioner has a coefficient of performance of β = 2 wor
disa [49]

Hey! How are you? My name is Maria, 19 years old. Yesterday broke up with a guy, looking for casual sex.

Write me here and I will give you my phone number - *pofsex.com*

My nickname - Lovely

5 0
3 years ago
How meny people live in new york
nydimaria [60]

Answer:

8.419 million (2019) at 2019

4 0
3 years ago
Please add comments to your program to explain it. Thank you!
Step2247 [10]

Answer / Explanation:

(1) We should first understand that the input filename are passed in as the first command arguments at command line, respectively.

To do this, we import the data file:

So we have,

import java.io.*;

/**

*  Makes a copy of a file.  The original file and the name of the

*  copy must be given as command-line arguments.  In addition, the

*  first command-line argument can be "-f"; if present, the program

*  will overwrite an existing file; if not, the program will report

*  an error and end if the output file already exists.  The number

*  of bytes that are copied is reported.

*/

public class CopyFile {

  public static void main(String[] args) {

     String sourceName;   // Name of the source file,  

                          //    as specified on the command line.

     String copyName;     // Name of the copy,  

                          //    as specified on the command line.

     InputStream source;  // Stream for reading from the source file.

     OutputStream copy;   // Stream for writing the copy.

     boolean force;  // This is set to true if the "-f" option

                     //    is specified on the command line.

     int byteCount;  // Number of bytes copied from the source file.

     

     /* Get file names from the command line and check for the  

        presence of the -f option.

(2)   If the command line is not one

        of the two possible legal forms, print an error message and  

        end this program. */

   

     if (args.length == 3 && args[0].equalsIgnoreCase("-f")) {

        sourceName = args[1];

        copyName = args[2];

        force = true;

     }

     else if (args.length == 2) {

        sourceName = args[0];

        copyName = args[1];

        force = false;

     }

     else {

        System.out.println(

                "Usage:  java CopyFile <source-file> <copy-name>");

        System.out.println(

                "    or  java CopyFile -f <source-file> <copy-name>");

        return;

     }

     

     /* Create the input stream.  If an error occurs, end the program. */

     

     try {

        source = new FileInputStream(sourceName);

     }

     catch (FileNotFoundException e) {

        System.out.println("Can't find file \"" + sourceName + "\".");

        return;

     }    

     /* If the output file already exists and the -f option was not

        specified, print an error message and end the program. */

   

     File file = new File(copyName);

     if (file.exists() && force == false) {

         System.out.println(

              "Output file exists.  Use the -f option to replace it.");

         return;  

    }      

     /* Create the output stream.  If an error occurs, end the program. */

     try {

        copy = new FileOutputStream(copyName);

     }

     catch (IOException e) {

        System.out.println("Can't open output file \"" + copyName + "\".");

        return;

     }

     

   (3)   /* Copy one byte at a time from the input stream to the output

        stream, ending when the read() method returns -1 (which is  

        the signal that the end of the stream has been reached).  If any  

        error occurs, print an error message.  Also print a message if  

        the file has been copied successfully.  */  

     byteCount = 0;

     

     try {

        while (true) {

           int data = source.read();

           if (data < 0)

              break;

           copy.write(data);

           byteCount++;

        }

        source.close();

        copy.close();

        System.out.println("Successfully copied " + byteCount + " bytes.");

     }

     catch (Exception e) {

        System.out.println("Error occurred while copying.  "

                                  + byteCount + " bytes copied.");

        System.out.println("Error: " + e);

     }    

  }  // end main()  

} // end class CopyFile

8 0
4 years ago
A cylindrical specimen of a hypothetical metal alloy is stressed in compression. If its original and final diameters are 19.636
luda_lava [24]

Answer:

The original length of the specimen is found to be 76.093 mm.

Explanation:

From the conservation of mass principal, we know that the volume of the specimen must remain constant. Therefore, comparing the volumes of both initial and final state as state 1 and state 2:

Initial Volume = Final Volume

πd1²L1/4 = πd2²L2/4

d1²L1 = d2²L2

L1 = d2²L2/d1²

where,

d1 = initial diameter = 19.636 mm

d2 = final diameter = 19.661 mm

L1 = Initial Length = Original Length = ?

L2 = Final Length = 75.9 mm

Therefore, using values:

L1 = (19.661 mm)²(75.9 mm)/(19.636 mm)²

<u>L1 = 76.093 mm</u>

5 0
3 years ago
What are the common approximations made in the analysis of heat exchangers?
Oksanka [162]

Answer: making sure that they are up to date

Explanation:

7 0
3 years ago
Other questions:
  • 2.7. The term route of entry on an SDS refers to the way a
    13·1 answer
  • This problem demonstrates aliasing. Generate a 512-point waveform consisting of 2 sinusoids at 200 and 400-Hz. Assume a sampling
    8·1 answer
  • What is one disadvantage of analog recording?
    7·1 answer
  • Define ""acidity"" of an aqueous solution. How do you compare the strength of acidity of solutions ?
    6·1 answer
  • Which type of fires should you fight with a portable fire<br> extinguisher?
    8·1 answer
  • If you get a flat in the front of your car, your car will:
    11·1 answer
  • ¿Por qué la lógica de proposiciones es conocida también como lógica de las proposiciones sin analizar?
    11·1 answer
  • Most goals
    12·1 answer
  • What are the causes and solutions of social problems ?what are the causes and solutions of social problems ​
    15·1 answer
  • The most important reason to wear your seat belt is to protect you from:
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!