*refine_adaptive
Refines elements based on proximity and angle.
Syntax
*refine_adaptive entity_type mark_id string_array number_of_strings
Type
HyperMesh Tcl Modify Command
Description
Refines elements based on proximity and angle.
Inputs
- entity_type
- The type of entity used for refinement. Valid values are surfs, elems and regions.
- mark_id
- The ID of the mark containing the input entities. Valid values are 1 and 2.
- string_array
- The ID of the string array that contains the additional input parameters. The string array is created using the *createstringarray command. This should always be set to 1.
- number_of_strings
- Integer indicating the size (number of strings) in the string array created using *createstringarray.
Examples
Here are some examples of valid input
strings:
*createstringarray 3 "extra_layers 2" "proximity min_gap 0.1 max_gap 2 proximity_size_curve 0.1 0.1 0.2 0.2 0.3 0.5 0.5 1.0" "angle interval 0 30 0.1 0.2 interval 45 60 0.2 interval 315 360"
*createstringarray 2 "proximity min_gap 0.1 max_gap 2 direction outwards min_elems_in_gap 2" "angle min_angle_limit 45 refinement_size 0.2"
*createstringarray 3 "extra_layers 3" "proximity off" "angle"
*createstringarray 1 "angle off"
*createstringarray 2 "proximity proximity_size_curve 0.1 0.1 0.5 0.5 1.0 2.0" "angle max_angle_limit 315"
*createstringarray 3 "extra_layers 3" "proximity min_gap 0.1 max_gap 2 direction both_side proximity_size_curve 0.1 0.1 0.2 0.2 0.3 0.3" "angle interval 0 30 0.1 0.2 interval 45 60 0.2"
Errors
Incorrect usage results in a Tcl error. To detect
errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}
Version History
14.0