https://mooseframework.inl.gov
ThresholdElementSubdomainModifier.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
13 #include "MooseEnum.h"
14 
16 {
17 public:
19 
21 
22 protected:
23  virtual SubdomainID computeSubdomainID() override;
24 
26  virtual Real computeValue() = 0;
27 
28 private:
31 
33  const enum class CriterionType { Below, Equal, Above } _criterion_type;
34 
38 };
const SubdomainID _subdomain_id
Target subdomain ID.
virtual SubdomainID computeSubdomainID() override
Compute the subdomain ID of the current element.
enum ThresholdElementSubdomainModifier::CriterionType _criterion_type
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
ThresholdElementSubdomainModifier(const InputParameters &parameters)
virtual Real computeValue()=0
Compute the value used in the criterion.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const Real _threshold
Threshold to modify the element subdomain ID.
const InputParameters & parameters() const
Get the parameters of the object.