Skip to content

Commit

Permalink
Change default freq range to 0--2kHz
Browse files Browse the repository at this point in the history
Since the default flux ramp rate is 4kHz so we can only get half of that.
  • Loading branch information
simonscryo committed Jul 17, 2024
1 parent f6bdc8a commit 5b10fa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sodetlib/operations/complex_impedance.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ def take_complex_impedance(
bgs = np.atleast_1d(bgs)

if freqs is None:
freqs = np.logspace(0, np.log10(4e3), 20)
freqs = np.logspace(0, np.log10(2e3), 20)
freqs = np.atleast_1d(freqs)

run_kwargs = {k: v for k, v in locals().items() if k not in ['S', 'cfg']}
Expand Down

0 comments on commit 5b10fa7

Please sign in to comment.