Skip to content

Commit

Permalink
added excitation module, version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
klemengit committed Feb 28, 2024
1 parent b4b036e commit 98a6dd6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ or the `FRF` module:
frf_obj = sd.FRF.FRF(sampling_freq, excitation, response)
or the `excitation` module:

.. code-block:: python
gausian_signal = sd.excitation.random_gaussian((N, PSD, fs))
Package integration in SDyPy
----------------------------
Expand All @@ -64,6 +70,7 @@ the level of integration (see `SEP 1 <https://github.com/sdypy/sdypy/blob/main/d
- `sdypy-EMA <https://github.com/sdypy/sdypy-EMA>`_ (Experimental Modal Analysis in Python)
- `sdypy-io <https://github.com/sdypy/sdypy-io>`_ (Input/Output for Structural Dynamics)
- `sdypy-FRF <https://github.com/sdypy/sdypy-FRF>`_ (Frequency Response Function estimation)
- `sdypy-excitation <https://github.com/sdypy/sdypy-excitation>`_ (Excitation signals as used in structural dynamics and vibration fatigue)

- **2nd level** (namespace package in independent repository):

Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
sdypy-EMA>=0.27
sdypy-io>=0.1.0
sdypy-FRF>=0.1
sdypy-excitation>=0.1.0
sphinx-rtd-theme
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "sdypy"
version = "0.3.1"
version = "0.4.0"
authors = [{name = "Janko Slavič et al.", email = "janko.slavic@fs.uni-lj.si"}]
maintainers = [{name = "Janko Slavič et al.", email = "janko.slavic@fs.uni-lj.si"}]
license = "MIT"
Expand All @@ -16,6 +16,7 @@ dependencies = [
"sdypy-EMA",
"sdypy-io",
"sdypy-FRF",
"sdypy-excitation",
]
classifiers = [
'Development Status :: 5 - Production/Stable',
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Package requirements for users
sdypy-EMA
sdypy-io
sdypy-FRF
sdypy-FRF
sdypy-excitation
2 changes: 1 addition & 1 deletion sdypy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.1"
__version__ = "0.4.0"
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

from sdypy import EMA
Expand Down

0 comments on commit 98a6dd6

Please # to comment.