mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
45 lines
651 B
C++
45 lines
651 B
C++
![]() |
|
||
|
#ifndef __boundaryIntegrationList_hpp__
|
||
|
#define __boundaryIntegrationList_hpp__
|
||
|
|
||
|
|
||
|
#include "boundaryList.hpp"
|
||
|
#include "ListPtr.hpp"
|
||
|
#include "boundaryIntegration.hpp"
|
||
|
|
||
|
|
||
|
namespace pFlow
|
||
|
{
|
||
|
|
||
|
class integration;
|
||
|
|
||
|
class boundaryIntegrationList
|
||
|
:
|
||
|
public ListPtr<boundaryIntegration>
|
||
|
{
|
||
|
private:
|
||
|
|
||
|
const boundaryList& boundaries_;
|
||
|
|
||
|
public:
|
||
|
|
||
|
boundaryIntegrationList(
|
||
|
const pointStructure& pStruct,
|
||
|
const word& method,
|
||
|
integration& intgrtn
|
||
|
);
|
||
|
|
||
|
~boundaryIntegrationList()=default;
|
||
|
|
||
|
bool correct(
|
||
|
real dt,
|
||
|
realx3PointField_D& y,
|
||
|
realx3PointField_D& dy);
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif //__boundaryIntegrationList_hpp__
|