Answer:
Determine the added thrust required during water scooping, as a function of aircraft speed, for a reasonable range of speeds.= 132.26∪
Explanation:
check attached files for explanation
Answer:Decay rate constant,k = 0.00376/hr
Explanation:
IsT Order Rate of reaction is given as
In At/ Ao = -Kt
where [A]t is the final concentration at time t and [A]o is the inital concentration at time 0, and k is the first-order rate constant.
Initial concentration = 80 mg/L
Final concentration = 50 mg/L
Velocity = 40 m/hr
Distance= 5000 m
Time taken = Distance / Time
5000m / 40m/hr = 125 hr
In At/ Ao = -Kt
In 50/80 = -Kt
-0.47 = -kt
- K= -0.47 / 125
k = 0.00376
Decay rate constant,k = 0.00376/hr
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;
}