Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
longemen3000 committed Jan 12, 2024
1 parent 344083d commit eca98e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function saturation_temperature_impl(model,p,method::AntoineSaturation{TT,VV,CC}
#one (or two) saturation pressure calculations are normally faster than a crit pure calculation
(p2,vl2,vv2) = saturation_pressure(model,T2,ChemPotVSaturation(crit_retry = false))
if !isnan(p2) #nice, psat(T2) exists, we can now produce a really good estimate of the saturation temperature
dpdT = (VT_entropy(model,vv2,T2) - VT_entropy(model,vl2,T2))/(vvi - vl2)
dpdT = (VT_entropy(model,vv2,T2) - VT_entropy(model,vl2,T2))/(vv2 - vl2)
dTinvdlnp = -p2/(dpdT*T2*T2)
Δlnp = log(p/p2)
Tinv0 = 1/T2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function μp_equality1_T(model1,model2,v1,v2,p,T,ps,μs)
p1 = - Av1
p2 = - Av2
Fp1 = (p1 - p)*ps
Fp2 = (p1 - p)*ps
Fp2 = (p2 - p)*ps
= (μ1 - μ2)*μs
return SVector(Fμ,Fp1,Fp2)
end
Expand Down

2 comments on commit eca98e2

@longemen3000
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/98792

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.10 -m "<description of version>" eca98e21ca28ef86ec90be2783d9a225ea925c03
git push origin v0.5.10

Please sign in to comment.