Files
mfem/fem/linearform.hpp
T
2025-03-31 18:48:43 -07:00

259 lines
10 KiB
C++

// Copyright (c) 2010-2025, Lawrence Livermore National Security, LLC. Produced
// at the Lawrence Livermore National Laboratory. All Rights reserved. See files
// LICENSE and NOTICE for details. LLNL-CODE-806117.
//
// This file is part of the MFEM library. For more information and source code
// availability visit https://mfem.org.
//
// MFEM is free software; you can redistribute it and/or modify it under the
// terms of the BSD-3 license. We welcome feedback and contributions, see file
// CONTRIBUTING.md for details.
#ifndef MFEM_LINEARFORM
#define MFEM_LINEARFORM
#include "../config/config.hpp"
#include "lininteg.hpp"
#include "linearform_ext.hpp"
#include "gridfunc.hpp"
namespace mfem
{
/// Vector with associated FE space and LinearFormIntegrators.
class LinearForm : public Vector
{
friend LinearFormExtension;
protected:
/// FE space on which the LinearForm lives. Not owned.
FiniteElementSpace *fes;
/** @brief Extension for supporting different assembly levels. */
LinearFormExtension *ext = nullptr;
/// @brief Should we use the device-compatible fast assembly algorithm (false
/// by default)
bool fast_assembly = false;
/** @brief Indicates the LinearFormIntegrator%s stored in #domain_integs,
#domain_delta_integs, #boundary_integs, and #boundary_face_integs are
owned by another LinearForm. */
int extern_lfs = 0;
/// Set of Domain Integrators to be applied.
Array<LinearFormIntegrator*> domain_integs;
/// Element attribute marker (should be of length mesh->attributes.Max() or
/// 0 if mesh->attributes is empty)
/// Includes all by default.
/// 0 - ignore attribute
/// 1 - include attribute
Array<Array<int>*> domain_integs_marker;
/// Separate array for integrators with delta function coefficients.
Array<DeltaLFIntegrator*> domain_delta_integs;
/// Set of Boundary Integrators to be applied.
Array<LinearFormIntegrator*> boundary_integs;
/// Entries are not owned.
Array<Array<int>*> boundary_integs_marker;
/// Set of Boundary Face Integrators to be applied.
Array<LinearFormIntegrator*> boundary_face_integs;
Array<Array<int>*> boundary_face_integs_marker; ///< Entries not owned.
/// Set of Internal Face Integrators to be applied.
Array<LinearFormIntegrator*> interior_face_integs;
/// The element ids where the centers of the delta functions lie
Array<int> domain_delta_integs_elem_id;
/// The reference coordinates where the centers of the delta functions lie
Array<IntegrationPoint> domain_delta_integs_ip;
/// If true, the delta locations are not (re)computed during assembly.
bool HaveDeltaLocations()
{ return (domain_delta_integs_elem_id.Size() != 0); }
/// Force (re)computation of delta locations.
void ResetDeltaLocations() { domain_delta_integs_elem_id.SetSize(0); }
private:
/// Copy construction is not supported; body is undefined.
LinearForm(const LinearForm &);
public:
/// Creates linear form associated with FE space @a *f.
/** The pointer @a f is not owned by the newly constructed object. */
LinearForm(FiniteElementSpace *f) : Vector(f->GetVSize())
{ fes = f; UseDevice(true); }
/** @brief Create a LinearForm on the FiniteElementSpace @a f, using the
same integrators as the LinearForm @a lf.
The pointer @a f is not owned by the newly constructed object.
The integrators in @a lf are copied as pointers and they are not owned by
the newly constructed LinearForm. */
LinearForm(FiniteElementSpace *f, LinearForm *lf);
/// Create an empty LinearForm without an associated FiniteElementSpace.
/** The associated FiniteElementSpace can be set later using one of the
methods: Update(FiniteElementSpace *) or
Update(FiniteElementSpace *, Vector &, int). */
LinearForm()
{ fes = NULL; UseDevice(true); }
/// Construct a LinearForm using previously allocated array @a data.
/** The LinearForm does not assume ownership of @a data which is assumed to
be of size at least `f->GetVSize()`. Similar to the Vector constructor
for externally allocated array, the pointer @a data can be NULL. The data
array can be replaced later using the method SetData(). */
LinearForm(FiniteElementSpace *f, real_t *data) : Vector(data, f->GetVSize())
{ fes = f; }
/// Copy assignment. Only the data of the base class Vector is copied.
/** It is assumed that this object and @a rhs use FiniteElementSpace%s that
have the same size.
@note Defining this method overwrites the implicitly defined copy
assignment operator. */
LinearForm &operator=(const LinearForm &rhs)
{ return operator=((const Vector &)rhs); }
/// (DEPRECATED) Return the FE space associated with the LinearForm.
/** @deprecated Use FESpace() instead. */
MFEM_DEPRECATED FiniteElementSpace *GetFES() { return fes; }
/// Read+write access to the associated FiniteElementSpace.
FiniteElementSpace *FESpace() { return fes; }
/// Read-only access to the associated FiniteElementSpace.
const FiniteElementSpace *FESpace() const { return fes; }
/// Adds new Domain Integrator. Assumes ownership of @a lfi.
void AddDomainIntegrator(LinearFormIntegrator *lfi);
/// Adds new Domain Integrator restricted to certain elements specified by
/// the @a elem_attr_marker.
void AddDomainIntegrator(LinearFormIntegrator *lfi,
Array<int> &elem_marker);
/// Adds new Boundary Integrator. Assumes ownership of @a lfi.
void AddBoundaryIntegrator(LinearFormIntegrator *lfi);
/** @brief Add new Boundary Integrator, restricted to the given boundary
attributes.
Assumes ownership of @a lfi. The array @a bdr_attr_marker is stored
internally as a pointer to the given Array<int> object. */
void AddBoundaryIntegrator(LinearFormIntegrator *lfi,
Array<int> &bdr_attr_marker);
/// Adds new Boundary Face Integrator. Assumes ownership of @a lfi.
void AddBdrFaceIntegrator(LinearFormIntegrator *lfi);
/** @brief Add new Boundary Face Integrator, restricted to the given boundary
attributes.
Assumes ownership of @a lfi. The array @a bdr_attr_marker is stored
internally as a pointer to the given Array<int> object. */
void AddBdrFaceIntegrator(LinearFormIntegrator *lfi,
Array<int> &bdr_attr_marker);
/// Adds new Interior Face Integrator. Assumes ownership of @a lfi.
void AddInteriorFaceIntegrator(LinearFormIntegrator *lfi);
/** @brief Access all integrators added with AddDomainIntegrator() which are
not DeltaLFIntegrator%s or they are DeltaLFIntegrator%s with non-delta
coefficients. */
Array<LinearFormIntegrator*> *GetDLFI() { return &domain_integs; }
/** @brief Access all domain markers added with AddDomainIntegrator().
If no marker was specified when the integrator was added, the
corresponding pointer (to Array<int>) will be NULL. */
Array<Array<int>*> *GetDLFI_Marker() { return &domain_integs_marker; }
/** @brief Access all integrators added with AddDomainIntegrator() which are
DeltaLFIntegrator%s with delta coefficients. */
Array<DeltaLFIntegrator*> *GetDLFI_Delta() { return &domain_delta_integs; }
/// Access all integrators added with AddBoundaryIntegrator().
Array<LinearFormIntegrator*> *GetBLFI() { return &boundary_integs; }
/// Access all integrators added with AddBdrFaceIntegrator().
Array<LinearFormIntegrator*> *GetFLFI() { return &boundary_face_integs; }
/// Access all integrators added with AddInteriorFaceIntegrator().
Array<LinearFormIntegrator*> *GetIFLFI() { return &interior_face_integs; }
/** @brief Access all boundary markers added with AddBdrFaceIntegrator().
If no marker was specified when the integrator was added, the
corresponding pointer (to Array<int>) will be NULL. */
Array<Array<int>*> *GetFLFI_Marker() { return &boundary_face_integs_marker; }
/// @brief Which assembly algorithm to use: the new device-compatible fast
/// assembly (true), or the legacy CPU-only algorithm (false).
/** If not set, the default value is false. If used, this method must be
called before assembly. */
void UseFastAssembly(bool use_fa);
/// Assembles the linear form i.e. sums over all domain/bdr integrators.
/** When @ref UseFastAssembly "UseFastAssembly(true)" has been called and the
linear form assembly is compatible with device execution, it will be
executed on the device. */
void Assemble();
/// Return true if assembly on device is supported, false otherwise.
virtual bool SupportsDevice() const;
/// Assembles delta functions of the linear form
void AssembleDelta();
/// Update the object according to the associated FE space #fes.
/** This method should be called when the associated FE space #fes has been
updated, e.g. after its associated Mesh object has been refined.
@note This method does not perform assembly. */
void Update();
/// Associate a new FE space, @a *f, with this object and Update() it. */
void Update(FiniteElementSpace *f) { fes = f; Update(); }
/** @brief Associate a new FE space, @a *f, with this object and use the data
of @a v, offset by @a v_offset, to initialize this object's Vector::data.
@note This method does not perform assembly. */
void Update(FiniteElementSpace *f, Vector &v, int v_offset);
/** @brief Make the LinearForm reference external data on a new
FiniteElementSpace. */
/** This method changes the FiniteElementSpace associated with the LinearForm
@a *f and sets the data of the Vector @a v (plus the @a v_offset) as
external data in the LinearForm.
@note This version of the method will also perform bounds checks when the
build option MFEM_DEBUG is enabled. */
virtual void MakeRef(FiniteElementSpace *f, Vector &v, int v_offset);
/// Return the action of the LinearForm as a linear mapping.
/** Linear forms are linear functionals which map GridFunctions to
the real numbers. This method performs this mapping which in
this case is equivalent as an inner product of the LinearForm
and GridFunction. */
real_t operator()(const GridFunction &gf) const { return (*this)*gf; }
/// Redefine '=' for LinearForm = constant.
LinearForm &operator=(real_t value);
/// Copy the data from @a v.
/** The size of @a v must be equal to the size of the associated
FiniteElementSpace #fes. */
LinearForm &operator=(const Vector &v);
/// Destroys linear form.
~LinearForm();
};
}
#endif