62 template<
class LimiterFunc>
75 const scalar cdWeight,
76 const scalar faceFlux,
77 const typename LimiterFunc::phiType& phiP,
78 const typename LimiterFunc::phiType& phiN,
79 const typename LimiterFunc::gradPhiType& gradcP,
80 const typename LimiterFunc::gradPhiType& gradcN,
84 scalar phiCD = cdWeight*phiP + (1 - cdWeight)*phiN;
91 phif = 0.5*(phiCD + phiP + (1 - cdWeight)*(d & gradcP));
96 phif = 0.5*(phiCD + phiN - cdWeight*(d & gradcN));
100 scalar QLimiter = (phif - phiU)/
stabilise(phiCD - phiU, SMALL);
103 return max(
min(QLimiter, 2), 0);