-
Hello, I'm modelling the flow of a thin viscous film under lubrification approximation. The local thickness When considering the simplified form of the curvature ( I want to use the full expression of the curvature: How to formulate this in a FiPy tractable equation (in 1D) ? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I would think you could write h_eq = TransientTerm(coeff=1., var=h) == DiffusionTerm(coeff= -gamma*h**3/(3*eta), var=kappa)
kappa_eq = ImplicitSourceTerm(coeff=1., var=kappa) == DiffusionTerm(coeff=1/numerix.sqrt(1 + (h.faceGrad.mag)**2), var=h)
eq = h_eq & kappa_eq See, e.g, the coupled Cahn-Hilliard example. |
Beta Was this translation helpful? Give feedback.
I would think you could write
See, e.g, the coupled Cahn-Hilliard example.