blob: 50f4489ba1cd9ffb9a203b639519fac405c1d91d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014
//Ex4_4.sce.
clc;
clear;
q=1.6e-19;
m=9.1e-31;
g=9.8;
F=m*g;
E=F/q;
printf("\n Magnitude of electric field intensity E=%1.1f*10^-11 N/C",E*1e11)
|