Answer:
(a) Flow rate of vehicles = No of vehicles per mile * Speed
=No of cars per mile * Speed +No of trucks per mile * Speed
= 0.75*50*60 + 0.25*50*40
=2750 vehicles / hour
(b) Let Density of vehicles on grade = x
Density on flat * Speed =Density on grade * Speed
So,( 0.75*50) * 60 + (0.25*50) * 40 = (0.75* x) * 55 + (0.25* x) * 25
So, x= 57.89
So, Density is around 58 Vehicles per Mile.
(c) Percentage of truck by aerial photo = 25%
(d)Percentage of truck bystationary observer on the grade= 25*30/60 * 25/55 =22.73 %
Answer:
a) The Net power developed in this air-standard Brayton cycle is 43.8MW
b) The rate of heat addition in the combustor is 84.2MW
c) The thermal efficiency of the cycle is 52%
Explanation:
To solve this cycle we need to determinate the enthalpy of each work point of it. If we consider the cycle starts in 1, the air is compressed until 2, is heated until 3 and go throw the turbine until 4.
Considering this:




Now we can calculate the enthalpy of each work point:
h₁=281.4KJ/Kg
h₂=695.41KJ/Kg
h₃=2105KJ/Kg
h₄=957.14KJ/Kg
The net power developed:

The rate of heat:

The thermal efficiency:

Answer:
Explanation:
Using the proper technique is incredibly important because it prevents the materials being joined from breaking and/or causing an accident. If the wrong joining technique is used the materials may not hold in place and come apart easily instead. Also, some joining techniques are not meant for some materials and may instead cause the material to become weak and brittle causing it to break apart almost immediately.
Answer:
The solution code is written in Java.
- public class Movie {
- private double [][] seats = new double[5][5];
- private double totalSales;
-
- public Movie(){
-
- for(int i= 0; i < this.seats.length; i++){
- for(int j = 0; j < this.seats[i].length; j++){
- this.seats[i][j] = 12;
- }
- }
-
- this.totalSales = 0;
- }
-
- public boolean bookSeat(int i, int j)
- {
- if(this.seats[i][j] != 0){
- this.totalSales += this.seats[i][j];
- this.seats[i][j] = 0;
- return true;
- }else{
- return false;
- }
-
- }
- }
Explanation:
The method, bookSeat(), as required by the question is presented from Line 16 - 26 as part of the public method in a class <em>Movie</em>. This method take row,<em> i</em>, and column,<em> j</em>, as input.
By presuming the seats is an two-dimensional array with all its elements are initialized 12 (Line 7 - 10). This means we presume the movie ticket price for all the seats are $12, for simplicity.
When the<em> bookSeat() </em>method is invoked, it will check if the current price of seats at row-i and column-i is 0. If not, the current price, will be added to the <em>totalSales </em>(Line 19)<em> </em>and then set the price to 0 (Line 20) and return <em>true</em> since the ticket is successfully sold (Line 21). If it has already been sold, return <em>false</em> (Line 23).