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
Virty [35]
3 years ago
14

If these components have weights WA = 50000 lb , WB=8000lb, and WC=6000lb, determine the normal reactions of the wheels D, E, an

d F on the ground.

Engineering
1 answer:
VLD [36.1K]3 years ago
5 0

Answer:

F(F) = 15037 lb

F(E) = 24481.5 lb

F(D) =  24481.5 lb

Explanation:

(The diagram of the figure and Free Body Diagram is attached)

<h3>Data given:</h3>

W(A) = 50,000 lb

W(B) = 8000 lb

W(C) = 6000 lb

<h3 /><h3>∑F = 0</h3>

F(F) + F(E) + F(D) - W(A) - W(B) - W(C) = 0

F(F) + F(E) + F(D) = W(A) + W(B) + W(C)

F(F) + F(E) + F(D) = 50000 + 8000 + 6000

F(F) + F(E) + F(D) = 64000 lb

<h3>∑M(o)</h3>

∑M(o) = M(F) + M(E) + M(D) + M(A) + M(B) + M(C)

Where

M(F) = 27i × F(F)k = -27F(F)j

M(E) = 14j × F(E)k = 14F(E)i

M(D) = -14j × F(D)k = -14F(D)i

M(A) = 7i × -50000k = 350,000j

M(B) = (4i - 6j) × -8000k = 48000i + 32000j

M(C) = (4i + 8j) × -6000k = -48000i + 24000j

<h3>∑M(x) = ∑M(i) = 0</h3>

∑M(i) = 14F(E) - 14F(D) = 0

F(E) = F(D)

<h3>∑M(y) = ∑M(j) = 0</h3>

∑M(j) = -27F(F) + 350,000 + 32,000 + 24,000 = 0

27F(F) = 406,000

F(F) = 15037 lb

<h3 /><h3>F(F) + F(E) + F(D) = 64000 lb</h3>

F(E) = F(D)

F(F) + 2F(E) = 64000

2F(E) = 64000 - 15037

2F(E) = 48963

F(E) = 24481.5 lb

F(D) =  24481.5 lb

<h3 /><h3 />

You might be interested in
What is the average linear (seepage) velocity of water in an aquifer with a hydraulic conductivity of 6.9 x 10-4 m/s and porosit
jeka94

Answer:

a. 0.28

Explanation:

Given that

porosity =30%

hydraulic gradient = 0.0014

hydraulic conductivity = 6.9 x 10⁻4 m/s

We know that average linear velocity given as

v=\dfrac{K}{n_e}\dfrac{dh}{dl}

v=\dfrac{6.9\times 10^{-4}}{0.3}\times0.0014\ m/s

v=3.22\times 10^{-6}\ m/s

The velocity in m/d      ( 1 m/s =86400 m/d)

v= 0.27 m/d

So the nearest answer is 'a'.

a. 0.28

4 0
3 years ago
One of the most important parts about creating great photographs starts with choosing what to photograph
Sliva [168]
Yeah that is important
7 0
3 years ago
What application of bioengineering uses principles of electronics and computer science to design products?
Flauer [41]

The application of electro bioengineering uses principles of nick and computer science to design products is application of electrical engineering principles to biology, medicine, conduct, or health.

<h3>What is Bioelectronics?</h3>
  • Bioelectronics is the application of electrical engineering principles to biology, medicine, conduct, or health.
  • It advances the fundamental concepts, creates knowledge for the molecular to the organ techniques levels, and develops creative devices or methods for the deterrence, diagnosis, and treatment of disease, for patient rehabilitation, and for improving health.
  • Bio electromagnetics, instrumentation, neural networks, robotics, and detector technologies are some of the disciplines necessary to develop new knowledge and creations in this area.
  • A keystone of this research area is the building of and real-world devices and systems.
  • Onsite facilities for prototyping and testing instrumentation systems, fabricating and measuring the performance of implantable devices, and making robotic prostheses, are readily available.
  • New detectors and sensor arrays are microfabricated in a 2,000 sq ft cleanroom.

