通用气动测量数据简化工具

aiolos-commissioning-tools的Python项目详细描述


Latest PyPI version

通用气动测量数据简化工具

使用

代码_仪表.计时器在

add the following to any function or scope in a program and the execution time will be logged (must use logging library and add the “code_instrumentation.timer” logger)

>>> from code_instrumentation.timer import timer
>>> _ = timer.Timer()

调试_工具.单位在

the unit conversions are to be used when importing data to convert the data to base SI units. e.g.:

>>> import commissoning_tools.units as units
>>> p = read(data_file_pressures_psi) * units.psi # Yeilds a pressure value in Pascals
>>> t = read(data_file_temperatre_C) + units.celsius # Yeilds a temperature value in Kelvin
base units are:
  • length –> meter, m
  • time –> second, s
  • mass –> kilogram, kg
  • temperature –> Kelvin

derived units use only the base. i.e. velocity is m/s, pressure is Pa (N/m^2)

机组维护

  1. 提交对git的更改:

    $ git add .

    $ git commit -m “commit message”

  2. 增量版本:

    $ bumpversion <major|minor|patch>

  3. 推送至github:

    $ git push <remote_name> <branch_name>

    $ git push origin master

  4. 创建分发存档:

    $ python3 -m pip install –upgrade setuptools wheel

    $ python3 setup.py sdist bdist_wheel

  5. 上传到PyPI:

    $ python3 -m twine upload dist/*

安装

python3 -m pip install aiolos-commissioning-tools

要求

  1. “numpy”
  2. “matplotlib”
  3. “scipy”
  4. “pandas”

版本

8.0.2款

更改:

0.2.5 : added @np.vectorize decorator to fluid_dynamics_relationships functions to accept either scalar or np.ndarray inputs and return the same type

兼容性

许可证

作者

aiolos调试工具是由Christopher Sooriyakumaran编写的。在

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
Android:如何写入特定行,Java   Java中从欧元货币字符串中删除空格的数字   Java非均匀多维数组   解密AES时出现java空指针异常   java ConcurrentModificationException尝试移除列表上的所有内容时(非迭代)   Java数学库计算日志   java ISO8601,使用Jackson以毫秒表示json   避免副作用的java最佳实践   java获取JMeterException:调用bsh方法时出错:未定义参数:saa。使用beanshell取样器时   使用javascript将会话从一个jsp页面传输到另一个jsp页面   java在列表中组合相邻元素   java多行JTextPane   java Hibernate映射文件连接两个表而不定义关系?   如何使用Ajax、Java和Spring框架将文件从网页上传到Google云存储   多线程多线程Java中producerconsumer代码的多线程没有提供正确的输出?