
Security News
PyPI Expands Trusted Publishing to GitLab Self-Managed as Adoption Passes 25 Percent
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads
Neumann is a Python library that provides tools to formulate and solve problems related to all kinds of scientific disciplines. It is a part of the DewLoosh ecosystem which is designed mainly to solve problems related to computational solid mechanics, but if something is general enough, it ends up here. A good example is the included vector and tensor algebra modules, or the various optimizers, which are applicable in a much broader context than they were originally designed for.
The most important features:
Linear Algebra
ReferenceFrame class for all kinds of frames, and dedicated RectangularFrame and CartesianFrame classes as special cases, all NumPy compliant.Tensor and Vector to handle various kinds of tensorial quantities efficiently.JaggedArray and a Numba-jittable csr_matrix to handle sparse data.Operations Research
LinearProgrammingProblem class to define and solve any kind of linear optimization problem.BinaryGeneticAlgorithm class to tackle more complicated optimization problems.Graph Theory
networkx graph, which are useful if you want to minimize the bandwidth of sparse symmetrix matrices.Note Be aware, that the library uses JIT-compilation through Numba, and as a result, first calls to these functions may take longer, but pay off in the long run.
The documentation is hosted on ReadTheDocs.
Neumann can be installed (either in a virtual enviroment or globally) from PyPI using pip on Python >= 3.7:
>>> pip install neumann
or chechkout with the following command using GitHub CLI
gh repo clone dewloosh/Neumann
and install from source by typing
>>> python install setup.py
Define a reference frame $\mathbf{B}$ relative to the frame $\mathbf{A}$:
>>> from neumann.linalg import ReferenceFrame, Vector, Tensor
>>> 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 $\mathbf{v}$ in frame $\mathbf{A}$ and show the components of it in frame $\mathbf{B}$:
>>> v = Vector([0.0, 1.0, 0.0], frame=A)
>>> v.show(B)
Define the same vector in frame $\mathbf{B}$:
>>> v = Vector(v.show(B), frame=B)
>>> v.show(A)
Solve the following Linear Programming Problem (LPP) with one unique solution:
>>> from neumann.optimize import LinearProgrammingProblem as LPP
>>> from neumann.function import Function, Equality
>>> 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.])
Find the minimizer of the Rosenbrock function:
>>> from neumann.optimize import BinaryGeneticAlgorithm
>>> def Rosenbrock(x):
... a, b = 1, 100
... return (a-x[0])**2 + b*(x[1]-x[0]**2)**2
>>> ranges = [[-10, 10], [-10, 10]]
>>> BGA = BinaryGeneticAlgorithm(Rosenbrock, ranges, length=12, nPop=200)
>>> BGA.solve()
...
This package is licensed under the MIT license.
FAQs
A Python Library for Applied Mathematics in Physical Sciences.
We found that neumann demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.