Skip to main content

A Python Library for Applied Mathematics in Physical Sciences.

Project description

Binder CircleCI Documentation Status License PyPI

Neumann - A Python Library for Applied Mathematics in Physical Sciences

Neumann is a rapid prototyping platform focused on numerical calculations mainly corcerned with simulations of natural phenomena. It provides a set of common functionalities and interfaces with a number of state-of-the-art open source packages to combine their power seamlessly under a single development environment.

The most important features:

  • Numba-jitted classes and an extendible factory to define and manipulate vectors and tensors.

  • Classes to define and solve linear and nonlinear optimization problems.

  • A set of array routines for fast prorotyping, including random data creation to assure well posedness, or other properties of test problems.

Documentation

Click here to read the documentation.

Installation

This is optional, but we suggest you to create a dedicated virtual enviroment at all times to avoid conflicts with your other projects. Create a folder, open a command shell in that folder and use the following command

>>> python -m venv venv_name

Once the enviroment is created, activate it via typing

>>> .\venv_name\Scripts\activate

Neumann can be installed (either in a virtual enviroment or globally) from PyPI using pip on Python >= 3.6:

>>> pip install neumann

A Quick Tour

Linear Algebra

Define a reference frame (B) relative to the ambient frame (A):

>>> from neumann.linalg import ReferenceFrame
>>> A = ReferenceFrame(name='A', axes=np.eye(3))
>>> B = A.orient_new('Body', [0, 0, 90*np.pi/180], 'XYZ', name='B')

Get the DCM matrix of the transformation between two frames:

>>> B.dcm(target=A)

Define a vector in frame A and view the components of it in frame B:

>>> v = Vector([0.0, 1.0, 0.0], frame=A)
>>> v.view(B)

Define the same vector in frame B:

>>> v = Vector(v.show(B), frame=B)
>>> v.show(A)

Linear Programming

Solve a following Linear Programming Problem (LPP) with one unique solution:

>>> from neumann.optimize import LinearProgrammingProblem as LPP
>>> import sympy as sy
>>> variables = ['x1', 'x2', 'x3', 'x4']
>>> x1, x2, x3, x4 = syms = sy.symbols(variables, positive=True)
>>> obj1 = Function(3*x1 + 9*x3 + x2 + x4, variables=syms)
>>> eq11 = Equality(x1 + 2*x3 + x4 - 4, variables=syms)
>>> eq12 = Equality(x2 + x3 - x4 - 2, variables=syms)
>>> problem = LPP(cost=obj1, constraints=[eq11, eq12], variables=syms)
>>> problem.solve()['x']
array([0., 6., 0., 4.])

NonLinear Programming

Find the minimizer of the Rosenbrock function:

>>> from neumann.optimize import BinaryGeneticAlgorithm
>>> def Rosenbrock(x, y):
>>>     a = 1, b = 100
>>>     return (a-x)**2 + b*(y-x**2)**2
>>> ranges = [[-10, 10],[-10, 10]]
>>> BGA = BinaryGeneticAlgorithm(Rosenbrock, ranges, length=12, nPop=200)
>>> BGA.solve()
array([0.99389553, 0.98901176]) 

Testing

To run all tests, open up a console in the root directory of the project and type the following

>>> python -m unittest

Dependencies

must have

  • Numba, NumPy, SciPy, SymPy, awkward

optional

  • networkx

License

This package is licensed under the MIT license.

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

neumann-0.0.2.tar.gz (51.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

neumann-0.0.2-py3-none-any.whl (62.9 kB view details)

Uploaded Python 3

File details

Details for the file neumann-0.0.2.tar.gz.

File metadata

  • Download URL: neumann-0.0.2.tar.gz
  • Upload date:
  • Size: 51.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for neumann-0.0.2.tar.gz
Algorithm Hash digest
SHA256 bae5de1e4e1673e78ba53f706062bf6d5bd5873ffdbfe9d0da5eb613b1f0e7ef
MD5 1062967547d59608d3edfde760f9ffbd
BLAKE2b-256 40a85c36f626fddfa679d64f92dfa169bf535cc59780e893fbc243c0356b8da6

See more details on using hashes here.

File details

Details for the file neumann-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: neumann-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 62.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for neumann-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ef069e2ff671491f235527d7f2dc0de03ef5bc7efb03999ce06dcda40fa08074
MD5 ba8bb153d43dac208425971ec894e671
BLAKE2b-256 188fae96c55b67fbc3977eb185e3b97ae2ee3995f284e7bc4b5a3a247d04bc04

See more details on using hashes here.

Supported by

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