POV-Ray : Newsgroups : povray.binaries.images : luminance output : Re: luminance output Server Time
6 Oct 2024 07:18:53 EDT (-0400)
  Re: luminance output  
From: CAS
Date: 17 Apr 2014 21:00:01
Message: <web.53507809c34aaa776a92a3a00@news.povray.org>
"Thorsten Froehlich" <nomail@nomail> wrote:
> "CAS" <sup### [at] cstnetcn> wrote:
> > I have another confusion:I have known the value of solar irradiance(w/m^2) from
> > 200nm-2200nm,how can I set the solar irradiance in pov?
>
> It is not exactly clear what you are trying to do, but my best guess would be
> that you are trying to match POV-Ray output with some physical measurements that
> you got somewhere. That is something POV-Ray light models (or that of most
> general purpose 3D programs) are not designed to do. You may get much better
> results using Radiance (http://radsite.lbl.gov/radiance/HOME.html) or
> special-purpose wave-model based ray-tracers.
>
> Thorsten

Thank you for your help.Yes,what I want is matching POV-Ray output with some
physical measurements.I have used spectral
render.http://www.lilysoft.org/CGI/SR/Spectral%20Render.htm.

#version 3.7;
global_settings{ assumed_gamma 1.0 }
#declare SpectralWavelength =730;
#include "spectral.inc"

camera
{
angle  7.54371
location <camera_x,camera_y,camera_z >
look_at <0,0,0>
rotate <0,-31,0>
right x
up y
}

light_source {<sun_x,sun_y,sun_z>
             SpectralEmission(E_D65)   //some CIE standard illuminants
             }

#declare n = 0;
#fopen   Input_geom_file geom_file_name read
#fopen   Input_spec_file spec_file_name read
#while(defined(Input_geom_file))
    #read(Input_geom_file,x1,y1,z1)
    #read(Input_spec_file,ref)
      box
        {
           -1.55,1.55
           rotate y*-31
           translate <x1-center_x,y1-center_y,z1-center_z>
           pigment {color rgb 1}
           finish {
                 ambient 0
                 diffuse ref
                   }
            }
    #declare n = n + 1;

My solar irradiance in 730nm is 1.33015(w/m^2),and I have converted irradiance
to illuminance with the lm/w in 730nm,then the value of illuminance in 730nm is
0.47262925(cd/m^2).My issue is how can I input the illminance in 730nm?
"light_source {<sun_x,sun_y,sun_z>
             SpectralEmission(E_D65)
             }  "
With this light_source,the illuminance is E_D65.How can I input my illminance?


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.