Skip to main content

What is Current, Voltage and Resistor?

In electronic, we are keen on monitoring two fundamental amounts: the current and voltages in a circuit.

 What is Current? 

The term current refers to the quantity, volume or intensity of electrical flow. Current can be defined as the flow of electrons in a circuit. The units of current are thus coulombs per second or amperes, abbreviated as A. We us capital “I” as symbol of Current.

 What is Voltage?

 The work per unit charge expected to move some charge between two points is known as the voltage between those points. (In material science, this work per unit charge is identical to difference in electrostatic potential between the two points, so the term potential difference is used for voltage..) The unit of voltage is joules per coulomb or volts, shortened V. 

 What is Resistance? 

 Resistance is the measure of opposition to the flow of electrons in an electric circuit. Resistance is measured in Ohms symbolized by letter Ω. 

 Relation between Current, Voltage and Resistance in a circuit 

 Relation between Current, Voltage and Resistance in a circuit can be defined by the Ohms law. 

Ohms Law 

Ohm’s Law can be stated as mathematical equations, all derived from the same principle. In the following equations 
V = I X R
 If any two values are known in circuit third value can be fined by this equation

Comments

Popular posts from this blog

On page SEO

  SEO Title Optimization Title optimization for SEO (Search Engine Optimization) involves crafting effective and relevant titles for web pages or content that can help them rank higher on search engine results pages (SERPs). A well-optimized title can attract more clicks, increase website traffic, and improve the visibility of a website or content in search

Solar Panel Installation Guide

  In this post we will discuss the calculation of  following items for installation of solar invertor System in your Home. 1.  Battery (AH) required for your Home Solar system? 2. How to calculate Backup time of Your installed battery? 3. Solar Panels Required for Your home Load and Battery Charging?

JavaScript Concept And Learning Steps

  Of course, I can help you learn JavaScript! JavaScript is a popular programming language used for web development. To get started, here are some fundamental concepts and steps: 1. **Setting Up:** To practice JavaScript, you can use your web browser's developer tools. Just open your browser, right-click anywhere on a webpage, select "Inspect" (or press F12), and navigate to the "Console" tab. This is where you can write and execute JavaScript code. 2. **Basic Syntax:** JavaScript code consists of statements and expressions. It's important to understand the basic syntax, including variables, data types, and operators.    ```javascript    // Example of a variable declaration and basic data types    let greeting = "Hello, World!";    let number = 42;    ``` 3. **Functions:** Functions are reusable blocks of code. You can define your own functions and use built-in functions.    ```javascript    // Example of a simpl...