JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGFunction.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3Header: FGFunction.h
4Author: Jon Berndt
5Date started: August 25 2004
6
7 ------------- Copyright (C) 2001 Jon S. Berndt (jon@jsbsim.org) -------------
8
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the Free
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later version.
13
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
17 details.
18
19 You should have received a copy of the GNU Lesser General Public License along
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
27SENTRY
28%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
29
30#ifndef FGFUNCTION_H
31#define FGFUNCTION_H
32
33/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34INCLUDES
35%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
36
37#include <memory>
38
39#include "FGParameter.h"
40#include "input_output/FGPropertyManager.h"
41
42/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43FORWARD DECLARATIONS
44%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
45
46namespace JSBSim {
47
48class Element;
49class FGPropertyValue;
50class FGFDMExec;
51
52/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
53CLASS DOCUMENTATION
54%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
55
758/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
759DECLARATION: FGFunction
760%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
761
762// Todo: Does this class need a copy constructor, like FGLGear?
763
764class FGFunction : public FGParameter, public FGJSBBase
765{
766public:
769 : cached(false), cachedValue(-HUGE_VAL), pNode(nullptr), pCopyTo(nullptr) {}
770
771 explicit FGFunction(std::shared_ptr<FGPropertyManager> pm)
772 : FGFunction()
773 { PropertyManager = pm; }
774
792 FGFunction(FGFDMExec* fdmex, Element* element, const std::string& prefix="",
793 FGPropertyValue* var=0L);
794
798 ~FGFunction(void) override;
799
802 double GetValue(void) const override;
803
806 std::string GetValueAsString(void) const;
807
809 std::string GetName(void) const override {return Name;}
810
813 bool IsConstant(void) const override;
814
823 void cacheValue(bool shouldCache);
824
825 enum class OddEven {Either, Odd, Even};
826
827protected:
828 bool cached;
829 double cachedValue;
830 std::vector <FGParameter_ptr> Parameters;
831 std::shared_ptr<FGPropertyManager> PropertyManager;
832 FGPropertyNode_ptr pNode;
833
834 void Load(Element* element, FGPropertyValue* var, FGFDMExec* fdmex,
835 const std::string& prefix="");
836 virtual void bind(Element*, const std::string&);
837 void CheckMinArguments(Element* el, unsigned int _min);
838 void CheckMaxArguments(Element* el, unsigned int _max);
839 void CheckOddOrEvenArguments(Element* el, OddEven odd_even);
840 std::string CreateOutputNode(Element* el, const std::string& Prefix);
841
842private:
843 std::string Name;
844 FGPropertyNode_ptr pCopyTo; // Property node for CopyTo property string
845
846 void Debug(int from);
847};
848
849} // namespace JSBSim
850
851#endif
Represents a mathematical function.
Definition FGFunction.h:765
FGFunction()
Default constructor.
Definition FGFunction.h:768
double GetValue(void) const override
Retrieves the value of the function object.
bool IsConstant(void) const override
Does the function always return the same result (i.e.
void cacheValue(bool shouldCache)
Specifies whether to cache the value of the function, so it is calculated only once per frame.
std::string GetName(void) const override
Retrieves the name of the function.
Definition FGFunction.h:809
std::string GetValueAsString(void) const
The value that the function evaluates to, as a string.
~FGFunction(void) override
Destructor Make sure the function is untied before destruction.
JSBSim Base class.
Definition FGJSBBase.h:117
Represents various types of parameters.
Definition FGParameter.h:61