ForHosting KIT · Developer Utilities

Specific Acoustic Impedance Calculator

Specific acoustic impedance describes how strongly a medium opposes the particle motion associated with a travelling sound wave.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

This calculator applies the fundamental relation Z = ρc, multiplying density in kilograms per cubic metre by the speed of sound in metres per second. The result is reported in pascal-seconds per metre, a unit also called the rayl. Use it to compare media, prepare first-pass interface calculations, or check an engineering worksheet with a transparent and deterministic formula.

Enter density and sound speed in compatible SI units

Start with the mass density of the medium in kilograms per cubic metre and the speed at which sound travels through that same medium in metres per second. Both values must describe the same material and, when accuracy matters, the same physical conditions. Temperature, pressure, composition, salinity, and frequency can affect the values found in references or measurements. For example, a density measured for cold water should not automatically be paired with a sound speed quoted for warmer water. The calculator accepts positive finite numbers and keeps the supplied values visible in the result so the calculation can be audited. Convert grams per cubic centimetre, feet per second, or other units before entering them because the tool intentionally uses one unambiguous SI convention. Do not enter a bulk acoustic impedance for a duct or surface impedance for a layered absorber: those quantities may depend on geometry or boundary conditions and are not interchangeable with the intrinsic product of medium density and sound speed calculated here.

Understand the formula and the reported unit

The calculation is Z = ρc, where Z is specific acoustic impedance, ρ is density, and c is sound speed. Multiplying kg/m³ by m/s gives kg/(m²·s), which is equivalent to Pa·s/m. That unit is commonly called the rayl, so a numerical result of 400 Pa·s/m is also 400 rayl. The operation is direct multiplication without fitted constants, random sampling, hidden reference tables, or network lookups. The returned value represents the characteristic specific acoustic impedance for a plane progressive wave in a uniform medium under the assumptions behind the supplied density and sound speed. It is a real-valued magnitude suitable for common introductory and lossless-medium calculations. In dissipative materials, confined geometries, porous structures, or frequency-dependent systems, impedance can be complex and can vary with frequency. This calculator does not infer those effects. Treat its result as the ρc baseline, then use an appropriate complex model or measurement method when resistance and reactance must be separated.

Apply the result to comparisons and interface estimates

Specific acoustic impedance is useful because discontinuities between media help explain reflection and transmission at an interface. A large contrast often indicates that more acoustic energy will be reflected, while closer impedances generally support stronger transmission, subject to incidence angle, losses, and boundary details. You can calculate the value for each medium separately and use those results in the reflection or transmission equation appropriate to your problem. The calculator is also practical for validating simulation inputs, documenting laboratory assumptions, comparing candidate coupling materials, and checking that a published value has plausible units and scale. Record the density, sound speed, environmental conditions, and source of each input alongside the computed result. Avoid treating ρc alone as a complete prediction of an assembled device: transducer geometry, layers, frequency response, attenuation, and wave type may materially change real behaviour. For automated use, each request costs $0.002; the deterministic response makes it straightforward to reproduce calculations in quality-control or engineering workflows.

Compare two acoustic media

Calculate a consistent ρc value for each medium before estimating how an incident wave behaves at their boundary.

Check simulation parameters

Verify that density and sound-speed inputs produce the characteristic impedance expected by an acoustic model.

Document laboratory assumptions

Create a reproducible impedance value from measured or referenced material properties for an experiment record.

What is specific acoustic impedance?

For a progressive plane wave, it is the ratio of acoustic pressure to particle velocity. In a uniform lossless medium, its characteristic value is density multiplied by sound speed.

Which units should I enter?

Enter density in kg/m³ and sound speed in m/s. The result is returned in Pa·s/m, which is numerically equivalent to rayl.

Does this calculate complex acoustic impedance?

No. It calculates the real ρc characteristic value. Frequency-dependent resistance and reactance require a model or measurement appropriate to the material and geometry.

Can I use values measured under different conditions?

The arithmetic will run, but the result may not represent a real state of the medium. For reliable work, use density and sound speed for matching temperature, pressure, composition, and other relevant conditions.

How much does an API calculation cost?

Each API request costs $0.002. The browser calculation is designed to use the same deterministic formula.

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/specific-acoustic-impedance

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