Skip to content

Commit

Permalink
Created using Colaboratory
Browse files Browse the repository at this point in the history
  • Loading branch information
luuleitner committed Oct 17, 2022
1 parent 09e5a62 commit 90fb979
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions beamform_image.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -309,19 +309,19 @@
"source": [
"# dasIT transducer\n",
"physical_transducer = TDloader('transducer.csv')\n",
"dasIT_transducer = transducer(center_frequency_hz = 5000000, # <--- FILL IN CENTER FREQUENCY OF THE TRANSDUCER IN [Hz]\n",
"dasIT_transducer = transducer(center_frequency_hz = , # <--- FILL IN CENTER FREQUENCY OF THE TRANSDUCER IN [Hz]\n",
" bandwidth_hz=physical_transducer.transducer['bandwidth'].dropna().to_numpy(dtype='float', copy=False), # [Hz]\n",
" adc_ratio=4, # [-]\n",
" transducer_elements_nr = 192, # <--- FILL IN THE NUMBER OF TRANSDUCER ELEMENTS [#]\n",
" element_pitch_m = 0.00023, # <--- FILL IN THE ELEMENT PITCH IN [m]\n",
" transducer_elements_nr = , # <--- FILL IN THE NUMBER OF TRANSDUCER ELEMENTS [#]\n",
" element_pitch_m = , # <--- FILL IN THE ELEMENT PITCH IN [m]\n",
" pinmap=physical_transducer.transducer['pinmap'].dropna().to_numpy(dtype='int', copy=False), # [-]\n",
" pinmapbase=1, # [-]\n",
" elevation_focus=0.028, # [m]\n",
" focus_number=None,\n",
" totalnr_planewaves=1, # [-]\n",
" planewave_angle_interval=[0,0], # [rad]\n",
" axial_cutoff_wavelength=5, # [#]\n",
" speed_of_sound_ms = 1540) # <--- FILL IN THE SPEED OF SOUND IN [m/s]"
" speed_of_sound_ms = ) # <--- FILL IN THE SPEED OF SOUND IN [m/s]"
],
"metadata": {
"pycharm": {
Expand Down

0 comments on commit 90fb979

Please sign in to comment.