OpenLB 1.7
Loading...
Searching...
No Matches
Public Member Functions | List of all members
olb::SmoothIndicatorCuboid2D< T, S, PARTICLE > Class Template Referencefinal

implements a smooth cuboid in 2D with an _epsilon sector. More...

#include <smoothIndicatorF2D.h>

+ Inheritance diagram for olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >:
+ Collaboration diagram for olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >:

Public Member Functions

 SmoothIndicatorCuboid2D (IndicatorCuboid2D< S > &ind, S epsilon, S theta=0)
 
 SmoothIndicatorCuboid2D (Vector< S, 2 >center, S xLength, S yLength, S epsilon, S theta=0)
 
IndicatorCuboid2D< S > & getIndicator ()
 
Vector< S, 2 > surfaceNormal (const Vector< S, 2 > &pos, const S meshSize) override
 
const S signedDistance (const Vector< S, 2 > input) override
 
bool distance (S &distance, const Vector< S, 2 > &origin, const Vector< S, 2 > &direction, S precision, S pitch) override
 
getArea () override
 
Vector< S, 2 > calcMofiAndMass (const S density) override
 

Detailed Description

template<typename T, typename S, bool PARTICLE = false>
class olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >

implements a smooth cuboid in 2D with an _epsilon sector.

Parameters
massTODO
epsilon
thetaTODO

Definition at line 52 of file smoothIndicatorF2D.h.

Constructor & Destructor Documentation

◆ SmoothIndicatorCuboid2D() [1/2]

template<typename T , typename S , bool PARTICLE>
olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >::SmoothIndicatorCuboid2D ( IndicatorCuboid2D< S > & ind,
S epsilon,
S theta = 0 )

Definition at line 41 of file smoothIndicatorF2D.hh.

42 : SmoothIndicatorCuboid2D<T,S,PARTICLE>(ind.getCenter(), ind.getxLength(), ind.getyLength(), epsilon, theta)
43{ }

◆ SmoothIndicatorCuboid2D() [2/2]

template<typename T , typename S , bool PARTICLE>
olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >::SmoothIndicatorCuboid2D ( Vector< S, 2 > center,
S xLength,
S yLength,
S epsilon,
S theta = 0 )

Definition at line 46 of file smoothIndicatorF2D.hh.

47 : _ind(xLength, yLength, center)
48{
49 this->_epsilon = epsilon;
50 if constexpr (!PARTICLE) {
51 this->_pos = _ind.getCenter();
52 this->_theta = util::degreeToRadian(theta);
53 }
54
55 this->_circumRadius = .5*(util::sqrt(util::pow( xLength, 2)+util::pow( yLength, 2))) + 0.5*epsilon;
56 if constexpr (!PARTICLE) {
57 this->_myMin = {
58 this->_pos[0] - this->getCircumRadius(),
59 this->_pos[1] - this->getCircumRadius()
60 };
61 this->_myMax = {
62 this->_pos[0] + this->getCircumRadius(),
63 this->_pos[1] + this->getCircumRadius()
64 };
65 this->init();
66 }
67}
cpu::simd::Pack< T > sqrt(cpu::simd::Pack< T > value)
Definition pack.h:100
decltype(Vector< decltype(util::sqrt(T())), D >()) degreeToRadian(const Vector< T, D > &angle)
cpu::simd::Pack< T > pow(cpu::simd::Pack< T > base, cpu::simd::Pack< T > exp)
Definition pack.h:112

References olb::util::degreeToRadian(), olb::util::pow(), and olb::util::sqrt().

+ Here is the call graph for this function:

Member Function Documentation

◆ calcMofiAndMass()

template<typename T , typename S , bool PARTICLE>
Vector< S, 2 > olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >::calcMofiAndMass ( const S density)
override

Definition at line 81 of file smoothIndicatorF2D.hh.

82{
83 const T xLength = _ind.getxLength();
84 const T yLength = _ind.getyLength();
85 const T mass = getArea()*density;
86 const T mofi = 1./12.*mass*(xLength*xLength+yLength*yLength);
87 return Vector<S,2>(mofi, mass);
88}

◆ distance()

template<typename T , typename S , bool PARTICLE>
bool olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >::distance ( S & distance,
const Vector< S, 2 > & origin,
const Vector< S, 2 > & direction,
S precision,
S pitch )
override

Definition at line 111 of file smoothIndicatorF2D.hh.

112{
113 Vector<S,2> p;
114 if constexpr(!PARTICLE) {
115 // rotation & translation
116 p = util::executeRotation<S,2,true>(origin, this->_rotMat, this->getPos());
117 }
118 else {
119 p = origin;
120 }
121 return _ind.distance(distance, p, direction, precision, pitch);
122}
bool distance(S &distance, const Vector< S, 2 > &origin, const Vector< S, 2 > &direction, S precision, S pitch) override

◆ getArea()

template<typename T , typename S , bool PARTICLE>
S olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >::getArea ( )
override

Definition at line 75 of file smoothIndicatorF2D.hh.

76{
77 return _ind.getxLength()*_ind.getyLength();
78}

References olb::IndicatorCuboid2D< S >::getxLength().

+ Here is the call graph for this function:

◆ getIndicator()

template<typename T , typename S , bool PARTICLE>
IndicatorCuboid2D< S > & olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >::getIndicator ( )

Definition at line 70 of file smoothIndicatorF2D.hh.

70 {
71 return _ind;
72}

◆ signedDistance()

template<typename T , typename S , bool PARTICLE>
const S olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >::signedDistance ( const Vector< S, 2 > input)
override

Definition at line 97 of file smoothIndicatorF2D.hh.

98{
99 Vector<S,2> p;
100 if constexpr(!PARTICLE) {
101 // rotation & translation
102 p = util::executeRotation<S,2,true>(input, this->_rotMat, this->getPos());
103 }
104 else {
105 p = input;
106 }
107 return _ind.signedDistance(p + _ind.getCenter());
108}

◆ surfaceNormal()

template<typename T , typename S , bool PARTICLE>
Vector< S, 2 > olb::SmoothIndicatorCuboid2D< T, S, PARTICLE >::surfaceNormal ( const Vector< S, 2 > & pos,
const S meshSize )
override

Definition at line 91 of file smoothIndicatorF2D.hh.

92{
93 return _ind.surfaceNormal(pos, meshSize);
94}

The documentation for this class was generated from the following files: