Skip to content

Commit

Permalink
Fixed decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
CaymanUnterborn committed Jan 5, 2016
1 parent d579344 commit 7ba35ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion burnman/eos/vinet.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def vinet(x, params):
"""
eta = (3./2.)*(params['Kprime_0']-1.)
return 3.*params['K_0'] * (pow(x, -2./3.))*(1.-(pow(x,1./3.))) \
* exp(eta*(1-pow(x,1/3.)))
* exp(eta*(1.-pow(x,1./3.)))

def volume(pressure, params):
"""
Expand Down

0 comments on commit 7ba35ed

Please sign in to comment.