Skip to main content

Dynamic System Simulators

Project description

DynaSim

GitHub repo size GitHub contributors

The dynasim package simulates dynamic systems in the form:

\mathbf{M}\ddot{\mathbf{x}} + \mathbf{C}\dot{\mathbf{x}} + \mathbf{K}\mathbf{x} + \mathbf{C}_n g_c(\mathbf{x}, \dot{\mathbf{x}}) + \mathbf{K}_n g_k(\mathbf{x}, \dot{\mathbf{x}}) = \mathbf{f}

where $\mathbf{\Xi}n g{\bullet}(\mathbf{x},\dot{\mathbf{x}}) = \mathbf{C}_n g_c(\mathbf{x}, \dot{\mathbf{x}}) + \mathbf{K}_n g_k(\mathbf{x}, \dot{\mathbf{x}})$ represents the nonlinear system forces. For example, a 3DOF Duffing oscillator, connected at one end, would have representative nonlinear forces,

\mathbf{K}_n g_n(\mathbf{x}) = \begin{bmatrix}
    k_{n,1} & - k_{n,2} & 0 \\
    0 & k_{n,2} & -k_{n,3} \\
    0 & 0 & k_{n,3}
\end{bmatrix}
\begin{bmatrix}
    x_1^3 \\
    (x_2-x_1)^3 \\
    (x_3 - x_2)^3
\end{bmatrix}

Installing DynaSim

To install DynaSim, follow these steps:

Linux and macOS:

python3 -m pip install dynasim

Windows:

py -m pip install dynasim

Using DynaSim

Quickstart Guide

To use DynaSim, here is a quick start guide to generate a 5-DOF oscillating system with some cubic stiffness nonlinearities:

import numpy as np
import dynasim

# create required variables
n_dof = 5

# create a time vector of 2048 time points up to 120 seconds
nt = 2048
time_span = np.linspace(0, 120, nt)

# create vectors of system parameters for sequential MDOF
m_vec = 10.0 * np.ones(n_dof)
c_vec = 1.0 * np.ones(n_dof)
k_vec = 15.0 * np.ones(n_dof)
# imposes every other connection as having an additional cubic stiffness
kn_vec = np.array([25.0 * (i%2) for i in range(n_dof)])

# create nonlinearities
system_nonlin = dynasim.nonlinearities.exponent_stiffness(kn_vec, exponent=3, dofs=n_dof)
# instantiate system and embed nonlinearity
system = dynasim.systems.mdof_cantilever(m_vec, c_vec, k_vec, dofs=n_dof, nonlinearity=system_nonlin)

# create excitations and embed to system
system.excitations = [None] * n_dof
system.excitations[-1] = dynasim.actuators.sine_sweep(w_l = 0.5, w_u = 2.0, F0 = 1.0)

# simulate system
data = system.simulate(time_span, z0=None)

Nonlinearities

Three nonlinearities are available, exponent stiffness, exponent damping, and Van der Pol damping

dynasim.nonlinearities.exponent_stiffness(kn_vec, exponent=3, dofs=n_dof)
dynasim.nonlinearities.exponent_damping(cn_vec, exponent=0.5, dofs=n_dof)
dynasim.nonlinearities.vanDerPol(cn_vec, dofs=n_dof)

These classes contain the $g_k(\mathbf{x}, \dot{\mathbf{x}})$ function.

Common system classes

There are a currently two system types available for MDOF systems, which are instantiated from vectors of system parameter values:

dynasim.systems.mdof_symmetric(m_, c_, k_, dofs, nonlinearity)
dynasim.systems.mdof_cantilever(m_, c_, k_, dofs, nonlinearity)

There are also two grid array mass systems, which simulate the MDOF systems with x and y directions. The displacement vectors are now ${x_{11},y_{11},x_{12},y_{12}...,x_{mn},y_{mn}} $, and the corresponding velocity and state vectors. These are available as coupled or uncoupled, i.e. whether the restoring force take into account relative angles between nodes as well. When using the coupled system, make sure to use the corotational_rk4 simulator.

dynasim.systems.grid_uncoupled(m_vec, ch_mat, cv_mat, kh_mat, kv_mat)
dynasim.systems.grid_corotational(m_vec, ch_mat, cv_mat, kh_mat, kv_mat)

Arbitrary Truss Systems

For more complex truss structures with arbitrary node positions and connectivity, use the arbitrary_truss_corotational class. This allows you to define custom node coordinates and bar connectivity patterns:

import numpy as np
import dynasim

# Define node coordinates (N nodes, each with x,y coordinates)
node_coords = np.array([
    [0, 0],    # Node 0
    [1, 0],    # Node 1
    [0.5, 1],  # Node 2
    [1.5, 1]   # Node 3
])

# Define bar connectivity (M bars, each connecting two nodes)
bar_connectivity = np.array([
    [0, 1],  # Bar 0 connects nodes 0 and 1
    [0, 2],  # Bar 1 connects nodes 0 and 2
    [1, 2],  # Bar 2 connects nodes 1 and 2
    [1, 3],  # Bar 3 connects nodes 1 and 3
    [2, 3]   # Bar 4 connects nodes 2 and 3
])

# Define bar properties (one value per bar)
bar_masses = np.array([1.0, 1.0, 1.0, 1.0, 1.0])  # Mass of each bar
bar_stiffnesses = np.array([100.0, 100.0, 100.0, 100.0, 100.0])  # Linear stiffness
bar_dampings = np.array([1.0, 1.0, 1.0, 1.0, 1.0])  # Damping
bar_nonlinear_stiffnesses = np.array([10.0, 0.0, 10.0, 0.0, 10.0])  # Nonlinear stiffness

# Optional: Define boundary conditions (grounded nodes)
boundary_conditions = {
    'nodes': [0, 1],  # Node indices to ground
    'anchor_points': [[0, 0], [1, 0]],  # Fixed anchor points
    'springs': [[1000.0, 10.0], [1000.0, 10.0]]  # [k, c] for each grounded node
}

# Create nonlinearity (optional)
nonlinearity = dynasim.nonlinearities.exponent_stiffness(
    np.ones(len(bar_connectivity)), exponent=3, dofs=len(bar_connectivity)
)

# Create the truss system
truss = dynasim.systems.arbitrary_truss_corotational(
    node_coords=node_coords,
    bar_connectivity=bar_connectivity,
    bar_masses=bar_masses,
    bar_stiffnesses=bar_stiffnesses,
    bar_dampings=bar_dampings,
    bar_nonlinear_stiffnesses=bar_nonlinear_stiffnesses,
    boundary_conditions=boundary_conditions,
    nonlinearity=nonlinearity
)

# Add excitations (one per node DOF)
truss.excitations = [None] * (2 * len(node_coords))  # 2 DOFs per node
truss.excitations[4] = dynasim.actuators.sinusoid(2.0, 1.0)  # Excitation on node 2, x-direction

# Simulate
time_span = np.linspace(0, 10, 1000)
data = truss.simulate(time_span, z0=None)

The arbitrary_truss_corotational class supports:

  • Custom node positions: Define any 2D node layout
  • Flexible connectivity: Connect nodes in any pattern
  • Individual bar properties: Different mass, stiffness, damping per bar
  • Boundary conditions: Ground nodes with spring-damper connections
  • Nonlinearities: Apply nonlinear forces to individual bars
  • Co-rotational formulation: Handles large deformations correctly

Use the corotational_rk4 simulator for this system type to handle the co-rotational formulation properly.

Actuator classes

The forcing for the system should be a list of actuations, equal in length to the number of DOFs of the system, there many actuation types,

dynasim.actuators.sinusoid(...)
dynasim.actuators.white_gaussian(...)
dynasim.actuators.sine_sweep(...)
dynasim.actuators.rand_phase_ms(...)
dynasim.actuators.banded_noise(...)

Totally custom system

One can generate a custom system by instantiating an MDOF system with corresponding modal matrices, but the nonlinearity must also be instantiated and

dynasim.base.mdof_system(M, C, K, Cn, Kn)

Continuous Beams

These work much like the MDOF systems but with a few tweaks. Where beam_kwargs_cmb is a dictionary of combined properties of the beam.

beam_kwargs_cmb = {
    "EI" : EI,  # Young's Modulus multiplied by second moment of intertia
    "pA" : pA,  # density multiplied by cross sectional area
    "c" : c,  # damping
    "l" : l  # length of beam
}
ss_beam = dynasim.systems.cont_beam("cmb_vars", **beam_kwargs_cmb)

One can then generate and retrieve the mode shapes of the beam via

xx, phis = ss_beam.gen_modes(support, n_modes, nx)

Where support is a string representing different support types for the beam, options available are:

Code Description
ss-ss Simply supported at both ends
fx-fx Fixed at both ends
fr-fr Free at both ends
fx-ss Fixed at one end and simply supported at the other
fx-fr Fixed at one end and free at the other

Then, excitations are added as a list of dictionaries containing the location (in m) and excitation (prescribed as with mdof systems)

ss_beam.excitations = [
    {
        "excitation" : dynasim.actuators.sinusoid(1.2, 1.0),
        "loc" : 0.25
    }
]

Then simulate just as with the MDOF system, however, the returned data here is the modal coordinates, and so to retrieve displacement, simply multiply by, and sum through, the mode shapes.

data = ss_beam.simulate(tt, z0 = tau0)

ww = np.sum(np.matmul(data['x'][:,:,np.newaxis], phis.T[:,np.newaxis,:]), axis=0)
wwd = np.sum(np.matmul(data['xdot'][:,:,np.newaxis], phis.T[:,np.newaxis,:]), axis=0)

Contact

If you want to contact me you can reach me at mhaywood@ethz.ch.

License

This project uses the following license: MIT.

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

dynasim-0.2.1.1.tar.gz (32.2 kB view details)

Uploaded Source

Built Distribution

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

dynasim-0.2.1.1-py3-none-any.whl (30.0 kB view details)

Uploaded Python 3

File details

Details for the file dynasim-0.2.1.1.tar.gz.

File metadata

  • Download URL: dynasim-0.2.1.1.tar.gz
  • Upload date:
  • Size: 32.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dynasim-0.2.1.1.tar.gz
Algorithm Hash digest
SHA256 6d98dad2baec7ae063dda031a1bef57066b9f0e6760487daf03d3d8733ed51fc
MD5 d1d2458cf0c2b34c59227650999592d7
BLAKE2b-256 c14c0a3fe4ece3f76630db46db568f6619a236389126f026896fa85420ccbe9e

See more details on using hashes here.

File details

Details for the file dynasim-0.2.1.1-py3-none-any.whl.

File metadata

  • Download URL: dynasim-0.2.1.1-py3-none-any.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dynasim-0.2.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2c422f967306bc4e3cebc1d5189f41c83c500f42c1b50ca99cd703a9cf910470
MD5 c3236ee36d3570a0a1c05069f3b7d7d5
BLAKE2b-256 87bd1d8e908ad2e53916a7dd2f7a1b1ab922a4b33aaf1ac9d194c13c0905f1bc

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