Skip to content

Commit

Permalink
correct spelling of operator state creation
Browse files Browse the repository at this point in the history
  • Loading branch information
MTCam committed May 10, 2022
1 parent 4a3ddc1 commit 532524c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions combozzle.py
Original file line number Diff line number Diff line change
Expand Up @@ -1068,15 +1068,15 @@ def dummy_post_step(step, t, dt, state):
post_step_func = my_post_step

from mirgecom.flux import gradient_flux as gradient_num_flux_central
from mirgecom.gas_model import make_fluid_operator_states
from mirgecom.gas_model import make_operator_fluid_states
from mirgecom.navierstokes import grad_cv_operator

def cfd_rhs(t, state):
cv, tseed = state
from mirgecom.gas_model import make_fluid_state
fluid_state = make_fluid_state(cv=cv, gas_model=gas_model,
temperature_seed=tseed)
fluid_operator_states = make_fluid_operator_states(discr, fluid_state,
fluid_operator_states = make_operator_fluid_states(discr, fluid_state,
gas_model, boundaries,
quadrature_tag)

Expand Down

0 comments on commit 532524c

Please sign in to comment.