Yes it is constant.
DC supply
Yes it is insignificant.
Hello again,
Ok great, that makes it much much simpler. If the first inductor was actually an inductor there is a chance this might be 3rd order and that could have a very complicated math structure...one that you'd only want to deal with in a computer program.
Since this is second order and the values for the components and initial values are not given, the solution is completely symbolic and there are three possible solutions based on the actual values of R,C, and the second L. These can be reduced to one equation but then we have to deal with complex numbers so i'll present this in the three different equations.
First the criterion is:
Z=4*C1*L2*R1^2-L2^2
and the three solutions depending on that result are (using more generic symbols as shown farther below):
if Z<0 then
Ft=(e^(-t/(2*C1*R1))*(((2*C1*L2*R1*((I1-I2)*L2*R1+E2*L2)-C1*E1*L2^2*R1)*sinh((t*sqrt(-L2*(4*C1*R1^2-L2)))/(2*C1*L2*R1)))/sqrt(-L2*(4*C1*R1^2-L2))+C1*E1*L2*R1*cosh((t*sqrt(-L2*(4*C1*R1^2-L2)))/(2*C1*L2*R1))))/(C1*L2*R1)
if Z>0 then
Ft=(e^(-t/(2*C1*R1))*(((2*C1*L2*R1*((I1-I2)*L2*R1+E2*L2)-C1*E1*L2^2*R1)*sin((t*sqrt(L2*(4*C1*R1^2-L2)))/(2*C1*L2*R1)))/sqrt(L2*(4*C1*R1^2-L2))+C1*E1*L2*R1*cos((t*sqrt(L2*(4*C1*R1^2-L2)))/(2*C1*L2*R1))))/(C1*L2*R1)
if Z=0 then
Ft=((t*(2*C1*L2*R1*((I1-I2)*L2*R1+E2*L2)-C1*E1*L2^2*R1))/(2*C1^2*L2^2*R1^2)+E1)*e^(-t/(2*C1*R1))
with the variables as follows:
R1=Rc
C1=Cc
L2=Lk
I2=ip
E1=Vc(0)
I1=iL
E2=Vin
I only tested the Z>0 case but you can test the others using a simulator.
Note the similarities between the Z>0 and Z<0 cases, and that Z=0 is rare.
Also note that the denominator can be factored out of the numerator in those two cases also.