home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / NEWS / RADIANCE / SCN / SODA / REFLECT.CAL < prev    next >
Text File  |  1993-10-07  |  527b  |  16 lines

  1. {
  2.     Calculations for illumination reflected from fluorescent troughers.
  3.     Lamp must be along a main axis, and is assumed to be infinite.
  4.     The output of the lamp (in watts per meter) is multiplied to get
  5.     irradiance.
  6.  
  7.     A1 =        Distance from lamp to plane of reflector
  8.     A2, A3 =    Axis positions for lamp
  9.  
  10.     all values are in inches, hence the conversion to meters
  11. }
  12.  
  13. xreflect = 39.4*A1/((Py-A2)*(Py-A2) + (Pz-A3)*(Pz-A3));
  14. yreflect = 39.4*A1/((Px-A2)*(Px-A2) + (Pz-A3)*(Pz-A3));
  15. zreflect = 39.4*A1/((Px-A2)*(Px-A2) + (Py-A3)*(Py-A3));
  16.