ScalarFunctionCFunction Class Reference

#include <ScalarFunctionCFunction.hpp>

Inheritance diagram for ScalarFunctionCFunction:

Inheritance graph
[legend]
Collaboration diagram for ScalarFunctionCFunction:

Collaboration graph
[legend]

List of all members.

Public Types

enum  Type {
  cfunction, constant, convection, dgfunction,
  femfunction, linearBasis, spectral, unaryMinus,
  modulo, sum, difference, product,
  division, power, min, max,
  gt, ge, lt, le,
  ne, eq, and_, or_,
  xor_, not_, derivate, integrate,
  normal, domainCharacteristic, meshCharacteristic, objectCharacteristic,
  composed, references, FEM0, undefined
}

Public Member Functions

real_t operator() (const TinyVector< 3, real_t > &X) const
bool canBeSimplified () const
 ScalarFunctionCFunction (const std::string &cfunction, ConstReferenceCounting< ScalarFunctionBase > function)
 ScalarFunctionCFunction (const ScalarFunctionCFunction &f)
 ~ScalarFunctionCFunction ()
void setName (const std::string &name)
const std::string & name () const
const Typetype () const
real_t operator() (const real_t &x, const real_t &y, const real_t &z) const
virtual real_t dx (const TinyVector< 3, real_t > &x) const
virtual real_t dy (const TinyVector< 3, real_t > &x) const
virtual real_t dz (const TinyVector< 3, real_t > &x) const

Protected Attributes

const Type __type
std::string __name

Private Member Functions

std::ostream & __put (std::ostream &os) const

Private Attributes

const std::string __cFunctionName
ConstReferenceCounting
< ScalarFunctionBase
__function
real_t(* __cfunction )(real_t x)

Friends

std::ostream & operator<< (std::ostream &os, const ScalarFunctionBase &scalarFunction)


Detailed Description

Definition at line 35 of file ScalarFunctionCFunction.hpp.


Member Enumeration Documentation

enum ScalarFunctionBase::Type [inherited]

Enumerator:
cfunction 
constant 
convection 
dgfunction 
femfunction 
linearBasis 
spectral 
unaryMinus 
modulo 
sum 
difference 
product 
division 
power 
min 
max 
gt 
ge 
lt 
le 
ne 
eq 
and_ 
or_ 
xor_ 
not_ 
derivate 
integrate 
normal 
domainCharacteristic 
meshCharacteristic 
objectCharacteristic 
composed 
references 
FEM0 
undefined 

Definition at line 40 of file ScalarFunctionBase.hpp.

00040             {
00041     cfunction,
00042     constant,
00043     convection,
00044     dgfunction,
00045     femfunction,
00046     linearBasis,
00047     spectral,
00048     unaryMinus,
00049 
00050     modulo,
00051     sum,
00052     difference,
00053     product,
00054     division,
00055     power,
00056 
00057     min,
00058     max,
00059 
00060     gt,
00061     ge,
00062     lt,
00063     le,
00064     ne,
00065     eq,
00066     and_,
00067     or_,
00068     xor_,
00069 
00070     not_,
00071 
00072     derivate,
00073     integrate,
00074 
00075     normal,
00076 
00077     domainCharacteristic,
00078     meshCharacteristic,
00079     objectCharacteristic,
00080 
00081     composed,
00082     references,
00083 
00084     FEM0,
00085 
00086     undefined
00087   };


Constructor & Destructor Documentation

ScalarFunctionCFunction::ScalarFunctionCFunction ( const std::string &  cfunction,
ConstReferenceCounting< ScalarFunctionBase function 
) [inline]

Constructor

Parameters:
cfunction the C-function name
function the argument function

Definition at line 86 of file ScalarFunctionCFunction.hpp.

References __cfunction, __cFunctionName, and ErrorHandler::unexpected.

