blob: 507cf6c708b949ce460c64946edf0e4103cef132 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Grob's Basic Electronics 11e
// Chapter No. 01
// Example No. 1_1
clc; clear;
// A neutral dielectric has added to it 1.25*10^18 electrons. What is its charge in coulombs?
// Given data
ec = 1.25*10^18; // Electron charge=1.25*10^18 electrons
disp ("This number of electrons is double the charge of 1 C.")
disp ('Therefore, -Q = 2 Columbs')
|