element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Experimenting with Polymer Capacitors
  • Challenges & Projects
  • Design Challenges
  • Experimenting with Polymer Capacitors
  • More
  • Cancel
Experimenting with Polymer Capacitors
Blog Introduction and methods
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: neuromodulator
  • Date Created: 19 Jun 2019 10:07 PM Date Created
  • Views 666 views
  • Likes 7 likes
  • Comments 0 comments
Related
Recommended

Introduction and methods

neuromodulator
neuromodulator
19 Jun 2019

Introduction

 

Ideal capacitors can be defined with the following simple equation:

 

In this design challenge I will explore parasitic elements of polymer capacitors that are not modeled by the previous equation, in particular I will explore how temperature affects the capacitance and leakage current, and the dielectric absorption of 3 types of polymer capacitors.

 

 

Experimental methods

 

I received 17 different polymer capacitors, from them I selected 3 different types, of "roughly" similar capacitances:

 

Type: Polymer aluminum electrolytic capacitor (Polymer Al-e-cap)

Name: EEFCD0J100R - Polymer Aluminium Electrolytic Capacitor, 10 µF, 6.3 V, 2917 [7343 Metric], SP-Cap CD Series

Link: https://www.newark.com/panasonic/eefcd0j100r/cap-alu-elec-polymer-10uf-6-3v/dp/62W7346

 

Type: Polymer tantalum electrolytic capacitor (Polymer Ta-e-cap)

Name: 12TPG33M - Tantalum Polymer Capacitor, 33 µF, 12.5 V, POSCAP TPG Series, ± 20%, B, 0.07 ohm

Link: https://www.newark.com/panasonic/12tpg33m/cap-33uf-12-5v-tant-polymer/dp/78AC7775

 

Type: Hybrid polymer capacitor (Hybrid polymer Al-e-cap)

Name: EEH-ZA1H100R - Hybrid Aluminium Electrolytic Capacitor, Hybrid Polymer, 10 µF, 50 V, ZA Series, ± 20%

Link: https://www.newark.com/panasonic/eeh-za1h100r/aluminum-electrolytic-capacitor/dp/91T4889

 

I soldered cables into the capacitors and then waterproofed them with hot glue. The quality of the waterproofing was tested by checking if the DMM measured a capacitance changed after immersion into water (oil would have been much better but water was what I had at hand). As the Keithley DMM6500 measures the capacitance by measuring the voltage slope while supplying a constant current to the capacitor, a parallel resistor (water making contact to both terminals) would have the effect of making the DMM display a higher capacitance. The hot glue waterproofing appeared to work well as in none of the 3 capacitors I noticed any increase of the measured capacitance after immersion.

 

image

 

I used a hotplate magnetic stirrer to heat water of a recipient and avoid a temperature gradient buildup (as water is stirred through a coupled magnet).

 

image

 

Temperature was measured with a thermistor and a NI MyDAQ, which is an inexpensive DAQ that comes with a built-in DMM. Capacitance, current and voltage where measured concurrently with a Keithley DMM6500.

 

To convert the measured resistance into temperature, I used the Steinhart–Hart equation:

 

Where:

 

T is the temperature in °C

R the resistance in Ohms

A,B,C are the Steinhart–Hart coefficients, which depend on the thermistor

 

A, B and C coefficients were computed out of a table that shows the correspondence between resistance and temperature of the thermistor.

 

Data acquisition was done with a small Python program that I wrote:

 

import visa
import nidaqmx
import time
import numpy


# 'i' = current, 'C' = capacitance, 'v' = voltage
mode = 'v'


# Print message with timestamp
def log(s):
    print('[%.1f] %s' % ((time.time() - t0) / 60., s))


# Compute temperature (°C) from thermistor resistance
def steinhartHart(r):
    a = 1.027628774E-3
    b = 2.393890857E-4
    c = 1.555947964E-7

    logR = numpy.log(r)

    return 1. / (a + b * logR + c * (logR ** 3.)) - 273.15


# Time of the beginning of the execution
t0 = time.time()

# Connect to the instrument, set the timeout and clear the buffer
keithley = visa.ResourceManager().open_resource('TCPIP0::192.168.0.30::inst0::INSTR')
keithley.timeout = 30000
keithley.clear()

# Setup the instrument with the specified sampling rate, digitizing time, and current range. Then create the "currentDigitizer" script.
keithley.write('reset()')

if mode == 'i':
    keithley.write('dmm.measure.func = dmm.FUNC_DC_CURRENT')
    keithley.write('dmm.measure.nplc = 2')
    keithley.write('dmm.measure.filter.enable = dmm.ON')
    keithley.write('dmm.measure.filter.count = 100')

if mode == 'C':
    keithley.write('dmm.measure.func = dmm.FUNC_CAPACITANCE')
    keithley.write('dmm.measure.filter.enable = dmm.ON')
    keithley.write('dmm.measure.filter.count = 20')

if mode == 'v':
    keithley.write('dmm.measure.func = dmm.FUNC_DC_VOLTAGE')
    keithley.write('dmm.measure.inputimpedance = dmm.IMPEDANCE_AUTO')
    keithley.write('dmm.measure.nplc = 1')
    keithley.write('dmm.measure.filter.enable = dmm.ON')
    keithley.write('dmm.measure.filter.count = 5')

# Setup MyDAQ
with nidaqmx.Task() as task:
    task.ai_channels.add_ai_resistance_chan('myDAQ1/dmm', min_val = 1000., max_val = 30000., current_excit_source = nidaqmx.constants.ExcitationSource.INTERNAL)

    i = 0
    l = []

    # Main loop
    while True:
        if mode == 'i' or mode == 'C':
            temperatureT = time.time() - t0
            resistance = numpy.array(task.read(10, timeout = 10)).mean()
            temperature = steinhartHart(resistance)

            log('Temperature: %.2f °C' % temperature)
    
        valueT = time.time() - t0
        value = float(keithley.query('print(dmm.measure.read())'))

        if mode == 'i':
            log('Current: %.2f nA' % (value * 1E9))

        if mode == 'C':
            log('Capacitance: %.4f uF' % (value * 1E6))

        if mode == 'v':
            log('Voltage: %.3f mV' % (value * 1E3))
        
        if mode == 'i' or mode == 'C':
            l.append([temperatureT, temperature, valueT, value])

        if mode == 'v':
            l.append([valueT, value])

        i = (i + 1) % 50

        if i == 0:
            log('Saving data...')
            numpy.save('data.npy', numpy.array(l))

 

  • Sign in to reply
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube