Answer:
Total kinetic energy= 400 puondal foot
Kinetic energy per unit mass= 8 (poundaul foot/lb)
Explanation:
To determine the total kinetic energy of the block we use the equation:
Kinetic energy = (1/2) × m × (v^{2}) = (1/2) × (50lb) × (4 foot/s)^{2}) =
= 400 poundal foot
To establish the kinetic energy per unit of mass we must simply divide the value of the total kinetic energy obtained previously by the mass of the block obtaining:
Kinetic energy per unit mass= (400 poundal foot) / (50lb) =
= 8 (poundaul foot/lb)
Explanation:
dnndndndndndndndndnndmfnfnf
Answer:
The strength coefficient is
and the strain-hardening exponent is 
Explanation:
Given the true strain is 0.12 at 250 MPa stress.
Also, at 350 MPa the strain is 0.26.
We need to find
and the
.

We will plug the values in the formula.

We will solve these equation.
plug this value in 

Taking a natural log both sides we get.

Now, we will find value of 

So, the strength coefficient is
and the strain-hardening exponent is
.
Answer:
T = 20.42 N
Explanation:
given data
standard altitude = 30,000 ft
velocity Ca = 500 mph = 0.4 m/s
inlet areas Aa = 7 ft² = 0.65 m²
exit areas Aj = 4.5 ft² = 0.42 m²
velocity at exit Cj = 1600 ft/s = 487.68 m/s
pressure exit
j = 640 lb/ft² = 0.3 bar
solution
we get here thrust of the turbojet that is express as
thrust of the turbojet T = Mg × Cj - Ma × Ca + (
j Aj -
a Ag ) .............1
here Ma = Mg
Ma =
a × Ca Aa = 0.042 kg/s
put value in equation 1 we get
T = 0.042 × (487.68 -0.14) + ( 0.3 × - 0.3 × 0.65 )
T = 20.42 N
Answer:
The solution code is written in Python:
- def convertCSV(number_list):
- str_list = []
- for num in number_list:
- str_list.append(str(num))
-
- return ",".join(str_list)
- result = convertCSV([22,33,44])
- print(result)
Explanation:
Firstly, create a function "convertCSV" with one parameter "number_list". (Line 1)
Next, create an empty list and assign it to a new variable <em>str_list</em>. (Line 2)
Use for-loop to iterate through all the number in the <em>number_list</em>.(Line 4). Within the loop, each number is converted to a string using the Python built-in function <em>str() </em>and then use the list append method to add the string version of the number to <em>str_list</em>.
Use Python string<em> join() </em>method to join all the elements in the str_list as a single string. The "," is used as a separator between the elements (Line 7) . At the end return the string as an output.
We can test the function by calling the function and passing [22,33,34] as an argument and we shall see "22,33,44" is printed as an output. (Line 9 - 10)