Skip to content

Commit

Permalink
use fixedpoint execute flags for uos and auxkernels accordingly idaho…
Browse files Browse the repository at this point in the history
  • Loading branch information
YaqiWang committed Oct 27, 2024
1 parent b1dc17e commit 87d9166
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 12 deletions.
7 changes: 4 additions & 3 deletions test/tests/multiapps/picard/picard_custom_postprocessor.i
Original file line number Diff line number Diff line change
Expand Up @@ -48,24 +48,25 @@
[unorm_begin]
type = ElementL2Norm
variable = u
execute_on = 'initial timestep_begin'
execute_on = 'initial fixedpoint_begin'
outputs = none
[]
[unorm]
type = ElementL2Norm
variable = u
execute_on = 'initial timestep_end'
execute_on = 'initial fixedpoint_end'
[]
[unorm_err]
type = RelativeDifferencePostprocessor
value1 = unorm
value2 = unorm_begin
outputs = none
execute_on = 'fixedpoint_end'
[]
[vnorm]
type = ElementL2Norm
variable = v
execute_on = 'initial timestep_end'
execute_on = 'initial fixedpoint_end'
[]
[]

Expand Down
2 changes: 1 addition & 1 deletion test/tests/multiapps/picard_multilevel/picard_sub.i
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
[cumulative_picard_its_pp]
type = TestPostprocessor
test_type = custom_execute_on
execute_on = 'timestep_end'
execute_on = 'fixedpoint_end'
[]
[]

Expand Down
2 changes: 1 addition & 1 deletion test/tests/multiapps/picard_postprocessor/transient_main.i
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
type = SideAverageValue
variable = u
boundary = right
execute_on = 'fixedpoint_begin'
execute_on = 'fixedpoint_end'
[]
[average]
type = ElementAverageValue
Expand Down
2 changes: 1 addition & 1 deletion test/tests/multiapps/secant_postprocessor/steady_main.i
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
type = SideAverageValue
variable = u
boundary = right
execute_on = 'fixedpoint_begin'
execute_on = 'fixedpoint_end'
[]
[average]
type = ElementAverageValue
Expand Down
2 changes: 1 addition & 1 deletion test/tests/multiapps/secant_postprocessor/transient_main.i
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
type = SideAverageValue
variable = u
boundary = right
execute_on = 'fixedpoint_begin'
execute_on = 'fixedpoint_end'
[]
[average]
type = ElementAverageValue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
type = SideAverageValue
variable = u
boundary = right
execute_on = 'fixedpoint_begin'
execute_on = 'fixedpoint_end'
[]
[average]
type = ElementAverageValue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
type = SideAverageValue
variable = u
boundary = right
execute_on = 'fixedpoint_begin'
execute_on = 'fixedpoint_end'
[]
[average]
type = ElementAverageValue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,18 @@
[Postprocessors]
[num_coupling]
type = NumFixedPointIterations
execute_on = 'initial timestep_begin timestep_end'
execute_on = 'initial fixedpoint_begin fixedpoint_end'
[]
[norm]
type = ElementL2Norm
variable = u
execute_on = 'initial timestep_begin timestep_end'
execute_on = 'initial fixedpoint_begin fixedpoint_end'
[]
[change_over_fixed_point]
type = ChangeOverFixedPointPostprocessor
postprocessor = norm
change_with_respect_to_initial = false
execute_on = 'initial timestep_end'
execute_on = 'initial fixedpoint_end'
[]
[]

Expand Down
1 change: 1 addition & 0 deletions test/tests/preconditioners/reuse/convergence.i
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@

[Reporters/iteration_info]
type = IterationInfo
execute_on = fixedpoint_end
[]

[Outputs]
Expand Down
1 change: 1 addition & 0 deletions test/tests/reporters/iteration_info/iteration_info.i
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

[Reporters/iteration_info]
type = IterationInfo
execute_on = fixedpoint_end
[]

[Outputs]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@

[Reporters/iteration_info]
type = IterationInfo
execute_on = fixedpoint_end
[]

[Outputs]
Expand Down
1 change: 1 addition & 0 deletions test/tests/transfers/transfer_once_per_fixed_point/sub.i
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
[Postprocessors]
[num_fixed_point_its]
type = NumFixedPointIterations
execute_on = 'FIXEDPOINT_END'
[]
[parent_fp_its]
type = Receiver
Expand Down

0 comments on commit 87d9166

Please sign in to comment.