Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anderson2981 committed Jul 25, 2024
1 parent 60cb901 commit 4e481c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions buildMirge.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/bin/bash

# default branch for building mirgecom for this driver
#mirge_branch="production"
mirge_branch="use-pilot-loopy"
mirge_branch="production"
# conda environment name
conda_env="mirgeDriver.Y3prediction"

Expand Down
2 changes: 1 addition & 1 deletion y3prediction/prediction.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ def limit_fluid_state_lv(dcoll, cv, temperature_seed, gas_model, dd,
nspecies = cv.nspecies
dim = cv.dim
toler = 1.e-13
ones = actx.np.zeros_like(cv.mass)
ones = 1. + actx.np.zeros_like(cv.mass)
element_vols = abs(op.elementwise_integral(dcoll, dd,
actx.np.zeros_like(cv.mass) + 1.0))

Expand Down

0 comments on commit 4e481c3

Please sign in to comment.