https://github.com/tlcfem/dsp-dynamics
10.1080/13632469.2024.2372814
https://github.com/tlcfem/dsp-dynamics
Last synced: 4 months ago
JSON representation
10.1080/13632469.2024.2372814
- Host: GitHub
- URL: https://github.com/tlcfem/dsp-dynamics
- Owner: TLCFEM
- License: gpl-3.0
- Created: 2022-09-17T13:02:35.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2026-02-01T21:10:42.000Z (5 months ago)
- Last Synced: 2026-02-02T05:44:11.554Z (5 months ago)
- Language: TeX
- Homepage: https://doi.org/10.1080/13632469.2024.2372814
- Size: 39.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spurious Response Due to Linear Interpolation of Input Load and Some Remedies
This repository contains the source code and example models of paper [10.1080/13632469.2024.2372814](https://doi.org/10.1080/13632469.2024.2372814).
To cite or reproduce figures in the paper, you can find the corresponding figure and copy the source code in your work. Please check CI/CD workflow to see how to generate figures used in the paper.
The numerical examples used in the paper are developed in `suanPan`. To perform the numerical analysis, one can download and install [`suanPan`](https://github.com/TLCFEM/suanPan). Then run the model via, for example, the following command in the corresponding
folders under the corresponding folders in `MODEL`.
```sh
suanpan -f Sine.supan
```
To generate the figures used in the paper, one can create a Python environment and then execute the scripts.
```bash
# create a virtual environment
pip install virtualenv
python3 -m venv venv
# activate the virtual environment
source venv/bin/activate
# install necessary packages
pip install -r requirements.txt
mkdir PIC
cd DFT
python DampingForce.py
python Deformation.py
python FrameResult.py
python FundamentalSolution.py
python InertialForce.py
python Newmark.py
python Nuttall.py
python PureSine.py
python SDOF.py
```