summaryrefslogtreecommitdiff
path: root/2210/CH1/EX1.4/1_4.sce
blob: 0d972a4704d33177e5b9828163025767abb60941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Chapter 1, Example 1.4
clc
n=105                           //no of coil turns
a=8*10^-5                       //cross sectional area in metre square
ur=230                          //relative permeability
uo=4*%pi*10^-7                  //permeability of air
Erms=10*10^-6                   //electric field strength
f=10^6                          //frequency in hertz

//calculation
erms=n*2*%pi*f*ur*uo*Erms*a*cos(0)

printf("r.m.s open circuit voltage = %.2f microVolt",erms*10^6)