You are currently viewing Introduction to Acoustic Modal Analysis

Introduction to Acoustic Modal Analysis

This Post Has 2 Comments

  1. Ekrem

    Hi,

    How did you specify the location of the microphone here using dolfinx?

    1. Antonio Baiano Svizzero

      Hi Ekrem,

      You don’t sepcify the mic location in a modal analysis, you do that in the Modal Superposition (see related article).

      Anyway, after the modal participation computation you calculate the pressure field vector with the multiplication p = Φϕ. Then, you can project such vector in an empty dolfinx function:

      uh = Function(V)
      uh.vector[:] = p.array
      uh.name = “u”

      The rest is nearly identical to the case you find in the first article.

Leave a Reply to Antonio Baiano Svizzero Cancel reply