When a capacitor is filled with an electrolyte (e.g. a salt solution), rather than an insulator, its behaviour is remarkably different: the capacitance is extremely high even when the distance between the plates is large, but builds up only slowly (in the order of seconds). Helmholtz first proposed the “electric double layer” (EDL) to explain this behaviour. Over the years, ever more sophisticated theoretical models of the EDL have been proposed. Practically, the EDL is used in the modern “supercapacitors”, which are a key technology e.g. for electric vehicles.
Here you shall study the build-up of an electric double layer experimentally, by applying a step-like voltage to an electrolyte-filled capacitor, and observe the charging transients on a digital oscilloscope. Investigate the dependency of charging transients on distance between the plates, and salt concentration.
Last Completed Projects
| topic title | academic level | Writer | delivered |
|---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });

