Skip to content

Commit

Permalink
add missing quadrature_tag arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
majosm committed Jul 5, 2023
1 parent 6cd4494 commit aceec00
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions examples/thermally-coupled-mpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ def coupled_ns_heat_operator(
gas_model,
fluid_dd, wall_dd,
fluid_state, wall_kappa, wall_temperature,
fluid_boundaries, wall_boundaries)
fluid_boundaries, wall_boundaries,
quadrature_tag=quadrature_tag)

# Get the operator fluid states
from mirgecom.gas_model import make_operator_fluid_states
Expand Down Expand Up @@ -129,7 +130,8 @@ def coupled_ns_heat_operator(
fluid_dd, wall_dd,
fluid_state, wall_kappa, wall_temperature,
fluid_grad_temperature, wall_grad_temperature,
fluid_boundaries, wall_boundaries)
fluid_boundaries, wall_boundaries,
quadrature_tag=quadrature_tag)

# Compute the subdomain NS/diffusion operators using the augmented boundaries
from mirgecom.navierstokes import ns_operator
Expand Down
9 changes: 6 additions & 3 deletions mirgecom/multiphysics/thermally_coupled_fluid_wall.py
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,8 @@ def coupled_grad_t_operator(
fluid_dd, wall_dd,
fluid_state, wall_kappa, wall_temperature,
fluid_boundaries, wall_boundaries,
interface_noslip=interface_noslip)
interface_noslip=interface_noslip,
quadrature_tag=quadrature_tag)
else:
fluid_all_boundaries_no_grad = _fluid_all_boundaries_no_grad
wall_all_boundaries_no_grad = _wall_all_boundaries_no_grad
Expand Down Expand Up @@ -1348,7 +1349,8 @@ def coupled_ns_heat_operator(
fluid_dd, wall_dd,
fluid_state, wall_kappa, wall_temperature,
fluid_boundaries, wall_boundaries,
interface_noslip=interface_noslip)
interface_noslip=interface_noslip,
quadrature_tag=quadrature_tag)

# Get the operator fluid states
fluid_operator_states_quad = make_operator_fluid_states(
Expand Down Expand Up @@ -1382,7 +1384,8 @@ def coupled_ns_heat_operator(
fluid_grad_temperature, wall_grad_temperature,
fluid_boundaries, wall_boundaries,
interface_noslip=interface_noslip,
wall_penalty_amount=wall_penalty_amount)
wall_penalty_amount=wall_penalty_amount,
quadrature_tag=quadrature_tag)

# Compute the subdomain NS/diffusion operators using the augmented boundaries
ns_result = ns_operator(
Expand Down

0 comments on commit aceec00

Please sign in to comment.