Code Monkey home page Code Monkey logo

tvc-sim's Introduction

TVC-Sim

An improved version of PIDTest- moved things around so that the main file was simpler and easier to follow along with

Things have been moved/abstracted to make the simulator file much more plug and play. It doesnt have all the features yet, will maybe get to adding these soon. But its a big improvement to the old code

The original video for the PID sim https://youtu.be/ZMI_kpNUgJM

tvc-sim's People

Contributors

jmack66 avatar phizl avatar

Stargazers

Connor avatar Jeziel Nogueira avatar  avatar  avatar  avatar  avatar  avatar Sergey Babenyshev avatar almostlight avatar  avatar Javier Navarro avatar Chr$$ avatar petpetpeter avatar  avatar W avatar  avatar  avatar Jai Verma avatar Alex Zakotyanskyi avatar Gui-FernandesBR avatar Void Engineer avatar Christian Clark avatar  avatar Doğukan Arat avatar Brice Duke avatar Susmit avatar Julien Boriasse avatar Colton Gelety avatar  avatar  avatar Saman Mallahi avatar

Watchers

 avatar

tvc-sim's Issues

saturation_min

PID.py: line 22

if output > self.saturation_max and self.saturation_max is not None:
	output = self.saturation_max
elif output < self.saturation_min and self.saturation_min is not None:
	output = self.saturation_max

I think this should be:

if output > self.saturation_max and self.saturation_max is not None:
	output = self.saturation_max
elif output < self.saturation_min and self.saturation_min is not None:
	output = self.saturation_min

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.