Skip to main content

This package provides engineering-related classes and functions, including:

Project description

PyPI version License Python versions supported Format

Continuous integration test status Continuous integration test coverage Documentation status

Description

This package provides engineering-related classes and functions, including:

  • A waveform class that is a first-class object. For example:

    >>> import copy, numpy, peng
    >>> obj_a=peng.Waveform(
    ...     indep_vector=numpy.array([1, 2, 3]),
    ...     dep_vector=numpy.array([10, 20, 30]),
    ...     dep_name='obj_a'
    ... )
    >>> obj_b = obj_a*2
    >>> print(obj_b)
    Waveform: obj_a*2
    Independent variable: [ 1, 2, 3 ]
    Dependent variable: [ 20, 40, 60 ]
    Independent variable scale: LINEAR
    Dependent variable scale: LINEAR
    Independent variable units: (None)
    Dependent variable units: (None)
    Interpolating function: CONTINUOUS
    >>> obj_c = copy.copy(obj_b)
    >>> obj_a == obj_b
    False
    >>> obj_b == obj_c
    True

    Numerous functions are provided (trigonometric, calculus, transforms, etc.) and creating new functions that operate on waveforms is simple since all of their relevant information can be accessed through properties

  • Handling numbers represented in engineering notation, obtaining their constituent components and converting to and from regular floats. For example:

    >>> import peng
    >>> x = peng.peng(1346, 2, True)
    >>> x
    '   1.35k'
    >>> peng.peng_float(x)
    1350.0
    >>> peng.peng_int(x)
    1
    >>> peng.peng_frac(x)
    35
    >>> str(peng.peng_mant(x))
    '1.35'
    >>> peng.peng_power(x)
    EngPower(suffix='k', exp=1000.0)
    >>> peng.peng_suffix(x)
    'k'
  • Pretty printing Numpy vectors. For example:

    >>> from __future__ import print_function
    >>> import peng
    >>> header = 'Vector: '
    >>> data = [1e-3, 20e-6, 30e+6, 4e-12, 5.25e3, -6e-9, 70, 8, 9]
    >>> print(
    ...     header+peng.pprint_vector(
    ...         data,
    ...         width=30,
    ...         eng=True,
    ...         frac_length=1,
    ...         limit=True,
    ...         indent=len(header)
    ...     )
    ... )
    Vector: [    1.0m,   20.0u,   30.0M,
                         ...
                70.0 ,    8.0 ,    9.0  ]
  • Formatting numbers represented in scientific notation with a greater degree of control and options than standard Python string formatting. For example:

    >>> import peng
    >>> peng.to_scientific_string(
    ...     number=99.999,
    ...     frac_length=1,
    ...     exp_length=2,
    ...     sign_always=True
    ... )
    '+1.0E+02'

Interpreter

The package has been developed and tested with Python 2.7, 3.5, 3.6 and 3.7 under Linux (Debian, Ubuntu), Apple macOS and Microsoft Windows

Installing

$ pip install peng

Documentation

Available at Read the Docs

