Reference no: EM13168169
write a program that will calculate the heat transfer of a substance (water) given three different shapes. The user has to be able to input the type of shape, so that the computer can calculate area, and plug it back in to the equation for heat transfer. The equation for heat transfer is given as:
q = (h)*(A)*(Ts-Ta)
q= heat transfer
A = area of the user inputted shape
Ts= surface tempurature
Ta= ambient tempurature
h= convective heat transfer coeeficient (given as 8.7 W/(C*m^2)
The three different shapes that have to be calculated for area (user choice) are:
1-A rectangular area
2-An elliptical area
3- Other area
The equation for an elliptical area is given as pi*(little radius)*(big radius)
For 'other' area, the user just imputs the area.
Here is my program so far. Could you please tell me what I'm doing wrong? I'm getting a ton of error messages.
/* The contained program is designed to calculate the heat transfer per unit area of a substance
*/
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int shape(0);
double s1, s2, q, h(8.7), Ts, Ta, rl, rs, A, PI;
PI = acos(-1);
h = 8.7;
cout<<"\nenter your surface Tempurature:";
cin>>Ts;
cout<<"\nenter the ambient (surrounding) Tempurature:";
cin>>Ta;
cin>>shape;
switch(shape)
{
case 1://execute before the next major break statment is Shape = 1
cout<<"\nenter the length of side 1:";
cin>>s1;
cout<<"\nenter the length of side 2:";
cin>>s2;
cout<<"\nyour area in case 1 is:";
A = s1*s2;
cout<<A<<endl;
break;//go to the end of switch block
case 2://execute the code before the next break statement if Shape = 2
cout<<"\nenter the radius of the minor axis:";
cin>>rs;
cout<<"\nenter the radius of the major axis:";
cin>>rl;
A = (PI*rl*rs)>>endl;
cout<<A<<endl;
break;//go to the end of switch block
case 3://execute beofore the next major break if statement is Shape = 3
cout<<"\nenter your Area:";
cin>>A;
break;//go to the end of switch block
}//end of switch
cout<<"\ndetermine your surface area:";
q = h*A*(Ts-Ta);
cout<<"\nThe heat transfer of the substance is:"<<q<<endl;
return 0;
}
Write a computer program using q basic
: write a computer program using q basic with the following information. We just started learning about loop commands but I'm completely lost. My teacher introduced the for next, do while, and do until loop commands and he suggested to use the for next..
|
The chief financial officer
: The chief financial officer (CFO) of NCWR keeps a huge number of reports, spreadsheets, and other critical financial information on his computer, which runs Windows 7
|
Long-distance communication in a wan infrastructure
: How can cables like UTP and coaxial cable be used for long-distance communication in a WAN infrastructure? Where are these cables used most often?
|
Catch clauses are listed is important
: write a program that can be used to demonstrate that the order in which catch clauses are listed is important
|
Program that will calculate the heat transfer of a substance
: write a program that will calculate the heat transfer of a substance (water) given three different shapes. The user has to be able to input the type of shape, so that the computer can calculate area, and plug it back in to the equation for heat trans..
|
Using your musicalinstrument class
: Finally, create a Java test class that simulates using your MusicalInstrument class. In your test class you should at a minimum: a) Construct 4 instances of your instrument, b) tune your instruments, c) print the name of your instrument d) print ..
|
Dubbing was coined as a term of copying
: Dubbing was coined as a term of copying media in the 1980's for all mediums. What term was a major issue during the process of continously dubbing media? Digitization cured this issue.
|
Write a java program that uses the elapsed time
: Write a Java program that uses the elapsed time for an event in second and then outputs the elapsed time in hours, minutes and seconds. (For example, if the desired time is 9630 seconds, then the output is 2: 40: 30)
|
Matching program that takes input from a text file
: need to make a string matching program that takes input from a text file and outputs that match (if there is one) asked from the user. i have done this part , the only problem is that , with the output match , i also need to print some words before a..
|