k-Wave Toolbox |
On this page… |
---|
Avoiding the perfectly matched layer Defining the medium properties |
This example provides a simple demonstration of using k-Wave for the simulation and detection of the pressure field generated by an initial pressure distribution within a two-dimensional homogeneous propagation medium.
The simulation functions used in k-Wave require four input structures. These define the properties of the computational grid, the material properties of the medium, the properties and locations of any acoustic sources, and the properties and locations of the sensor points used to record the evolution of the pressure and velocity fields over time. Starting with the computational grid, the medium discretisation is performed by makeGrid
. Both the total number of grid points (Nx, Ny) as well as the spacing between the grid points (dx, dy) in each Cartesian direction are used to compute the discretisation, and an object of the kWaveGrid
class is returned. As the numerical techniques used in k-Wave are based heavily on the fast Fourier transform (FFT), the simulations will be fastest when the number of grid points in each direction is given by a power of two or has small prime factors (see fft2
and checkFactors
).
% create the computational grid Nx = 128; % number of grid points in the x (row) direction Ny = 128; % number of grid points in the y (column) direction dx = 0.1e-3; % grid point spacing in the x direction [m] dy = 0.1e-3; % grid point spacing in the y direction [m] kgrid = makeGrid(Nx, dx, Ny, dy);
The object kgrid
contains numerous properties, including matrices of the computational wavenumbers (kgrid.kx
, kgrid.ky
, and kgrid.k
) and Cartesian coordinates of the grid points (kgrid.x
, kgrid.y
). These properties are used by many k-Wave functions (for a full list, see the help file for makeGrid
).
When the acoustic waves reach the edge of the computational domain, they are absorbed by a special type of anisotropic absorbing boundary layer known as a perfectly matched layer (PML). The effects of the layer can be seen by watching what happens to the propagating waves as they get close to the edge of the computational domain. By default, this layer occupies a strip of 20 grid points (10 grid points in 3D) around the edge of the domain inside the computational domain specified using makeGrid
. To avoid strange effects, care must be taken not to place the source or sensor points inside this layer. Alternatively, the perfectly matched layer can be set to be outside the computational domain set by the user. See Controlling The Absorbing Boundary Layer Example for more detailed instructions on how to modify the properties and position of the perfectly matched layer.
For a homogeneous medium, the sound speed is set as a scalar value in SI units (i.e., metres per second). Power law acoustic absorption can also be optionally set by assigning values to medium.alpha_coeff
and medium.alpha_power
. These respectively correspond to the power law coefficient or prefactor in units of dB/(MHz^y cm) and the power law exponent or power y. It is useful to note that for a homogeneous medium, the computation of the acoustic pressure is not dependent on the ambient density. Consequently, if no velocity inputs or outputs are required, medium.density
does not need to be specified.
% define the properties of the propagation medium medium.sound_speed = 1500; % [m/s] medium.alpha_coeff = 0.75; % [dB/(MHz^y cm)] medium.alpha_power = 1.5;
The grid spacing (dx
and dy
) and the sound speed govern the maximum frequency that the simulation grid is able to propagate. This frequency (for each Cartesian direction) can be calculated by f_max_x = medium.sound_speed/(2*dx)
. For modelling nonlinear effects, medium.BonA
should also be specified. In this case, k-Wave includes a number of additional nonlinear terms in the discrete governing equations.
The initial pressure distribution is set as a matrix which contains the initial pressure values for each grid point. This matrix must be the same size as the medium discretisation defined by the computational grid (i.e., it must have Nx
rows and Ny
columns). Several functions are included in the toolbox for the creation of simple geometric shapes. In this example, the function makeDisc
is used to create an initial pressure distribution in the shape of two small discs with different diameters. This distribution is assigned to the p0
field of the source
structure. There are no restrictions on source.p0
except that it must be the same size as the computational grid.
% create initial pressure distribution using makeDisc disc_magnitude = 5; % [Pa] disc_x_pos = 50; % [grid points] disc_y_pos = 50; % [grid points] disc_radius = 8; % [grid points] disc_1 = disc_magnitude*makeDisc(Nx, Ny, disc_x_pos, disc_y_pos, disc_radius); disc_magnitude = 3; % [Pa] disc_x_pos = 80; % [grid points] disc_y_pos = 60; % [grid points] disc_radius = 5; % [grid points] disc_2 = disc_magnitude*makeDisc(Nx, Ny, disc_x_pos, disc_y_pos, disc_radius); source.p0 = disc_1 + disc_2;
The sensor mask defines the positions within the computational domain where the pressure field is recorded at each time-step. The sensor mask can be given in one of three ways:
In 2D, Cartesian coordinates must be specified as a 2 x N matrix, where the Cartesian origin is assumed to be in the center of the grid. Here the function makeCartCircle
is used to set the sensor mask to the Cartesian coordinates of a set of evenly spaced points on a circle.
% define a centered circular sensor sensor_radius = 4e-3; % [m] num_sensor_points = 50; sensor.mask = makeCartCircle(sensor_radius, num_sensor_points);
A plot of the initial pressure distribution and the sensor mask is given below. By default, the pressure at the Cartesian points in 2D is computed at each time step using linear interpolation.
The computation is started by calling the function kspaceFirstOrder2D
with the four input structures defined above. By default, a visualisation of the propagating wave-field and a status bar are displayed, with frame updates every ten time-steps. The default k-Wave color map displays positive pressures as yellows to reds to black, and negative pressures as light to dark blue-greys (see getColorMap
).
% run the simulation sensor_data = kspaceFirstOrder2D(kgrid, medium, source, sensor);
As the function runs, status updates and computational parameters are printed to the command line.
Running k-Wave simulation... start time: 14-Oct-2011 17:31:24 reference sound speed: 1500m/s dt: 20ns, t_end: 12.06us, time steps: 604 input grid size: 128 by 128 grid points (12.8 by 12.8mm) maximum supported frequency: 7.5MHz smoothing p0 distribution... calculating Delaunay triangulation... precomputation completed in 0.46863s starting time loop... estimated simulation time 2.8516s... simulation completed in 3.8546s total computation time 4.349s
When the time loop has completed, the function returns the recorded time series at each of sensor points defined by sensor.mask
. This is indexed as sensor_data(sensor_point_index, time_index)
. For a Cartesian sensor mask, the time series are returned in the same order as the Cartesian coordinates specified in sensor.mask
. A visualisation of the sensor data recorded in this example is given below.
% plot the simulated sensor data figure; imagesc(sensor_data, [-1, 1]); colormap(getColorMap); ylabel('Sensor Position'); xlabel('Time Step'); colorbar;
Initial Value Problems | Using A Binary Sensor Mask |
© 2009-2014 Bradley Treeby and Ben Cox.