tutorials:basic-spectral-light-modeling
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorials:basic-spectral-light-modeling [2024/12/05 09:14] – added the example part MH | tutorials:basic-spectral-light-modeling [2025/01/08 21:30] (current) – MH | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Spectral Light Modelling ====== | ====== Spectral Light Modelling ====== | ||
- | |||
- | ===== General Introduction ===== | ||
- | |||
- | Light modelling generally involves three aspects: | ||
- | |||
- | * Global illumination model | ||
- | * Light sources | ||
- | * Local illumination model | ||
- | |||
- | {{ : | ||
- | |||
- | Whereas the Global illumination model handles the actual light computation, | ||
- | |||
- | In each aspect, computer graphics offers plenty of alternatives. | ||
- | |||
- | {{ : | ||
- | |||
- | Several of them are implemented in GroIMP as ready-to-use tools. | ||
- | |||
- | GroIMP integrates two two main **light model implementations**, | ||
- | |||
- | * Twilight, a CPU-based implementation | ||
- | * GPUFlux, a GPU-based implementation | ||
- | |||
- | Both implementing different global illumination model for rendering and for light computation. | ||
- | |||
- | {{ : | ||
- | |||
- | In the following, only light computation or light modelling will be discussed. | ||
- | |||
- | |||
- | Regarding light sources, GroIMP provides a complete set of possible implementations. They all implement the //Light// and // | ||
- | |||
- | {{ : | ||
- | |||
- | For the Local illumination model, which defines the optical properties of the scene objects such as values for absorption, transmission, | ||
- | |||
- | {{ : | ||
- | |||
- | GroIMP provides a set of standard shader implementations, | ||
- | |||
- | {{ : | ||
- | |||
- | |||
- | ===== Spectral light modelling ===== | ||
- | |||
These three core aspects of light simulation—global and local illumination models, and light sources—are the base for any light simulation. When it comes to spectral light simulations, | These three core aspects of light simulation—global and local illumination models, and light sources—are the base for any light simulation. When it comes to spectral light simulations, | ||
Line 112: | Line 66: | ||
// disables the simulation of sensor | // disables the simulation of sensor | ||
- | LM.setEnableSensors(false); // default: | + | LM.setEnableSensors(true); // default: |
// sets the random seed for the random number generator; us this to obtain reproducible results | // sets the random seed for the random number generator; us this to obtain reproducible results | ||
LM.setRandomseed(123456); | LM.setRandomseed(123456); | ||
- | // disables | + | // enable |
- | LM.setDispersion(false); // default: | + | LM.setDispersion(ture); // default: |
</ | </ | ||
Line 322: | Line 276: | ||
Phong myShader = new Phong(); | Phong myShader = new Phong(); | ||
myShader.setDiffuse(GREEN_SPD); | myShader.setDiffuse(GREEN_SPD); | ||
- | myShader.setTrasnparency(RED_SPD); | + | myShader.setTransparency(RED_SPD); |
Line 337: | Line 291: | ||
myShader.setDiffuse(GREEN_SPD); | myShader.setDiffuse(GREEN_SPD); | ||
myShader.setTransparency(RED_SPD); | myShader.setTransparency(RED_SPD); | ||
- | myShader.setSpecularCONST_SPD); | + | myShader.setSpecular(CONST_SPD); |
| | ||
//set the shader to the TestBox | //set the shader to the TestBox | ||
Line 349: | Line 303: | ||
} Box(0.001, | } Box(0.001, | ||
</ | </ | ||
+ | |||
+ | Within the // | ||
+ | |||
+ | * on 1nm resolution [300, 780] | ||
+ | * A, D65 | ||
+ | * on 5nm resolution [300, 780] | ||
+ | * A, C, D50, D55, D65, D75 | ||
+ | * on 5nm resolution [380, 780] | ||
+ | * FL1-12, FL3_1-15, HP1-5 | ||
+ | |||
+ | For instance, to use the predefined CIE NORM D65 for typical sun light within a user defined light module, one could use the following code. | ||
+ | |||
+ | <code java> | ||
+ | import de.grogra.imp3d.objects.Attributes; | ||
+ | import de.grogra.gpuflux.imp3d.spectral.CIENormSpectralCurve; | ||
+ | |||
+ | //define a light module | ||
+ | module MyLamp extends LightNode { | ||
+ | { | ||
+ | setLight( | ||
+ | new SpectralLight( | ||
+ | new CIENormSpectralCurve(Attributes.CIE_NORM_D65) | ||
+ | ).( | ||
+ | setPower(100), | ||
+ | setLight( | ||
+ | new SpotLight(DISTRIBUTION).( | ||
+ | setVisualize(true), | ||
+ | setNumberofrays(250), | ||
+ | setRaylength(1)// | ||
+ | ) | ||
+ | ) | ||
+ | ) //end SpectralLight | ||
+ | ); //end setLight | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | Note: Do NOT mix common RGB shader like the // | ||
Line 355: | Line 349: | ||
To monitor light distributions with a scene without interfering, | To monitor light distributions with a scene without interfering, | ||
- | Note: the size of the sensor node directly correlates with the probability of got hit by a light ray. For a very small sphere the probability to got hit by a light ray is relatively low, so the number of light rays simulated by the light model needs to be much larger to get repayable results. Therefore, better not to use very small sensor nodes. | + | Note: The size of the sensor node directly correlates with the probability of got hit by a light ray. For a very small sphere the probability to got hit by a light ray is relatively low, so the number of light rays simulated by the light model needs to be much larger to get repayable results. Therefore, better not to use very small sensor nodes. |
- | Note: the colour of the sensor node determines which wavelengths should be observed. The default value is white, what stands for monitor all colours. If, for instance, the sensor colour is set to red, only red spectra will be sensed. | + | Note: The colour of the sensor node determines which wavelengths should be observed. The default value is white, what stands for monitor all colours. If, for instance, the sensor colour is set to red, only red spectra will be sensed. |
- | Note: the output of a sensor node is normalized to absorbed radiance per square meter, independent of the actual size of the sensor. | + | Note: The output of a sensor node is normalized to absorbed radiance per square meter, independent of the actual size of the sensor. |
Note: Sensor nodes can be enabled and disabled for the light model using the LM.setEnableSensors(true/ | Note: Sensor nodes can be enabled and disabled for the light model using the LM.setEnableSensors(true/ | ||
Line 404: | Line 398: | ||
In the following four minimal working examples are given to illustrate: the light model, the definition of light sources, adding a object and define a spectral shader, and on how to visualize the results. The four examples are building on each other, meaning with each example new parts will extend the previous code. | In the following four minimal working examples are given to illustrate: the light model, the definition of light sources, adding a object and define a spectral shader, and on how to visualize the results. The four examples are building on each other, meaning with each example new parts will extend the previous code. | ||
- | Note: The examples require | + | Note: The examples require |
<code java> | <code java> | ||
Line 415: | Line 409: | ||
=== Example 1 - Light Model === | === Example 1 - Light Model === | ||
- | This example just defines the GUPFlux | + | This example just defines the GPUFlux |
<code java> | <code java> | ||
Line 429: | Line 423: | ||
println(" | println(" | ||
FluxLightModel GPU_LM = new FluxLightModel(RAYS, | FluxLightModel GPU_LM = new FluxLightModel(RAYS, | ||
- | GPU_LM.setSeed(12345); | + | GPU_LM.setSeed(12345); |
GPU_LM.setMeasureMode(MeasureMode.FULL_SPECTRUM); | GPU_LM.setMeasureMode(MeasureMode.FULL_SPECTRUM); | ||
GPU_LM.setSpectralDomain(300, | GPU_LM.setSpectralDomain(300, |
tutorials/basic-spectral-light-modeling.1733386491.txt.gz · Last modified: 2024/12/05 09:14 by MH