Air at T1 = 32°C, p1 = 1 bar, 50% relative humidity enters an insulated chamber operating at steady state with a mass flow rate of 3 kg/min and mixes with a saturated moist air stream entering at T2 = 7°C, p2 = 1 bar. A single mixed stream exits at T3 = 17°C, p3 = 1 bar. Neglect kinetic and potential energy effects
A) Determine mass flow rate of the moist air entering at state 2, in kg/min. (Answer was 4.5 kg/min)
B) Determine the relative humidity of the exiting stream. (Answer was 79.6%)
C) Determine the rate of entropy production, in kJ/min.K.
Need part C. Thank you
In: Mechanical Engineering
Given trap spacings among two lobster fishing crews: BT cooperative has spacings = {93, 99, 105, 94, 82, 70, 86} PA cooperative has spacings = {118, 94, 106, 72, 90, 66, 153, 98}
a) Set up null and alternative hypotheses for testing the equality of variances
b) Find the sample variances for the two cooperatives.
c) Compute the test statistic.
d) Find the approximate p-value of the test.
e) Make a conclusion if ? = .01.
In: Math
[In your opinion], are decision-makers rational (in your answer, give a quick definition of rationality, not the long one]? Give 3 supporting historical examples that align with the quick definition of rationality.
The answer should be about 4 well-written sentences.
In: Operations Management
Describe the steps which you would take on AWS and the decisions that would need to be made to create, configure and run a Virtual Machine Instance
In: Computer Science
What is a warranty? What warranties are required by the UCC?
In: Operations Management
In: Computer Science
A battery manufacturer tests its newly developed EV battery by constructing a mean chart for controlling the service life of a fully charged battery. The company knows from previous samples that when the service life is in control it is normally distributed with a mean of 500 hours and a standard deviation of 10 hours. On three recent production batches, the firm tested service life on random samples of four batteries, with these results: Sample Service Life (hours) 1 495 500 505 500 2 525 515 505 515 3 494 485 506 499 What is the mean of the sampling distribution of sample means when the service life is in control? 500 What is the sample mean service life for sample 3? 496 What is the standard deviation of the sampling distribution of sample means for whenever service life is in control? 5 If he uses upper and lower control limits of 505 and 495 hours, what is his risk (alpha) of concluding that service life is out of control when it is actually under control (Type I error Normal table.pdf )? 1 (Provide your answer in 0.**** format) If he uses upper and lower control limits of 505 and 495 hours, on what sample(s) (if any) does service life appear to be out of control?
In: Operations Management
What changes occur in adolescents in regard to self-concept and self-esteem? Who, in your opinion, has more of an impact on adolescents in regard to self-concept and self-esteem caregivers or peers? Support your response.
In: Psychology
A panel of three high school teachers at Rippowam High School had been convened by the principal to make a most important decision. A local company was willing to award a $10,000 college scholarship to "the most outstanding senior" in the class, with the recipient to be determined by the high school. Walter Plant, Sandra Meltzer, and Jerry Driscoll were given the assignment to select the scholarship recipient. They agreed to meet at 2:30 to discuss their assignment. Driscoll opened the meeting: "I wish we had more to go on than what they gave us. A student can be 'outstanding' in many ways." "Well, I assume grades are the most important factor," said Meltzer. "Why don't we start out with the ranking of all students based upon their grade-point averages. I'd be hard pressed to award $10,000 to any student other than the class valedictorian." "I don't think it’s that easy," continued Plant. "I am far more impressed with a student who gets a B+ in honors physics than someone who gets an A in basketweaving. While a student's grade point average is certainly a good measure of their academic accomplishments, it's tainted by the difficulty of the courses taken." "That's not the only problem with the grade point average," Driscoll warned. "I've got some students in my homeroom who will graduate with the minimum number of hours, and I've got some others who branched out and took more than the minimum. I think we should give some consideration to the total number of hours taken in the curriculum." A deep frown appeared on Plant's face. "I don't see why we should penalize the student who did only what was required by the school. We specify what is needed for graduation, and the students have to comply. While I never encourage a student to stick to the minimum, I don't think we should devalue their performance for having done so." "Maybe we're getting too hung up with grades and hours," said Meltzer. “Suzanne Millord won first prize in the regional science fair competition. Shouldn't something like that count too? I'm more impressed with that than an A in any class." "You know," Plant commented, "we are forgetting about some other things too. How about civic activities, such as participation in student government or interest clubs? We encourage student involvement in these activities to make for a more well-rounded education. I don't feel we should ignore them when it comes time to make an award." "I feel those activities have their own rewards," said Driscoll. "We want to give this scholarship to the best student, not the most socially active one." "While we're at it," mused Plant, "how about athletic participation? We also stress physical education as well as social and intellectual development. Maybe we should also include interscholastic athletics. We've got some outstanding athletes in this school, and who’s to say that 'most outstanding' can't be defined in terms of athletics?" "I hardly think this was designed to be an athletic scholarship," Meltzer grumbled. "If you want to make it more complicated, why not throw in financial need; $10,000 is a lot of money, and some families could use it more than others." Driscoll stared out the window. He knew it would be a long afternoon
Would the criteria for selecting the "most outstanding student" be more biased or less biased by the inclusion of financial need? Why?
If you had been invited to this meeting, what suggestions would you make to help the teachers reach a decision? Use your lecture notes to give suggestions to improve the process based on principles of I/O?
In: Psychology
Compare an electro-magnetic relay system with an electronic logic or PLC system that controls a 3-ph contactor. Include appropriate commercial specifications, drawings, and their advantages/disadvantages in your explanation.
In: Electrical Engineering
Describe EBS and what features it offers
In: Computer Science
CSCI 3000 Homework 5
In this homework, you will manage the car data of a dealer. First, you will design a C++ class called Car. A single Car variable (object) have five member variables (attributes): VIN, make, model, year, and price.
Car class attributes should be private, and set/get functions should be implemented to access and update the values. Also, you should have at least two constructor functions to initialize Car objects. Finally a print() function should be implemented to print single Car data on the screen.
Class description is given below:
Car |
|
Type |
Member Variables |
string |
VIN |
string |
make |
string |
model |
int |
year |
int |
price |
Return Type |
Member Function |
(constructor) |
Car() //default constructor |
(constructor) |
Car(string newVIN, string newMake, string newModel, int newYear, int newPrice) |
void |
setVIN(string newVIN) |
void |
setMake(string newMake) |
void |
setModel(string newModel) |
void |
setYear(int newYear) |
void |
setPrice(int newPrice) |
string |
getVIN() |
string |
getMake() |
string |
getModel() |
int |
getYear() |
int |
getPrice() |
void |
print() |
Once your class is ready, you will read the “cardata.txt” file, which includes all 250 cars in the dealer. A sample view of the file is given below:
…
Before you read file, you will create an array of cars having size of 250. This number is always 250 and does not change. In the file, each line contains a single car, for which attributes are separated by space character. So, you can read one line using a simple while loop such as:
While(inputFile >> VIN >> make >> model >> year >> price){
//create new car and send it to the corresponding array index
...
}
Once your car array is ready, you will provide following operations to the user in a menu.
You can write your code (including the car class definition and main function) in a single cpp file and submit that file. If you can separate the class files from the main program, you will get extra 10 points for the assignment. In that case, you will need to submit three files such as, “car.h”, “car.cpp”, and “main.cpp”. I will show you how to separate class files from main program in class.
On the top of your source code, please add your name and number, Course ID, HW number and the date using a comment block. Please see the example below,
In: Computer Science
Grandma decides to put 1200 dollars every month into an account for you. She makes 16 monthly deposits, the last coming September 1, 2019 - the day you start college. She wants you to be able to withdraw money from this account at the beginning of each month, with the first withdrawal coming September 1, 2019 and the last coming June 1, 2024, (when you'll graduate). (Note: that makes 58 withdrawals total.) How much will you be able to withdraw each month if the account is earning a nominal interest rate of 7.5 percent convertible monthly?
In: Accounting
In a detailed paragraph please write about covid 19 - prevalence of the problem ... I need a detailed paragraph on prevalence of the problem regarding to covid 19
Please be as detailed as possible! Please do not just write anything that doesn't Make sense
IMPORTANT: If you are going to write please make sure your writing is neat, legible, and easy to read. Please write in print (not cursive). Thank you
In: Nursing
What is Plato’s argument for a bipartite division of the soul? How does this relate to freedom? Distinguish rational and sense ‘appetites’ by their different ‘objects’. What is the relation between cognition and desire?
In: Chemistry