Files
phasicFlow/src/PostProcessData/region/regionPoints/regionPoints.cpp
Hamidreza ab7f700ead first commit for post-processing
- the whole structure is ready.
- next step whould be execute methods and then write methods
- post-processing after simulation is not started yet.
2025-04-09 19:47:57 +03:30

29 lines
505 B
C++

#include "regionPoints.hpp"
#include "fieldsDataBase.hpp"
#include "Time.hpp"
pFlow::regionPoints::regionPoints
(
const dictionary &dict,
fieldsDataBase &fieldsDataBase
)
:
fieldsDataBase_(fieldsDataBase)
{}
const pFlow::Time& pFlow::regionPoints::time() const
{
return fieldsDataBase_.time();
}
const pFlow::fieldsDataBase & pFlow::regionPoints::database() const
{
return fieldsDataBase_;
}
pFlow::fieldsDataBase& pFlow::regionPoints::database()
{
return fieldsDataBase_;
}