v0.14.0
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | List of all members
MoFEM::AddEssentialToRhsPipelineImpl< OpEssentialRhsImpl< DisplacementCubitBcData, BASE_DIM, FIELD_DIM, A, I, OpBase >, A, I, OpBase > Struct Template Reference

#include <src/boundary_conditions/EssentialDisplacementCubitBcData.hpp>

Public Member Functions

 AddEssentialToRhsPipelineImpl ()=delete
 

Static Public Member Functions

static MoFEMErrorCode add (MoFEM::Interface &m_field, boost::ptr_deque< ForcesAndSourcesCore::UserDataOperator > &pipeline, const std::string problem_name, std::string field_name, boost::shared_ptr< MatrixDouble > field_mat_ptr, std::vector< boost::shared_ptr< ScalingMethod > > smv)
 

Detailed Description

template<int BASE_DIM, int FIELD_DIM, AssemblyType A, IntegrationType I, typename OpBase>
struct MoFEM::AddEssentialToRhsPipelineImpl< OpEssentialRhsImpl< DisplacementCubitBcData, BASE_DIM, FIELD_DIM, A, I, OpBase >, A, I, OpBase >

Definition at line 279 of file EssentialDisplacementCubitBcData.hpp.

Constructor & Destructor Documentation

◆ AddEssentialToRhsPipelineImpl()

template<int BASE_DIM, int FIELD_DIM, AssemblyType A, IntegrationType I, typename OpBase >
MoFEM::AddEssentialToRhsPipelineImpl< OpEssentialRhsImpl< DisplacementCubitBcData, BASE_DIM, FIELD_DIM, A, I, OpBase >, A, I, OpBase >::AddEssentialToRhsPipelineImpl ( )
delete

Member Function Documentation

◆ add()

template<int BASE_DIM, int FIELD_DIM, AssemblyType A, IntegrationType I, typename OpBase >
static MoFEMErrorCode MoFEM::AddEssentialToRhsPipelineImpl< OpEssentialRhsImpl< DisplacementCubitBcData, BASE_DIM, FIELD_DIM, A, I, OpBase >, A, I, OpBase >::add ( MoFEM::Interface m_field,
boost::ptr_deque< ForcesAndSourcesCore::UserDataOperator > &  pipeline,
const std::string  problem_name,
std::string  field_name,
boost::shared_ptr< MatrixDouble field_mat_ptr,
std::vector< boost::shared_ptr< ScalingMethod > >  smv 
)
inlinestatic

Definition at line 289 of file EssentialDisplacementCubitBcData.hpp.

297 {
299
300 using OP =
301 typename EssentialBC<OpBase>::template Assembly<A>::template LinearForm<
302 I>::template OpEssentialRhs<DisplacementCubitBcData, BASE_DIM,
303 FIELD_DIM>;
304 using OpInternal = typename FormsIntegrators<OpBase>::template Assembly<
305 A>::template LinearForm<I>::template OpBaseTimesVector<BASE_DIM,
306 FIELD_DIM, 1>;
307
308 auto add_op = [&](auto &bcs) {
310 for (auto &m : bcs) {
311 if (auto bc = m.second->dispBcPtr) {
312 auto &bc_id = m.first;
313 auto regex_str =
314 (boost::format("%s_%s_(.*)") % problem_name % field_name).str();
315 if (std::regex_match(bc_id, std::regex(regex_str))) {
316 MOFEM_TAG_AND_LOG("SELF", Sev::noisy, "OpEssentialRhs") << *bc;
317 pipeline.push_back(
318 new OpSetBc(field_name, false, m.second->getBcMarkersPtr()));
319 pipeline.push_back(
320 new OP(field_name, bc, m.second->getBcEntsPtr(), smv));
321 pipeline.push_back(new OpInternal(
322 field_name, field_mat_ptr,
323 [](double, double, double) constexpr { return 1.; },
324 m.second->getBcEntsPtr()));
325 pipeline.push_back(new OpUnSetBc(field_name));
326 }
327 }
328 }
329 MOFEM_LOG_CHANNEL("SELF");
331 };
332
333 CHKERR add_op(m_field.getInterface<BcManager>()->getBcMapByBlockName());
334
336 }
#define MOFEM_TAG_AND_LOG(channel, severity, tag)
Tag and log in channel.
Definition: LogManager.hpp:362
constexpr int FIELD_DIM
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:447
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:346
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:416
#define CHKERR
Inline error check.
Definition: definitions.h:535
#define MoFEMFunctionBeginHot
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:440
constexpr int BASE_DIM
FTensor::Index< 'm', SPACE_DIM > m
#define MOFEM_LOG_CHANNEL(channel)
Set and reset channel.
Definition: LogManager.hpp:284
constexpr IntegrationType I
constexpr AssemblyType A
constexpr auto field_name
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface refernce to pointer of interface.

The documentation for this struct was generated from the following file: