mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m-thesis-introduction.git
synced 2024-12-22 03:23:34 +01:00
ZH: repair cases: move sc_kwargs
This commit is contained in:
parent
1fee731ec3
commit
14ab836a6d
1 changed files with 7 additions and 6 deletions
|
@ -178,6 +178,11 @@ if __name__ == "__main__":
|
||||||
'repair_full': "phase + period clock offsets"
|
'repair_full': "phase + period clock offsets"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
power_on_grid_sc_kwargs = dict(
|
||||||
|
s=250,
|
||||||
|
cmap='inferno'
|
||||||
|
)
|
||||||
|
|
||||||
# For now only implement using one freq_name
|
# For now only implement using one freq_name
|
||||||
freq_names = ev.antennas[0].beacon_info.keys()
|
freq_names = ev.antennas[0].beacon_info.keys()
|
||||||
if len(freq_names) > 1:
|
if len(freq_names) > 1:
|
||||||
|
@ -319,14 +324,10 @@ if __name__ == "__main__":
|
||||||
wx, wy = scale, scale
|
wx, wy = scale, scale
|
||||||
print(f"Starting grid measurement for figure {case} with {scalename}")
|
print(f"Starting grid measurement for figure {case} with {scalename}")
|
||||||
xx, yy, p, maxp_loc = rit.shower_plane_slice(ev, X=X, Nx=Nx, Ny=Nx, wx=wx, wy=wy, zgr=zgr)
|
xx, yy, p, maxp_loc = rit.shower_plane_slice(ev, X=X, Nx=Nx, Ny=Nx, wx=wx, wy=wy, zgr=zgr)
|
||||||
|
fig, axs = rit.slice_figure(ev, X, xx, yy, p, mode='sp', scatter_kwargs={**dict(
|
||||||
fig, axs = rit.slice_figure(ev, X, xx, yy, p, mode='sp', scatter_kwargs=dict(
|
|
||||||
vmax=no_offset_maximum_power,
|
vmax=no_offset_maximum_power,
|
||||||
vmin=0,
|
vmin=0,
|
||||||
s=250,
|
), **power_on_grid_sc_kwargs} )
|
||||||
cmap='inferno',
|
|
||||||
# edgecolor='black',
|
|
||||||
))
|
|
||||||
|
|
||||||
suptitle = fig._suptitle.get_text()
|
suptitle = fig._suptitle.get_text()
|
||||||
fig.suptitle("")
|
fig.suptitle("")
|
||||||
|
|
Loading…
Reference in a new issue