Hi,
Is it possible to continue transient calculation from previous results?
I write velocity and pressure distribution to paraview .pvd files.
How to use this results as initial guess or it isn't possible?
Like here:
V = VectorFunctionSpace(mesh, 'CG', 2)
Q = FunctionSpace(mesh, 'CG', 1)
u0 = Constant((0., 0., 0.)) # initial velocity
p0 = Constant(0.) # initial pressure
u0 = interpolate(u0, V)
p0 = interpolate(p0, Q)
Thanks in advance!
Regards, Maksim