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
FGParameterValue Class Reference

Detailed Description

Represents a either a real value or a property value.

Author
Bertrand Coconnier

Definition at line 62 of file FGParameterValue.h.

#include <FGParameterValue.h>

+ Inheritance diagram for FGParameterValue:
+ Collaboration diagram for FGParameterValue:

Public Member Functions

 FGParameterValue (const std::string &value, std::shared_ptr< FGPropertyManager > pm, Element *el)
 
 FGParameterValue (Element *el, std::shared_ptr< FGPropertyManager > pm)
 
std::string GetName (void) const override
 
double GetValue (void) const override
 
bool IsConstant (void) const override
 
bool IsLateBound (void) const
 
- Public Member Functions inherited from FGParameter
double getDoubleValue (void) const
 

Constructor & Destructor Documentation

◆ FGParameterValue() [1/2]

FGParameterValue ( Element el,
std::shared_ptr< FGPropertyManager pm 
)
inline

Definition at line 65 of file FGParameterValue.h.

66 : FGParameterValue(el->GetDataLine(), pm, el)
67 {
68 std::string value = el->GetDataLine();
69
70 if (el->GetNumDataLines() != 1 || value.empty()) {
71 std::cerr << el->ReadFrom()
72 << "The element <" << el->GetName()
73 << "> must either contain a value number or a property name."
74 << std::endl;
75 throw BaseException("FGParameterValue: Illegal argument defining: " + el->GetName());
76 }
77 }

◆ FGParameterValue() [2/2]

FGParameterValue ( const std::string &  value,
std::shared_ptr< FGPropertyManager pm,
Element el 
)
inline

Definition at line 79 of file FGParameterValue.h.

80 {
81 try {
82 param = new FGRealValue(atof_locale_c(value.c_str()));
83 } catch (InvalidNumber&) {
84 // "value" must be a property if execution passes to here.
85 param = new FGPropertyValue(value, pm, el);
86 }
87 }

Member Function Documentation

◆ GetName()

std::string GetName ( void  ) const
inlineoverridevirtual

Implements FGParameter.

Definition at line 92 of file FGParameterValue.h.

92 {
93 FGPropertyValue* v = dynamic_cast<FGPropertyValue*>(param.ptr());
94 if (v)
95 return v->GetNameWithSign();
96 else
97 return param->GetName();
98 }

◆ GetValue()

double GetValue ( void  ) const
inlineoverridevirtual

Implements FGParameter.

Definition at line 89 of file FGParameterValue.h.

89{ return param->GetValue(); }

◆ IsConstant()

bool IsConstant ( void  ) const
inlineoverridevirtual

Reimplemented from FGParameter.

Definition at line 90 of file FGParameterValue.h.

90{ return param->IsConstant(); }

◆ IsLateBound()

bool IsLateBound ( void  ) const
inline

Definition at line 100 of file FGParameterValue.h.

100 {
101 FGPropertyValue* v = dynamic_cast<FGPropertyValue*>(param.ptr());
102 return v != nullptr && v->IsLateBound();
103 }

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