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

#include <analyticalF.h>

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

Public Member Functions

 Spotlight (Vector< T, 3 > position, Vector< T, 3 > direction, T falloff)
 
bool operator() (T output[1], const S x[3]) override
 
- Public Member Functions inherited from olb::AnalyticalF< D, T, S >
AnalyticalF< D, T, S > & operator- (AnalyticalF< D, T, S > &rhs)
 
AnalyticalF< D, T, S > & operator+ (AnalyticalF< D, T, S > &rhs)
 
AnalyticalF< D, T, S > & operator* (AnalyticalF< D, T, S > &rhs)
 
AnalyticalF< D, T, S > & operator/ (AnalyticalF< D, T, S > &rhs)
 
- Public Member Functions inherited from olb::GenericF< T, S >
virtual ~GenericF ()=default
 
int getSourceDim () const
 read only access to member variable _m
 
int getTargetDim () const
 read only access to member variable _n
 
std::string & getName ()
 read and write access to name
 
std::string const & getName () const
 read only access to name
 
virtual bool operator() (T output[], const S input[])=0
 has to be implemented for 'every' derived class
 
bool operator() (T output[])
 wrapper that call the pure virtual operator() (T output[], const S input[]) from above
 
bool operator() (T output[], S input0)
 
bool operator() (T output[], S input0, S input1)
 
bool operator() (T output[], S input0, S input1, S input2)
 
bool operator() (T output[], S input0, S input1, S input2, S input3)
 

Additional Inherited Members

- Public Types inherited from olb::AnalyticalF< D, T, S >
using identity_functor_type = AnalyticalIdentity<D,T,S>
 
- Public Types inherited from olb::GenericF< T, S >
using targetType = T
 
using sourceType = S
 
- Public Attributes inherited from olb::GenericF< T, S >
std::shared_ptr< GenericF< T, S > > _ptrCalcC
 memory management, frees resouces (calcClass)
 
- Static Public Attributes inherited from olb::AnalyticalF< D, T, S >
static constexpr unsigned dim = D
 
- Protected Member Functions inherited from olb::AnalyticalF< D, T, S >
 AnalyticalF (int n)
 
- Protected Member Functions inherited from olb::GenericF< T, S >
 GenericF (int targetDim, int sourceDim)
 

Detailed Description

template<typename T, typename S>
class olb::Spotlight< T, S >
Parameters
_positionof light source
_orientationdirection of light source (normalized)
_falloffis power of the cosine

Definition at line 584 of file analyticalF.h.

Constructor & Destructor Documentation

◆ Spotlight()

template<typename T , typename S >
olb::Spotlight< T, S >::Spotlight ( Vector< T, 3 > position,
Vector< T, 3 > direction,
T falloff )

Definition at line 675 of file analyticalF.hh.

676 : AnalyticalF3D<T,S>(1), _position(position), _orientation(direction[0]/norm(direction), direction[1]/norm(direction), direction[2]/norm(direction)), _falloff(falloff)
677{
678 this->getName() = "Spotlight";
679}
std::string & getName()
read and write access to name
Definition genericF.hh:51
constexpr T norm(const ScalarVector< T, D, IMPL > &a)
Euclidean vector norm.

References olb::GenericF< T, S >::getName().

+ Here is the call graph for this function:

Member Function Documentation

◆ operator()()

template<typename T , typename S >
bool olb::Spotlight< T, S >::operator() ( T output[1],
const S x[3] )
override

Definition at line 682 of file analyticalF.hh.

683{
684 Vector<T,3> w(x[0] -_position[0], x[1] -_position[1], x[2] -_position[2]);
685 w = normalize(w);
686 T cosPhi = w*_orientation;
687 output[0] = 1. / (norm(w)*norm(w)) * util::pow(util::max(0., cosPhi), _falloff);
688 return true;
689}
cpu::simd::Pack< T > max(cpu::simd::Pack< T > rhs, cpu::simd::Pack< T > lhs)
Definition pack.h:130
cpu::simd::Pack< T > pow(cpu::simd::Pack< T > base, cpu::simd::Pack< T > exp)
Definition pack.h:112
constexpr Vector< T, D > normalize(const ScalarVector< T, D, IMPL > &a, T scale=T{1})
Definition vector.h:245

References olb::util::max(), olb::norm(), olb::normalize(), and olb::util::pow().

+ Here is the call graph for this function:

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