Compare Ideal vs. Real Filter with an LCR Meter - Workbench Wednesdays

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ม.ค. 2025

ความคิดเห็น • 10

  • @marekmosat7176
    @marekmosat7176 3 ปีที่แล้ว +1

    absolutelly perfect video. Sir, you are great

  • @Bob-tu9jq
    @Bob-tu9jq 3 ปีที่แล้ว +1

    excellent teacher

  • @turkalpkucur
    @turkalpkucur 7 หลายเดือนก่อน

    thank you

  • @andreaswaldherr7008
    @andreaswaldherr7008 3 ปีที่แล้ว

    Thanks a lot!

  • @8Junio76
    @8Junio76 ปีที่แล้ว

    Would you recommend the Hantek LCR meter?

    • @martinkuliza
      @martinkuliza 9 หลายเดือนก่อน +1

      Obviously that's why it's in the video

  • @Luke-12V
    @Luke-12V 2 ปีที่แล้ว

    good evening, the device can also measure capacitors in the circuit, thank you very much

  • @sudheerkumar5966
    @sudheerkumar5966 3 ปีที่แล้ว

    Very good

  • @DAVIDGREGORYKERR
    @DAVIDGREGORYKERR 3 ปีที่แล้ว

    Would it be a better idea to use Texas Instruments DSP processing and High School mathematics to do the donkey work and use a sampling rate of 4x the frequency to be filtered io for a cutoff frequency of 100khz would be 400khz the filter shown is not for 100 hz to 100 khz is just an example.
    long double m_pNum[5] = {0.001836, 0.007344, 0.011016, 0.007344, 0.001836};
    long double m_pDen[5] = {1.0, -3.0544, 3.8291, -2.2925, 0.55075};
    long double m_px[20]={0.0};
    long double m_py[20]={0.0};
    void IIR_Filter(long double data_in[], long double data_out[], int len)
    {
    int i, k;
    for(k = 0; k < len; k++)
    {
    m_px[0] = data_in[k];
    m_py[0] = 0.0;
    for(i = 0; i = 1; i--)
    {
    m_py[i] = m_py[i-1];
    }
    data_out[k] = m_py[0];
    }
    }