I have the following schematic of the circuit, I wanted to added I2 as a Current Dependant Current Source depending on current on in V1 as three times the value, or, I(I2) = 3I(V1)
I have tried various tutorials, and used circuit element F and current both, its not working with any. There is always an error in circuit element I2
What can be done to achieve this result. Thanks a lot!
Best Answer
You are using the
current
element (as seen in with theF2
browser), which is a regular current source, as opposed to a behavioural source, which, for current, isbi
andbi2
. Once you place that, the syntax changes and you can writeI=I(...)
, as the default placeholder suggests.However, as per a recent answer, the manual warns you about quasi-instantaneous current feedback, and you should use an
F
source (which is, as you guessed, displayed asf
withF2
browser). Once you place that, its value should be changed, just as the manual says -- and for your case, in particular -- toV1 3
. Note that the current intoV1
goes through the+
pin, and exits from the-
pin, irrespective of placement, so you should take that into account with a proper sign:V1 -3
(if that's the case). See the linked answer for an exemplifying picture.