Answer:
The mass flow rate of the mixture in the manifold is 6.654 kg/min
Explanation;
In this question, we are asked to calculate mass flow rate of the mixture in the manifold
Please check attachment for complete solution and step by step explanation.
Answer and Explanation:
Gas chromatography separates compounds depending on their **polarity and volatility**. Benzene, m-xylene, and toluene have similar **polarities**, therefore, the main basis for separation is **volatility**. The more volatile a component the ** higher its vapor pressure**, hence the more time it spends in the **gaseous mobile phase**, giving it a **shorter** retention time. Therefore, components of a liquid mixture will elute in order of **increasing boiling points/decreasing volatilities/increasing polarities with the stationary phase**.
Answer:
0.740833917 ton/hr
Explanation:
Given:
Cooling load, 8890.007 Btu/hr = 2.605 kW
Room size = 180 
According to the thumb rule
1 ton of refrigerant = 12000Btu
Hence for 8890.007 Btu/hr,
the mass flow rate of the refrigerant is =8890.007 / 12000
= 0.740833917 ton per hr
Hence, mass flow rate is 0.740833917 ton/hr
Answer:
The couples are not all on one axis or plane for that matter but if the A and B connector had to be specified it would go by the yz axis diagonal to the x axis with a magnitude of about 15. The direction of the axis would be pointed up to the second quadrant. Hope this was helpful
Explanation:
Hello, you haven't provided the programing language in which you need the code, I'll explain how to do it using Python, and you can follow the same logic to make a program in the programing language that you need.
Answer:
# -*- coding: utf-8 -*-
#Python
def upsidedown_pyramid(height):
maximun = (2*(height-1))+1
for i in range(height): print(' '*i+'*'*(maximun-i*2)+' '*i)
Explanation:
- Define your function with an input parameter
- Define your maximum, because you are not printing a normal pyramid but an upside-down pyramid you are going to start printing from the maximum number of '*' to just one, but what exactly is the maximum number of '*'? Because you build a pyramid starting with one block, '*', and each level you add two more blocks your formula to calculate the maximum is (2*(height-1))+1
- Finally, you have to create a for loop to print each level. You need to start printing zero spaces and the maximum number of blocks, the next level you need two spaces and the maximum number of blocks minus two, and for each level that follows you are increasing by two the number of spaces, one left and one right, and decreasing by two the number of '*'
Note the constructing block of this pyramid is *