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_Component/FITKFlowOFIOHDF5/FITKFlowOFHDF5Reader.h

102 lines
2.6 KiB
C

/**********************************************************************
* @file FITKFlowOFHDF5Reader.h
* @brief HDF5 线
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-09-07
*********************************************************************/
#ifndef __FITKFLOWOFHDF5READER_H__
#define __FITKFLOWOFHDF5READER_H__
#include "FITKFlowOFIOHDF5API.h"
#include "FITK_Kernel/FITKCore/FITKCoreMacros.h"
#include "FITK_Interface/FITKInterfaceIO/FITKAbstractHDF5Reader.h"
namespace IO
{
/**
* @brief HDF5
* @author fulipeng (fulipengqd@yeah.net)
* @date 2024-05-30
*/
class FITKFLOWOFIOHDF5API FITKFlowOFHDF5Reader : public FITKAbstractHDF5Reader
{
public:
/**
* @brief Construct a new FITKAbaqusHDF5Reader object
* @author fulipeng (fulipengqd@yeah.net)
* @date 2024-05-30
*/
explicit FITKFlowOFHDF5Reader() = default;
virtual ~FITKFlowOFHDF5Reader() = default;
/**
* @brief run
* @author fulipeng (fulipengqd@yeah.net)
* @date 2024-05-30
*/
void run() override;
/**
* @brief
* @param Progress
* @author fulipeng (fulipengqd@yeah.net)
* @date 2024-04-10
*/
void sendCalculateProgress(int Progress);
/**
* @brief
* @param[i] level 1 normal 2 warning 3error
* @param[i] str
* @author fulipeng (fulipengqd@yeah.net)
* @date 2024-05-30
*/
void consoleMessage(int level, const QString& str) override;
protected:
/**
* @brief
* @return true false
* @author fulipeng (fulipengqd@yeah.net)
* @date 2024-05-30
*/
bool readVersion();
/**
* @brief
* @return bool
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-09-09
*/
bool readDataGeometry();
bool readGeoComponent();
bool readGeometryRefine();
bool readGeoMeshSize();
bool readMaterialPoint();
bool readRegionMesh();
bool readMesh();
bool readPhysicsData();
/**
* @brief
* @return void
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-09-11
*/
void resetDataObject();
private:
};
}
#endif