Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Real-Time Motor Operators #2

Open
automenta opened this issue Nov 27, 2018 · 0 comments
Open

Real-Time Motor Operators #2

automenta opened this issue Nov 27, 2018 · 0 comments

Comments

@automenta
Copy link

this is a different type of operator that is updated every cycle (or N cycles) automatically, and reacts to its concepts current goal truth (and possible relation to belief truth). rather than wait for an execution opportunity, the update function is invoked whether goal truth is positive or negative, or otherwise (missing etc). each cycle results in an optional feedback belief allowing the motor to report its resulting state, which may not necessarily match the goal provided to it.

ive implemented many different kinds of motor / actuators here:
https://github.com/automenta/narchy/blob/volatile1/app/src/main/java/nars/agent/NAct.java

they range from simple pushbuttons to latching pushbuttons, bipolar "differential" concept pairs, bipolar mutex pushbuttons, n-ary switches, etc. they are meant to adapt to different kinds of real-time environment motors and the signals / conventions / protocols that best fit their control. there are subtle second order parameters like debouncing, latching, and resolving conflict amongst mutex sibling concepts.

the ordinary operator execution mechanism might be able to emulate the above cases but i doubted its reliability for per-cycle updates. operators/operations are fine for asynch events and can certainly be used in other subsystems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant