power cell विद्युत सेल by Divyanshu Verma

 विद्युत सेल एक ऐसी युक्ति जो रासायनिक ऊर्जा को वैद्युत ऊर्जा में परिवर्तित करके किसी परिपथ में आवेश के प्रवाह को निरन्तर बनाए रखती है।



• विद्युत सेलों में रासायनिक पदार्थ भरे होते हैं जिनकी क्रिया से रासायनिक ऊर्जा विद्युत ऊर्जा में बदलती है। सर्वप्रथम अलेक्जेंडर वोल्टा नामक वैज्ञानिक ने सन् 1796 में सेल बनाया था। इसके पश्चात् लेक्लांशी नामक फ्रेंच वैज्ञानिक ने वोल्टा सेल के दोषों को दूर कर लेक्लांशी सेल बनाया। शुष्क सेल भी लेक्लांशी सेल होता है।


• बैटरी: एक सेल का धन टर्मिनल दूसरे सेल के ऋण टर्मिनल से संयोजित किया जाता है। दो या अधिक सेलों के इस प्रकार के संयोजन को बैटरी कहते हैं।


● विद्युत सेल के प्रकार: विद्युत सेल दो प्रकार के होते हैं


1. प्राथमिक सेल (Primary Cell) 2. द्वितीयक सेल (Secondary Cell) या संचायक सेल

 <style>

.button {

    background-image: linear-gradient(to right, #00e087, #a8eb12);

    color: black;

    font-family: Arial Bold;

    font-size: 30px;

    text-decoration: none;

    padding: 3px;

}

.gag{

    background-image: linear-gradient(to right, #00e087, #a8eb12);

    color: black;

    font-family: Arial Bold;

    font-size: 30;

    text-decoration: none;

    padding: 3px;

}

</style>


<div style="text-align: center;">

<a href="https://www.livemoney.in/?m=1" target="_blank" id="download" class="button">Download File</a>


<button id="btn" class="gag">Click to Generate Link</button>


<script>

var downloadButton = document.getElementById("download");

var counter = 3;

var newElement = document.createElement("p");

newElement.innerHTML = "20 sec";

var id;


downloadButton.parentNode.replaceChild(newElement, downloadButton);


function startDownload() {

    this.style.display = 'none';

    id = setInterval(function () {

        counter--;

        if (counter < 0) {

            newElement.parentNode.replaceChild(downloadButton, newElement);

            clearInterval(id);

        } else {

            newElement.innerHTML = +counter.toString() + "20 Sec";

        }

    }, 1500);

};


var clickbtn = document.getElementById("btn");

clickbtn.onclick = startDownload;

</script>

Post a Comment

0 Comments