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
kenny6666 [7]
2 years ago
8

A jet impinges directly on to a plate that is oriented normal to the axis of the jet. The mass flow rate of the jet is 50 kg/min

and its velocity is 200 m/s. Perform a control volume analysis to calculate the force on the plate.
Engineering
1 answer:
PilotLPTM [1.2K]2 years ago
3 0

Answer:

166.67 N

Explanation:

Given:

Mass flow rate = 50 kg/min = 50 kg / 60 seconds = 0.833 kg/s

Initial velocity = 200 m/s

after striking the normal board the water will flow in the normal direction, thus the final velocity in the direction of the initial flow will be zero

therefore,

Force = (change in momentum)

or

Force = Initial momentum - final momentum

or

Force = 0.833 × 200 - 0.833 × 0

or

Force = 166.67 N

You might be interested in
After a strong storm, a worker does not realize that a power transmission line has fallen on his car and is electrocuted while o
joja [24]

Answer and Explanation:

<u>The correct answer choice is Contacting Overhead Power Lines.</u>

This is because the powerlines are making contact (touching) his car, and the example isn't related to the other answer choices.

<u><em>#teamtrees #PAW (Plant And Water)</em></u>

3 0
2 years ago
Outline the structure of an input-output model (including assumptions about supply and demand). What is an inverse matrix? Why i
pishuonlain [190]

Answer:

Explanation:

C.1 Input-Output Model

It is a formal model that divides the economy into 2 sectors and traces the flow of inter-industry purchases and sales. This model was developed by Wassily Leontief in 1951. In simpler terms, the inter-industry model is a quantitative economic model that defines how the output of one industry becomes the input of another industrial sector. It is an interdependent economic model where the output of one becomes the input of another. For Eg: The Agriculture sector produces output using the inputs from the manufacturing sector.

The 3 main elements are:

Concentrates on an economy which is in equilibrium

Deals with technical aspects of production

Based on empirical investigations and assumptions

Assumptions

2 sectors - " Inter industry sector" and "final sector"

Output of one industry is the input for another

No 2 goods are produced jointly. i.e each industry produces homogenous goods

Prices, factor suppliers and consumer demands are given

No external economies or diseconomies of production

Constant returns to scale

The combinations of inputs are employed in rigidly fixed proportions.

Structure of IO model

See image 1

Quadrant 1: Flow of products which are both produced and consumed in the process of production

Quadrant 2: Final demand for products of each producing industry.

Quadrant 3: Primary inputs to industries (raw materials)

Quadrant 4: Primary inputs to direct consumption (Eg: electricity)

The model can be used in the analysis of the labor market, forecast economic development of a nation and analyze economic developments of various regions.

Leontief inverse matrix shows the output rises in each sector due to a unit increase in final demand. Inverting the matrix is significant since it is a linear system of equations with unique solutions. Thus, the final demand vector for the required output can be found.

C.2 Linear programming problems

Linear programming problems are optimization problems in which objective function and the constraints are all linear. It is most useful in making the best use of scarce resources during complex decision makings.

Primal LP, Dual LP, and Interpretations

Primal linear programming: They can be viewed as a resource allocation model that seeks to maximize revenue under limited resources. Every linear program has associated with it a related linear program called dual program. The original problem in relation to its dual is termed as a primal problem. The objective function is a linear combination of n variables. There are m constraints that place an upper bound on a linear combination of the n variables The goal is to maximize the value of objective functions that are subject to the constraints. If the primal linear programming has finite optimal value, then the dual has finite optimal value, and the primal and dual have the same optimal value. If the optimal solution to the primal problem makes a constraint into a strict inequality, it implies that the corresponding dual variable must be 0. The revenue-maximizing problem is an example of a primal problem.

Dual Linear Programming: They represent the worth per unit of resource. The objective function is a linear combination of m values that are the limits in the m constraints from the primal problem. There are n dual constraints that place a lower bound on a linear combination of m dual variables. The optimal dual solution implies fair prices for associated resources. Stri=ong duality implies the Company’s maximum revenue from selling furniture = Entrepreneur’s minimum cost of purchasing resources, i.e company makes no profit. Cost minimizing problem is an example of dual problems

