Skip to main content

How to Decode Ceramic Capacitor Numeric Value

 

Hello friends, ceramic capacitor are widely used in electronic circuit. But when it comes to know the value of the capacitor it becomes difficult sometimes, since on ceramic capacitor value is not written directly. There is a code on the capacitor and you have to decode that code to know the value.

                               

So how can you know the value of ceramic capacitor? Before moving ahead get to know some units used in capacitor values.

Unit of capacitor is Farad. But lower value of capacitors are used in circuits.

First is Pico Farad, 1 pico is equal to 10-12

Second is Nano Farad, 1 nano is equal to 10-9

Third is Micro Farad, 1 micro is equal to 10-6

A ceramic capacitor, usually, have 3 digit code, for example we have a capacitor having code 105.

First 2 digits (1 & 0) are significant figures, and third one (5) is multiplier. Multiplier is considered with power of 10 as 105.

After putting all values we have the value in pF (picoFarad)

Pattern of to decode the value

First Figure   Second Figure  x 10multiplier

Value is in pF

Let’s decode the code

Marking on capacitor ‘105’

Pattern to decode, 10 x 105 = 1000000 pF

Now we have the value in pF, we can change it into nF by multiplying it by 10-3. Since, It is in pF, which is equal to  10-12 and we are changing it into nF which is equal to 10-9, difference in these multiplier is of 3.

After multiplying it by 10-3 We have value in nF

= 1000000 x 10-3 nF =1000 nF

But if you want value in micro Farad (μF) then multiply it by 10-6.

= 1000000 x 10-6 μF =1 μF




Comments

Popular posts from this blog

How to Make Automatic Room Light Controller Without Microcontroller

You must have noticed in some offices or hotels, when nobody is in gallery or washroom, the light remains OFF but when somebody enters the place, light switches ON automatically. In this post I am going to teach you how to make this circuit. Before going ahead I would like to tell you that this is VERY EASY circuit. For this circuit the material we need is… PIR Motion sensor General Purpose PCB - 5x5 cm. Transistor 2222N – 1 No. Relay 5V – 1 No. 1K/0.250W – 2 Nos. 10K/0.250W – 1 No. IN4007 – 2 Nos. LED 3mm – 1 No. Connector – 4 Nos. Few wires. Relay Circuit Concept : We can use any relay of 12V, 24V, 5V etc. but we have to consider power supply or battery we will use. Since 5V power supply is easily available and 9V battery can also be used for 5V output (after using 7805 regulator if needed). So I am using 5V relay. PIR sensor has three terminals, One for 5Vdc Second for Gnd (0V). Third for

How to drive high voltage/current load by small voltage signal from a microcontroller?

Sometimes we need to control or drive a high voltage and heavy current load by a small voltage signal. For example, if you want to control water motor with your microcontroller output. We know that microcontroller gives only 5v output which is not sufficient to drive a heavy motor. This circuit, about which this post is, is very-very useful for electronics engineer and hobbyist. So pay attention! For this circuit the material we need is… General Purpose PCB - 5x5 cm. Transistor KN 2222A (TO-92) - 1 No. Relay 5V – 1 No. 1K/0.250W – 2 Nos. 10K/0.250W – 1 No. IN4007 – 2 Nos. LED 3mm – 1 No. Connector – 4 Nos. Few wires. Tools. Concept: Weak signal triggers the transistor and transistor acts as a switch for the relay. You can use any relay of 12V, 24V, 5V etc. but we have to consider power supply or battery we will use. Since 5V power supply is easily available and 9V battery can also be used for 5V output (after using 7805 regulator if needed).

Parking Gate with Password Protected Entry | ElectroMech Lab | Arduino

Hello Friends, This project is for password/PIN protected Parking gate. This is very interesting project. I hope you like it. Material: Arduino UNO - 1 No. Servo Motor - 1 No. IR Sensor - 1 No. 4x4 Keypad - 1 No. 9V Battery - 1 No. Toy Car - As per your wish. 10 Kohm Resistor - 1 No. Sketch:  // This code is for password/PIN protected Parking Gate. #include <Keypad.h> #include <Servo.h> Servo myservo;  // create servo object to control a servo int exitSensor= 10;   // pin 10 is connected to out sensor, when vehicle is passed after toll crossing //******************************************************** keypad initialisation  ************************************ char* password = "1245"; // if this is changed then modification is needed in loop section validating the keys const byte ROWS = 4; //four rows const byte COLS = 4; //three columns char keys[ROWS][COLS] = {       {'1', '2', '3', 'A'},   {'4', '5', '6',