ForHosting KIT · Developer Utilities

Acoustic pressure from intensity calculator

This acoustic pressure from intensity calculator converts time-averaged sound intensity into root mean square sound pressure for a progressive plane wave.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Enter intensity in watts per square metre, medium density in kilograms per cubic metre, and sound speed in metres per second. The result is pressure in pascals, together with the medium's specific acoustic impedance and the values used. It is useful for engineering checks when intensity is known but an RMS pressure value is needed, provided the plane-wave assumptions are appropriate.

Understand the plane-wave relationship

For a progressive plane wave in a lossless medium, time-averaged acoustic intensity and root mean square pressure are related by I = p<sub>rms</sub>²/(ρc). Rearranging gives p<sub>rms</sub> = √(Iρc), which is the equation used here. The product ρc is the medium's specific acoustic impedance: it describes how pressure and particle velocity are coupled as the wave travels. Intensity must be supplied in watts per square metre, density in kilograms per cubic metre, and sound speed in metres per second to obtain pressure in pascals. The calculator also returns acoustic impedance in pascal-seconds per metre so the intermediate physical quantity remains visible and easy to audit. Intensity may be zero, producing zero pressure, while density and sound speed must be strictly positive. Every value must be finite. The computation uses the entered values directly and does not silently substitute standard air properties, because temperature, gas composition, altitude, liquids, and solids can all change density or propagation speed enough to matter in a technical calculation.

Choose inputs that match the measurement

Use time-averaged intensity for the same wave and location represented by the desired RMS pressure. Do not enter sound power without first dividing it by an appropriate propagation area, because watts and watts per square metre are different physical quantities. Likewise, use the density and sound speed of the actual medium under the relevant conditions. For ordinary room-temperature air, handbook values can support an estimate, but a calibrated result should use environmental or measured properties consistent with the test. Density and sound speed must also describe the same medium; combining air density with the speed of sound in water produces a mathematically valid number with no useful physical meaning. This relation concerns RMS pressure, not peak pressure or peak-to-peak pressure. For a sinusoid, peak pressure is RMS pressure multiplied by the square root of two, but that conversion is not generally sufficient to characterize arbitrary waveforms. Keep all inputs in the stated SI units. If source data uses milliwatts per square metre, grams per cubic centimetre, or another unit system, convert it before calculation so that the returned pressure is correctly expressed in pascals.

Know when the model applies

The plane-wave equation is most appropriate where the sound field behaves locally like a single progressive wave and pressure and particle velocity are in phase. Examples include idealized propagation in a uniform duct, measurements sufficiently far from a source in a free field, and controlled acoustic experiments designed around traveling waves. It can become inaccurate in a reactive near field, a strongly reverberant room, or a standing-wave region, where energy may move back and forth and local pressure does not map to net intensity through the simple impedance ρc. Reflections, absorption, boundaries, evanescent fields, and multimode propagation can also require complex acoustic impedance or a more complete field model. Treat the result as a model-based conversion, not as a replacement for a microphone calibration or direct pressure measurement. A useful engineering workflow is to record the intensity method, medium properties, environmental conditions, and distance from the source alongside the result. That context makes later comparisons meaningful and helps reviewers decide whether the progressive plane-wave assumption was justified for the measurement geometry and frequency range.

Convert an intensity probe result

Estimate RMS acoustic pressure from a measured time-averaged intensity using the properties of the test medium.

Check a duct acoustics model

Compare predicted progressive-wave intensity with the corresponding RMS pressure in a uniform medium.

Evaluate different media

See how the pressure associated with one intensity changes when density and sound speed produce a different acoustic impedance.

What equation does the calculator use?

It uses p_rms = sqrt(I × ρ × c), the progressive plane-wave relation between time-averaged intensity and RMS pressure.

What units should I enter?

Enter intensity in W/m², density in kg/m³, and sound speed in m/s. The pressure result is in Pa.

Can intensity be zero?

Yes. Zero intensity returns zero RMS pressure. Density and sound speed must remain greater than zero.

Does this return peak sound pressure?

No. It returns root mean square pressure. Peak pressure depends on waveform; for a sinusoid only, peak pressure equals RMS pressure times sqrt(2).

Is the formula valid in a reverberant room or near a source?

Not necessarily. Reflections, standing waves, and reactive near fields can break the simple progressive plane-wave relationship.

What does an API calculation cost?

Each API request costs $0.002. The browser calculator can run the same deterministic calculation locally.

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/optics/acoustic-pressure-from-intensity

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/optics/acoustic-pressure-from-intensity \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"intensity":0.001,"density":1.225,"speed_of_sound":343}'
{
  "intensity": 0.001,
  "density": 1.225,
  "speed_of_sound": 343
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "optics.acoustic_pressure_from_intensity",
  "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 →