Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drive two transducers #19

Merged
merged 11 commits into from
Nov 5, 2024
6 changes: 3 additions & 3 deletions fus_ds_package/fus_driving_systems/config/create_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
RAMP_LIN = 'Linear'
RAMP_TUK = 'Tukey'

config['General']['Ramp shapes'] = '\n'.join([RAMP_RECT, RAMP_LIN, RAMP_TUK])
config['General']['Ramp shapes'] = '\n'.join([RAMP_RECT, RAMP_LIN, RAMP_TUK, RAMP_SHOTA])
config['General']['Ramp shape.rect'] = RAMP_RECT
config['General']['Ramp shape.lin'] = RAMP_LIN
config['General']['Ramp shape.tuk'] = RAMP_TUK
Expand Down Expand Up @@ -229,7 +229,7 @@
'gen_Nijmegen128_2x10_393F.json')) # should be in the same directory as code
config['Equipment.Driving system.' + IGT_DS[1]]['Transducer compatibility'] = str('\n'.join(
IS_TRANS + DUMMIES))
config['Equipment.Driving system.' + IGT_DS[1]]['Active?'] = str(False)
config['Equipment.Driving system.' + IGT_DS[1]]['Active?'] = str(True)

config['Equipment.Driving system.' + IGT_DS[2]] = {}
config['Equipment.Driving system.' + IGT_DS[2]]['Name'] = IGT + ' 128 ch. - 1 x 10 ch.'
Expand Down Expand Up @@ -298,7 +298,7 @@
'gen_Nijmegen32_2x10c_71D8.json')) # should be in the same directory as code
config['Equipment.Driving system.' + IGT_DS[7]]['Transducer compatibility'] = str('\n'.join(
IS_TRANS + DUMMIES))
config['Equipment.Driving system.' + IGT_DS[7]]['Active?'] = str(False)
config['Equipment.Driving system.' + IGT_DS[7]]['Active?'] = str(True)

config['Equipment.Driving system.' + IGT_DS[8]] = {}
config['Equipment.Driving system.' + IGT_DS[8]]['Name'] = IGT + ' 32 ch. - 1 x 10 ch.'
Expand Down
5 changes: 3 additions & 2 deletions fus_ds_package/fus_driving_systems/config/ds_config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ maximum pressure allowed in free water [mpa] = 1.2
ramp shapes = Rectangular - no ramping
Linear
Tukey
Shota
ramp shape.rect = Rectangular - no ramping
ramp shape.lin = Linear
ramp shape.tuk = Tukey
Expand Down Expand Up @@ -159,7 +160,7 @@ transducer compatibility = IS_PCD15287_01001
IS_PCD15473_01001
IS_PCD15473_01002
Dummy
active? = False
active? = True

[Equipment.Driving system.IGT-128-ch_comb_1x10-ch]
name = IGT 128 ch. - 1 x 10 ch.
Expand Down Expand Up @@ -229,7 +230,7 @@ transducer compatibility = IS_PCD15287_01001
IS_PCD15473_01001
IS_PCD15473_01002
Dummy
active? = False
active? = True

[Equipment.Driving system.IGT-32-ch_comb_1x10-ch]
name = IGT 32 ch. - 1 x 10 ch.
Expand Down
Loading