Difficulty: Medium
Correct Answer: Q = max(0, P − s)
Explanation:
Introduction / Context:
Event-based runoff estimation commonly starts with simple abstractions that subtract initial or potential infiltration from storm rainfall. For small catchments and quick estimates, a linear 'potential infiltration' model is frequently used.
Given Data / Assumptions:
Concept / Approach:
The simplest rainfall–runoff abstraction assumes that if rainfall does not exceed the infiltration capacity, no direct runoff occurs. When rainfall exceeds the potential infiltration, the excess becomes direct runoff. This yields a piecewise linear relation:
Step-by-Step Solution:
Verification / Alternative check:
While more sophisticated models (e.g., SCS-CN: Q = (P − Ia)^2 / (P − Ia + S)) exist, the question explicitly frames 'potential infiltration s' in a simplified sense; thus, the linear excess-rainfall model is appropriate.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Q = max(0, P − s)
Discussion & Comments