-
Notifications
You must be signed in to change notification settings - Fork 16
Description
First of all, thank Germer @thomas-germer lot for this useful open source code project, which helped me in my work.
During my using local BRDF model, I found below issue.
particleModel = Local_BRDF_Model("Bobbert_Vlieger_BRDF_Model",parameters)
As for the above model, if we change the value for the 'density' key in the parameters dict, the result(DSC, or cross section) does not change, which I believe should be changed as the MIST sw does.
parameters = {'lambda' : 0.532,
'substrate' : Si,
'type' : 0,
'sphere' : SiO2,
'radius' : diameter/2,
'spherecoat' : spherecoat,
'stack' : stack,
'density': 1,
'delta' : 0,
'lmax' : 0,
'order' : -1,
'Norm_Inc_Approx' : 0,
'improve' : 3}
BTW, the default value for density is 1, but the DSC or cross section result with density=1 does not match with MIST output with the same parameters,