Hello ALL!!!
I have looked up at a User defined current source in the source-time domain list. I put the I_Trans in the "User defined current source" as
I_Trans= tanh(time)
I think it works, but i want is that
From 0 to 10 nanoseconds, a fixed DC value of current. From 10 to 30 nanoseconds the tanh function, and from 30 nanoseconds onwards, I want a fixed current value but ofcoure, higher than the previous value (from 0 to 10 nanoseconds)
Can any one be please kind enough, plz plz plz to tell me how to do that?
Yours
Sohaib
I have looked up at a User defined current source in the source-time domain list. I put the I_Trans in the "User defined current source" as
I_Trans= tanh(time)
I think it works, but i want is that
From 0 to 10 nanoseconds, a fixed DC value of current. From 10 to 30 nanoseconds the tanh function, and from 30 nanoseconds onwards, I want a fixed current value but ofcoure, higher than the previous value (from 0 to 10 nanoseconds)
Can any one be please kind enough, plz plz plz to tell me how to do that?
Yours
Sohaib
I_Trans=if (time <= 10ns) then X elseif (time > 10ns && time < 30ns) then tanh(time) else Y endif
where X is the fixed DC current 0-10ns
Y is the fixed DC current after 30ns