Hydraulic And Pneumatic Power Systems Chapter 12 Info
Hydraulic fluid viscosity that is too high causes: a) Faster actuator response b) Increased power consumption and slow operation ✅ c) Lower system pressure d) No effect
Cavitation in a hydraulic pump is caused by: a) High oil temperature b) Contaminated oil c) Low inlet pressure ✅ d) Wrong viscosity
Which law describes the compressibility of air in pneumatic systems? a) Pascal b) Boyle ✅ c) Bernoulli d) Charles
A hydraulic cylinder has a piston area of 4 in². System pressure is 1200 psi. What is the maximum force? a) 300 lbf b) 1200 lbf c) 4800 lbf ✅ d) 600 lbf hydraulic and pneumatic power systems chapter 12
# Paste into any Python environment or use as a reference def hydraulic_force(pressure_psi, area_in2): """F = P × A (lbf)""" return pressure_psi * area_in2
def actuator_velocity(flow_gpm, area_in2): """v = Q / A (in/s)""" return (flow_gpm * 231) / (area_in2 * 60) print("Force from 1500 psi on 2 sq in piston:", hydraulic_force(1500, 2), "lbf") print("New air volume if 10 cu.in at 100 psi drops to 80 psi:", pneumatic_volume_change(100, 10, 80), "cu.in") 3. 📝 10-Question Mastery Quiz (Self-Grading) Covering typical exam topics from Ch. 12.
What type of valve allows flow in one direction only? a) Spool valve b) Needle valve c) Check valve ✅ d) Unloading valve Hydraulic fluid viscosity that is too high causes:
Which component converts pneumatic energy into linear motion? a) Air motor b) Pneumatic cylinder ✅ c) Solenoid valve d) Receiver tank
def pump_flow_rate(displacement_in3_per_rev, rpm, efficiency=0.9): """Q = (displacement × rpm) / 231 (gpm)""" theoretical = (displacement_in3_per_rev * rpm) / 231 return theoretical * efficiency
def hydraulic_pressure(force_lbf, area_in2): """P = F / A (psi)""" return force_lbf / area_in2 What is the maximum force
An FRL unit in a pneumatic system stands for: a) Flow, Return, Leak b) Filter, Regulator, Lubricator ✅ c) Fluid, Return, Line d) Fast, Reliable, Light
In a hydraulic intensifier, output pressure is _____ than input pressure. a) Lower b) Same c) Higher ✅ d) Unrelated
