Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
thermalogic committed Aug 10, 2023
1 parent 310685f commit d901009
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
17 changes: 10 additions & 7 deletions README_Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,16 @@ sx(s,x,o_id)
## Examples

```python
import seuif97

p=16
t=535.1
h=pt(p,t,4)
s=pt(p,t,5)
print(f"p:{p}, t={t} h={h:.3f} s={s:.3f}")
from seuif97 import *

OH=4
OS=5

p=16
t=535.1
h=pt(p,t,OH)
s=pt(p,t,OS)
print(f"p:{p}, t={t} h={h:.3f} s={s:.3f}")
```

## Properties
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = seuif97
version = 2.0.4
version = 2.0.6
author=Cheng Maohua
author_email=cmh@seu.edu.cn
keywords = IAPWS-IF97, IF97
Expand Down

0 comments on commit d901009

Please sign in to comment.