Contributing

  1. Abide by the adopted code of conduct

  2. Fork the repository from GitHub and then clone personal copy [1]:

    $ github_user=myname
    $ git clone --recursive \
          https://github.com/"${github_user}"/peng.git
    Cloning into 'peng'...
    ...
    $ cd peng
    $ export PENG_DIR=${PWD}
  3. Install the project’s Git hooks and build the documentation. The pre-commit hook does some minor consistency checks, namely trailing whitespace and PEP8 compliance via Pylint. Assuming the directory to which the repository was cloned is in the $PENG_DIR shell environment variable:

    $ "${PENG_DIR}"/pypkg/complete-cloning.sh
    Installing Git hooks
    Building peng package documentation
    ...
  4. Ensure that the Python interpreter can find the package modules (update the $PYTHONPATH environment variable, or use sys.paths(), etc.)

    $ export PYTHONPATH=${PYTHONPATH}:${PENG_DIR}
  5. Install the dependencies (if needed, done automatically by pip):

  6. Implement a new feature or fix a bug

  7. Write a unit test which shows that the contributed code works as expected. Run the package tests to ensure that the bug fix or new feature does not have adverse side effects. If possible achieve 100% code and branch coverage of the contribution. Thorough package validation can be done via Tox and Py.test:

    $ tox
    GLOB sdist-make: .../peng/setup.py
    py26-pkg inst-nodeps: .../peng/.tox/dist/peng-...zip

    Setuptools can also be used (Tox is configured as its virtual environment manager):

    $ python setup.py tests
    running tests
    running egg_info
    writing requirements to peng.egg-info/requires.txt
    writing peng.egg-info/PKG-INFO
    ...

    Tox (or Setuptools via Tox) runs with the following default environments: py27-pkg, py35-pkg, py36-pkg and py37-pkg [3]. These use the 2.7, 3.5, 3.6 and 3.7 interpreters, respectively, to test all code in the documentation (both in Sphinx *.rst source files and in docstrings), run all unit tests, measure test coverage and re-build the exceptions documentation. To pass arguments to Py.test (the test runner) use a double dash (--) after all the Tox arguments, for example:

    $ tox -e py27-pkg -- -n 4
    GLOB sdist-make: .../peng/setup.py
    py27-pkg inst-nodeps: .../peng/.tox/dist/peng-...zip
    ...

    Or use the -a Setuptools optional argument followed by a quoted string with the arguments for Py.test. For example:

    $ python setup.py tests -a "-e py27-pkg -- -n 4"
    running tests
    ...

    There are other convenience environments defined for Tox [3]:

    • py27-repl, py35-repl, py36-repl and py37-repl run the 2.7, 3.5, 3.6 or 3.7 REPL, respectively, in the appropriate virtual environment. The peng package is pip-installed by Tox when the environments are created. Arguments to the interpreter can be passed in the command line after a double dash (--)

    • py27-test, py35-test, py36-test and py37-test run py.test using the Python 2.7, 3.5, Python 3.6 or Python 3.7 interpreter, respectively, in the appropriate virtual environment. Arguments to py.test can be passed in the command line after a double dash (--) , for example:

      $ tox -e py36-test -- -x test_peng.py
      GLOB sdist-make: [...]/peng/setup.py
      py36-test inst-nodeps: [...]/peng/.tox/dist/peng-1.1rc1.zip
      py36-test installed: -f file:[...]
      py36-test runtests: PYTHONHASHSEED='1264622266'
      py36-test runtests: commands[0] | [...]py.test -x test_peng.py
      ===================== test session starts =====================
      platform linux -- Python 3.6.4, pytest-3.3.1, py-1.5.2, pluggy-0.6.0
      rootdir: [...]/peng/.tox/py36/share/peng/tests, inifile: pytest.ini
      plugins: xdist-1.21.0, forked-0.2, cov-2.5.1
      collected 414 items
      ...
    • py27-cov, py35-cov, py36-cov and py37-cov test code and branch coverage using the 2.7, 3.5, 3.6 or 3.7 interpreter, respectively, in the appropriate virtual environment. Arguments to py.test can be passed in the command line after a double dash (--). The report can be found in ${PENG_DIR}/.tox/py[PV]/usr/share/peng/tests/htmlcov/index.html where [PV] stands for 27, 35, 36 or 37 depending on the interpreter used

  8. Verify that continuous integration tests pass. The package has continuous integration configured for Linux, Apple macOS and Microsoft Windows (all via Azure DevOps) Aggregation/cloud code coverage is configured via Codecov. It is assumed that the Codecov repository upload token in the build is stored in the $(codecovToken) environment variable (securely defined in the pipeline settings page).

  9. Document the new feature or bug fix (if needed). The script ${PENG_DIR}/pypkg/build_docs.py re-builds the whole package documentation (re-generates images, cogs source files, etc.):

    $ ${PKG_BIN_DIR}/build_docs.py -h
    usage: build_docs.py [-h] [-d DIRECTORY] [-r]
                         [-n NUM_CPUS] [-t]
    
    Build peng package documentation
    
    optional arguments:
      -h, --help            show this help message and exit
      -d DIRECTORY, --directory DIRECTORY
                            specify source file directory
                            (default ../peng)
      -r, --rebuild         rebuild exceptions documentation.
                            If no module name is given all
                            modules with auto-generated
                            exceptions documentation are
                            rebuilt
      -n NUM_CPUS, --num-cpus NUM_CPUS
                            number of CPUs to use (default: 1)
      -t, --test            diff original and rebuilt file(s)
                            (exit code 0 indicates file(s) are
                            identical, exit code 1 indicates
                            file(s) are different)

Footnotes

License

The MIT License (MIT)

Copyright (c) 2013-2019 Pablo Acosta-Serafini

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. .. CHANGELOG.rst .. Copyright (c) 2013-2019 Pablo Acosta-Serafini .. See LICENSE for details

