Electronic Engineer Discuss

View: 3877|Reply: 2
Print Prev. thread Next thread

A/C and D/C coupling support

[Copy link]

81

Threads

170

Posts

170

Credits

注册会员

Rank: 2

Credits
170
Jump to specified page
1#
Post time 2022-12-15 08:48:15 | Show the author posts only Reply Awards |Descending |Read mode
Dear sir/madam
I bought my hantek 6022BE oscilloscope, Amperage clamp and attenuator. My problem is if l download software from disk does not support A/C and D/C coupling even to use Amperage clamp.Thanks in advance

Sent from my Huawei phone
Reply

Use magic Report

81

Threads

170

Posts

170

Credits

注册会员

Rank: 2

Credits
170
2#
 Author| Post time 2022-12-15 08:50:40 | Show the author posts only

Dear Sir,

Greeting from Hantek.

Yes,  The  6022BE does not support A/C coupling.

Have a nice day.

1

Threads

8

Posts

8

Credits

新手上路

Rank: 1

Credits
8
3#
Post time 2023-7-4 17:00:13 | Show the author posts only
a/c coupling can achieve in digital way. like this:

  1. #信号去除0点:
  2. def dc2ac(signal):
  3.     # 下面,将对应信号转至频域消除0点后转回时域
  4.     x = signal
  5.     # 傅里叶变换
  6.     X = np.fft.fft(x)  # 计算原始信号的傅里叶变换
  7.     # 去除直流分量
  8.     X[0] = 0;
  9.     # 幅角变换
  10.     phase_shift = np.zeros(len(X))
  11.     phase_shift[len(X)//2] = -np.angle(X[len(X)//2])
  12.     X_corrected = X * np.exp( 1j * phase_shift)
  13.     # 转回时域
  14.     x_withoutDC = np.real(np.fft.ifft(X_corrected));
  15.     return x_withoutDC;
Copy the Code

You have to log in before you can reply Login | Register

Points Rules

Dark room|Mobile|Archiver|Electronic Engineer Discuss

2024-4-26 07:34 GMT+8 , Processed in 0.175445 second(s), 20 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

Quick Reply To Top Return to the list