You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppFlow/FITK_Interface/FITKInterfaceFlowOF/FITKOFOperatingConditions.h

60 lines
1.7 KiB
C

/**********************************************************************
* @file FITKOFOperatingConditions.h
* @brief
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-09-04
*********************************************************************/
#ifndef _FITK_OF_OPERATINGCONDITIONS__H___
#define _FITK_OF_OPERATINGCONDITIONS__H___
#include "FITKInterfaceFlowOFAPI.h"
#include "FITK_Kernel/FITKCore/FITKAbstractNDataObject.h"
namespace Core
{
class FITKParameter;
}
namespace Interface
{
class FITKInterfaceFlowOFAPI FITKOFOperatingConditions : public Core::FITKAbstractNDataObject
{
Q_OBJECT
FITKCLASS(Interface, FITKOFOperatingConditions);
public:
explicit FITKOFOperatingConditions();
virtual ~FITKOFOperatingConditions();
/**
* @brief
* @return Core::FITKParameter *
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-09-04
*/
Core::FITKParameter* getGravitationalAcceleration();
Core::FITKParameter* getReferencePressure();
void initGravitationalAcceleration();
void initReferencePressure();
private:
/**
* @brief
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-09-04
*/
Core::FITKParameter* _gravitationalAcceleration{};
/**
* @brief
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-09-04
*/
Core::FITKParameter* _referencePressure{};
};
}
#endif