Liquid Hydrogen is the fuel used by rockets.
Explanation:
- Liquid hydrogen which can be chemically denoted as "
" is often considered as the significant fuels for rocket.
- However rocket in its lower stages uses fuels such as Kerosene and oxygen where as in the higher stages such as second and third stages it uses liquid hydrogen.
- Liquid hydrogen is known to easily cool the nozzle and then also other parts of the rocket before mixing with the oxidizer such as the oxygen.
- Thus liquid hydrogen helps in preventing nozzle erosion and also reduces combustion chamber.
- Liquid hydrogen one the other hand is very expensive as 384,071 gallons of it will cost approximately $376,389.58
.
Thus liquid hydrogen is effectively used as a fuel for rocket.
Hey! How are you? My name is Maria, 19 years old. Yesterday broke up with a guy, looking for casual sex.
Write me here and I will give you my phone number - *pofsex.com*
My nickname - Lovely
Umm the Water cycle sorry I’m trying
Answer:
Most hydraulic systems develops pressure surges that may surpass settings valve. by exposing the hose surge to pressure above the maximum operating pressure will shorten the hose life.
Explanation:
Solution
Almost all hydraulic systems creates pressure surges that may exceed relief valve settings. exposing the hose surge to pressure above the maximum operating pressure shortens the hose life.
In systems where pressure peaks are severe, select or pick a hose with higher maximum operating pressure or choose a spiral reinforced hose specifically designed for severe pulsing applications.
Generally, hoses are designed or created to accommodate pressure surges and have operating pressures that is equal to 25% of the hose minimum pressure burst.
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}