Metadata-Version: 2.1
Name: chart_sos
Version: 0.0.3
Summary: Speed of Sound interpolation from Echometer company chart.
Home-page: https://gitlab.com/appsware/chart_sos
Author: Sarit Ritwirune
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE

# Speed of Sound from 1970 chart
This project follow the echometer company [article](https://hamdon.net/wp-content/uploads/2015/04/Acoustic-Velocity-for-Natural-Gas.pdf).

# Data Extraction technique
Make use of [WebPlotDigitizer](https://automeris.io/WebPlotDigitizer/).
It saves data in Tar files.

# Usage
`gas_sg` has no unit<br>
`pressure` is psi<br>
`temp` in Fahrenheit
```python
import sos
gas_sg = 0.62
pressure = 0
temp_f = 40
sos.get_interpolate_sos(gas_sg, temp_f, pressure)
```

# Show plot
`gas_sg = 0.62` is not in the chart.<br>
![test.png](test.png)