Changelog

  • 1.0.8 [2019-03-08]: Speedup loading of large Touchstone files (Patch submitted by github/sotw1957). Minor other code style changes.

  • 1.0.7 [2019-03-08]: Dropped support for Python 2.6, 3.3 and 3.4. Updates to support newest versions of dependencies. Abstracted package management to a lightweight framework

  • 1.0.6 [2016-02-11]: Package build enhancements and fixes

  • 1.0.5 [2016-02-09]: Python 3.6 support

  • 1.0.4 [2016-09-19]: Fixed Touchstone read function for “MA” and “DB” formats where the angles were incorrectly treated as being in radians

  • 1.0.3 [2016-07-29]: Fixed resolution loss when writing Touchstone files

  • 1.0.2 [2016-07-25]:

    • Frequency vector is now always in Hertz regardless of unit used in Touchstone file

    • Minor documentation bug fixes

  • 1.0.1 [2016-06-11]: Minor documentation build bug fix

  • 1.0.0 [2016-05-12]: Final release of 1.0.0 branch

  • 1.0.0rc1 [2016-05-11]: Initial commit, forked a subset from putil PyPI package

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

peng-1.0.8.zip (455.8 kB view details)

Uploaded Source

Built Distributions

peng-1.0.8-py37-none-any.whl (42.8 kB view details)

Uploaded Python 3.7

peng-1.0.8-py36-none-any.whl (51.0 kB view details)

Uploaded Python 3.6

peng-1.0.8-py35-none-any.whl (51.9 kB view details)

Uploaded Python 3.5

peng-1.0.8-py27-none-any.whl (52.8 kB view details)

Uploaded Python 2.7

File details

Details for the file peng-1.0.8.zip.

File metadata

  • Download URL: peng-1.0.8.zip
  • Upload date:
  • Size: 455.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/2.7.13

File hashes

Hashes for peng-1.0.8.zip
Algorithm Hash digest
SHA256 2483edf61116e28d3fa11683b3c17b6faa8a70397d7673f0506f6d0debae2a2a
MD5 4ef4061ef00ec965ce169e13b46090fa
BLAKE2b-256 71fd09d3c38c07e7eda38d978598af482cd5c1251008a6127eba2a2399496138

See more details on using hashes here.

Provenance

File details

Details for the file peng-1.0.8-py37-none-any.whl.

File metadata

  • Download URL: peng-1.0.8-py37-none-any.whl
  • Upload date:
  • Size: 42.8 kB
  • Tags: Python 3.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/2.7.13

File hashes

Hashes for peng-1.0.8-py37-none-any.whl
Algorithm Hash digest
SHA256 781eb8042c303aa7fa9b737bea6ac6894ba3f9b2975f3ee437c45fd620279c05
MD5 fc9d3088bd5135b8d17dbc4396fc3955
BLAKE2b-256 7b91bf8143ac504a8181fb6f1034b261183fd000587b8fe9414990e96601903d

See more details on using hashes here.

Provenance

File details

Details for the file peng-1.0.8-py36-none-any.whl.

File metadata

  • Download URL: peng-1.0.8-py36-none-any.whl
  • Upload date:
  • Size: 51.0 kB
  • Tags: Python 3.6
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/2.7.13

File hashes

Hashes for peng-1.0.8-py36-none-any.whl
Algorithm Hash digest
SHA256 be4ab51c6bcd0af9ddd39fc7434a7e70ead210ebbf2fa1b74691ea482675b3f1
MD5 1b46d62082be8993dc02c79273ce1120
BLAKE2b-256 45e2282e857d6685793c729ce26eae7493156baa78c87083ef77418fe0842a0c

See more details on using hashes here.

Provenance

File details

Details for the file peng-1.0.8-py35-none-any.whl.

File metadata

  • Download URL: peng-1.0.8-py35-none-any.whl
  • Upload date:
  • Size: 51.9 kB
  • Tags: Python 3.5
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/2.7.13

File hashes

Hashes for peng-1.0.8-py35-none-any.whl
Algorithm Hash digest
SHA256 fc2e1b3f9f989b28cc48b86f940bbcf5fa851f2cc28507ce152078e18fddd04c
MD5 ff94ea35cae875ea4bd1450f53af9f38
BLAKE2b-256 1cac4c915902302dbc0e621c9f2f2833c748dd643ee9bd681780d0bbdc43c235

See more details on using hashes here.

Provenance

File details

Details for the file peng-1.0.8-py27-none-any.whl.

File metadata

  • Download URL: peng-1.0.8-py27-none-any.whl
  • Upload date:
  • Size: 52.8 kB
  • Tags: Python 2.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/2.7.13

File hashes

Hashes for peng-1.0.8-py27-none-any.whl
Algorithm Hash digest
SHA256 30f116969303deee233fdfc60dc9bd09ea75c21e4bbdc56ec4b26ba27d2d817a
MD5 b97f4b378f6d4bab310bec3a95a8d694
BLAKE2b-256 28b4827c22a7616b76ba30e4867106b8c4339d3eb44ab7682dd623d711465a50

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page