Answer:
A pitot tube is used to measure fluid flow in engineering
Answer:
Explanation:
First we compute the characteristic length and the Biot number to see if the lumped parameter
analysis is applicable.
Since the Biot number is less than 0.1, we can use the lumped parameter analysis. In such an
analysis, the time to reach a certain temperature is given by the following
From the data in the problem we can compute the parameter, b, and then compute the time for
the ratio (T – T)/(Ti
– T)
Answer:
maximum allowable electrical power=4.51W/m
critical radius of the insulation=13mm
Explanation:
Hello!
To solve this heat transfer problem we must initially draw the wire and interpret the whole problem (see attached image)
Subsequently, consider the heat transfer equation from the internal part of the tube to the external air, taking into account the resistance by convection, and conduction as shown in the attached image
to find the critical insulation radius we must divide the conductivity of the material by the external convective coefficient

Answer and Explanation:
There four events or stages of reversible nature in a Carnot cycle are:
1. Isothermal expansion of gas
2. Adiabatic expansion
3. Isothermal compression of gas
4.Adiabatic compression of gas
All these 4 processes are reversible processes.
1. A reversible Isothermal expansion of gas takes place in Carnot cycle where an ideal gas absorbs or intake certain quantity of heat from a heat reservoir or source at an elevated temperature which results in the expansion of gas and work is done on the surroundings.
2. A reversible expansion of gas adiabatically takes place in Carnot cycle in an environment with thermal insulation where the gas expand and work is done on the surrounding which results in the lowering of the temperature of the system.
3. A reversible compression of gas isothermally takes place such that the work is done on the system by the surrounding resulting in heat loss.
4. A reversible compression of gas adiabatically, takes place in an environment with thermal insulation and the work is done continuously on the system by the surroundings resulting in the rise in temperature.
Answer:
#include<iostream>
Using namespace std;
int main()
{
int n, qty;
double price, amount;
cout<<"Number of items ";
cin>>n;
cout<<"ITEM<<"\t"<<"QUANTITY"<<"\t"<<"PRICE"<<"\t"<<"ITEM TOTAL";
for(int i= 1; I<= n; i++)
{
cin>>qty;
cin>>price;
amount = qty * price;
cout<<i<<"\t "<<qty<<"\t"<<price<<"\t"<<amount;
}
}
Explanation
The above program is written in C++ programming language
5 variables are declared and used in the program
n is declared as an integer to represent the total number of items
qty is declared as integer to represent the total quantity of each item
price is declared as double to represent the amount of each individual item
amount is declared as double to represent the total amount of an item; it is gotten by qty * price
i is declared as integer to iterated between each items
The amount of each item is calculated within the iteration and also printed immediately