mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
first commit after code loss - develop branch
This commit is contained in:
45
src/Integration/boundaries/boundaryIntegrationList.hpp
Normal file
45
src/Integration/boundaries/boundaryIntegrationList.hpp
Normal file
@ -0,0 +1,45 @@
|
||||
|
||||
#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__
|
Reference in New Issue
Block a user