/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Header: FGFunction.h Author: Jon Berndt Date started: August 25 2004 ------------- Copyright (C) 2001 Jon S. Berndt (jon@jsbsim.org) ------------- This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Further information about the GNU Lesser General Public License can also be found on the world wide web at http://www.gnu.org. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SENTRY %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ #ifndef FGFUNCTION_H #define FGFUNCTION_H /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% INCLUDES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ #include #include #include "FGParameter.h" /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DEFINITIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ #define ID_FUNCTION "$Id: FGFunction.h,v 1.24 2011/08/06 13:10:00 jberndt Exp $" /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% FORWARD DECLARATIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ namespace JSBSim { class FGPropertyManager; class Element; /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CLASS DOCUMENTATION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ /** Represents a mathematical function. The FGFunction class is a powerful and versatile resource that allows algebraic functions to be defined in a JSBSim configuration file. It is similar in concept to MathML (Mathematical Markup Language, www.w3.org/Math/), but simpler and more terse. A function definition consists of an operation, a value, a table, or a property (which evaluates to a value). The currently supported operations are: - sum (takes n args) - difference (takes n args) - product (takes n args) - quotient (takes 2 args) - pow (takes 2 args) - exp (takes 2 args) - log2 (takes 1 arg) - ln (takes 1 arg) - log10 (takes 1 arg) - abs (takes n args) - sin (takes 1 arg) - cos (takes 1 arg) - tan (takes 1 arg) - asin (takes 1 arg) - acos (takes 1 arg) - atan (takes 1 arg) - atan2 (takes 2 args) - min (takes n args) - max (takes n args) - avg (takes n args) - fraction - mod - lt (less than, takes 2 args) - le (less equal, takes 2 args) - gt (greater than, takes 2 args) - ge (greater than, takes 2 args) - eq (equal, takes 2 args) - nq (not equal, takes 2 args) - and (takes n args) - or (takes n args) - not (takes 1 args) - if-then (takes 2-3 args) - switch (takes 2 or more args) - random (Gaussian random number) - integer An operation is defined in the configuration file as in the following example: @code 3.14159 velocities/qbar 0.125 metrics/wingarea @endcode A full function definition, such as is used in the aerodynamics section of a configuration file includes the function element, and other elements. It should be noted that there can be only one non-optional (non-documentation) element - that is, one operation element - in the top-level function definition. Multiple value and/or property elements cannot be immediate child members of the function element. Almost always, the first operation within the function element will be a product or sum. For example: @code Roll moment due to yaw rate aero/qbar-area metrics/bw-ft aero/bi2vel velocities/r-aero-rad_sec aero/alpha-rad 0.000 0.08 0.094 0.19
@endcode The "lowest level" in a function is always a value or a property, which cannot itself contain another element. As shown, operations can contain values, properties, tables, or other operations. In the first above example, the sum element contains all three. What is evaluated is written algebraically as: @code 3.14159 + qbar + (0.125 * wingarea) @endcode Some operations can take only a single argument. That argument, however, can be an operation (such as sum) which can contain other items. The point to keep in mind is that it evaluates to a single value - which is just what the trigonometric functions require (except atan2, which takes two arguments). @author Jon Berndt */ /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DECLARATION: FGFunction %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ // Todo: Does this class need a copy constructor, like FGLGear? class FGFunction : public FGParameter { public: /** Constructor. When this constructor is called, the XML element pointed to in memory by the element argument is traversed. If other FGParameter-derived objects (values, functions, properties, or tables) are encountered, this instance of the FGFunction object will store a pointer to the found object and pass the relevant Element pointer to the constructor for the new object. In other words, each FGFunction object maintains a list of "child" FGParameter-derived objects which in turn may each contain its own list, and so on. At runtime, each object evaluates its child parameters, which each may have its own child parameters to evaluate. @param PropertyManager a pointer to the property manager instance. @param element a pointer to the Element object containing the function definition. @param prefix an optional prefix to prepend to the name given to the property that represents this function (if given). */ FGFunction(FGPropertyManager* PropertyManager, Element* element, const std::string& prefix=""); /// Destructor. virtual ~FGFunction(); /** Retrieves the value of the function object. @return the total value of the function. */ double GetValue(void) const; /** The value that the function evaluates to, as a string. @return the value of the function as a string. */ std::string GetValueAsString(void) const; /// Retrieves the name of the function. std::string GetName(void) const {return Name;} /** Specifies whether to cache the value of the function, so it is calculated only once per frame. If shouldCache is true, then the value of the function is calculated, and a flag is set so further calculations done this frame will use the cached value. In order to turn off caching, cacheValue must be called with a false argument. @param shouldCache specifies whether the function should cache the computed value. */ void cacheValue(bool shouldCache); private: std::vector Parameters; FGPropertyManager* const PropertyManager; bool cached; double invlog2val; std::string Prefix; static const std::string description_string; static const std::string property_string; static const std::string value_string; static const std::string table_string; static const std::string p_string; static const std::string v_string; static const std::string t_string; static const std::string function_string; static const std::string sum_string; static const std::string difference_string; static const std::string product_string; static const std::string quotient_string; static const std::string pow_string; static const std::string exp_string; static const std::string log2_string; static const std::string ln_string; static const std::string log10_string; static const std::string abs_string; static const std::string sign_string; static const std::string sin_string; static const std::string cos_string; static const std::string tan_string; static const std::string asin_string; static const std::string acos_string; static const std::string atan_string; static const std::string atan2_string; static const std::string min_string; static const std::string max_string; static const std::string avg_string; static const std::string fraction_string; static const std::string mod_string; static const std::string random_string; static const std::string integer_string; static const std::string rotation_alpha_local_string; static const std::string rotation_beta_local_string; static const std::string rotation_gamma_local_string; static const std::string rotation_bf_to_wf_string; static const std::string rotation_wf_to_bf_string; static const std::string lessthan_string; static const std::string lessequal_string; static const std::string greatthan_string; static const std::string greatequal_string; static const std::string equal_string; static const std::string notequal_string; static const std::string and_string; static const std::string or_string; static const std::string not_string; static const std::string ifthen_string; static const std::string switch_string; double cachedValue; enum functionType {eTopLevel=0, eProduct, eDifference, eSum, eQuotient, ePow, eExp, eAbs, eSign, eSin, eCos, eTan, eASin, eACos, eATan, eATan2, eMin, eMax, eAvg, eFrac, eInteger, eMod, eRandom, eLog2, eLn, eLog10, eLT, eLE, eGE, eGT, eEQ, eNE, eAND, eOR, eNOT, eIfThen, eSwitch, eRotation_alpha_local, eRotation_beta_local, eRotation_gamma_local, eRotation_bf_to_wf, eRotation_wf_to_bf} Type; std::string Name; unsigned int GetBinary(double) const; void bind(void); void Debug(int from); }; } // namespace JSBSim #endif