Answer:
Given that
Mass flow rate ,m=2.3 kg/s
T₁=450 K
P₁=350 KPa
C₁=3 m/s
T₂=300 K
C₂=460 m/s
Cp=1.011 KJ/kg.k
For ideal gas
P V = m R T
P = ρ RT


ρ₁=2.71 kg/m³
mass flow rate
m= ρ₁A₁C₁
2.3 = 2.71 x A₁ x 3
A₁=0.28 m²
Now from first law for open system

For ideal gas
Δh = CpΔT
by putting the values


Q= - 45.49 KJ/kg
Q =- m x 45.49 KW
Q= - 104.67 KW
Negative sign indicates that heat transfer from air to surrounding
Explanation:
Please kindly share your problem two with us as to know the actual problem we are dealing with, the question looks incomplete
Answer:
#include <stdio.h>
typedef struct InventoryTag_struct {
int itemID;
int quantityRemaining;
} InventoryTag;
int main(void) {
InventoryTag redSweater;
redSweater.itemID = 314;
redSweater.quantityRemaining = 500;
/* Your solution goes here */
printf("Inventory ID: %d, Qty: %d\n",redSweater.itemID,redSweater.quantityRemaining);
getchar();
return 0;
}
Explanation:
False. Please mark as brainliest