logic breaker design

Thread Starter

kobi_technion

Joined Aug 1, 2015
7
hi all.
need an urgent help with design. please assist.
i need to design a logic circuit that takes feedback from other circuit about an over-voltage and cut it off permanently.
the problem now is that it cuts it off and when voltage reduce to normal level it power it again.

can use only logic gates and flip flops for that.

many thanks for helpers.
 

AnalogKid

Joined Aug 1, 2013
11,055
Post a schematic of what you have now and we probably can figue out a modification. It sounds like an additional latch would hold the off state when the input returns to normal.

ak
 

strantor

Joined Oct 3, 2010
6,798
"Permanently" implies a fuse action.
hi all.
need an urgent help with design. please assist.
  1. i need to design a logic circuit that takes feedback from other circuit about an over-voltage and cut it off permanently.
the problem now is that it cuts it off and when voltage reduce to normal level it power it again.

can use only logic gates and flip flops for that.

many thanks for helpers.
say circuit A cuts power to circuit B.
so what action is expected to restore power to circuit B?
if you cut all power to circuits A and B and then reapply power, should it reset (supply power to circuit B) or should power still be removed from circuit B upon re-powering?
 

Thread Starter

kobi_technion

Joined Aug 1, 2015
7
What else is "not allowed"?
well basically only opamps, res. cap. cond. trans. and logics like ff and gates.

maybe its hard to understand from the sketch what the purpose of every sub circuit,
the main goal is to model a sensor that in t=0 send a step voltage of 1v that stops the motor.
till then the motor need to have 12v. the other thing is to stop the motor when current through it exceeds 1A for a duration of 10ms.
so, the upper amp is taking care of the sensor and the 2 others evaluate the voltage (current) and the delay and then with
gates i stop the motor with the transistor.

the problem is that when the motor stops because of overcurrent, it starts again when current falls.

need to find away to stop it completely.
 

WBahn

Joined Mar 31, 2012
30,072
As others have indicated, use a latch. When you detect an overcurrent you set a latch that disables the power and to re-enable it requires that you reset the latch (through whatever mechanism makes sense for your application).
 

Thread Starter

kobi_technion

Joined Aug 1, 2015
7
As others have indicated, use a latch. When you detect an overcurrent you set a latch that disables the power and to re-enable it requires that you reset the latch (through whatever mechanism makes sense for your application).
hmm... what is a latch? btw cant have a clock and pls can you give a little guidance about how i connect it?
 

WBahn

Joined Mar 31, 2012
30,072
A flip flop is a form of latch. If you can't have a clock, then you simply generate your clock signal like any other logic signal (though you need to be very careful about glitches).

If you take a DFF and tie the D input HI, then if your overvoltage logic produces a low-to-high transition on the clock input the DFF will be latched HI. The only way to get it to go LO is to assert the RESET signal using different logic.
 

Thread Starter

kobi_technion

Joined Aug 1, 2015
7
thanks for the help so far. tried and couldn't make it work.

but.. i've found a way to simplify my problem: i need to design a logic circuit that goes like this:

k k+1 k+2 k+3 ........
input 1 0 any any ......
output 1 0 0 0 .......

while k is the step.
i have no experience in design so sorry for the ignorance.
 

WBahn

Joined Mar 31, 2012
30,072
Saying, "tried and couldn't make it work" just does not give us enough information to feed into our crystal balls. Seriously, how can we POSSIBLY tell what you are doing wrong when you refuse to show us what you are doing at all?

So show your best attempt to implement this using a DFF. Remember that you have things called inverters, too.
 
Top