Hello,
In the Homogenous Medium example, there's the following section of code:
% create initial pressure distribution using makeDisc
disc_magnitude = 5;
The example states that this initial pressure distribution is arbitrary, but I'm interested in simulating a particular transducer's effects on tissue. What are the units of this magnitude value? And when the final graph is formed:
imagesc(sensor_data, [-1, 1]);
colormap(getColorMap);
ylabel('Sensor Position');
xlabel('Time Step');
What is the sensor_data being normalized to? Is it to this initial pressure magnitude?
Thanks!