Kyupii / CheToolbox

A personal project which packages common Chemical Engineering Calcs & Physical properties libraries.
GNU General Public License v3.0
2 stars 0 forks source link

[BUG] #39

Closed Kyupii closed 7 months ago

Kyupii commented 7 months ago

props.soil_sorb_est() returns an ND array of length 2 rather than a single float.

Kyupii commented 7 months ago

test case:

g = np.array([[1,-1.519]])
conn = np.array([1,1])
props.soil_sorb_est(g,conn)
Kyupii commented 7 months ago

yields

array([0.42756289, 0.42756289])
Kyupii commented 7 months ago

I unintentionally fixed this while fixing another issue lol.