Skip to content

Commit

Permalink
minor change for compatibility with other production feeders
Browse files Browse the repository at this point in the history
  • Loading branch information
majosm committed Jul 6, 2023
1 parent 6f6b17b commit a68ecf9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions mirgecom/multiphysics/thermally_coupled_fluid_wall.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
)
from mirgecom.navierstokes import (
grad_t_operator as fluid_grad_t_operator,
ns_operator,
)
from mirgecom.diffusion import (
grad_facial_flux_weighted,
Expand Down Expand Up @@ -1394,8 +1395,7 @@ def coupled_ns_heat_operator(

# Compute the subdomain NS/diffusion operators using the augmented boundaries

from mirgecom.navierstokes import ns_operator as general_ns_operator
ns_operator = partial(general_ns_operator,
my_ns_operator = partial(ns_operator,
inviscid_numerical_flux_func=inviscid_numerical_flux_func,
viscous_numerical_flux_func=viscous_numerical_flux_func)
ns_result = ns_operator(
Expand Down Expand Up @@ -1574,8 +1574,7 @@ def basic_coupled_ns_heat_operator(

# Compute the subdomain NS/diffusion operators using the augmented boundaries

from mirgecom.navierstokes import ns_operator as general_ns_operator
ns_operator = partial(general_ns_operator,
my_ns_operator = partial(ns_operator,
viscous_numerical_flux_func=viscous_facial_flux_harmonic)
ns_result = ns_operator(
dcoll, gas_model, fluid_state, fluid_all_boundaries,
Expand Down

0 comments on commit a68ecf9

Please sign in to comment.