Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Two 150 Watt Bulbs In this case we need to decide where to put the two bulbs. Common and sense tells us to arrange the

image text in transcribed
image text in transcribed
Two 150 Watt Bulbs In this case we need to decide where to put the two bulbs. Common and sense tells us to arrange the bulbs symmetrically a long a line down the center of a room in the long direction; that is along the line y=2. Define a function that gives the intensity of light at a point (x, y) on the floor due to a 150 watt bulb at a position (d, 2) on the ceiling. > light2 = inline(vectorize(' 150/ (4*pi*((x-d) ^2 + (y-2)12 + 312) ) '), 'X ' , 'y' , 'd' ) ; Let's get an idea of the illumination pattern if we put one light at d=3 and the other at d=7. We specify the drawings of 20 contours in this and the following plots >> [X, Y] = meshgrid(0 :0.1:10, 0:0.1:4); contourf (light2(X, Y, 3) + light2(X, Y, 7), 20) ; colormap ( 'gray' ) ; axis equal tight The floor is more evenly lit with one bulb, it looks as if the bulbs are closer together as they should be. If we move the bulbs further apart, the center of the room will get dimmer, but the corners will get brighter. Let's try changing the location of the lights to d=2 and d=8. >> contourf (light2(X, Y, 2) + light2(X, Y, 8), 20); colormap ( gray ) ; axis equal tight This is an improvement. The corners are the darkest spots of the room, though the light intensity along the walls toward the middle of the room near (x=5) is diminishing as we move the bulbs further apart. Still, to better illuminate the darkest spots we should keep moving the bulbs apart. Let's try lights at d=1 and d=9. >>contourf (light2(X, Y, 1) + light2(X, Y, 9), 20)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

College Physics Reasoning and Relationships

Authors: Nicholas Giordano

2nd edition

840058195, 9781285225340 , 978-0840058195

More Books

Students also viewed these Physics questions

Question

2. Find five metaphors for communication.

Answered: 1 week ago