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__

View File

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

View File

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

View File

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