To solve this problem it is necessary to apply the concepts related to the heat exchange of a body.
By definition heat exchange in terms of mass flow can be expressed as

Where
Specific heat
= Mass flow rate
= Change in Temperature
Our values are given as
Specific heat of air



From our equation we have that


Rearrange to find 

Replacing


Therefore the exit temperature of air is 53.98°C
Answer:
time = 224 days
Explanation:
given data
thick = 30 m
piezometers = 280 m
head between two = 1.4 m
aquifer hydraulic conductivity = 50 m
porosity = 20%
solution
we get here average pole velocity that is get by using Darcy law that is
Va =
................1
here Va is average pole velocity and k is hydraulic conductivity and
is porosity
here v is =
...........2
v = 50 ×
v = 0.25 m/day
and here average linear velocity Va will be
Va =
Va =
Va = 1.25 m/day
travel time for water will be
time =
time = 224 days
Answer:
B
Explanation:
I'm so sorry if this is wrong. This is what I think it is though, I had a class like this and I think this is what I said.
Answer: Isentropic process is the process in fluids which have a constant entropy.
Explanation: The isentropic process is considered as the ideal thermodynamical process and has both adiabatic as well as reversible processes in internal form.This process supports no transfer of heat and no transformation of matter .The entropy of the provided mass also remains unchanged or consistent.These processes are usually carried out on material on the efficient device.
Answer:
see explaination
Explanation:
import java.util.InputMismatchException;
import java.util.Scanner;
public class calculate {
static float a=0,b=0;
double cal()
{
if(a==0||b==0)
{
System.out.println("no values found in a or b");
start();
}
double x=(a*a)+(b*b);
double h=Math.sqrt(x);
a=0;
b=0;
return h;
}
float enter()
{
float val=0;
try
{
System.out.println("Enter side");
Scanner sc1 = new Scanner(System.in);
val = sc1.nextFloat();
return val;
}
catch(InputMismatchException e)
{
System.out.println("Enter correct value");
}
return val;
}
void start()
{
calculate c=new calculate();
while(true)
{
System.out.println("Enter Command");
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
switch(input)
{
case "A":
a=c.enter();
break;
case "B":
b=c.enter();
break;
case "C":
double res=c.cal();
System.out.println("Hypotenuse is : "+res);
break;
case "Q":
System.exit(0);
default:System.out.println("wrong command");
}
}
}
public static void main(String[] args) {
calculate c=new calculate();
c.start();
}
}