To learn more about Bioelectronics, refer to:

brainly.com/question/21819443

#SPJ4

4 0
1 year ago
What family tree are pecans apart of
Vesna [10]
The Juglandaceae tree
4 0
3 years ago
Read 2 more answers
Q4 a.
dedylja [7]

The Java program that accepts a matrix of M × N order and then interchanges diagonals of the matrix is given below:

<h3>Steps:  </h3>
  • 1. We can only interchange diagonals for a square matrix.
  • 2. Therefore, we would have to create a square matrix of size [M × M].
  • 3. We would check whether the matrix is a square matrix or not. If the matrix is square then follow step 3 else terminate the program.
  • 4. Apply logic for interchange diagonal of the matrix some logic is given below.

<h3>Java Code</h3>

//  Java Program to Accept a Matrix of Order M x N &

//  Interchange the Diagonals

import java.util.Scanner;

public class InterchangeDiagonals {

   public static void main(String[] args)

   {

       // declare variable

       int m, n, i, j, temp;

       // create a object of scanner class

       Scanner sc = new Scanner(System.in);

       System.out.print("Enter number of rows ");

       // take number of rows

       m = sc.nextInt();

       System.out.print("Enter number of columns ");

       // take number of columns

       n = sc.nextInt();

       // declare a mxn order array

       int a[][] = new int[m][n];

       // if block it's execute when m is equals to n

       if (m == n) {

           System.out.println(

               "Enter all the values of matrix ");

           // take the matrix inputs

           for (i = 0; i < m; i++) {

               for (j = 0; j < n; j++) {

                   a[i][j] = sc.nextInt();

               }

           }

           System.out.println("original Matrix:");

           // print the original matrix

           for (i = 0; i < m; i++) {

               for (j = 0; j < n; j++) {

                   System.out.print(a[i][j] + " ");

               }

               System.out.println("");

           }

          // perform interchange

           for (j = 0; j < m; j++) {

               temp = a[j][j];

               a[j][j] = a[j][n - 1 - j];

               a[j][n - 1 - j] = temp;

           }

           System.out.println(

               " after interchanging diagonals of matrix ");

           // print interchanged matrix

           for (i = 0; i < m; i++) {

               for (j = 0; j < n; j++) {

                   System.out.print(a[i][j] + " ");

               }

               System.out.println("");

           }

       }

       // else block it's only execute when m is not equals

       // to n

       else {

           System.out.println("Rows not equal to columns");

       }

   }

}

Read more about java programming here:

brainly.com/question/18554491

#SPJ1

7 0
1 year ago
Other questions:
  • Not a characteristic property of ceramic material (a) high temperature stability (b) high mechanical strength (c) low elongation
    7·2 answers
  • A 500-m^3 rigid tank is filled with saturated liquid-vapor mixture of water at 200 kPa. If 20% of the mass is liquid and the 80%
    11·1 answer
  • how to calculate the torque when a force is applied on a cog? explain the step-by-step and provide an illustration/diagram. Can
    15·1 answer
  • Argon is compressed in a polytropic process with n=1.2 from 120 kPa and 10 °C to 800 kPa in a piston cylinder device. Determine:
    11·1 answer
  • What is the weight density of a 2.24 in diameter titanium sphere that weights 0.82 lb?
    12·1 answer
  • 2 Consider airflow over a plate surface maintained at a temperature of 220°C. The temperature profile of the airflow is given as
    13·1 answer
  • When a conductor is moved in a magnetic field, a voltage will be induced on the conductor. However, current won't flow through t
    11·1 answer
  • A simple Rankine cycle coal-fired power plant has given states identified in the following table. The power plant produces 2.1 b
    9·1 answer
  • Problem 3.10 One/half million parts of a certain type are to be manufactured annually on dedicated production machines that run
    7·2 answers
  • Question 40 and the next Question 41
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!