00088     : ScalarFunctionBase(ScalarFunctionBase::cfunction),
00089       __cFunctionName(cfunction),
00090       __function(function)
00091   {
00092     if (__cFunctionName == "abs") {
00093       __cfunction = &std::abs;
00094       return;
00095     }
00096     if (__cFunctionName == "sin") {
00097       __cfunction = &std::sin;
00098       return;
00099     }
00100     if (__cFunctionName == "cos") {
00101       __cfunction = &std::cos;
00102       return;
00103     }
00104     if (__cFunctionName == "tan") {
00105       __cfunction = &std::tan;
00106       return;
00107     }
00108     if (__cFunctionName == "asin") {
00109       __cfunction = &std::asin;
00110       return;
00111     }
00112     if (__cFunctionName == "acos") {
00113       __cfunction = &std::acos;
00114       return;
00115     }
00116     if (__cFunctionName == "atan") {
00117       __cfunction = &std::atan;
00118       return;
00119     }
00120     if (__cFunctionName == "sqrt") {
00121       __cfunction = &std::sqrt;
00122       return;
00123     }
00124     if (__cFunctionName == "exp") {
00125       __cfunction = &std::exp;
00126       return;
00127     }
00128     if (__cFunctionName == "log") {
00129       __cfunction = &std::log;
00130       return;
00131     }
00132     throw ErrorHandler(__FILE__,__LINE__,
00133                        "not implemented",
00134                        ErrorHandler::unexpected);
00135   }

ScalarFunctionCFunction::ScalarFunctionCFunction ( const ScalarFunctionCFunction f  )  [inline]

Copy constructor

Parameters:
f given C-function

Definition at line 142 of file ScalarFunctionCFunction.hpp.

00143     : ScalarFunctionBase(f),
00144       __cFunctionName(f.__cFunctionName),
00145       __function(f.__function),
00146       __cfunction(f.__cfunction)
00147   {
00148     ;
00149   }

ScalarFunctionCFunction::~ScalarFunctionCFunction (  )  [inline]

Destructor

Definition at line 155 of file ScalarFunctionCFunction.hpp.

00156   {
00157     ;
00158   }


Member Function Documentation

std::ostream& ScalarFunctionCFunction::__put ( std::ostream &  os  )  const [inline, private, virtual]

Writes the function

Parameters:
os output stream
Returns:
os

Implements ScalarFunctionBase.

Definition at line 52 of file ScalarFunctionCFunction.hpp.

References __cFunctionName, and __function.

00053   {
00054     os << __cFunctionName << '(' << *__function << ')';
00055     return os;
00056   }

real_t ScalarFunctionCFunction::operator() ( const TinyVector< 3, real_t > &  X  )  const [inline, virtual]

Evaluates the C-function at the $ X $ position

Returns:
(C-function)(__function(X))

Implements ScalarFunctionBase.

Definition at line 64 of file ScalarFunctionCFunction.hpp.

References __cfunction, and __function.

00065   {
00066     const ScalarFunctionBase& function = *__function;
00067     return __cfunction(function(X));
00068   }

bool ScalarFunctionCFunction::canBeSimplified (  )  const [inline, virtual]

Checks if the function can be simplified

Returns:
false

Implements ScalarFunctionBase.

Definition at line 75 of file ScalarFunctionCFunction.hpp.

00076   {
00077     return false;
00078   }

void ScalarFunctionBase::setName ( const std::string &  name  )  [inline, inherited]

Sets the name of the function

Parameters:
name name to give to this function

Definition at line 109 of file ScalarFunctionBase.hpp.

References ScalarFunctionBase::__name.

Referenced by FunctionExpressionVariable::execute().

00110   {
00111     __name = name;
00112   }

const std::string& ScalarFunctionBase::name (  )  const [inline, inherited]

Gets the name of the function

Returns:
__name

Definition at line 119 of file ScalarFunctionBase.hpp.

References ScalarFunctionBase::__name.

00120   {
00121     return __name;
00122   }

const Type& ScalarFunctionBase::type (  )  const [inline, inherited]

real_t ScalarFunctionBase::operator() ( const real_t &  x,
const real_t &  y,
const real_t &  z 
) const [inline, inherited]

Evaluates the function at point $ (x,y,z) $

Parameters:
x $ x $
y $ y $
z $ z $
Returns:
$ f(x,y,z) $

