Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program for a meteorologist that calculates the wind chill factor and cloud base altitude for the inputs temperature in Fahrenheit, wind speed in

Write a program for a meteorologist that calculates the wind chill factor and cloud base altitude for the inputs temperature in Fahrenheit, wind speed in mph, and the dew point in Fahrenheit. Use a loop to enter a finite number of inputs for a given program run. You MUST use four (4) functions in the solution: 

One for getting input

One to compute and return the wind chill

One to compute and return the cloud base

One for the output

The output will be formatted exactly as shown below (use setw(x)) with the introduction as shown and notes as appropriate.

Use the cmath library for the power function (i.e. you need #include )

The equation for approximating the wind chill factor in North America is:

wc = 35.74 + 0.6215 * Ta - 35.75 * V0.16 + 0.4275 * Ta * V0.16

Where:

Ta is the air temperature in Fahrenheit

V is the wind speed in mph (use the pow(windSpeed,0.16))

Note: it's acceptable to use the different magic numbers within your program

Wind chill temperature is defined only at or below 10.0C (50.0 

F), and wind speeds above 4.8 kilometers per hour (3.0 mph). The program must check this and output asterisks when wind chill is invalid and output the message shown below. 
The cloud base in feet above ground level is determined by the "spread" which is the difference between the temperature and the dew point, and is calculated: cloudBase = temperature_spread / 4.4 * 1000; Cloud base should never be negative, if the value computed is below zero, assign it zero. 

See the Attached code samples for what your program should look like and for testing purposes.image text in transcribedimage text in transcribedimage text in transcribed

Output screen captures and test data I This program determines wind chill using temperatureI I in Fahrenheit and wind speed in mph, and computes I the cloud base using the dew point in Fahrenheit Enter the temperature in degroos Fahrenheit: 20 Enter the wind speed in mph: 15 Enter the deu point in degrees Fahrenheit: 5 Temperature ind Speed Dew Point ind Chill Cloud Base 20.0 dF 15.0 mph 5.0 dF 6.2 dF 3409.1 ft Output screen captures and test data I This program deternines wind chill using temperature I I in Fahrenheit and wind speed in nph, and computes I the cloud base using the dew point in Fahrenheit Enter the temperature in degrees Fahrenheit: 46 Enter the wind speed in ph Enter the dew point in degrees Fahrenheit: 37 Tenperature Wind Speed Dew Point Wind Chill Cloud Base 46.0 dF 7.0 mph 37.0 dF 42.4 dF 2045.5 ft

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft SQL Server 2012 Unleashed

Authors: Ray Rankins, Paul Bertucci

1st Edition

0133408507, 9780133408508

More Books

Students also viewed these Databases questions

Question

What do Dimensions represent in OLAP Cubes?

Answered: 1 week ago