Seeing what the other side of the world is doing right now
Answer:
1.96 kg/s.
Explanation:
So, we are given the following data or parameters or information which we are going to use in solving this question effectively and these data are;
=> Superheated water vapor at a pressure = 20 MPa,
=> temperature = 500°C,
=> " flow rate of 10 kg/s is to be brought to a saturated vapor state at 10 MPa in an open feedwater heater."
=> "mixing this stream with a stream of liquid water at 20°C and 10 MPa."
K1 = 3241.18, k2 = 93.28 and 2725.47.
Therefore, m1 + m2= m3.
10(3241.18) + m2 (93.28) = (10 + m3) 2725.47.
=> 1.96 kg/s.
Answer:
Complete question is:
write the following decorators and apply them to a single function (applying multiple decorators to a single function):
1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”
2. The decorator will return the wrapper per usual.
3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.
4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.
5. Apply both decorators (by @ operator to greetings()).
6. Invoke the greetings() function and capture the result.
Code :
def strong_decorator(func):
def func_wrapper(name):
return "<strong>{0}</strong>".format(func(name))
return func_wrapper
def em_decorator(func):
def func_wrapper(name):
return "<em>{0}</em>".format(func(name))
return func_wrapper
@strong_decorator
@em_decorator
def Greetings(name):
return "{0}".format(name)
print(Greetings("Hello"))
Explanation:
Answer:
<u>The automobile rental prices shall show all taxes (including a 6% state tax).</u>
Explanation:
Im pretty sure
Complete Question
For some metal alloy, a true stress of 345 MPa (50040 psi) produces a plastic true strain of 0.02. How much will a specimen of this material elongate when a true stress of 411 MPa (59610 psi) is applied if the original length is 470 mm (18.50 in.)?Assume a value of 0.22 for the strain-hardening exponent, n.
Answer:
The elongation is
Explanation:
In order to gain a good understanding of this solution let define some terms
True Stress
A true stress can be defined as the quotient obtained when instantaneous applied load is divided by instantaneous cross-sectional area of a material it can be denoted as .
True Strain
A true strain can be defined as the value obtained when the natural logarithm quotient of instantaneous gauge length divided by original gauge length of a material is being bend out of shape by a uni-axial force. it can be denoted as .
The mathematical relation between stress to strain on the plastic region of deformation is
Where K is a constant
n is known as the strain hardening exponent
This constant K can be obtained as follows
No substituting from the question we have
Making the subject from the equation above
From the definition we mentioned instantaneous length and this can be obtained mathematically as follows
Where
is the instantaneous length
is the original length
We can also obtain the elongated length mathematically as follows