1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Gennadij [26K]
3 years ago
7

The weatherman states that the current temperature is 95 F and the dew point is 74 F. What is the current relative humidity?

Engineering
1 answer:
spayn [35]3 years ago
3 0

Answer:

Current Relative Humidity is 29.623

Given:

Current Temperature, T_{c} = 95 F = 35^{\circ}C

Dew point temperature, T_{d} = 74 F = 23.34^{\circ}C

Solution:

Now, in order to calculate the Relative Humidity, RH, we use the given formula:

T_{d} =100( \frac{\frac{aT_{c}}{b + T}b + lnRH}{a - \frac{aT_{c}}{b + T} + lnRH})

where

a = 17.625

b = 237.7

Now, using the above formula and given values:

23.34 = (237.7\frac{\frac{17.625\times 35}{ 237.7 + 35} + lnRH}{17.625 - \frac{17.625\times 35}{237.7 + 35} + lnRH})

23.34(17.625 - 2.26 + lnRH) = (237.7\times 2.26 + lnRH)

358.62 + 23.34lnRH) = (537.20 + lnRH)

358.62 + 23.34lnRH) = (537.20 + lnRH)

On solving the above eqn, we get:

RH = 29.623

You might be interested in
The two shafts of a Hooke’s coupling have their axes inclined at 20°.The shaft A revolves at a uniform speed of 1000 rpm. The sh
lapo4ka [179]

Answer:

33.429 N-m

Explanation:

Given :

Inclination angle of two shaft, α = 20°

Speed of shaft A, N_{A} = 1000 rpm

Mass of flywheel, m = 30 kg

Radius of Gyration, k =100 mm

                                   = 0.1 m

Now we know that for maximum velocity,

\frac{N_{B}}{N_{A}} = \frac{cos\alpha }{1 - sin^{2}\alpha }

\frac{N_{B}}{1000} = \frac{cos20}{1 - sin^{2}20 }

N_{B} = 1064.1 rpm

Now we know

Mass of flywheel, m = 30 kg

Radius of Gyration, k =100 mm

                                   = 0.1 m

Therefore moment of inertia of flywheel, I = m.k^{2}

                                                                      =30 X 0.1^{2}

                                                                     = 0.3 kg-m^{2}

Now torque on the output shaft

T₂ = I x ω

    = 0.3 X 1064.2 rpm

    = 0.3\times \frac{2\pi \times 1064.1}{60}

     = 33.429 N-m

Torque on the Shaft B is 33.429 N-m

4 0
3 years ago
What is Not considered as metric system ? a. Length b. Mass c. Time d. Volume e. Temperature
vampirchik [111]

Answer:

D.) Volume

Explanation:

7 0
3 years ago
Read 2 more answers
Amanda and Tyler opened a business that specializes in shipping liquids, such as milk, juice, and water, in cylindrical containe
USPshnik [31]

Answer:

circleType.h

#ifndef circleType_H

#define circleType_H

class circleType

{

public:

void print();

void setRadius(double r);

//Function to set the radius.

//Postcondition: if (r >= 0) radius = r;

// otherwise radius = 0;

double getRadius();

//Function to return the radius.

//Postcondition: The value of radius is returned.

double area();

//Function to return the area of a circle.

//Postcondition: Area is calculated and returned.

double circumference();

//Function to return the circumference of a circle.

//Postcondition: Circumference is calculated and returned.

circleType(double r = 0);

//Constructor with a default parameter.

//Radius is set according to the parameter.

//The default value of the radius is 0.0;

//Postcondition: radius = r;

private:

double radius;

};

#endif

circleTypeImpl.cpp

#include <iostream>

#include "circleType.h"

using namespace std;

void circleType::print()

{

cout << "Radius = " << radius

<< ", area = " << area()

<< ", circumference = " << circumference();

}

void circleType::setRadius(double r)

{

if (r >= 0)

radius = r;

else

radius = 0;

}

double circleType::getRadius()

{

return radius;

}

double circleType::area()

