├── .gitignore ├── README.md ├── demos ├── create_circ_ssa_demo.m ├── create_rec_csa_demo.m ├── create_rec_enclosed_csa_demo.m ├── cylindrical_high_resolution_demo.m ├── off_axis_demo.m ├── titrate_focus_position.m ├── titrate_frequency.m ├── titrate_shapes.m ├── titrate_size_spacing_combo_and_focus.m ├── titrate_spacing_and_focus.m └── titrate_spacing_and_num_elements.m ├── examples ├── example_1_continuous_wave.m ├── example_2_transient.m ├── example_3_cw_excitation_cylindrical.m ├── example_4_angular_spectrum.m └── focus_included_examples │ ├── ASA_Example.m │ ├── ArrayApodization.m │ ├── BioHeatTransfer.m │ ├── FDTSDSphChirp.m │ ├── FNMTaperedRingArray.m │ ├── FarfieldRect.m │ ├── KZKCirc.m │ ├── KZKCirc_cw.m │ ├── KZKSpherical.m │ ├── KZKSpherical_cw.m │ ├── MultiFocusRectArray.m │ ├── Papers │ ├── FDTSD_Circ.m │ ├── FNMcirc.m │ ├── FNMcircapodized.m │ ├── FNMrect.m │ ├── FNMsphericalshell.m │ ├── FNMtransientcirc.m │ ├── FieldII_PressCirc.m │ ├── FieldII_PressRect.m │ ├── FieldIIcirc.m │ ├── FieldIIrect.m │ ├── Rayleighcirc.m │ ├── Rayleighcircapodized.m │ ├── Rayleighrect.m │ ├── Rayleighsphericalshell.m │ ├── Rayleightransientcirc.m │ ├── comparecirc.m │ ├── comparerect.m │ └── comparesphericalshell.m │ ├── PlanarRingArrayExample.m │ ├── SingleFocusRectArray.m │ ├── TSDTaperedRingArray.m │ ├── fdtsdcirc.m │ ├── transientcirc.m │ ├── transientrect.m │ ├── transientrectarray.m │ ├── transientsphericalshell.m │ ├── tsdcirc.m │ ├── tsdmfrectarray.m │ ├── tsdrect.m │ ├── tsdrectarray.m │ └── tsdsphericalshell.m └── figures ├── create_circ_ssa_demo.jpg ├── create_circ_ssa_demo_array.jpg ├── create_rec_csa_demo_array.jpg ├── create_rec_csa_demo_pressure.jpg ├── create_rec_enclosed_csa_demo_array.jpg ├── create_rec_enclosed_csa_demo_pressure.jpg ├── cylindrical_high_resolution_demo_pressure.jpg ├── mouse_center_20MHz.jpeg ├── off_axis_demo.png ├── titrate_focus_wide_spacing.png ├── titrate_focus_width_5e-4_spacing_5e-3_numel_100.png ├── titrate_focus_width_5e-4_spacing_5e-4_numel_100.png ├── titrate_focus_width_5e-4_spacing_5e-5_numel_100.png ├── titrate_frequency_100_xdcrs.png ├── titrate_frequency_200_xdcrs_1e4_5e7.png ├── titrate_frequency_200_xdcrs_1e4_to_4e5.png ├── titrate_frequency_array.png ├── titrate_shapes.jpg ├── titrate_size_spacing_combo_and_focus.png ├── titrate_spacing_and_focus_element_width_1e-4.png ├── titrate_spacing_and_focus_element_width_1e-5.png ├── titrate_spacing_and_focus_element_width_5e-4.png ├── titrate_spacing_and_num_elements.fig ├── titrate_spacing_and_num_elements.png ├── titrate_spacing_and_num_elements_arrays.png └── titrate_spacing_and_num_elements_high_res.png /.gitignore: -------------------------------------------------------------------------------- 1 | unversioned_data/ 2 | .svn/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/README.md -------------------------------------------------------------------------------- /demos/create_circ_ssa_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/create_circ_ssa_demo.m -------------------------------------------------------------------------------- /demos/create_rec_csa_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/create_rec_csa_demo.m -------------------------------------------------------------------------------- /demos/create_rec_enclosed_csa_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/create_rec_enclosed_csa_demo.m -------------------------------------------------------------------------------- /demos/cylindrical_high_resolution_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/cylindrical_high_resolution_demo.m -------------------------------------------------------------------------------- /demos/off_axis_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/off_axis_demo.m -------------------------------------------------------------------------------- /demos/titrate_focus_position.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/titrate_focus_position.m -------------------------------------------------------------------------------- /demos/titrate_frequency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/titrate_frequency.m -------------------------------------------------------------------------------- /demos/titrate_shapes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/titrate_shapes.m -------------------------------------------------------------------------------- /demos/titrate_size_spacing_combo_and_focus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/titrate_size_spacing_combo_and_focus.m -------------------------------------------------------------------------------- /demos/titrate_spacing_and_focus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/titrate_spacing_and_focus.m -------------------------------------------------------------------------------- /demos/titrate_spacing_and_num_elements.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/demos/titrate_spacing_and_num_elements.m -------------------------------------------------------------------------------- /examples/example_1_continuous_wave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/example_1_continuous_wave.m -------------------------------------------------------------------------------- /examples/example_2_transient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/example_2_transient.m -------------------------------------------------------------------------------- /examples/example_3_cw_excitation_cylindrical.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/example_3_cw_excitation_cylindrical.m -------------------------------------------------------------------------------- /examples/example_4_angular_spectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/example_4_angular_spectrum.m -------------------------------------------------------------------------------- /examples/focus_included_examples/ASA_Example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/ASA_Example.m -------------------------------------------------------------------------------- /examples/focus_included_examples/ArrayApodization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/ArrayApodization.m -------------------------------------------------------------------------------- /examples/focus_included_examples/BioHeatTransfer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/BioHeatTransfer.m -------------------------------------------------------------------------------- /examples/focus_included_examples/FDTSDSphChirp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/FDTSDSphChirp.m -------------------------------------------------------------------------------- /examples/focus_included_examples/FNMTaperedRingArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/FNMTaperedRingArray.m -------------------------------------------------------------------------------- /examples/focus_included_examples/FarfieldRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/FarfieldRect.m -------------------------------------------------------------------------------- /examples/focus_included_examples/KZKCirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/KZKCirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/KZKCirc_cw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/KZKCirc_cw.m -------------------------------------------------------------------------------- /examples/focus_included_examples/KZKSpherical.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/KZKSpherical.m -------------------------------------------------------------------------------- /examples/focus_included_examples/KZKSpherical_cw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/KZKSpherical_cw.m -------------------------------------------------------------------------------- /examples/focus_included_examples/MultiFocusRectArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/MultiFocusRectArray.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/FDTSD_Circ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/FDTSD_Circ.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/FNMcirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/FNMcirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/FNMcircapodized.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/FNMcircapodized.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/FNMrect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/FNMrect.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/FNMsphericalshell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/FNMsphericalshell.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/FNMtransientcirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/FNMtransientcirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/FieldII_PressCirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/FieldII_PressCirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/FieldII_PressRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/FieldII_PressRect.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/FieldIIcirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/FieldIIcirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/FieldIIrect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/FieldIIrect.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/Rayleighcirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/Rayleighcirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/Rayleighcircapodized.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/Rayleighcircapodized.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/Rayleighrect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/Rayleighrect.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/Rayleighsphericalshell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/Rayleighsphericalshell.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/Rayleightransientcirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/Rayleightransientcirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/comparecirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/comparecirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/comparerect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/comparerect.m -------------------------------------------------------------------------------- /examples/focus_included_examples/Papers/comparesphericalshell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/Papers/comparesphericalshell.m -------------------------------------------------------------------------------- /examples/focus_included_examples/PlanarRingArrayExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/PlanarRingArrayExample.m -------------------------------------------------------------------------------- /examples/focus_included_examples/SingleFocusRectArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/SingleFocusRectArray.m -------------------------------------------------------------------------------- /examples/focus_included_examples/TSDTaperedRingArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/TSDTaperedRingArray.m -------------------------------------------------------------------------------- /examples/focus_included_examples/fdtsdcirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/fdtsdcirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/transientcirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/transientcirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/transientrect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/transientrect.m -------------------------------------------------------------------------------- /examples/focus_included_examples/transientrectarray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/transientrectarray.m -------------------------------------------------------------------------------- /examples/focus_included_examples/transientsphericalshell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/transientsphericalshell.m -------------------------------------------------------------------------------- /examples/focus_included_examples/tsdcirc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/tsdcirc.m -------------------------------------------------------------------------------- /examples/focus_included_examples/tsdmfrectarray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/tsdmfrectarray.m -------------------------------------------------------------------------------- /examples/focus_included_examples/tsdrect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/tsdrect.m -------------------------------------------------------------------------------- /examples/focus_included_examples/tsdrectarray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/tsdrectarray.m -------------------------------------------------------------------------------- /examples/focus_included_examples/tsdsphericalshell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/examples/focus_included_examples/tsdsphericalshell.m -------------------------------------------------------------------------------- /figures/create_circ_ssa_demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/create_circ_ssa_demo.jpg -------------------------------------------------------------------------------- /figures/create_circ_ssa_demo_array.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/create_circ_ssa_demo_array.jpg -------------------------------------------------------------------------------- /figures/create_rec_csa_demo_array.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/create_rec_csa_demo_array.jpg -------------------------------------------------------------------------------- /figures/create_rec_csa_demo_pressure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/create_rec_csa_demo_pressure.jpg -------------------------------------------------------------------------------- /figures/create_rec_enclosed_csa_demo_array.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/create_rec_enclosed_csa_demo_array.jpg -------------------------------------------------------------------------------- /figures/create_rec_enclosed_csa_demo_pressure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/create_rec_enclosed_csa_demo_pressure.jpg -------------------------------------------------------------------------------- /figures/cylindrical_high_resolution_demo_pressure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/cylindrical_high_resolution_demo_pressure.jpg -------------------------------------------------------------------------------- /figures/mouse_center_20MHz.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/mouse_center_20MHz.jpeg -------------------------------------------------------------------------------- /figures/off_axis_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/off_axis_demo.png -------------------------------------------------------------------------------- /figures/titrate_focus_wide_spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_focus_wide_spacing.png -------------------------------------------------------------------------------- /figures/titrate_focus_width_5e-4_spacing_5e-3_numel_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_focus_width_5e-4_spacing_5e-3_numel_100.png -------------------------------------------------------------------------------- /figures/titrate_focus_width_5e-4_spacing_5e-4_numel_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_focus_width_5e-4_spacing_5e-4_numel_100.png -------------------------------------------------------------------------------- /figures/titrate_focus_width_5e-4_spacing_5e-5_numel_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_focus_width_5e-4_spacing_5e-5_numel_100.png -------------------------------------------------------------------------------- /figures/titrate_frequency_100_xdcrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_frequency_100_xdcrs.png -------------------------------------------------------------------------------- /figures/titrate_frequency_200_xdcrs_1e4_5e7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_frequency_200_xdcrs_1e4_5e7.png -------------------------------------------------------------------------------- /figures/titrate_frequency_200_xdcrs_1e4_to_4e5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_frequency_200_xdcrs_1e4_to_4e5.png -------------------------------------------------------------------------------- /figures/titrate_frequency_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_frequency_array.png -------------------------------------------------------------------------------- /figures/titrate_shapes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_shapes.jpg -------------------------------------------------------------------------------- /figures/titrate_size_spacing_combo_and_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_size_spacing_combo_and_focus.png -------------------------------------------------------------------------------- /figures/titrate_spacing_and_focus_element_width_1e-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_spacing_and_focus_element_width_1e-4.png -------------------------------------------------------------------------------- /figures/titrate_spacing_and_focus_element_width_1e-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_spacing_and_focus_element_width_1e-5.png -------------------------------------------------------------------------------- /figures/titrate_spacing_and_focus_element_width_5e-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_spacing_and_focus_element_width_5e-4.png -------------------------------------------------------------------------------- /figures/titrate_spacing_and_num_elements.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_spacing_and_num_elements.fig -------------------------------------------------------------------------------- /figures/titrate_spacing_and_num_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_spacing_and_num_elements.png -------------------------------------------------------------------------------- /figures/titrate_spacing_and_num_elements_arrays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_spacing_and_num_elements_arrays.png -------------------------------------------------------------------------------- /figures/titrate_spacing_and_num_elements_high_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebkuznetsov/ultrasoundsim/HEAD/figures/titrate_spacing_and_num_elements_high_res.png --------------------------------------------------------------------------------