Definition at line 162 of file ScalarFunctionBase.hpp.

00165   {
00166     return this->operator()(TinyVector<3, real_t>(x,y,z));    
00167   }

virtual real_t ScalarFunctionBase::dx ( const TinyVector< 3, real_t > &  x  )  const [inline, virtual, inherited]

Evaluates first derivative of the function

Parameters:
x position of evaluation
Returns:
$ \partial_x f $ at position $ x $

Definition at line 185 of file ScalarFunctionBase.hpp.

References ErrorHandler::normal.

00186   {
00187     std::stringstream errorMsg;
00188 
00189     errorMsg << "cannot compute derivative of non discrete functions :-(\n";
00190     errorMsg << "the function " << (*this) << " is not of that kind"
00191              << std::ends;
00192 
00193     throw ErrorHandler(__FILE__,__LINE__,
00194                        errorMsg.str(),
00195                        ErrorHandler::normal);
00196     return 0;
00197   }

virtual real_t ScalarFunctionBase::dy ( const TinyVector< 3, real_t > &  x  )  const [inline, virtual, inherited]

Evaluates second derivative of the function

Parameters:
x position of evaluation
Returns:
$ \partial_y f $ at position $ x $

Definition at line 206 of file ScalarFunctionBase.hpp.

References ErrorHandler::normal.

00207   {
00208     std::stringstream errorMsg;
00209 
00210     errorMsg << "cannot compute derivative of non discrete functions :-(\n";
00211     errorMsg << "the function " << (*this) << " is not of that kind"
00212              << std::ends;
00213 
00214     throw ErrorHandler(__FILE__,__LINE__,
00215                        errorMsg.str(),
00216                        ErrorHandler::normal);
00217     return 0;
00218   }

virtual real_t ScalarFunctionBase::dz ( const TinyVector< 3, real_t > &  x  )  const [inline, virtual, inherited]

Evaluates third derivative of the function

Parameters:
x position of evaluation
Returns:
$ \partial_z f $ at position $ x $

Definition at line 227 of file ScalarFunctionBase.hpp.

References ErrorHandler::normal.

00228   {
00229     std::stringstream errorMsg;
00230 
00231     errorMsg << "cannot compute derivative of non discrete functions :-(\n";
00232     errorMsg << "the function " << (*this) << " is not of that kind"
00233              << std::ends;
00234 
00235     throw ErrorHandler(__FILE__,__LINE__,
00236                        errorMsg.str(),
00237                        ErrorHandler::normal);
00238     return 0;
00239   }


Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const ScalarFunctionBase scalarFunction 
) [friend, inherited]

Writes the function scalarFunction to the stream os

Parameters:
os the output stream
scalarFunction the function to write
Returns:
os

Definition at line 142 of file ScalarFunctionBase.hpp.

00144   {
00145     if (scalarFunction.__name.size()>0) {
00146       os << scalarFunction.__name;
00147       return os;
00148     } else {
00149       return scalarFunction.__put(os);
00150     }
00151   }


Member Data Documentation

const std::string ScalarFunctionCFunction::__cFunctionName [private]

name of a C-function

Definition at line 39 of file ScalarFunctionCFunction.hpp.

Referenced by __put(), and ScalarFunctionCFunction().

argument to the C-function

Definition at line 41 of file ScalarFunctionCFunction.hpp.

Referenced by __put(), and operator()().

real_t(* ScalarFunctionCFunction::__cfunction)(real_t x) [private]

function-pointer to the C-function

Referenced by operator()(), and ScalarFunctionCFunction().

const Type ScalarFunctionBase::__type [protected, inherited]

type of the function

Definition at line 90 of file ScalarFunctionBase.hpp.

Referenced by ScalarFunctionBase::type().

std::string ScalarFunctionBase::__name [protected, inherited]

name of the function

Definition at line 92 of file ScalarFunctionBase.hpp.

Referenced by ScalarFunctionBase::name(), and ScalarFunctionBase::setName().


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

Generated on Wed Nov 19 00:12:55 2008 for FreeFEM3D (aka ff3d) by  doxygen 1.5.6