An inductor of inductance L and a nonlinear resistor are connected in series to a DC voltage supply ( V S ). The voltage-current characteristic of the resistor is given by:
d I d V N = R o e − α V N
Here, V N is the voltage across the resistor at any time t . At time t = 0 , the inductor has no energy and consequently, there is no voltage across the resistor. Let the heat dissipated by the resistor at t = 1 0 be H . Enter your answer as ⌊ 1 0 H ⌋ .
Note:
The voltage-current relationship is defined for the resistor and it clearly does not obey Ohm's law.
α = 1 , V S = 2 , R o = 2 , L = 1
e ≈ 2 . 7 1 8 2 8 is Euler's number and ⌊ . ⌋ represents the Floor function.
Assume all quantities to be defined in SI units.
Bonus:
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Nice solution @Steven Chase , but would you mind sharing how you solved the system of differential equations for I and VN? Or you just computed it with the programme above?
Log in to reply
My solution combines a state space with numerical integration. The state space represents the time rate of change of the state variable in terms of the state variable x and a forcing function u .
x ˙ = f ( x , u )
Then the numerical integration looks like:
x k = x k − 1 + x ˙ k − 1 Δ t x k = x k − 1 + f ( x k − 1 , u k − 1 ) Δ t
Problem Loading...
Note Loading...
Set Loading...
This was a fun one. Start with the voltage loop equation for the circuit.
V N = V S − L I ˙
From this, we can derive the expression for the time derivative of the current.
I ˙ = L V S − V N
Then apply the chain rule to the expression for the nonlinear resistor.
d I d V N = d t d V N d I d t = R 0 e − α V N V ˙ N = R 0 e − α V N I ˙
To summarize:
I ˙ = L V S − V N V ˙ N = R 0 e − α V N I ˙
The expressions are sufficient to perform numerical integration. In addition, the powers associated with the source, resistor, and inductor are:
P S = V S I P R = V N I P L = ( L I ˙ ) I
In the above expressions, P S uses a source convention and P R and P L use load conventions. When integrated, we expect the source energy to equal the resistor and inductor energies combined.
E S = E R + E L
The plots below show V N and I , as well as the energies for α = 1 . It is clear that energy conservation is satisfied.
The next set of plots shows the results for α = 0 . Since it is just a standard resistor in this case, we expect there to be a direct proportionality between V N and I . The circuit time constant in this case is τ = R 0 L = 0 . 5 , so the resistor should have the full source voltage across it after about t = 5 τ = 2 . 5 . These expectations are met.
Simulation Code: