mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-09-16 04:16:04 +00:00
42 lines
721 B
C++
42 lines
721 B
C++
![]() |
#include "boundaryIntegrationList.hpp"
|
||
|
#include "integration.hpp"
|
||
|
|
||
|
pFlow::boundaryIntegrationList::boundaryIntegrationList(
|
||
|
const pointStructure &pStruct,
|
||
|
const word &method,
|
||
|
integration &intgrtn
|
||
|
)
|
||
|
:
|
||
|
ListPtr<boundaryIntegration>(6),
|
||
|
boundaries_(pStruct.boundaries())
|
||
|
{
|
||
|
|
||
|
for(uint32 i=0; i<6; i++)
|
||
|
{
|
||
|
this->set(
|
||
|
i,
|
||
|
boundaryIntegration::create(
|
||
|
boundaries_[i],
|
||
|
pStruct,
|
||
|
method,
|
||
|
intgrtn
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
bool pFlow::boundaryIntegrationList::correct(real dt, realx3PointField_D &y, realx3PointField_D &dy)
|
||
|
{
|
||
|
for(auto& bndry:*this)
|
||
|
{
|
||
|
if(!bndry->correct(dt, y, dy))
|
||
|
{
|
||
|
fatalErrorInFunction;
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
return true;
|
||
|
}
|