VTK  9.7.20260918
PyrGnBasis.h
Go to the documentation of this file.
1int count = 0;
2RealT tt_tmp = 1. - tt + eps;
3for (int ii = 0; ii <= order; ++ii)
4{
5 for (int jj = 0; jj <= order - ii; ++jj)
6 {
7 for (int kk = 0; kk <= order - ii; ++kk)
8 {
9 int maxjjkk = (kk > jj) ? kk : jj;
10 RealT term1 = jacobi(kk, 0., 0., rr / tt_tmp);
11 RealT term2 = jacobi(jj, 0., 0., ss / tt_tmp);
12 RealT term3 = power(tt_tmp, maxjjkk);
13 RealT term4 = jacobi(ii, (2. * maxjjkk + 2.), 0., tt);
14 basis[count] = term1 * term2 * term3 * term4;
15 ++count;
16 }
17 }
18}
basis[0]
Definition CellC0Basis.h:1
RealT tt_tmp
Definition PyrGnBasis.h:2
int count
Definition PyrGnBasis.h:1