MFEM  v4.5.2
Finite element discretization library
bilininteg_vecmass_mf.cpp
Go to the documentation of this file.
1 // Copyright (c) 2010-2023, Lawrence Livermore National Security, LLC. Produced
2 // at the Lawrence Livermore National Laboratory. All Rights reserved. See files
3 // LICENSE and NOTICE for details. LLNL-CODE-806117.
4 //
5 // This file is part of the MFEM library. For more information and source code
6 // availability visit https://mfem.org.
7 //
8 // MFEM is free software; you can redistribute it and/or modify it under the
9 // terms of the BSD-3 license. We welcome feedback and contributions, see file
10 // CONTRIBUTING.md for details.
11 
12 #include "../general/forall.hpp"
13 #include "bilininteg.hpp"
14 #include "gridfunc.hpp"
16 
17 using namespace std;
18 
19 namespace mfem
20 {
21 
22 // MF Mass Integrator
23 
24 // MF Mass Assemble kernel
25 void VectorMassIntegrator::AssembleMF(const FiniteElementSpace &fes)
26 {
27  // Assuming the same element type
28  Mesh *mesh = fes.GetMesh();
29  if (mesh->GetNE() == 0) { return; }
30  const FiniteElement &el = *fes.GetFE(0);
32  const IntegrationRule *ir
33  = IntRule ? IntRule : &MassIntegrator::GetRule(el, el, *T);
34  if (DeviceCanUseCeed())
35  {
36  delete ceedOp;
37  const bool mixed = mesh->GetNumGeometries(mesh->Dimension()) > 1 ||
38  fes.IsVariableOrder();
39  if (mixed)
40  {
41  ceedOp = new ceed::MixedMFMassIntegrator(*this, fes, Q);
42  }
43  else
44  {
45  ceedOp = new ceed::MFMassIntegrator(fes, *ir, Q);
46  }
47  return;
48  }
49  MFEM_ABORT("Error: VectorMassIntegrator::AssembleMF only implemented with"
50  " libCEED");
51 }
52 
53 void VectorMassIntegrator::AddMultMF(const Vector &x, Vector &y) const
54 {
55  if (DeviceCanUseCeed())
56  {
57  ceedOp->AddMult(x, y);
58  }
59  else
60  {
61  MFEM_ABORT("Error: VectorMassIntegrator::AddMultMF only implemented with"
62  " libCEED");
63  }
64 }
65 
66 void VectorMassIntegrator::AssembleDiagonalMF(Vector &diag)
67 {
68  if (DeviceCanUseCeed())
69  {
70  ceedOp->GetDiagonal(diag);
71  }
72  else
73  {
74  MFEM_ABORT("Error: VectorMassIntegrator::AssembleDiagonalMF only"
75  " implemented with libCEED");
76  }
77 }
78 
79 } // namespace mfem
Abstract class for all finite elements.
Definition: fe_base.hpp:232
Class for an integration rule - an Array of IntegrationPoint.
Definition: intrules.hpp:90
bool IsVariableOrder() const
Returns true if the space contains elements of varying polynomial orders.
Definition: fespace.hpp:463
int Dimension() const
Definition: mesh.hpp:1047
STL namespace.
virtual const FiniteElement * GetFE(int i) const
Returns pointer to the FiniteElement in the FiniteElementCollection associated with i'th element in t...
Definition: fespace.cpp:2783
int GetNumGeometries(int dim) const
Return the number of geometries of the given dimension present in the mesh.
Definition: mesh.cpp:5921
Represent a MassIntegrator with AssemblyLevel::None using libCEED.
Definition: mass.hpp:47
Mesh * GetMesh() const
Returns the mesh.
Definition: fespace.hpp:441
Class FiniteElementSpace - responsible for providing FEM view of the mesh, mainly managing the set of...
Definition: fespace.hpp:96
bool DeviceCanUseCeed()
Function that determines if a CEED kernel should be used, based on the current mfem::Device configura...
Definition: util.cpp:33
int GetNE() const
Returns number of elements.
Definition: mesh.hpp:936
const IntegrationRule & GetRule(const Integrator &integ, const FiniteElement &trial_fe, const FiniteElement &test_fe, ElementTransformation &Trans)
void GetElementTransformation(int i, IsoparametricTransformation *ElTr)
Definition: mesh.cpp:348
Vector data type.
Definition: vector.hpp:60