Answer:
Flow rate = 86.48 gal/s
Head of water = 21.62 ft
Explanation:
Detailed explanation and calculation is shown in the image below.
Answer:
Sprockets.
Explanation:
A chain drive is an efficient technique used for the transmission of mechanical power from one point to another. For example, it is used for transmitting power to the wheels of a bicycle, motorcycle, motor vehicle and other machineries such as chain saw etc.
Chain drive ratio is the ratio between the rotational speeds of the input and output sprockets of a roller chain drive system. This ultimately implies that, chain drive ratio is the ratio of the number of teeth on the driving sprocket (T1) divided to the number of teeth on the driven sprocket (T2).
Also, the chain drive ratio can be calculated by dividing the number of teeth on the large sprocket by the number of teeth on the small sprocket.
Additionally, the rotational speed of a sprocket is measured in revolutions per minute (RPM).
One of the issues with the roller chain is that, as the roller chain moves round the sprocket link by link, it affects its speed (surge) due to the change in acceleration and deceleration i.e the rise and fall of its pitch line.
It was determined by the forensic engineers that the historic collapse of the Minneapolis Interstate Bridge was due to design and construction flaws. It led to the collapse of the structure.
<h3>What is the Minneapolis Interstate Bridge?</h3>
The Minneapolis Interstate Bridge is a well-known bridge that was constructed in Minneapolis city in 1967.
It has been demonstrated that the collapse of this bridge constructed in Minneapolis was due to its inadequate load capacity.
In architecture, it is fundamental to measure the amount of weight that a structure (in this case, a bridge) can sustain in a given period of time.
Learn more about the bridge construction here:
brainly.com/question/24686952
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).