Answer:
mechanical power used to overcome frictional effects in piping is 2.37 hp
Explanation:
given data
efficient pump = 80%
power input = 20 hp
rate = 1.5 ft³/s
free surface = 80 ft
solution
we use mechanical pumping power delivered to water is
.............1
put here value
= (0.80)(20)
= 16 hp
and
now we get change in the total mechanical energy of water is equal to the change in its potential energy
..............2
and that can be express as
..................3
so
......4
solve it we get
hp
so here
due to frictional effects, mechanical power lost in piping
we get here
put here value
= 16 -13.614
= 2.37 hp
so mechanical power used to overcome frictional effects in piping is 2.37 hp
The unique model production line is responsible for producing identical pieces. For this purpose the balancing of the assembly line is only responsible for assembling a model throughout the line.
This is a considerable difference compared to the mixed model assembly line where many models are assembled during the same production line, that is, it produces parts or products that have slight changes accommodated in them, with slight variations in their model or products of soft variety
The choice of the type of production depends on the type of company and its own demand, always prioritizing the efficiency in the operation. Generally, the mixed model tends to be chosen when demand is very large and customer demand is required to be met. In others it is considered a plant model in which half of the line is mixed and the other one is the only model in order to keep the efficiency balanced.
Answer:
The following query is used to display TripName. Reservationld, FirstName. LastName and TotalCost of trip by adding the trip price plus other fees and multiplying the result by the number of persons which have number of persons >4.
Query:
SELECT ReservationlD, Trip.TripName. Customer.LastName. Customer.FirstName. (TripPrice+OtherFees) 'NumPersons as TotalCost FROM Reservation, Trip, Customer WHERE NumPersons>4 AND Reservation.TriplD=Trip.TriplD AND
Customer. CustomerNum=Reservation.CustomerNum:
Explanation:
- Select clause is used to retrieve data from specified database table or relation and returns the data in the form of table.
- ReservationID. Trip.TripName. Customer.LastName. Customer.FirstName are the column name of table.
- (TripPrice+OtherFees) 'NumPersons will calculate the total cost of the Trip and stored it into TotalCost column.
- As clause is used to give new name TotalCost to resultant column.
- FROM clause specifies one or more table from where records to be retrieved. o Reservation. Trip and Customer are the table name.
- WHERE clause is used in SQL query to retrieve only those records that satisfy the specified condition
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Vlad [161]
Answer:
Explanation:
you need more information x