/usr/include/dune/pdelab/finiteelementmap/qkdg.hh is in libdune-pdelab-dev 2.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 | // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
#ifndef DUNE_QkDG_LOCALFINITEELEMENT_HH
#define DUNE_QkDG_LOCALFINITEELEMENT_HH
#include <dune/common/fvector.hh>
#include <dune/common/deprecated.hh>
#include <dune/geometry/type.hh>
#include <dune/localfunctions/common/localbasis.hh>
#include <dune/localfunctions/common/localfiniteelementtraits.hh>
#include <dune/localfunctions/common/localkey.hh>
#include <dune/localfunctions/common/localtoglobaladaptors.hh>
#include "finiteelementmap.hh"
namespace Dune
{
namespace QkStuff
{
// This is the main class
// usage: QkSize<2,3>::value
// k is the polynomial degree,
// n is the space dimension
template<int k, int n>
struct QkSize
{
enum{
value=(k+1)*QkSize<k,n-1>::value
};
};
template<>
struct QkSize<0,1>
{
enum{
value=1
};
};
template<int k>
struct QkSize<k,1>
{
enum{
value=k+1
};
};
template<int n>
struct QkSize<0,n>
{
enum{
value=1
};
};
// ith Lagrange polynomial of degree k in one dimension
template<class D, class R, int k>
R p (int i, D x)
{
R result(1.0);
for (int j=0; j<=k; j++)
if (j!=i) result *= (k*x-j)/(i-j);
return result;
}
// derivative of ith Lagrange polynomial of degree k in one dimension
template<class D, class R, int k>
R dp (int i, D x)
{
R result(0.0);
for (int j=0; j<=k; j++)
if (j!=i)
{
R prod( (k*1.0)/(i-j) );
for (int l=0; l<=k; l++)
if (l!=i && l!=j) prod *= (k*x-l)/(i-l);
result += prod;
}
return result;
}
//! Lagrange polynomials of degree k at equidistant points as a class
template<class D, class R, int k>
class EquidistantLagrangePolynomials
{
public:
// ith Lagrange polynomial of degree k in one dimension
R p (int i, D x) const
{
R result(1.0);
for (int j=0; j<=k; j++)
if (j!=i) result *= (k*x-j)/(i-j);
return result;
}
// derivative of ith Lagrange polynomial of degree k in one dimension
R dp (int i, D x) const
{
R result(0.0);
for (int j=0; j<=k; j++)
if (j!=i)
{
R prod( (k*1.0)/(i-j) );
for (int l=0; l<=k; l++)
if (l!=i && l!=j) prod *= (k*x-l)/(i-l);
result += prod;
}
return result;
}
// get ith Lagrange point
R x (int i)
{
return i/((1.0)*(k+1));
}
};
template<int k, int d>
Dune::FieldVector<int,d> multiindex (int i)
{
Dune::FieldVector<int,d> alpha;
for (int j=0; j<d; j++)
{
alpha[j] = i % (k+1);
i = i/(k+1);
}
return alpha;
}
/**@ingroup LocalBasisImplementation
\brief Lagrange shape functions of order k on the reference cube.
Also known as \f$Q^k\f$.
\tparam D Type to represent the field in the domain.
\tparam R Type to represent the field in the range.
\tparam k Polynomial degree
\tparam d Dimension of the cube
\nosubgrouping
*/
template<class D, class R, int k, int d>
class QkLocalBasis
{
enum{ n = QkSize<k,d>::value };
public:
typedef LocalBasisTraits<D,d,Dune::FieldVector<D,d>,R,1,Dune::FieldVector<R,1>,Dune::FieldMatrix<R,1,d> > Traits;
//! \brief number of shape functions
unsigned int size () const
{
return QkSize<k,d>::value;
}
//! \brief Evaluate all shape functions
inline void evaluateFunction (const typename Traits::DomainType& in,
std::vector<typename Traits::RangeType>& out) const
{
out.resize(size());
for (size_t i=0; i<size(); i++)
{
// convert index i to multiindex
Dune::FieldVector<int,d> alpha(multiindex<k,d>(i));
// initialize product
out[i] = 1.0;
// dimension by dimension
for (int j=0; j<d; j++)
out[i] *= p<D,R,k>(alpha[j],in[j]);
}
}
//! \brief Evaluate Jacobian of all shape functions
inline void
evaluateJacobian (const typename Traits::DomainType& in, // position
std::vector<typename Traits::JacobianType>& out) const // return value
{
out.resize(size());
// Loop over all shape functions
for (size_t i=0; i<size(); i++)
{
// convert index i to multiindex
Dune::FieldVector<int,d> alpha(multiindex<k,d>(i));
// Loop over all coordinate directions
for (int j=0; j<d; j++)
{
// Initialize: the overall expression is a product
// if j-th bit of i is set to -1, else 1
out[i][0][j] = dp<D,R,k>(alpha[j],in[j]);
// rest of the product
for (int l=0; l<d; l++)
if (l!=j)
out[i][0][j] *= p<D,R,k>(alpha[l],in[l]);
}
}
}
//! \brief Polynomial order of the shape functions
unsigned int order () const
{
return k;
}
};
/**@ingroup LocalLayoutImplementation
\brief Layout map for Q1 elements
\nosubgrouping
\implements Dune::LocalCoefficientsVirtualImp
*/
template<int k, int d>
class QkDGLocalCoefficients
{
public:
//! \brief Standard constructor
QkDGLocalCoefficients () : li(QkSize<k,d>::value)
{
for (std::size_t i=0; i<QkSize<k,d>::value; i++)
li[i] = LocalKey(0,0,i);
}
//! number of coefficients
std::size_t size () const
{
return QkSize<k,d>::value;
}
//! get i'th index
const LocalKey& localKey (std::size_t i) const
{
return li[i];
}
private:
std::vector<LocalKey> li;
};
/** \todo Please doc me! */
template<int k, int d, class LB>
class QkLocalInterpolation
{
public:
//! \brief Local interpolation of a function
template<typename F, typename C>
void interpolate (const F& f, std::vector<C>& out) const
{
typename LB::Traits::DomainType x;
typename LB::Traits::RangeType y;
out.resize(QkSize<k,d>::value);
for (int i=0; i<QkSize<k,d>::value; i++)
{
// convert index i to multiindex
Dune::FieldVector<int,d> alpha(multiindex<k,d>(i));
// Generate coordinate of the i-th Lagrange point
for (int j=0; j<d; j++)
x[j] = (1.0*alpha[j])/k;
f.evaluate(x,y); out[i] = y;
}
}
};
/** \todo Please doc me! */
template<int d, class LB>
class QkLocalInterpolation<0,d,LB>
{
public:
//! \brief Local interpolation of a function
template<typename F, typename C>
void interpolate (const F& f, std::vector<C>& out) const
{
typename LB::Traits::DomainType x(0.5);
typename LB::Traits::RangeType y;
f.evaluate(x,y);
out.resize(1);
out[0] = y;
}
};
}
/** \todo Please doc me !
*/
template<class D, class R, int k, int d>
class QkDGLocalFiniteElement
{
typedef QkStuff::QkLocalBasis<D,R,k,d> LocalBasis;
typedef QkStuff::QkDGLocalCoefficients<k,d> LocalCoefficients;
typedef QkStuff::QkLocalInterpolation<k,d,LocalBasis> LocalInterpolation;
public:
// static number of basis functions
enum{ n = QkStuff::QkSize<k,d>::value };
/** \todo Please doc me !
*/
typedef LocalFiniteElementTraits<LocalBasis,LocalCoefficients,LocalInterpolation> Traits;
/** \todo Please doc me !
*/
QkDGLocalFiniteElement ()
{
gt.makeCube(d);
}
/** \todo Please doc me !
*/
const typename Traits::LocalBasisType& localBasis () const
{
return basis;
}
/** \todo Please doc me !
*/
const typename Traits::LocalCoefficientsType& localCoefficients () const
{
return coefficients;
}
/** \todo Please doc me !
*/
const typename Traits::LocalInterpolationType& localInterpolation () const
{
return interpolation;
}
/** \todo Please doc me !
*/
GeometryType type () const
{
return gt;
}
QkDGLocalFiniteElement* clone () const
{
return new QkDGLocalFiniteElement(*this);
}
private:
LocalBasis basis;
LocalCoefficients coefficients;
LocalInterpolation interpolation;
GeometryType gt;
};
//! Factory for global-valued QkDG elements
/**
* \tparam Geometry Type of the geometry. Used to extract the domain field
* type and the dimension.
* \tparam RF Range field type.
*/
template<class Geometry, class RF, int k>
class QkDGFiniteElementFactory :
public ScalarLocalToGlobalFiniteElementAdaptorFactory<
QkDGLocalFiniteElement<
typename Geometry::ctype, RF, k, Geometry::mydimension
>,
Geometry
>
{
typedef QkDGLocalFiniteElement<
typename Geometry::ctype, RF, k, Geometry::mydimension
> LFE;
typedef ScalarLocalToGlobalFiniteElementAdaptorFactory<LFE, Geometry> Base;
static const LFE lfe;
public:
//! default constructor
QkDGFiniteElementFactory() : Base(lfe) {}
};
template<class Geometry, class RF, int k>
const typename QkDGFiniteElementFactory<Geometry, RF, k>::LFE
QkDGFiniteElementFactory<Geometry, RF, k>::lfe;
/** \todo Please doc me !
* The general class. We only implement some cases below
*/
template<class D, class R, int k, int d>
class QkCGLocalFiniteElement {};
/** \todo Please doc me !
* The case k=1
*/
template<class D, class R, int d>
class QkCGLocalFiniteElement<D,R,1,d>
{
enum{ k = 1 };
typedef QkStuff::QkLocalBasis<D,R,k,d> LocalBasis;
class QkCGLocalCoefficients
{
enum{ k = 1 };
public:
//! \brief Standard constructor
QkCGLocalCoefficients () : li(QkStuff::QkSize<k,d>::value)
{
for (std::size_t i=0; i<QkStuff::QkSize<k,d>::value; i++)
li[i] = LocalKey(i,d,0);
}
//! number of coefficients
std::size_t size () const
{
return QkStuff::QkSize<k,d>::value;
}
//! get i'th index
const LocalKey& localKey (std::size_t i) const
{
return li[i];
}
private:
std::vector<LocalKey> li;
};
typedef QkStuff::QkLocalInterpolation<k,d,LocalBasis> LocalInterpolation;
public:
// static number of basis functions
enum{ n = QkStuff::QkSize<k,d>::value };
/** \todo Please doc me !
*/
typedef LocalFiniteElementTraits<LocalBasis,QkCGLocalCoefficients,LocalInterpolation> Traits;
/** \todo Please doc me !
*/
QkCGLocalFiniteElement ()
{
gt.makeCube(d);
}
/** \todo Please doc me !
*/
const typename Traits::LocalBasisType& localBasis () const
{
return basis;
}
/** \todo Please doc me !
*/
const typename Traits::LocalCoefficientsType& localCoefficients () const
{
return coefficients;
}
/** \todo Please doc me !
*/
const typename Traits::LocalInterpolationType& localInterpolation () const
{
return interpolation;
}
/** \todo Please doc me !
*/
GeometryType type () const
{
return gt;
}
QkCGLocalFiniteElement* clone () const
{
return new QkCGLocalFiniteElement(*this);
}
private:
LocalBasis basis;
QkCGLocalCoefficients coefficients;
LocalInterpolation interpolation;
GeometryType gt;
};
/** \todo Please doc me !
* The case k=2, d=2
*/
template<class D, class R>
class QkCGLocalFiniteElement<D,R,2,2>
{
enum{ k = 2 };
enum{ d = 2 };
typedef QkStuff::QkLocalBasis<D,R,k,d> LocalBasis;
class QkCGLocalCoefficients
{
enum{ k = 2 };
enum{ d = 2 };
public:
//! \brief Standard constructor
QkCGLocalCoefficients () : li(QkStuff::QkSize<k,d>::value)
{
li[0] = LocalKey(0,2,0);
li[1] = LocalKey(2,1,0);
li[2] = LocalKey(1,2,0);
li[3] = LocalKey(0,1,0);
li[4] = LocalKey(0,0,0);
li[5] = LocalKey(1,1,0);
li[6] = LocalKey(2,2,0);
li[7] = LocalKey(3,1,0);
li[8] = LocalKey(3,2,0);
}
//! number of coefficients
std::size_t size () const
{
return QkStuff::QkSize<k,d>::value;
}
//! get i'th index
const LocalKey& localKey (std::size_t i) const
{
return li[i];
}
private:
std::vector<LocalKey> li;
};
typedef QkStuff::QkLocalInterpolation<k,d,LocalBasis> LocalInterpolation;
public:
// static number of basis functions
enum{ n = QkStuff::QkSize<k,d>::value };
/** \todo Please doc me !
*/
typedef LocalFiniteElementTraits<LocalBasis,QkCGLocalCoefficients,LocalInterpolation> Traits;
/** \todo Please doc me !
*/
QkCGLocalFiniteElement ()
{
gt.makeCube(d);
}
/** \todo Please doc me !
*/
const typename Traits::LocalBasisType& localBasis () const
{
return basis;
}
/** \todo Please doc me !
*/
const typename Traits::LocalCoefficientsType& localCoefficients () const
{
return coefficients;
}
/** \todo Please doc me !
*/
const typename Traits::LocalInterpolationType& localInterpolation () const
{
return interpolation;
}
/** \todo Please doc me !
*/
GeometryType type () const
{
return gt;
}
QkCGLocalFiniteElement* clone () const
{
return new QkCGLocalFiniteElement(*this);
}
private:
LocalBasis basis;
QkCGLocalCoefficients coefficients;
LocalInterpolation interpolation;
GeometryType gt;
};
/** \todo Please doc me !
* The case k=2, d=3
*/
template<class D, class R>
class QkCGLocalFiniteElement<D,R,2,3>
{
enum{ k = 2 };
enum{ d = 3 };
typedef QkStuff::QkLocalBasis<D,R,k,d> LocalBasis;
class QkCGLocalCoefficients
{
enum{ k = 2 };
enum{ d = 3 };
public:
//! \brief Standard constructor
QkCGLocalCoefficients () : li(QkStuff::QkSize<k,d>::value)
{
li[24] = LocalKey(6,3,0); li[25] = LocalKey(11,2,0); li[26] = LocalKey(7,3,0);
li[21] = LocalKey(8,2,0); li[22] = LocalKey(5,1,0); li[23] = LocalKey(9,2,0);
li[18] = LocalKey(4,3,0); li[19] = LocalKey(10,2,0); li[20] = LocalKey(5,3,0);
li[15] = LocalKey(2,2,0); li[16] = LocalKey(3,1,0); li[17] = LocalKey(3,2,0);
li[12] = LocalKey(0,1,0); li[13] = LocalKey(0,0,0); li[14] = LocalKey(1,1,0);
li[ 9] = LocalKey(0,2,0); li[10] = LocalKey(2,1,0); li[11] = LocalKey(1,2,0);
li[ 6] = LocalKey(2,3,0); li[ 7] = LocalKey(7,2,0); li[ 8] = LocalKey(3,3,0);
li[ 3] = LocalKey(4,2,0); li[ 4] = LocalKey(4,1,0); li[ 5] = LocalKey(5,2,0);
li[ 0] = LocalKey(0,3,0); li[ 1] = LocalKey(6,2,0); li[ 2] = LocalKey(1,3,0);
}
//! number of coefficients
std::size_t size () const
{
return QkStuff::QkSize<k,d>::value;
}
//! get i'th index
const LocalKey& localKey (std::size_t i) const
{
return li[i];
}
private:
std::vector<LocalKey> li;
};
typedef QkStuff::QkLocalInterpolation<k,d,LocalBasis> LocalInterpolation;
public:
// static number of basis functions
enum{ n = QkStuff::QkSize<k,d>::value };
/** \todo Please doc me !
*/
typedef LocalFiniteElementTraits<LocalBasis,QkCGLocalCoefficients,LocalInterpolation> Traits;
/** \todo Please doc me !
*/
QkCGLocalFiniteElement ()
{
gt.makeCube(d);
}
/** \todo Please doc me !
*/
const typename Traits::LocalBasisType& localBasis () const
{
return basis;
}
/** \todo Please doc me !
*/
const typename Traits::LocalCoefficientsType& localCoefficients () const
{
return coefficients;
}
/** \todo Please doc me !
*/
const typename Traits::LocalInterpolationType& localInterpolation () const
{
return interpolation;
}
/** \todo Please doc me !
*/
GeometryType type () const
{
return gt;
}
QkCGLocalFiniteElement* clone () const
{
return new QkCGLocalFiniteElement(*this);
}
private:
LocalBasis basis;
QkCGLocalCoefficients coefficients;
LocalInterpolation interpolation;
GeometryType gt;
};
}
namespace Dune {
namespace PDELab {
//! wrap up element from local functions
//! \ingroup FiniteElementMap
template<class D, class R, int k, int d>
class QkDGLocalFiniteElementMap
: public Dune::PDELab::SimpleLocalFiniteElementMap< Dune::QkDGLocalFiniteElement<D,R,k,d> >
{
public:
bool fixedSize() const
{
return true;
}
std::size_t size(GeometryType gt) const
{
if (gt == GeometryType(GeometryType::cube,d))
return Dune::QkStuff::QkSize<k,d>::value;
else
return 0;
}
std::size_t maxLocalSize() const
{
return Dune::QkStuff::QkSize<k,d>::value;
}
};
//! wrap up element from local functions
//! \ingroup FiniteElementMap
template<class D, class R, int k, int d>
class DUNE_DEPRECATED_MSG("Please use QkLocalFiniteElementMap instead") QkCGLocalFiniteElementMap
: public Dune::PDELab::SimpleLocalFiniteElementMap< Dune::QkCGLocalFiniteElement<D,R,k,d> >
{
public:
QkCGLocalFiniteElementMap() DUNE_DEPRECATED_MSG("Please use QkLocalFiniteElementMap instead")
{}
bool fixedSize() const
{
return true;
}
std::size_t size(GeometryType gt) const
{
if (k==2) return 1;
if (gt.dim()==0) return 1;
return 0;
}
std::size_t maxLocalSize() const
{
return Dune::QkStuff::QkSize<k,d>::value;
}
};
}
}
#endif
|