I'm trying to understand the undocumented poisson demo with interior penalty. The beginning of the quadratic form a is
a = dot(grad(v), grad(u))*dx \
- dot(avg(grad(v)), jump(u, n))*dS \
- dot(jump(v, n), avg(grad(u)))*dS \
which, as far as I can see, can be rewritten to a sum
$$
\sum_{K\in \mathcal{T}_h} (\int_K \nabla\,u\cdot\nabla v dV -\int_{\partial K} v \lbrace\nabla u\rbrace\,\cdot n dS - \int_{\partial K} \, u\,\lbrace \nabla v\rbrace\cdot n dS)
$$
What is the meaning of the last term with the trial function $u$ with no derivative? Any reference for a better understanding? Thanks..
Peter