Answer:
#include <iostream>
#include <iomanip>
using namespace std;
class pointType
{
public:
pointType()
{
x=0;
y=0;
}
pointType::pointType(double x,double y)
{
this->x = x;
this->y = y;
}
void pointType::setPoint(double x,double y)
{
this->x=x;
this->y=y;
}
void pointType::print()
{
cout<<"("<<x<<","<<y<<")\n";
}
double pointType::getX()
{return x;
}
double pointType::getY()
{return y;
}
private:
double x,y;
};
int main()
{
pointType p2;
double x,y;
cout<<"Enter an x Coordinate for point ";
cin>>x;
cout<<"Enter an y Coordinate for point ";
cin>>y;
p2.setPoint(x,y);
p2.print();
system("pause");
return 0;
}
Answer:
Uair = 0.0749 KW/k = 74.9 W/k
Explanation:
The natural air change per hour is given by the formula:
Natural Air Change per Hour = ACPH = 60*Volume Flow/Volume
where,
ACPH = 0.4
Volume Flow = ? in ft³/min
Volume = 19456 ft³
Therefore,
0.4 = (60 min)(Volume Flow)/(19456 ft³)
Volume Flow = (0.4)(19456 ft³)/(60 min) = (129.7 ft³/min)(1 min/60 s)
Volume Flow = (2.16 ft³/s)(0.3048 m/1 ft)³ = 0.061 m³/s
Now, we find heat loss coefficient:
Uair = Volumetric Flow*Density of air*Specific Heat Capacity of air
Uair = (0.061 m³/s)(1.225 kg/m³)(1 KJ/kg.k)
<u>Uair = 0.0749 KW/k = 74.9 W/k</u>
Answer:Topographic map. Contour line. Learning Objectives. After completing this chapter, you will be able to: □ Define civil engineering and civil drafting.
Explanation: