ExactPack icon indicating copy to clipboard operation
ExactPack copied to clipboard

fixed a bug by changing erroneous R1r to correct R2r in JWL_f

Open hackljf opened this issue 1 year ago • 0 comments

the JWL_f function in exactpack/solvers/riemann/utils.py evaluated part of the JWL $p(v,e)$ EOS as A * (1. - G / R1r) * exp(- R1r) + B * (1. - G / R1r) * exp(- R2r)

This should have read

A * (1. - G / R1r) * exp(- R1r) + B * (1. - G / R2r) * exp(- R2r)

hackljf avatar Aug 07 '24 16:08 hackljf