Dear all,
I am performing some simulations using k-wave. Normally I used sensor instead of ultrasound transducer array.
If I run the 'example_us_transducer_as_sensor' my final data is always:
sensor_data = number_of_activeElements*time_vector; Which is fine for me, because I can visualize each single line in function of time.
Nevertheless, if I perform the simulation saving in the GPU, I do not have the same output as sensor_data. I obtain something like:
data_sensor = X*number_of_activeElements*time_vector; if I use 10 active elements I have something like: sensor_data = 120*time_vector. Where X in this case is 12.
Is it possible to run a simulation in the GPU and only have the pressure recorded in the active elements of the sensor?
Best