.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "examples\gallery_examples\008_calculate_levels.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_examples_gallery_examples_008_calculate_levels.py: .. _calculate_levels: Calculate RMS, dBSPL and dBA levels ----------------------------------- This example shows how to calculate RMS, dBSPL and dBA levels. The following levels are included: - Overall RMS level - Overall dBSPL level - Overall dBA level - RMS level over time - dBSPL level over time - dBA level over time The example shows how to perform these operations: - Set up the analysis. - Calculate levels on loaded WAV files. - Get calculation outputs. - Plot some corresponding curves. - Export levels into a .csv files. .. GENERATED FROM PYTHON SOURCE LINES 50-53 Set up analysis ~~~~~~~~~~~~~~~ Setting up the analysis consists of loading Ansys libraries, and connecting to the DPF server. .. GENERATED FROM PYTHON SOURCE LINES 53-73 .. code-block:: Python # Load standard libraries. import csv import os import matplotlib.pyplot as plt # Load Ansys libraries. from ansys.sound.core.examples_helpers import ( download_aircraft_wav, download_fan_wav, ) from ansys.sound.core.server_helpers import connect_to_or_start_server from ansys.sound.core.signal_utilities import LoadWav from ansys.sound.core.standard_levels import LevelOverTime, OverallLevel # Connect to a remote server or start a local server. my_server = connect_to_or_start_server(use_license_context=True) .. GENERATED FROM PYTHON SOURCE LINES 74-78 Calculate overall RMS, dBSPL and dBA levels ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Load a signal from a WAV file using the :class:`.LoadWav` class. It is returned as a :class:`FieldsContainer ` object. .. GENERATED FROM PYTHON SOURCE LINES 78-84 .. code-block:: Python # Load example data from two wav files. path_fan_wav = download_fan_wav(server=my_server) path_aircraft_wav = download_aircraft_wav(server=my_server) .. GENERATED FROM PYTHON SOURCE LINES 85-86 Create a first .csv file in which the overall levels will be written, and write the header row. .. GENERATED FROM PYTHON SOURCE LINES 86-92 .. code-block:: Python filepath_overall_results = open("Overall_Results.csv", "w+", newline="") csv_writer_overall_results = csv.writer(filepath_overall_results) header_row = ["Signal name", "Overall level [RMS]", "Overall level [dBSPL]", "Overall level [dBA]"] _ = csv_writer_overall_results.writerow(header_row) .. GENERATED FROM PYTHON SOURCE LINES 93-95 For each sound, create an :class:`.OverallLevel` object, set its signals, compute the overall RMS, dBSPL and dBA levels, and then write the results into the .csv file. .. GENERATED FROM PYTHON SOURCE LINES 95-132 .. code-block:: Python for file_path in (path_fan_wav, path_aircraft_wav): # Load wav. wav_loader = LoadWav(file_path) wav_loader.process() signal = wav_loader.get_output()[0] # Calculate RMS. level_RMS = OverallLevel(signal=signal, scale="RMS") level_RMS.process() rms = level_RMS.get_level() # Calculate dBSPL. level_dBSPL = OverallLevel(signal=signal, scale="dB", reference_value=2e-5) level_dBSPL.process() dBSPL = level_dBSPL.get_level() # Calculate dBA. level_dBA = OverallLevel( signal=signal, scale="dB", reference_value=2e-5, frequency_weighting="A" ) level_dBA.process() dBA = level_dBA.get_level() # Print the results. file_name = os.path.basename(file_path) print( f"\nThe RMS level of sound file {file_name} is {rms:.1f} Pa, its dBSPL level is" f" {dBSPL:.1f} dBSPL and its dBA level is {dBA:.1f} dBA." ) # Write the results in .csv. csv_writer_overall_results.writerow([file_name[:-4], rms, dBSPL, dBA]) filepath_overall_results.close() .. rst-class:: sphx-glr-script-out .. code-block:: none The RMS level of sound file Fan.wav is 1.1 Pa, its dBSPL level is 94.8 dBSPL and its dBA level is 88.5 dBA. The RMS level of sound file Aircraft.wav is 0.1 Pa, its dBSPL level is 77.2 dBSPL and its dBA level is 73.7 dBA. .. GENERATED FROM PYTHON SOURCE LINES 133-136 Calculate RMS, dBSPL and dBA levels over time ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Initialize empty lists to store the levels in order to plot them. .. GENERATED FROM PYTHON SOURCE LINES 136-141 .. code-block:: Python time = [] rms_levels = [] dBSPL_levels = [] dBA_levels = [] .. GENERATED FROM PYTHON SOURCE LINES 142-145 For each sound, create a :class:`.LevelOverTime` object, set its signals, compute and plot the RMS level over time, the dBSPL level over time and the dBA level over time, then write the results into an individual .csv file. .. GENERATED FROM PYTHON SOURCE LINES 145-200 .. code-block:: Python for file_path in (path_fan_wav, path_aircraft_wav): # Write a .csv file for each sound, and add the header row. file = os.path.basename(file_path) filepath_results_vs_time = open( os.path.join(file[:-4] + "_Levels_vs_time_Results.csv"), "w+", newline="" ) csv_writer_results_vs_time = csv.writer(filepath_results_vs_time) csv_writer_results_vs_time.writerow(["time steps [s]", "RMS level", "dBSPL level", "dBA level"]) # Load wav. wav_loader = LoadWav(file_path) wav_loader.process() signal = wav_loader.get_output()[0] # Calculate RMS over time and get the time steps. rms_time_varying = LevelOverTime( signal=signal, scale="RMS", frequency_weighting="", time_weighting="Fast" ) rms_time_varying.process() rms = rms_time_varying.get_level_over_time() time_steps = rms_time_varying.get_time_scale() time.append(time_steps.tolist()) # Calculate dBSPL over time. dBSPL_time_varying = LevelOverTime( signal=signal, scale="dB", reference_value=2e-5, frequency_weighting="", time_weighting="Fast", ) dBSPL_time_varying.process() dBSPL = dBSPL_time_varying.get_level_over_time() # Calculate dBA over time. dBA_time_varying = LevelOverTime( signal=signal, scale="dB", reference_value=2e-5, frequency_weighting="A", time_weighting="Fast", ) dBA_time_varying.process() dBA = dBA_time_varying.get_level_over_time() # Append all the results to the lists previously created. rms_levels.append(rms.tolist()) dBSPL_levels.append(dBSPL.tolist()) dBA_levels.append(dBA.tolist()) # Write the results in the .csv files. for i in range(len(time_steps)): csv_writer_results_vs_time.writerow([time_steps[i], rms[i], dBSPL[i], dBA[i]]) .. GENERATED FROM PYTHON SOURCE LINES 201-203 Use the object's ``plot()`` method to plot the level over time (here, level in dBA, for the second signal). .. GENERATED FROM PYTHON SOURCE LINES 203-206 .. code-block:: Python dBA = dBA_time_varying.plot() .. image-sg:: /examples/gallery_examples/images/sphx_glr_008_calculate_levels_001.png :alt: Level over time :srcset: /examples/gallery_examples/images/sphx_glr_008_calculate_levels_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 207-208 Alternatively, plot the results over time for both signals into three graphs. .. GENERATED FROM PYTHON SOURCE LINES 208-229 .. code-block:: Python fig, axs = plt.subplots(3) fig.suptitle("Time varying RMS, dBSPL and dBA levels") axs[0].plot(time[0], rms_levels[0], color="b", label="Fan") axs[0].plot(time[1], rms_levels[1], color="r", label="Airplane") axs[0].set_ylabel("RMS (Pa)") axs[0].legend(loc="upper right") axs[1].plot(time[0], dBSPL_levels[0], color="b", label="Fan") axs[1].plot(time[1], dBSPL_levels[1], color="r", label="Airplane") axs[1].set_ylabel("dBSPL") axs[1].legend(loc="upper right") axs[2].plot(time[0], dBA_levels[0], color="b", label="Fan") axs[2].plot(time[1], dBA_levels[1], color="r", label="Airplane") axs[2].set_ylabel("dBA") axs[2].legend(loc="upper right") axs[2].set_xlabel("Time (s)") plt.show() .. image-sg:: /examples/gallery_examples/images/sphx_glr_008_calculate_levels_002.png :alt: Time varying RMS, dBSPL and dBA levels :srcset: /examples/gallery_examples/images/sphx_glr_008_calculate_levels_002.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 3.880 seconds) .. _sphx_glr_download_examples_gallery_examples_008_calculate_levels.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: 008_calculate_levels.ipynb <008_calculate_levels.ipynb>` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: 008_calculate_levels.py <008_calculate_levels.py>` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: 008_calculate_levels.zip <008_calculate_levels.zip>` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_