- markersA list of marker names to combine into a single marker.
C++ Type:std::vector<MarkerName>
Description:A list of marker names to combine into a single marker.
 
ComboMarker
A marker that converts many markers into a single marker by considering the maximum value of the listed markers (i.e., refinement takes precedent).
Description
The ComboMarker is used to combine multiple markers into a single marker. This is done by taking the maximum value of the marker value from the supplied markers. Therefore, refinement of an element takes precedence.
Example Input Syntax
[Adaptivity]
  [./Markers]
    [./box]
      type = BoxMarker
      bottom_left = '0.3 0.3 0'
      top_right = '0.6 0.6 0'
      inside = refine
      outside = do_nothing
    [../]
    [./combo]
      type = ComboMarker
      markers = 'box box2'
    [../]
    [./box2]
      type = BoxMarker
      bottom_left = '0.5 0.5 0'
      top_right = '0.8 0.8 0'
      inside = refine
      outside = coarsen
    [../]
  [../]
[]
(test/tests/markers/combo_marker/combo_marker_test.i)Input Parameters
- blockThe list of block ids (SubdomainID) that this object will be applied
C++ Type:std::vector<SubdomainName>
Description:The list of block ids (SubdomainID) that this object will be applied
 
Optional Parameters
- control_tagsAdds user-defined labels for accessing object parameters via control logic.
C++ Type:std::vector<std::string>
Description:Adds user-defined labels for accessing object parameters via control logic.
 - enableTrueSet the enabled status of the MooseObject.
Default:True
C++ Type:bool
Description:Set the enabled status of the MooseObject.
 - outputsVector of output names were you would like to restrict the output of variables(s) associated with this object
C++ Type:std::vector<OutputName>
Description:Vector of output names were you would like to restrict the output of variables(s) associated with this object
 
Advanced Parameters
Input Files
- (test/tests/executioners/adapt_and_modify/adapt_and_modify_heavy.i)
 - (test/tests/executioners/adapt_and_modify/adapt_and_modify.i)
 - (test/tests/markers/dont_mark/dont_mark_test.i)
 - (test/tests/markers/combo_marker/combo_marker_test.i)
 - (test/tests/dirackernels/point_caching/point_caching_adaptive_refinement.i)
 - (modules/phase_field/examples/nucleation/refine.i)