Merge pull request #211 from PhasicFlow/postProcessing

pFlow -> pFlow::postprocessData
This commit is contained in:
PhasicFlow 2025-04-24 23:40:34 +03:30 committed by GitHub
commit 544624d579
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 14 additions and 4 deletions

View File

@ -168,6 +168,6 @@ public:
}; };
} } // namespace pFlow::postprocessData
#endif //__PostprocessOperationAvMassVelocity_hpp__ #endif //__PostprocessOperationAvMassVelocity_hpp__

View File

@ -28,7 +28,7 @@ Licence:
#include "span.hpp" #include "span.hpp"
#include "numericConstants.hpp" #include "numericConstants.hpp"
namespace pFlow namespace pFlow::postprocessData
{ {
class GaussianDistribution class GaussianDistribution

View File

@ -32,6 +32,9 @@ namespace pFlow
class dictionary; class dictionary;
namespace postprocessData
{
class arithmetic class arithmetic
{ {
private: private:
@ -86,6 +89,8 @@ public:
}; };
} } // namespace postprocessData
} // namespace pFlow
#endif //__arithmetic_hpp__ #endif //__arithmetic_hpp__

View File

@ -32,6 +32,9 @@ namespace pFlow
class dictionary; class dictionary;
namespace postprocessData
{
class uniformDistribution class uniformDistribution
{ {
private: private:
@ -86,6 +89,8 @@ public:
}; };
} } // namespace postprocessData
} // namespace pFlow
#endif //__uniformDistribution_hpp__ #endif //__uniformDistribution_hpp__