{

return 3.1416 * radius * radius;

}

double circleType::circumference()

{

return 2 * 3.1416 * radius;

}

circleType::circleType(double r)

{

setRadius(r);

}

cylinderType.h

#ifndef cylinderType_H

#define cylinderType_H

#include "circleType.h"

class cylinderType: public circleType

{

public:

void print();

void setHeight(double);

double getHeight();

double volume();

double area();

//returns surface area

cylinderType(double = 0, double = 0);

private:

double height;

};

#endif

cylinderTypeImpl.cpp

#include <iostream>

#include "circleType.h"

#include "cylinderType.h"

using namespace std;

cylinderType::cylinderType(double r, double h)

: circleType(r)

{

setHeight(h);

}

void cylinderType::print()

{

cout << "Radius = " << getRadius()

<< ", height = " << height

<< ", surface area = " << area()

<< ", volume = " << volume();

}

void cylinderType::setHeight(double h)

{

if (h >= 0)

height = h;

else

height = 0;

}

double cylinderType::getHeight()

{

return height;

}

double cylinderType::area()

{

return 2 * 3.1416 * getRadius() * (getRadius() + height);

}

double cylinderType::volume()

{

return 3.1416 * getRadius() * getRadius() * height;

}

main.cpp

#include <iostream>

#include <iomanip>

using namespace std;

#include "cylinderType.h"

int main()

{

double radius,height;

double shippingCostPerLi,paintCost,shippingCost=0.0;

 

cout << fixed << showpoint;

cout << setprecision(2);

cout<<"Enter the radius :";

cin>>radius;

 

cout<<"Enter the Height of the cylinder :";

cin>>height;

 

 

cout<<"Enter the shipping cost per liter :$";

cin>>shippingCostPerLi;

 

 

//Creating an instance of CylinderType by passing the radius and height as arguments

cylinderType ct(radius,height);

 

double surfaceArea=ct.area();

double vol=ct.volume();

 

 

shippingCost+=vol*28.32*shippingCostPerLi;

 

char ch;

 

cout<<"Do you want the paint the container (y/n)?";

cin>>ch;

if(ch=='y' || ch=='Y')

{

cout<<"Enter the paint cost per sq foot :$";

cin>>paintCost;    

shippingCost+=surfaceArea*paintCost;    

}    

cout<<"Total Shipping Cost :$"<<shippingCost<<endl;

 

return 0;

}

3 0
3 years ago
A plot of land is an irregular trangle with a base of 122 feet and a height of 47 feet what is the area of the plot?
Reika [66]

Answer:

150 is the area

Explanation:

3 0
3 years ago
Explain the prosses of welding
klio [65]

Answer:

Welding is a fabrication process whereby two or more parts are fused together by means of heat, pressure or both forming a join as the parts cool. Welding is usually used on metals and thermoplastics but can also be used on wood.

Explanation:

7 0
3 years ago
Read 2 more answers
Other questions:
  • A solid steel shaft has to transmit 100 kW at 160 RPM. Taking allowable shear stress at 70 Mpa, find the suitable diameter of th
    15·1 answer
  • A proposed piping and pumping system has 20-psig static pressure, and the piping discharges to atmosphere 160 ft above the pump.
    8·1 answer
  • Can you carry 1 m3 of liquid water? Why or why not? (provide the weight to support your answer)
    7·1 answer
  • You could be sued if you injure someone while rescuing them if...
    11·2 answers
  • Significant figures are an indicator of accuracy. a) True b) False
    8·1 answer
  • 3. (20 points) Suppose we wish to search a linked list of length n, where each element contains a key k along with a hash value
    7·1 answer
  • Different between an architect and an engineer​
    15·1 answer
  • Steel riverts in aluminium drain gutters leak after two years. is it galvanic corrosion? ​
    5·1 answer
  • In a movie theater in winter, 510 people, each generation sensible heat at a rate of 80 W, are watching a movie. The heat losses
    11·1 answer
  • When did michael faraday invent wind powered electrical generation?
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!