Hello,
I'm trying to simulate a simple example of acoustic propagation in water in 2D, which is received by a focused transducer. And I have several problems need your help.
1) The central frequency of transducer is about 50 MHz, so what the resolution to divide the mesh? I set the resolution to 1 micrometer, and the result told the maximum supported frequency is 750 MHz. But the radius of 'source.p0' is 2 micrometer. Is it OK? If the resolution be finer, it will cost too much time.
2) In the experiment, I use an acoustic lens in front of transducer. So that the sensor is focused, but I'm not familiar with how to set it.
I use a flat transducer to replace it in the simulation, and there is also a small question.The parameter I set:
sensor_radius = 3e-3;
num_sensor_points = 2*sensor_radius/n;
sensor.mask = 0*ones(Nx,Ny);
sensor.mask(200,Ny/2-3000:Ny/2+3000)=1;
I'm confused about the sensor_radius and sensor.mask, are they the same? I think the diameter of sensor is set in the sensor.mask. It seems that sensor_radius and num_sensor_points won't appear again later. And when the sensor_radius and sensor.mask mismatch, there is nothing happened.
3)After simulation, I use the average value of every sensor point of the same time, I use it as the simulation output data of the transducer, is it OK?
Thanks you!