See image 2

n - economic activities

m - resources

cj - revenue per unit of activity j

4 0
3 years ago
Read 2 more answers
Explain how feedback control is used to<br> adjust robotic movements.
LuckyWell [14K]

Answer:

Feedback control of arm movements using Neuro-Muscular Electrical Stimulation (NMES) combined with a lockable, passive exoskeleton for gravity compensation

6 0
2 years ago
Sketch T-s and p-v diagrams for the Diesel cycle.
labwork [276]

Answer:

Diesel cycle:

    All diesel engine works on diesel cycle.It have four processes .These four processes are as follows

1-2.Reversible adiabatic compression

2-3.Heat addition at constant pressure

3-4.Reversible adiabatic expansion

4-1.Heat addition at constant volume

When air inters in the piston cylinder after that it compresses and gets heated due to compression after that heat addition take place at constant pressure after that power is produces when piston moves to bottom dead center.

From the diagram of P-v And T-s we can understand so easily.

3 0
3 years ago
Integer to Float Conversion All labs must be done during lab time. Each labs worth 10 points The lab can be hand in next day wit
andrew-mc [135]

Answer:

Code explained below

Explanation:

.data

msg1: .asciiz "Please input a temperature in celsius: "

msg2: .asciiz "The temperature in Fahrenheit is: => "

num: .float 0.0

.text

main:

#print the msg1

li $v0, 4

la $a0, msg1

syscall

#read the float value from user

li $v0,6 #read float syscall value is $v0

syscall #read value stored in $f0

#formula for celsius to fahrenheit is

#(temperature(C)* 9/5)+32

#li.s means load immediate float

#copy value 9.0 to $f2

li.s $f2,9.0  

#copy value 5.0 to $f3

li.s $f3,5.0

# following instructions performs: 9/5

#div.s - division of two float numbers

#divide $f2 and f3.Result will stores in $f1

div.s $f1,$f2,$f3

#following instruction performs: temperature(C) * (9/5)

#multiple $f1 and $f0.Result stored in $f1

mul.s $f1,$f1,$f0

#copy value 32 to $f4

li.s $f4,32.0

#following instruction performs: (temperature(C) * (9/5))+32

#add $f1 and $f4.Result stores in $f1

add.s $f1,$f1,$f4

#store float from $f1 to num

s.s $f1,num

#print the msg2

li $v0, 4 #print string syscall value is 4

la $a0, msg2 #copy address of msg2 to $a0

#print the float

syscall

li $v0,2 #print float syscall value is 2

l.s $f12,num #load value in num to $f12

syscall

#terminate the program

li $v0, 10 #terminate the program syscall value is 10

syscall

4 0
3 years ago
Other questions:
  • 1. What is an op-amp? List the characteristics of an ideal op-amp
    11·1 answer
  • A 1-mm-diameter methanol droplet takes 1 min for complete evaporation at atmospheric condition. What will be the time taken for
    14·1 answer
  • 5) A 80-kg man has a total foot imprint area of 480 cm2. Determine the pressure this man exerts on the ground if (a) he stands o
    5·1 answer
  • A company that produces footballs uses a proprietary mixture of ideal gases to inflate their footballs. If the temperature of 23
    11·1 answer
  • Ok I need a new laptop but I'm not sure which one. The Surface laptop 3 is better in many fields like the camera, speaker, audio
    14·1 answer
  • A car accelerates uniformly from rest to 60 km/h in 30 s. What is its displacement during this time?
    7·1 answer
  • The author states that chemical engineering is one of the most difficult and complex aspects of engineering. Why do you think th
    7·2 answers
  • 4.68 Steam enters a turbine in a vapor power plant operating at steady state at 560°C, 80 bar, and exits as a saturated vapor at
    15·1 answer
  • Cast iron has about how much carbon content?
    12·1 answer
  • 2. How were scientists able to access a car's computer system?
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!