OptProp
#
- class ansys.speos.core.opt_prop.OptProp(project, name, description='', metadata=None)#
Speos feature: optical property.
By default, a mirror 100% is chosen as surface optical property, without any volume optical property. By default, the optical property is applied to no geometry.
- Parameters:
- Parameters:
Overview#
Perfect specular surface. |
|
Transparent or perfectly polished material (glass, plastic). |
|
Based on surface optical properties file. |
|
No volume optical property. |
|
Non transparent material. |
|
Transparent colorless material without bulk scattering. |
|
Based on *.material file. |
|
Select geometries on which the optical properties will be applied. |
|
Get dictionary corresponding to the project - read only. |
|
Save feature: send the local data to the speos server database. |
|
Reset feature: override local data by the one from the speos server database. |
|
Delete feature: delete data from the speos server database. |
Link object for the sop template in database. |
|
Link object for the vop template in database. |
Return the string representation of the optical property. |
Import detail#
from ansys.speos.core.opt_prop import OptProp
Attribute detail#
- OptProp.sop_template_link = None#
Link object for the sop template in database.
- OptProp.vop_template_link = None#
Link object for the vop template in database.
Method detail#
- OptProp.set_surface_mirror(reflectance=100)#
Perfect specular surface.
- Parameters:
- reflectance
float
Reflectance, expected from 0. to 100. in %. By default,
100
.
- reflectance
- Returns:
ansys.speos.core.opt_prop.OptProp
Optical property.
- OptProp.set_surface_opticalpolished()#
Transparent or perfectly polished material (glass, plastic).
- Returns:
ansys.speos.core.opt_prop.OptProp
Optical property.
- OptProp.set_surface_library(path)#
Based on surface optical properties file.
- Parameters:
- path
str
Surface optical properties file, *.scattering, *.bsdf, *.brdf, *.coated, …
- path
- Returns:
ansys.speos.core.opt_prop.OptProp
Optical property.
- OptProp.set_volume_none()#
No volume optical property.
- Returns:
ansys.speos.core.opt_prop.OptProp
Optical property.
- OptProp.set_volume_opaque()#
Non transparent material.
- Returns:
ansys.speos.core.opt_prop.OptProp
Optical property.
- OptProp.set_volume_optic(index=1.5, absorption=0, constringence=None)#
Transparent colorless material without bulk scattering.
- Parameters:
- Returns:
ansys.speos.core.opt_prop.OptProp
Optical property.
- OptProp.set_volume_library(path)#
Based on *.material file.
- Parameters:
- path
str
*.material file
- path
- Returns:
ansys.speos.core.opt_prop.OptProp
Optical property.
- OptProp.set_geometries(geometries=None)#
Select geometries on which the optical properties will be applied.
- Parameters:
- geometries
List
[ansys.speos.core.geo_ref.GeoRef
],optional
List of geometries. Giving an empty list means “All geometries” By default,
None
, means “no geometry”.
- geometries
- Returns:
ansys.speos.core.opt_prop.OptProp
Optical property.
- OptProp.get(key='')#
Get dictionary corresponding to the project - read only.
- OptProp.__str__()#
Return the string representation of the optical property.
- OptProp.commit()#
Save feature: send the local data to the speos server database.
- Returns:
ansys.speos.core.opt_prop.OptProp
Optical Property feature.
- OptProp.reset()#
Reset feature: override local data by the one from the speos server database.
- Returns:
ansys.speos.core.opt_prop.OptProp
OptProp feature.
- OptProp.delete()#
Delete feature: delete data from the speos server database.
The local data are still available
- Returns:
ansys.speos.core.opt_prop.OptProp
OptProp feature.