Noise Screening
Use this skill to screen gas-valve and restriction noise at a stated receiver distance from either a representative operating measurement or a conservative energy model. Keep source prediction, receiver/workplace assessment, and acoustic-induced-vibration (AIV) screening as separate decisions.
When to Use
- When a user asks whether a gas valve or restriction is likely to be noisy.
- When current measured noise must be evaluated at a stated operating condition and receiver position.
- When an agent needs a quick action/high noise flag before detailed engineering.
- When examples must run without confidential valve trim or vendor noise data.
- Do not use this skill alone to accept personnel exposure, acoustic fatigue, or AIV.
Inputs
mass_flow: gas mass flow in kg/s.
pressure_drop: pressure drop across the restriction in bar.
inlet_density: inlet gas density in kg/m3.
sound_speed: speed of sound in m/s (provide this, or temperature and molar mass).
distance: source-to-receiver distance in m, default 1 m.
measured_spl_at_distance: optional representative A-weighted measurement in dBA at distance.
measured_uncertainty_db: optional positive measurement uncertainty in dB.
specific_heat_ratio: ratio of specific heats k, default 1.3.
temperature: gas temperature in K (used to estimate sound speed).
molar_mass: gas molar mass in g/mol (used to estimate sound speed).
- Constructor overrides for action level, high level, model uncertainty, acoustic efficiency, and transmission loss.
Outputs
vena_contracta_velocity_m_s: estimated velocity at the restriction.
mach_number: velocity divided by the speed of sound.
internal_sound_power_level_db: internal sound power level (re 1 pW).
estimated_spl_1m_dba: screening sound-pressure level at 1 m.
estimated_spl_at_distance_dba: assessed A-weighted level at the receiver distance.
assessment_basis: measurement or screening-model.
noise_warning: ok, action, or high.
uncertainty_db, standards_basis, and assumptions for review and escalation.
Engineering Method
The Python class ValveNoiseModel uses this decision path:
- Freeze the operating snapshot, source identity, receiver position, and evidence type.
- Use
measured_spl_at_distance directly when a representative measurement and uncertainty are available.
- Otherwise estimate vena-contracta velocity with
v = sqrt(2 * dP / rho), mechanical stream power with W_m = 0.5 * mdot * v^2, and acoustic power with W_a = min(0.01, eta_f * Mach^3) * W_m.
- Convert sound power to a 1 m level using a configurable transmission loss, then apply free-field spreading
20 log10(r/1 m) to the receiver.
- Apply configurable workflow triggers:
ok below 85 dBA, action at or above 85 dBA, and high at or above 110 dBA by default.
- Escalate elevated or uncertain cases to detailed source prediction, a controlled receiver survey, occupational-hygiene review, or separate AIV screening as applicable.
The model is a triage calculation, not a full IEC 60534-8-3 prediction. The default model uncertainty is +/-10 dB. Default thresholds are workflow triggers rather than universal legal exposure limits.
Python Usage Pattern
from noise_screening import ValveNoiseModel
model = ValveNoiseModel()
result = model.evaluate(
mass_flow=12.0,
pressure_drop=40.0,
inlet_density=35.0,
temperature=310.0,
molar_mass=19.0,
distance=3.0,
)
print(result.mach_number)
print(result.estimated_spl_at_distance_dba)
print(result.assessment_basis)
print(result.noise_warning)
For current operating evidence, provide the measured receiver level and its uncertainty:
measured = model.evaluate(
mass_flow=12.0,
pressure_drop=40.0,
inlet_density=35.0,
sound_speed=410.0,
distance=3.0,
measured_spl_at_distance=92.0,
measured_uncertainty_db=2.0,
)
Related NeqSim Functionality
For detailed valve source prediction, use existing NeqSim classes:
neqsim.process.equipment.valve.ThrottlingValve — flow-vs-Cv valve and pressure-drop response that defines the noise duty.
neqsim.process.equipment.valve.ControlValve — control valve with characteristic and controller coupling.
neqsim.process.mechanicaldesign.valve.ControlValveNoise_IEC_60534_8_3 — aerodynamic source prediction with flow regime, mechanical stream power, pipe-wall transmission loss, and external A-weighted level.
For the detailed class, call setFlowConditions(...), setAcousticProperties(...), setGeometry(...), setValveCoefficients(...), and calcNoise(). Read getSoundPressureLevelDbA(), getOutletMach(), getFlowRegime(), getMechanicalStreamPower(), and getTransmissionLoss(). Obtain density, speed of sound, and isentropic exponent from a flashed NeqSim fluid; treat valve coefficients and geometry as controlled vendor/design inputs.
Validation Checklist
Common Mistakes
| Symptom |
Cause |
Fix |
| SPL looks too precise |
Treated indicator as IEC result |
Use it only for screening |
| Mach off |
Sound speed from wrong gas |
Provide molar mass and temperature |
| Wrong magnitude |
Mass flow in kg/h not kg/s |
Use kg/s |
| AIV accepted from dBA |
Noise and pipe-vibration criteria were conflated |
Run a separate AIV screening |
| Measurement cannot be reproduced |
Operating state or receiver position is missing |
Record time window, process data, location, and uncertainty |
Limitations
- The model path is not an IEC 60534-8-3 prediction and has no octave-band content.
- Free-field spreading omits reflections, shielding, multiple sources, directivity, atmospheric absorption, and distributed pipe radiation.
- A single dBA value cannot establish daily exposure dose, hearing protection, acoustic fatigue, or AIV acceptability.
- A measurement applies only to its operating state, receiver position, instrument setup, background correction, and uncertainty.
- Design acceptance requires controlled standards editions, verified valve/vendor data, and competent acoustic review.
References
- IEC 60534-8-3, control-valve aerodynamic noise prediction method.
- ISO 3744, sound-power determination from sound-pressure measurements.
- ISO 11201, emission sound-pressure measurement at work stations and specified positions.
- ISO 9613-2, engineering prediction of outdoor sound propagation.
- ISO 15664, noise-control design procedures for open plant.
- ISO 1999, estimation of noise-induced hearing loss.
- NeqSim repository: https://github.com/equinor/neqsim
1---2name: neqsim-noise-screening3description: Standards-based gas-valve and restriction noise screening at a stated receiver distance using either a current measured A-weighted level or a conservative pressure-drop energy model. USE WHEN: a task needs noise triage, receiver/workplace assessment, or routing to detailed IEC 60534-8-3 prediction while keeping acoustic-induced-vibration assessment separate.4---56# Noise Screening78Use this skill to screen gas-valve and restriction noise at a stated receiver distance from either a representative operating measurement or a conservative energy model. Keep source prediction, receiver/workplace assessment, and acoustic-induced-vibration (AIV) screening as separate decisions.910## When to Use1112- When a user asks whether a gas valve or restriction is likely to be noisy.13- When current measured noise must be evaluated at a stated operating condition and receiver position.14- When an agent needs a quick action/high noise flag before detailed engineering.15- When examples must run without confidential valve trim or vendor noise data.16- Do not use this skill alone to accept personnel exposure, acoustic fatigue, or AIV.1718## Inputs1920- `mass_flow`: gas mass flow in kg/s.21- `pressure_drop`: pressure drop across the restriction in bar.22- `inlet_density`: inlet gas density in kg/m3.23- `sound_speed`: speed of sound in m/s (provide this, or temperature and molar mass).24- `distance`: source-to-receiver distance in m, default 1 m.25- `measured_spl_at_distance`: optional representative A-weighted measurement in dBA at `distance`.26- `measured_uncertainty_db`: optional positive measurement uncertainty in dB.27- `specific_heat_ratio`: ratio of specific heats `k`, default 1.3.28- `temperature`: gas temperature in K (used to estimate sound speed).29- `molar_mass`: gas molar mass in g/mol (used to estimate sound speed).30- Constructor overrides for action level, high level, model uncertainty, acoustic efficiency, and transmission loss.3132## Outputs3334- `vena_contracta_velocity_m_s`: estimated velocity at the restriction.35- `mach_number`: velocity divided by the speed of sound.36- `internal_sound_power_level_db`: internal sound power level (re 1 pW).37- `estimated_spl_1m_dba`: screening sound-pressure level at 1 m.38- `estimated_spl_at_distance_dba`: assessed A-weighted level at the receiver distance.39- `assessment_basis`: `measurement` or `screening-model`.40- `noise_warning`: `ok`, `action`, or `high`.41- `uncertainty_db`, `standards_basis`, and `assumptions` for review and escalation.4243## Engineering Method4445The Python class `ValveNoiseModel` uses this decision path:46471. Freeze the operating snapshot, source identity, receiver position, and evidence type.482. Use `measured_spl_at_distance` directly when a representative measurement and uncertainty are available.493. Otherwise estimate vena-contracta velocity with `v = sqrt(2 * dP / rho)`, mechanical stream power with `W_m = 0.5 * mdot * v^2`, and acoustic power with `W_a = min(0.01, eta_f * Mach^3) * W_m`.504. Convert sound power to a 1 m level using a configurable transmission loss, then apply free-field spreading `20 log10(r/1 m)` to the receiver.515. Apply configurable workflow triggers: `ok` below 85 dBA, `action` at or above 85 dBA, and `high` at or above 110 dBA by default.526. Escalate elevated or uncertain cases to detailed source prediction, a controlled receiver survey, occupational-hygiene review, or separate AIV screening as applicable.5354The model is a triage calculation, not a full IEC 60534-8-3 prediction. The default model uncertainty is +/-10 dB. Default thresholds are workflow triggers rather than universal legal exposure limits.5556## Python Usage Pattern5758```python59from noise_screening import ValveNoiseModel6061model = ValveNoiseModel()62result = model.evaluate(63 mass_flow=12.0,64 pressure_drop=40.0,65 inlet_density=35.0,66 temperature=310.0,67 molar_mass=19.0,68 distance=3.0,69)7071print(result.mach_number)72print(result.estimated_spl_at_distance_dba)73print(result.assessment_basis)74print(result.noise_warning)75```7677For current operating evidence, provide the measured receiver level and its uncertainty:7879```python80measured = model.evaluate(81 mass_flow=12.0,82 pressure_drop=40.0,83 inlet_density=35.0,84 sound_speed=410.0,85 distance=3.0,86 measured_spl_at_distance=92.0,87 measured_uncertainty_db=2.0,88)89```9091## Related NeqSim Functionality9293For detailed valve source prediction, use existing NeqSim classes:9495- `neqsim.process.equipment.valve.ThrottlingValve` — flow-vs-Cv valve and pressure-drop response that defines the noise duty.96- `neqsim.process.equipment.valve.ControlValve` — control valve with characteristic and controller coupling.97- `neqsim.process.mechanicaldesign.valve.ControlValveNoise_IEC_60534_8_3` — aerodynamic source prediction with flow regime, mechanical stream power, pipe-wall transmission loss, and external A-weighted level.9899For the detailed class, call `setFlowConditions(...)`, `setAcousticProperties(...)`, `setGeometry(...)`, `setValveCoefficients(...)`, and `calcNoise()`. Read `getSoundPressureLevelDbA()`, `getOutletMach()`, `getFlowRegime()`, `getMechanicalStreamPower()`, and `getTransmissionLoss()`. Obtain density, speed of sound, and isentropic exponent from a flashed NeqSim fluid; treat valve coefficients and geometry as controlled vendor/design inputs.100101## Validation Checklist102103- [ ] Mass flow, pressure drop, and density are positive.104- [ ] Either a sound speed or temperature and molar mass are supplied.105- [ ] Receiver distance, operating timestamp/window, source identity, and evidence basis are recorded.106- [ ] Measurement method, instrument, background correction, and uncertainty are recorded when measured data are used.107- [ ] The result is treated as screening evidence, not universal exposure or AIV acceptance.108- [ ] Detailed source prediction is redirected to NeqSim/vendor tools and qualified review.109110## Common Mistakes111112| Symptom | Cause | Fix |113| --- | --- | --- |114| SPL looks too precise | Treated indicator as IEC result | Use it only for screening |115| Mach off | Sound speed from wrong gas | Provide molar mass and temperature |116| Wrong magnitude | Mass flow in kg/h not kg/s | Use kg/s |117| AIV accepted from dBA | Noise and pipe-vibration criteria were conflated | Run a separate AIV screening |118| Measurement cannot be reproduced | Operating state or receiver position is missing | Record time window, process data, location, and uncertainty |119120## Limitations121122- The model path is not an IEC 60534-8-3 prediction and has no octave-band content.123- Free-field spreading omits reflections, shielding, multiple sources, directivity, atmospheric absorption, and distributed pipe radiation.124- A single dBA value cannot establish daily exposure dose, hearing protection, acoustic fatigue, or AIV acceptability.125- A measurement applies only to its operating state, receiver position, instrument setup, background correction, and uncertainty.126- Design acceptance requires controlled standards editions, verified valve/vendor data, and competent acoustic review.127128## References129130- IEC 60534-8-3, control-valve aerodynamic noise prediction method.131- ISO 3744, sound-power determination from sound-pressure measurements.132- ISO 11201, emission sound-pressure measurement at work stations and specified positions.133- ISO 9613-2, engineering prediction of outdoor sound propagation.134- ISO 15664, noise-control design procedures for open plant.135- ISO 1999, estimation of noise-induced hearing loss.136- NeqSim repository: https://github.com/equinor/neqsim