PrismControlGrowthParams#
- class ansys.meshing.prime.PrismControlGrowthParams(model=None, offset_type=None, n_layers=None, growth_rate=None, first_height=None, first_aspect_ratio=None, last_aspect_ratio=None, min_aspect_ratio=None, json_data=None, **kwargs)#
Growth parameters for prism control.
- Parameters:
- model: Model
Model to create a
PrismControlGrowthParams
object with default parameters.- offset_type: PrismControlOffsetType, optional
Offset type controls the method that is used to compute prism layer heights. The following options are supported.The aspect ratio option takes first aspect ratio, number of layers and growth rate. It ignores first height as input.The uniform option takes first height, number of layers and growth rate. It ignores first aspect ratio as input.Aspect ratio is ratio of prism base to height.
- n_layers: int, optional
Number of prism layers to be generated. It is used for all prism control offset types.
- growth_rate: float, optional
Growth rate to be used to compute prism layer heights. It is used when prism control offset type is ASPECTRATIO or UNIFORM.
- first_height: float, optional
Height to be used for first layer and adjust following layer height based on other settings. It is used when prism control offset type is UNIFORM.
- first_aspect_ratio: float, optional
Aspect ratio to be used to compute first layer height. It is used only when prism control offset type is ASPECTRATIO.
- last_aspect_ratio: float, optional
Apsect ratio of the last layer. The heights of the other layers is computed based on number of layers and first height. This is used only when prism control offset type is LASTRATIO.
- min_aspect_ratio: float, optional
Minimum apsect ratio limit to be used for all the layers. This condition is respected in all offset types.
- json_data: dict, optional
JSON dictionary to create a
PrismControlGrowthParams
object with provided parameters.
Examples
>>> prism_control_growth_params = prime.PrismControlGrowthParams(model = model)
Methods
Print the default values of
PrismControlGrowthParams
object.Set the default values of the
PrismControlGrowthParams
object.Attributes
Aspect ratio to be used to compute first layer height.
Height to be used for first layer and adjust following layer height based on other settings.
Growth rate to be used to compute prism layer heights.
Apsect ratio of the last layer.
Minimum apsect ratio limit to be used for all the layers.
Number of prism layers to be generated.
Offset type controls the method that is used to compute prism layer heights.