| Type: | Package |
| Title: | Calculate ANSI/ASA S3.5-1997 (R2024) Speech Intelligibility Index |
| Version: | 1.2.4 |
| Date: | 2026-08-30 |
| Description: | Calculates the American National Standards Institute (ANSI) S3.5-1997 Speech Intelligibility Index (SII) (ANSI 1997, (ANSI, 1997)), a standard method for computing the intelligibility of speech from acoustical measurements of speech, noise, and hearing thresholds. This package includes data frames corresponding to Tables 1 - 4 in the ANSI standard as well as functions utilizing these tables and user-provided hearing threshold and noise level measurements to compute the SII score. The methods implemented here extend the standard computations to allow calculation of SII when the measured frequencies do not match those required by the standard by applying interpolation. Furthermore, the package now includes a native, highly optimized C++ implementation of the canonical Moore & Glasberg (2004) specific loudness model for impaired hearing, which structurally mirrors the bramslow2004 implementation from the Auditory Modeling Toolbox (AMT) to calculate loudness in perceptual sones. It also includes advanced methods to predict aided SII based on hearing aid prescriptive rationales, introducing Open-NL (Open Non-Linear), a novel theoretical optimization framework. Open-NL utilizes a Nelder-Mead simplex algorithm to maximize the ANSI SII metric, subject to computational physiological loudness penalties and simulated hardware Maximum Power Output (MPO) constraints, to derive theoretical gain targets. The package also provides functions to calculate real-ear insertion gains, estimate maximum power output (SSPL90), and prescribe dynamic range compression. NOTE: This package is explicitly flagged as a non-clinical academic tool designed exclusively for theoretical modeling and simulation. It has not undergone clinical validation and is strictly contraindicated for general clinical fitting. Unapproved use for direct patient care is prohibited. Any application of this tool to human subjects must occur exclusively within the strictly controlled context of Institutional Review Board (IRB) approved research studies. Development of this package was originally funded by the Center for Bioscience Education and Technology (CBET) of the Rochester Institute of Technology (RIT). |
| Depends: | R (≥ 3.5.0) |
| Imports: | Rcpp |
| LinkingTo: | Rcpp |
| Suggests: | splines, readxl, xtable, testthat |
| License: | GPL-3 | file LICENSE |
| LazyLoad: | yes |
| NeedsCompilation: | yes |
| Repository: | CRAN |
| Config/roxygen2/version: | 8.0.0 |
| Encoding: | UTF-8 |
| Packaged: | 2026-09-01 00:01:13 UTC; mark |
| Author: | Gregory R. Warnes [aut, cph], Mark Shaver [cre, aut] |
| Maintainer: | Mark Shaver <mark.shaver@posteo.net> |
| Date/Publication: | 2026-09-12 14:30:07 UTC |
Calculate ANSI/ASA S3.5-1997 (R2024) Speech Intelligibility Index
Description
This package calculates ANSI/ASA S3.5-1997 (R2024) Speech Intelligibility Index (SII), a standard method for computing the intelligibility of speech from acoustical measurements of speech, noise, and hearing thresholds. This package includes data frames corresponding to Tables 1 - 4 in the ANSI standard as well as a function utilizing these tables and user-provided hearing threshold and noise level measurements to compute the SII score. The methods implemented here extend the standard computations to allow calculation of SII when the measured frequencies do not match those required by the standard by applying interpolation to obtain values for the required frequencies.
Author(s)
Gregory R. Warnes greg@warnes.net
References
ANSI/ASA S3.5-1997 (R2024), "American National Standard Methods for Calculation of the Speech Intelligibility Index" American National Stan- dards Institute, New York.
Other software programs for calculating SII are available from https://sii.to/html/programs.html.
Examples
## Example C.1 from ANSI/ASA S3.5-1997 (R2024) Annex C
sii.C1 <- sii(
speech = c(50.0, 40.0, 40.0, 30.0, 20.0, 0.0),
noise = c(70.0, 65.0, 45.0, 25.0, 1.0,-15.0),
threshold= c( 0.0, 0.0, 0.0, 0.0, 0.0, 0.0),
method="octave"
)
sii.C1 # rounded to 2 digits by default
print(sii.C1$sii, digits=20) # full precision
summary(sii.C1) # full details
plot(sii.C1) # plot
## The value given in the Standard is $0.504$.
Calculate Psychoacoustic Binaural Loudness (Sones)
Description
Calculates the total perceived binaural loudness based on the Pieper et al. (2021) and Moore et al. (2016) binaural summation models.
Usage
calculate_binaural_loudness(x_left, x_right = NULL, alpha_b = -0.25)
Arguments
x_left |
An object of class 'SII' for the left ear. |
x_right |
Optional. An object of class 'SII' for the right ear. If NULL, assumes a perfectly symmetric bilateral fitting ('x_left == x_right'). |
alpha_b |
Numeric. The binaural inhibition factor. Default is -0.25, reflecting classical normal-hearing binaural inhibition. |
Value
A numeric value representing the total binaural loudness in Sones.
Calculate Loudness (Sones)
Description
Calculates the estimated loudness in sones for a given Speech Intelligibility Index (SII) object.
Usage
calculate_loudness(x, ohc_proportion = 0.65)
Arguments
x |
An object of class |
ohc_proportion |
Outer hair cell loss proportion (default: 0.65). |
Value
Returns a numeric value representing the total loudness in sones.
Author(s)
Mark Shaver
Examples
sii.res <- sii(speech=c(50, 40, 40, 30, 20, 0), threshold=rep(0,6), method="octave")
calculate_loudness(sii.res)
Calculate Loudness for Cochlear Hearing Loss
Description
Fast excitation pattern estimation based on Chen et al. 2011 (JASA) "A new model for calculating auditory excitation patterns and loudness for cases of cochlear hearing loss." This implements the Moore & Glasberg (2004) excitation model.
Usage
calculate_loudness_bramslow2004(
inputF,
inputLdB,
HLcf = NULL,
HLohcdB0 = NULL,
HLihcdB0 = NULL,
cambin = 0.1,
flow = 50,
fhigh = 15000,
outerearcorrection = "FreeField"
)
Arguments
inputF |
Vector of dense input frequency values (Hz, typically 1 Hz spaced) |
inputLdB |
Vector of input spectrum levels (dB/Hz) |
HLcf |
Audiogram frequencies |
HLohcdB0 |
OHC loss at audiogram frequencies |
HLihcdB0 |
IHC loss at audiogram frequencies |
cambin |
Spacing [ERB] between successive auditory filter CFs |
flow |
Lowest center frequency of an auditory filter |
fhigh |
Highest center frequency of an auditory filter |
outerearcorrection |
"FreeField", "PDR10", or "Eardrum" |
Value
A list containing Loudness (sones), Excitation, Cams, and CFs.
Calculate Canonical Loudness (Native C++ Engine)
Description
Native C++ port of the bramslow2004 canonical engine, corrected per AMToolbox 1.6.0 reference with noted simplifications.
Usage
calculate_loudness_cpp(
inputF,
inputLdB,
HLcf,
HLohcdB0,
HLihcdB0,
NoChan = 30L,
E_Beg = 3,
E_End = 32,
Binaural = 0L
)
Arguments
inputF |
Vector of input frequencies (Hz) |
inputLdB |
Vector of input spectrum levels (dB/Hz, free field) |
HLcf |
Audiogram frequencies (Hz) |
HLohcdB0 |
OHC loss at audiogram frequencies (dB) |
HLihcdB0 |
IHC loss at audiogram frequencies (dB) |
NoChan |
Number of ERB channels (default 30) |
E_Beg |
Lowest ERB rate (default 3.0) |
E_End |
Highest ERB rate (default 32.0) |
Binaural |
Integer indicating whether to compute binaural loudness (default 0L) |
Value
A list containing Loudness (sones), Excitation, Cams, and CFs.
Convert 1/3-octave band levels to 1 Hz spectrum density
Description
Convert 1/3-octave band levels to 1 Hz spectrum density
Usage
convert_1_3_octave_to_density(fc, level)
Arguments
fc |
Center frequencies of 1/3 octave bands |
level |
dB SPL in each band |
Value
A list containing 'f' (1 Hz frequencies) and 'l_density' (spectrum levels)
Constants Tables for ANSI/ASA S3.5-1997 (R2024) Speech Intelligibility Index (SII)
Description
Tables of constants for ANSI/ASA S3.5-1997 (R2024) Speech Intelligibility Index (SII)
Usage
data(critical)
data(equal)
data(onethird)
data(octave)
data(overall.spl)
Format
Each data frames has 6-21 observations and a subset of the following variables:
fiCenter frequency of SII band, Hz
liLower limit of frequency band, Hz
hiUpper limit of frequency band, Hz
DeltaiBand width adjustment, dB
IiBand importance function
normal,raised,loudandshoutStandard spectrum levels for vocal effort levels "normal", "raised", "loud", and "shout", respectively, dB
XiSpectrum level of internal noise, dB
FiBand importance function (weight)
Details
These data objects provide constant tables 1 – 4 from the ANSI S3.5-1997.
criticalTable 1: Critical band SII procedure constants
equalTable 2:Equally contributing (17 band) critical band SII
onethirdTable 3: One-third octave band SII procedure constants
octaveTable 4: Octave band SII procedure constants
overall.splOverall sound pressure level (SPL) for the for vocal effort levels "normal", "raised", "loud", and "shout", in dB
Source
ANSI/ASA S3.5-1997 (R2024), "American National Standard Methods for Calculation of the Speech Intelligibility Index" American National Standards Institute, New York.
References
ANSI/ASA S3.5-1997 (R2024), "American National Standard Methods for Calculation of the Speech Intelligibility Index" American National Standards Institute, New York.
Examples
data(critical)
critical # show entire table
data(equal)
names(equal)
equal$fi # extract just the frequency band centers
data(onethird)
barplot(onethird$Ii) # plot band importance function (weights)
data(octave)
round(octave, digits=2) # just 2 digits
data(overall.spl)
overall.spl
Export prescribed insertion gains for 50, 65, and 80 dB SPL input levels
Description
Export prescribed insertion gains for 50, 65, and 80 dB SPL input levels
Usage
export_gains(x)
Arguments
x |
An object of class 'SII' |
Value
A data.frame containing frequency and the prescribed insertion gains
Calculate Psychoacoustic Loudness (Sones)
Description
Calculates the total perceived loudness in Sones based on the specific speech spectrum and hearing thresholds of the patient.
Usage
get_specific_loudness(x)
Arguments
x |
An object of class |
Details
The current implementation uses a first-order heuristic model of recruitment based on Stevens' Power Law, mapped over an estimated dynamic range. While it is computationally fast and demonstrates the restoration of loudness conceptually, it is not a full psychoacoustic model (like Moore-Glasberg / CAM2Q), as it does not calculate basilar membrane excitation patterns via RoEx filters.
Mathematical Formula:
1. Uncomfortable Loudness Level (UCL) is predicted from the threshold ($T_i$):
UCL_i = 100 + 0.25 \times \max(0, T_i - 20)
2. Dynamic Range (DR):
DR_i = \max(1, UCL_i - T_i)
3. Sensation Level (SL) of speech peaks (RMS + 15 dB):
SL_i = \max(0, E_i + 15 - T_i)
4. Loudness Level (Phons) modeling recruitment:
Phons_i = \left( \frac{SL_i}{DR_i} \right) \times 100
5. Specific Loudness (Sones) per band via Stevens' Power Law:
Sones_i = 2^{\frac{Phons_i - 40}{10}} \quad \text{for } Phons_i \ge 40
Sones_i = \left(\frac{Phons_i}{40}\right)^{2.5} \quad \text{for } Phons_i < 40
6. Total Loudness (Sones):
Sones_{Total} = \sum Sones_i \times \text{calibration\_factor}
The calibration factor (0.25 for 21 critical bands) is scaled dynamically based on the number of frequency bands used in the underlying SII method (e.g., 21 for critical, 6 for octave) to ensure equivalent loudness summation across different resolutions.
Value
A numeric value representing the total loudness in Sones.
Open-NL WDRC Gain Prescription
Description
Calculates experimental prescriptive insertion gain and SSPL90 targets for a given hearing loss, based on a rule-based WDRC heuristic.
Usage
open_nl(
speech = 65,
threshold,
freq,
...,
gender = "male",
experience = "experienced",
config = "bilateral",
coupling = "custom_occluded",
module = "standard",
ldl = NULL,
loss = NULL,
distortion_category = NULL,
user_cr = NULL,
optimize = TRUE,
seed_noise = NULL,
optim_method = "Nelder-Mead",
abg_fraction = 0.75,
enable_severe_booster = FALSE,
booster_onset = 70,
disable_sdlfp = FALSE
)
## S3 method for class 'prescription_target'
print(x, ...)
## S3 method for class 'prescription_target'
summary(object, ...)
## S3 method for class 'prescription_target'
plot(x, ...)
Arguments
speech |
Input speech spectrum level at each frequency. If a single number is provided, it's assumed to be the overall broadband SPL. |
threshold |
Hearing threshold level at each frequency. |
freq |
Frequencies at which the thresholds are measured. |
gender |
Gender of the patient ("male", "female"). |
experience |
Hearing aid experience ("new", "experienced"). |
config |
Fitting configuration ("unilateral", "bilateral"). |
coupling |
Acoustic coupling ("custom_occluded", "open_dome", "tulip_dome", "double_dome", "vent_1mm_solid", etc.). |
module |
Fitting module ("standard", "cin"). |
ldl |
Loudness Discomfort Levels (optional). |
loss |
Conductive hearing loss component (optional). |
distortion_category |
Distortion category ("Normal", "Low", "Moderate", "High"). |
user_cr |
User defined compression ratio (optional). |
optimize |
Optimization flag. |
seed_noise |
Random noise for optimizer seeding. |
optim_method |
Optimization method. |
abg_fraction |
Air-bone gap fraction to compensate. |
enable_severe_booster |
Logical flag to enable severe-loss booster. |
booster_onset |
Threshold for the severe-loss booster (default: 70). |
disable_sdlfp |
Logical flag to disable the Slope-Dependent Low-Frequency Penalty (SD-LFP). |
x |
A |
object |
A |
... |
Additional graphical or printing parameters. |
Details
This experimental function generates non-linear prescriptive targets for research and modeling purposes. It is not intended for clinical use.
Value
An object of class prescription_target.
Author(s)
Mark Shaver
Prescribe Compression Settings based on Hearing Loss
Description
Provides recommendations for compression speed (fast vs slow acting) and compression ratio/release times based on the four-frequency Pure Tone Average (PTA4).
Usage
prescribe_compression(freq, threshold, module = "standard")
Arguments
freq |
A numeric vector of frequencies. |
threshold |
A numeric vector of hearing thresholds. |
module |
The operating module ("standard", "cin", "mhl"). |
Value
A list containing compression recommendations.
Alternative ANSI/ASA S3.5-1997 (R2024) SII Transfer Function Weights
Description
Alternative ANSI/ASA S3.5-1997 (R2024) Speech Intelligibility Index (SII) transfer function weights for for various types of speech material.
Usage
data(sic.critical)
data(sic.onethird)
data(sic.octave)
Format
Each data frame contains the following 8 variables, each corresponding the the transfer function weights for a specific type of speech material:
fiCenter frequency, Hz
SIIStandard SII transfer function (weights)
NNSNNS (various nonsense syllable tests where most of the English phonems occur equally often)
CID22CID-W22 (PB-words)
NU6NU6 monosyllables
DRTDRT (Diagnostic Rhyme Test)
ShortPassageshort passages of easy reading material
SPINSPIN monosyllables
CSTConnected Speech Test
Details
sic.criticalprovides alternative weights for the critical band SII procedure.
sic.onethirdprovides alternative weights for the one-third octave frequency band SII procedure.
octaveprovides alternative weights for the octave frequency band SII procedure.
note
There is no table of alternative weights for the equally-weighted SII band procedure as the weights for this method are (by definition) constant across all bands.
Source
All values except the CST columns are from:
ANSI/ASA S3.5-1997 (R2024), "American National Standard Methods for Calculation of the Speech Intelligibility Index" American National Standards Institute, New York.
Values in the CST columns are from the original Connected Speech Test (CST) dataset.
References
ANSI/ASA S3.5-1997 (R2024), "American National Standard Methods for Calculation of the Speech Intelligibility Index" American National Standards Institute, New York.
Examples
## Load the alternative weights for the critical band method
data(sic.critical)
## display the weights
round(sic.critical,3)
## draw a comparison plot
ngroup <- ncol(sic.critical)
matplot(x=sic.critical[,1], y=sic.critical[,-1],
type="o",
xlab="Frequency, Hz",
ylab="Weight",
log="x",
lty=1:ngroup,
col=rainbow(ngroup)
)
legend(
"topright",
legend=names(sic.critical)[-1],
pch=as.character(1:ngroup),
lty=1:ngroup,
col=rainbow(ngroup)
)
data(onethird)
data(octave)
Compute ANSI/ASA S3.5-1997 (R2024) Speech Intelligibility Index (SII)
Description
Compute the Speech Intelligibility Index (SII) described by ANSI specification S3.5-1997, including extensions for conductive hearing loss. Optionally apply interpolation obtain values for the required frequencies.
Usage
sii(speech = c("normal", "raised", "loud", "shout"),
noise, threshold, loss, freq,
method = c("critical", "equal-contributing",
"one-third octave", "octave"),
importance = c("SII", "NNS", "CID22", "NU6", "DRT",
"ShortPassage", "SPIN", "CST"),
interpolate=FALSE,
prescription=NULL,
desensitization=FALSE,
ldl=NULL,
gender="male",
experience="experienced",
config="bilateral",
coupling="custom_occluded",
module="standard",
transducer="inserts",
custom_gain=NULL,
measured_wrs=NULL,
wrs_level=NULL,
distortion_category=NULL,
nal_ldf=FALSE, ...)
## S3 method for class 'SII'
print(x, digits=3, ...)
## S3 method for class 'SII'
plot(x, clinical=FALSE, legend=TRUE, legend_only=FALSE, ...)
## S3 method for class 'SII'
summary(object, digits=2, ...)
Arguments
speech |
Either a numeric vector providing |
noise |
A numeric vector providing |
threshold |
A numeric vector providing |
loss |
A numeric vector providing |
freq |
Vector of frequencies for which |
method |
A character string specifying the SII calculation method ("critical", "one-third octave", "equal-contributing", "octave") |
importance |
Either a numeric vector providing |
interpolate |
Logical flag indicating whether to interpolate from the provide measurement values and frequencies to those required by the specified method via linear interpolation on the log scale. |
prescription |
A character string (e.g. |
desensitization |
Logical flag. If |
ldl |
Numeric vector specifying Loudness Discomfort Levels (LDL) in dB HL for each frequency. If |
gender |
Character string specifying patient gender ("male" or "female"). Used for prescriptive algorithms. Defaults to "male". |
experience |
Character string specifying user hearing aid experience ("experienced", "new"). Defaults to "experienced". |
config |
Character string for fitting configuration ("unilateral", "bilateral"). Bilateral fittings prescribe slightly less gain (~3 dB) to account for binaural loudness summation. |
coupling |
Character string specifying the acoustic coupling / vent ("custom_occluded", "double_dome", "tulip_dome", "open_dome", "vent_1mm_solid", "vent_2mm_solid", "vent_3mm_solid", "vent_1mm_hollow", "vent_2mm_hollow", "vent_3mm_hollow"). Modifies low-frequency leakage and insertion gain targets. |
module |
Character string for hearing aid module ("standard" or other specific module constraints). |
transducer |
Character string specifying the audiometric transducer used for testing ("inserts" or "supra_aural"). Determines RETSPL and RECD corrections for SPLogram plots. |
custom_gain |
Numeric vector specifying a custom insertion gain array (in dB) for each frequency. If provided along with |
measured_wrs |
Numeric value specifying the clinical Word Recognition Score (WRS) in percent (0-100). When provided, invokes the Margolis (2025) speech distortion model. |
wrs_level |
Numeric value specifying the presentation level (in dB HL or SPL) of the clinical WRS test. |
distortion_category |
Character string ("Mild", "Moderate", or "Severe") specifying the degree of speech distortion. If |
nal_ldf |
Logical flag indicating whether to use NAL-NL2 loudness discomfort factors (optional). |
object |
SII object |
x |
SII object |
digits |
Number of digits to display |
clinical |
Logical flag. If |
legend |
Logical flag. If |
legend_only |
Logical flag. If |
... |
Optional arguments to |
Details
American National Standard ANSI/ASA S3.5-1997 (R2024) ("Methods for Calculation of the Speech Intelligibility Index") defines a method for computing a physical measure that is highly correlated with the intelligibility of speech as evaluated by speech perception tests given a group of talkers and listeners. This measure is called the Speech Intelligibility Index, or SII. The SII is calculated from acoustical measurements of speech and noise.
The sii function implements ANSI/ASA S3.5-1997 (R2024) as described in
the standard, without any attempt to optimize the performance. The
implementation does, however, include the extension for handling
conductive hearing loss from Annex A (utilizing the optional
loss argument), and for utilizing alternative band weights
(i.e. transfer function) appropriate for differing message contents
(e.g. types of speech) as described in Annex B or user-specified
band weights (utilizing the optional argument importance).
Further, this implementation provides a mechanism for
interpolating/extrapolating available measurements to those required
for the specified calculation procedure. When
interpolate=TRUE, required values for speech,
noise, threshold, and loss will be computed
using linear interpolation (of the log-scaled data). In this case,
missing values may be provided and will be appropriately
interpolated.
Prescriptive Fitting Rationales
If the prescription argument is provided, the function will dynamically calculate a frequency-specific hearing aid insertion gain and apply it to the speech and noise spectrum, calculating an Aided SII. The following rationales are supported:
-
"NAL-R": A classic linear fitting rationale designed by the National Acoustic Laboratories to maximize speech intelligibility for mild-to-moderate losses. Gain is a linear function of the pure-tone average (PTA) and frequency-specific thresholds. -
"Open-NL": A completely transparent, open-source non-linear fitting algorithm developed specifically for this package. It was designed to serve as an open-source alternative to proprietary modern non-linear clinical targets (such as NAL-NL2 and DSL v5.0). The algorithm calculates insertion gain using the following explicit mathematical steps:-
Conductive Component Separation: If an Air-Bone Gap is present, the purely sensorineural component is isolated for WDRC compression. Linear gain representing 75% of the conductive loss is added at the end (consistent with NAL-NL2/Johnson).
-
Dynamic Base Gain: The base gain relies on a dynamic multiplier (ranging from 0.43 to 0.48) determined by user experience, combined with empirical NAL-R shaping constants. Severe losses receive a booster, while steep slopes receive a low-frequency penalty to avoid upward spread of masking.
-
Dead Region Roll-offs: High-frequency or low-frequency dead regions trigger a steep 30 dB/octave penalty beyond the viable boundaries to prevent acoustic distortion and feedback.
-
Wide Dynamic Range Compression (WDRC): A dynamic compression ratio (ranging from 1.0 to 3.0) is applied symmetrically around a 65 dB SPL pivot point. The ratio scales dynamically based on the sensorineural threshold and measured Loudness Discomfort Levels (LDLs).
-
Bandwidth Roll-off: Empirical bandwidth roll-offs are applied to limit unnecessary low/high frequency amplification, with separate curves for adults vs. infants.
-
Acoustic Coupling: Adjustments are applied to the low frequencies depending on the specified venting, dome type, and acoustic seal.
-
MPO Limits: Output is capped by predictive NAL-SSPL90 limits, adjusting for conductive attenuation, with an absolute safety hard cap at 120 dB SPL at the cochlea and a hardware output limit of 135 dB SPL.
-
Value
The return value is an object of class SII, containing the following components:
call |
Function call used to generate the SII object |
orig |
List containing original (pre-extrapolation) values for
|
speech, noise, threshold, loss, and freq |
Values used in calculations (extrapolated if necessary) |
unaided_speech |
Original speech array before applying any prescriptive gain |
vocal_effort |
String representing the stated vocal effort |
gain |
Insertion gain array added to speech and noise when a prescription is used |
prescription |
The fitting rationale used (if any) |
unaided_sii |
Calculated SII value before applying the prescriptive gain (if a prescription was used) |
table |
SII calculation worksheet, containing columns corresponding to both Table C.1 and C.2 in Annex C of the standard. Table columns are
|
sii |
Calculated SII value |
Open-NL Prescription Rationale
DISCLAIMER: Open-NL is an untested, experimental fitting rationale. It is designed to mimic aspects of other generic non-linear fitting rationales (such as NAL-NL2 and DSL v5.0) strictly to promote open research, algorithmic transparency, and rapid iteration within the audiology community. It is not intended for clinical use.
When prescription = "Open-NL" is selected, the function calculates and applies this WDRC-optimized rationale to maximize the aided Speech Intelligibility Index.
The mathematical algorithm consists of:
-
Minimal Hearing Loss (MHL) Bypass: If
module == "mhl"andPTA_{.5,1,2,4k} \le 25dB HL, WDRC is bypassed. Applies flat linear gain interpolated from(f, G) = \{(250,0), (500,0), (1k,3), (2k,5), (4k,5), (8k,5)\}dB, with a 1.5 compression ratio for loud inputs. -
Base Anchor (65 dB SPL Input):
g_{65} = \max(0, m \times HTL + C), wherem \in \{0.40, 0.45, 0.50\}depending onexperience, andCinterpolates arrays such as\{-8, -1, +3, +1, 0, 0, 0, 0\}dB evaluated at standard audiometric frequencies. -
Audiometric Profile Corrections:
-
Steep Slope Knee: For slopes
>30dB/octave, penalizes the "knee" (500-1500 Hz) by up to 6 dB, and boosts frequencies\ge 2000Hz by up to 6 dB. -
Severe-Loss Booster (SLB): Adds
\min(15, \max(0, HTL - 60) \times 0.5)dB. Tapered heavily in mid-frequencies and disabled in dead regions.
-
-
High-Frequency Desensitization: To prevent distortion, excess gain above a limit is compressed at a 2:1 ratio.
Limit
= 45 + 1.0 \times \max(0, HTL - 60)
-
Roll-offs and Dead Regions:
-
Bandwidth Roll-off: Multiplies
g_{65}. Interpolates\{(250Hz, 0.7), (500, 1.0), ..., (6k, 0.8), (8k, 0.5)\}. -
Dead Regions: Identifies HF Dead Regions (
HTL \ge 90atf \ge 1k) and LF Dead Regions (HTL \ge 80atf \le 1k). Applies a 30 dB/octave penalty beyond viable boundaries (1.7 \times f_{e}for HF,0.57 \times f_{e}for LF).
-
-
Bi-directional WDRC:
-
Compression Ratio (CR):
CR_{base} = 1 + \max(0, HTL - 20) / 40. ForHTL > 65, CR reduces toward 1.0 in low frequencies. Overall bounded strictly to\le 1.5for low frequencies (\le 500Hz) and up to2.4for high frequencies (\ge 3000Hz). -
Compression Threshold (CT): Interpolated from
(HTL, CT):\{(20HL, 30SPL), ..., (100, 45)\}. -
Aggressive MPO Defense: For steeply sloping losses (
>15dB difference) with low LDLs (<100dB SPL), the formula proactively defends against MPO collision. TheCTis aggressively lowered by up to 10 dB, and theCRis forced up by an additional 0.05 per dB of LDL penalty. -
I/O Computation: Calculates gain at CT (
G_{CT}) scaling back from 65 dB SPL pivot. Applies linear gain below CT, and WDRC above CT.
-
-
Empirical Adjustments and Smoothing:
-
Demographic Boosts: Gender: Female
= -1.5dB. Config: Unilateral= +3.0dB. Experience: New users withPTA > 40get up to-6.0dB penalty. -
LDL Dynamic Range Mapping: If
ldlis provided, dynamic range is evaluated. For every 1 dB the measured LDL is lower than predicted,g_{65}is reduced by 0.2 dB andCR_{base}is increased by 0.02. -
Acoustic Coupling: Subtracts vent leakage (e.g., Open Dome
= \{-35, -28, -15, -2, 0, 0\}dB). Applies a 3-point moving average to the final gain array.
-
-
SSPL90 MPO Limiting:
-
MPO_{heuristic} = 100 + 0.5 \times \max(0, HTL - 40). -
MPO_{safe} = LDL_{spl} - 5. -
PTS_{safe\_limit} = 105 + 0.5 \times \max(0, HTL - 50). -
MPO_{final} = \min(120, MPO_{heuristic}, MPO_{safe}, PTS_{safe\_limit}).
-
Author(s)
Gregory R. Warnes greg@warnes.net
References
ANSI/ASA S3.5-1997 (R2024), "American National Standard Methods for Calculation of the Speech Intelligibility Index" American National Standards Institute, New York.
Other software programs for calculating SII are available from https://sii.to/html/programs.html.
See Also
SII Constants: critical, and
sic.critical
Examples
## Example C.1 from ANSI/ASA S3.5-1997 (R2024) Annex C
sii.C1 <- sii(
speech = c(50.0, 40.0, 40.0, 30.0, 20.0, 0.0),
noise = c(70.0, 65.0, 45.0, 25.0, 1.0,-15.0),
threshold= c( 0.0, 0.0, 0.0, 0.0, 0.0, 0.0),
method="octave"
)
sii.C1 # rounded to 2 digits by default
print(sii.C1$sii, digits=20) # full precision
summary(sii.C1) # full details
plot(sii.C1) # plot
plot(sii.C1, clinical=TRUE) # clinical SPLogram plot
## The value given in the Standard is $0.504$.
## Same calculation, but manually specify the frequencies
## and importance function, and use default for threshold
sii.C1 <- sii(
speech = c(50.0, 40.0, 40.0, 30.0, 20.0, 0.0),
noise = c(70.0, 65.0, 45.0, 25.0, 1.0,-15.0),
method="octave",
freq=c(250, 500, 1000, 2000, 4000, 8000),
importance=c(0.0617, 0.1671, 0.2373, 0.2648, 0.2142, 0.0549)
)
sii.C1
## Now perform the calculation using frequency weights for the Connected
## Speech Test (CST)
sii.CST <- sii(
speech = c(50.0, 40.0, 40.0, 30.0, 20.0, 0.0),
noise = c(70.0, 65.0, 45.0, 25.0, 1.0,-15.0),
method="octave",
importance="CST"
)
round(sii.CST$table[,-c(5:7,13)],2)
sii.CST$sii
## Example C.2 from ANSI/ASA S3.5-1997 (R2024) Annex C
sii.C2 <- sii(
speech = rep(54.0, 18),
noise = c(40.0, 30.0, 20.0, rep(0, 18-3) ),
threshold= rep(0.0, 18),
method="one-third"
)
sii.C2$table[1:3,1:8]
sii.C2
## Interpolation example, for 8 frequencies using NU6 importance
## weight, default values for noise.
sii.left <- sii(
speech="raised",
threshold=c(25,25,30,35,45,45,55,60),
freq=c(250, 500, 1000, 2000, 3000, 4000, 6000, 8000),
method="critical",
importance="NU6",
interpolate=TRUE
)
sii.left