www.mooseframework.org
LevelSetBiMaterialReal.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 
12 #include "LevelSetBiMaterialBase.h"
13 
14 // Forward Declarations
16 
17 template <>
18 InputParameters validParams<LevelSetBiMaterialReal>();
19 
26 {
27 public:
28  LevelSetBiMaterialReal(const InputParameters & parameters);
29 
30 protected:
33 
35  std::vector<const MaterialProperty<Real> *> _bimaterial_material_prop;
36 
38  MaterialProperty<Real> & _material_prop;
39 };
40 
LevelSetBiMaterialReal::assignQpPropertiesForLevelSetNegative
virtual void assignQpPropertiesForLevelSetNegative()
assign the material properties for the negative level set region.
Definition: LevelSetBiMaterialReal.C:43
LevelSetBiMaterialReal::assignQpPropertiesForLevelSetPositive
virtual void assignQpPropertiesForLevelSetPositive()
assign the material properties for the positive level set region.
Definition: LevelSetBiMaterialReal.C:37
LevelSetBiMaterialReal::_material_prop
MaterialProperty< Real > & _material_prop
Global Real material property (switch bi-material diffusion coefficient based on level set values)
Definition: LevelSetBiMaterialReal.h:38
validParams< LevelSetBiMaterialReal >
InputParameters validParams< LevelSetBiMaterialReal >()
Definition: LevelSetBiMaterialReal.C:16
LevelSetBiMaterialBase.h
LevelSetBiMaterialReal::_bimaterial_material_prop
std::vector< const MaterialProperty< Real > * > _bimaterial_material_prop
Real Material properties for the two separate materials in the bi-material system.
Definition: LevelSetBiMaterialReal.h:35
LevelSetBiMaterialReal::LevelSetBiMaterialReal
LevelSetBiMaterialReal(const InputParameters &parameters)
Definition: LevelSetBiMaterialReal.C:25
LevelSetBiMaterialBase
Base class for switching between materials in a bi-material system where the interface is defined by ...
Definition: LevelSetBiMaterialBase.h:25
LevelSetBiMaterialReal
Compute a Real material property for bi-materials problem (consisting of two different materials) def...
Definition: LevelSetBiMaterialReal.h:25