ForHosting KIT · Developer Utilities

Hydrostatic Force on an Inclined Surface Calculator

This hydrostatic force calculator finds the resultant force exerted by a stationary fluid on an inclined, fully submerged plane surface.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Enter the vertical depth of the surface centroid, the wetted area, and the fluid density. Standard gravity is supplied automatically but can be changed. The result includes centroid pressure and force in newtons and kilonewtons. Because centroid depth already captures the surface position relative to the free surface, no inclination angle is required for the force magnitude.

Use vertical centroid depth, not distance along the surface

Hydrostatic pressure increases linearly with vertical depth below a fluid's free surface. For a plane surface, the distributed pressure can be replaced by a single resultant force whose magnitude equals the pressure at the area centroid multiplied by the submerged area. The required depth is therefore the vertical distance from the free surface to the geometric centroid of the wetted plane. It is not the length measured down the slope, and it is not necessarily the depth of the top edge, bottom edge, hinge, or center of pressure. If the drawing gives a distance along an incline, first convert that distance to its vertical component using the geometry of the problem. Use only the submerged portion when a plate crosses the free surface: determine the area and centroid of that wetted shape rather than using the dimensions of the entire plate. The calculator assumes a plane surface in a stationary fluid of uniform density, with gauge pressure equal to zero at the free surface.

Understand the equation and the reported values

The calculation uses F = rho g h_c A, where rho is fluid mass density, g is gravitational acceleration, h_c is vertical centroid depth, and A is submerged surface area. The intermediate product rho g h_c is the gauge pressure at the centroid in pascals. Multiplying it by area produces force in newtons. The response also converts that force to kilonewtons for convenient engineering use. Inclination affects how the surface geometry determines centroid depth and where the resultant acts, but it does not otherwise change the force magnitude after the vertical centroid depth and wetted area are known. This distinction is useful because many textbook diagrams emphasize an angle even though the magnitude calculation needs no angle input. The calculator uses standard gravity by default. Supply a different positive value when a project specification, local convention, or non-Earth environment requires it. All inputs must be finite positive numbers, and the tool rejects zero, negative, missing, or nonnumeric values instead of returning a misleading result.

Apply the result with the right engineering limits

Use the resultant force as the total normal load from gauge hydrostatic pressure on one side of the plane. It can support preliminary sizing of gates, tank panels, hatches, viewing windows, and other submerged flat components. The magnitude alone does not locate the center of pressure, calculate a moment about a hinge, resolve forces into horizontal and vertical components, or include the pressure acting on the opposite face. Those tasks require additional geometry, such as the second moment of area and the plate orientation. The equation also assumes hydrostatic conditions: it does not represent wave impact, fluid acceleration, water hammer, viscous drag, or other dynamic loads. For gases or liquids whose density varies materially over the depth, a single density may be inadequate and the pressure distribution should be integrated using an appropriate density model. Treat the returned precision as numerical convenience rather than evidence that the input measurements are equally precise. For design work, apply the governing load combinations, safety factors, material rules, and professional review required by the relevant code.

Size a submerged gate

Estimate the total static water force normal to an inclined gate before calculating hinge moments and reactions.

Check a sloped tank panel

Convert the panel's wetted area and vertical centroid depth into a resultant pressure load for preliminary structural analysis.

Verify engineering coursework

Check the force-magnitude step independently while keeping center-of-pressure and moment calculations separate.

What formula does the calculator use?

It uses F = rho g h_c A, with density rho, gravitational acceleration g, vertical centroid depth h_c, and submerged area A.

Why is there no inclination-angle input?

Once the vertical centroid depth and wetted area are known, inclination does not independently affect the resultant force magnitude. It does affect the geometry used to find the centroid and center of pressure.

Does the result include atmospheric pressure?

No. It is a gauge-pressure result with zero pressure at the free surface. Atmospheric pressure commonly cancels when it acts on both sides.

Does this calculate the center of pressure?

No. Locating the line of action requires surface orientation and second-moment geometry that are not part of this input contract.

Can I use a density other than water?

Yes. Enter any positive uniform fluid density in kilograms per cubic metre. Use a more detailed integration when density changes significantly with depth.

What does an API calculation cost?

Each API request costs $0.002. The same deterministic calculation can run in the browser for the free web experience.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/eng/force-inclined-surface

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/eng/force-inclined-surface \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"centroid_depth_m":3.5,"area_m2":2.4,"fluid_density_kg_m3":1000}'
{
  "centroid_depth_m": 3.5,
  "area_m2": 2.4,
  "fluid_density_kg_m3": 1000
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "eng.force_inclined_surface",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →