summaryrefslogtreecommitdiff
path: root/2192/CH10/EX10.5/10_5.sce
blob: 873a1a08bb5b4e72c618792f053635120620aa69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
clc,clear
printf('Example 10.5\n\n')

wattage=500
efficiency=25// efficiency of each lamp
flux=wattage * efficiency //total flux emmited 

I_each = flux/(4*%pi)//intensity of each lamp
d_1=sqrt(3^2+5^2)
d_2=sqrt(4^2+5^2)

theta_1= acos(3/d_1)
theta_2= acos(4/d_2)

I_L1 =  cos(theta_1)*I_each / d_1^2//I_L1 is illumination due to L_1
I_L2 =  cos(theta_2)*I_each / d_2^2//I_L2 is illumination due to L_2

I_C= I_L1 + I_L2 //I_C is illumnation at C;C is midpoint
printf('Required illumination is %.2f lux',I_C)