https://github.com/Slashformotion-s-Graveyard/SecondOrderElec
A python module to work with continuous-time system. You will find various second order electronic filters models. And more...
https://github.com/Slashformotion-s-Graveyard/SecondOrderElec
anaconda3 electronics lti
Last synced: 30 days ago
JSON representation
A python module to work with continuous-time system. You will find various second order electronic filters models. And more...
- Host: GitHub
- URL: https://github.com/Slashformotion-s-Graveyard/SecondOrderElec
- Owner: Slashformotion-s-Graveyard
- License: mit
- Created: 2020-06-15T05:31:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-22T07:24:04.000Z (almost 3 years ago)
- Last Synced: 2025-03-12T20:17:58.432Z (2 months ago)
- Topics: anaconda3, electronics, lti
- Language: Jupyter Notebook
- Homepage:
- Size: 1.29 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Electronic Lib for second order system
[](https://github.com/slashformotion/SecondOrderElec/actions/workflows/main.yml)   [](https://secondorderelec.readthedocs.io/en/latest/?badge=latest)
A simple python library for the analysis of second order system.
## Getting Started
### Dependancies
* numpy
* matplotlib
* scipy### Installing
Simple:
```bash
pip install SecondOrderElec
```### Documentation
It's on [readthedocs](https://secondorderelec.readthedocs.io/en/latest/).
### Exemples
In this library you will find four main models for second order filters:
- Low-Pass(```SecondOrderElec.LP```)
- High-Pass (```SecondOrderElec.HP```
- Band-Pass (```SecondOrderElec.BP```)
- Notch (```SecondOrderElec.Notch```)```Python
from SecondOrderElec import LP
import numpy as npw = np.logspace(1,3,1000)
filter_instance = LP(T0=1, m=0.1, w0=6000)
t,s = filter_instance.freqresp(w=w, plot=True)
```
 You will find others exemples [here](https://github.com/slashformotion/SecondOrderElec/tree/master/exemples).
### Help
Create an issue [here](https://github.com/slashformotion/SecondOrderElec/issues).
### Maintainers
- [@vincentchocqueuse](https://github.com/vincentchoqueuse)
- [@slashformotion](https://github.com/slashformotion)### Licence
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.