summaryrefslogtreecommitdiff
path: root/3850/CH47/EX47.5/Ex47_5.sce
blob: aedcd876af4479edb66397836e9f9bd26b7b94d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

//To Calculate the amount of Electrical Energy obtained in kilowatt-hour

//Example 47.5

clear;

clc;

c=3*10^8;//Speed of light in m/s

m=3.6*10^-3;//Mass of the object in kilograms

E=m*c^2/(3.6*10^6);//Amount of Electrical Energy obtained in kWh

printf("Electrical Energy obtained when a mass of 3.6 g is fully converted into energy = %.0f*10^7 kWh",E*10^-7);