Answer:
These drive fittings come in four common sizes: 1⁄4 inch, 3⁄8 inch, 1⁄2 inch, and 3⁄4 inch (referred to as "drives", as in "3⁄8 drive").
Answer:
Given Data:
concentration of sewer Csewer = 1.2 g/L
converting into mg/L = Csewer = 1.2 g/L x 1000 mg/g = 1200 mg/L
flow rate of sewer Qsewer = 2000 L/min
concentration of sewer Cstream = 20 mg/L
flow rate of sewer Qstream = 2m3/s
converting Q into L/min = 2m3/s x 1000 x 60 = 120000 L/min
mass diagram is
Answer:
23.3808 kW
20.7088 kW
Explanation:
ρ = Density of oil = 800 kg/m³
P₁ = Initial Pressure = 0.6 bar
P₂ = Final Pressure = 1.4 bar
Q = Volumetric flow rate = 0.2 m³/s
A₁ = Area of inlet = 0.06 m²
A₂ = Area of outlet = 0.03 m²
Velocity through inlet = V₁ = Q/A₁ = 0.2/0.06 = 3.33 m/s
Velocity through outlet = V₂ = Q/A₂ = 0.2/0.03 = 6.67 m/s
Height between inlet and outlet = z₂ - z₁ = 3m
Temperature to remains constant and neglecting any heat transfer we use Bernoulli's equation

Work done by pump

∴ Power input to the pump 23.3808 kW
Now neglecting kinetic energy

Work done by pump

∴ Power input to the pump 20.7088 kW
The right components for gsm architecture that consists of the hardware or physical equipment such as digital signal processors, radio transceiver, display, battery, case and sim card is the Mobile station.
<h3>What are the 4 main components?</h3>
In GSM, a cell station includes 4 fundamental additives: Mobile termination (MT) - gives not unusualplace features consisting of: radio transmission and handover, speech encoding and decoding, blunders detection and correction, signaling and get right of entry to to the SIM. The IMEI code is connected to the MT.
Under the GSM framework, a cell tele cell smartphone is called a Mobile Station and is partitioned into wonderful additives: the Subscriber Identity Module (SIM) and the Mobile Equipment (ME).
Read more about the mobile station:
brainly.com/question/917245
#SPJ4
Answer:
# Program is written in Python Programming Language
# Comments are used for explanatory purpose
# Program starts here
# Accept input
Steps = input (Number of Steps: ")
# Calculate distance
distance = float(2000) * float(steps)
#Print Formatted Result
print('%0.2f' % distance)
# End of Program
.--------
The above program converts number of steps to miles.
At line 5, the number of steps is inputted and stored in variable named Steps.
At line 6, the number of miles is calculated by multiplying 2000 by the content of variable Steps
The result is printed at line 8