Files
phasicFlow/src/Integration/AdamsBashforth3/AdamsBashforth3.cpp

204 lines
4.5 KiB
C++
Raw Normal View History

2022-09-05 01:56:29 +04:30
/*------------------------------- phasicFlow ---------------------------------
O C enter of
O O E ngineering and
O O M ultiscale modeling of
OOOOOOO F luid flow
------------------------------------------------------------------------------
Copyright (C): www.cemf.ir
email: hamid.r.norouzi AT gmail.com
------------------------------------------------------------------------------
Licence:
This file is part of phasicFlow code. It is a free software for simulating
granular and multiphase flows. You can redistribute it and/or modify it under
the terms of GNU General Public License v3 or any other later versions.
phasicFlow is distributed to help others in their research in the field of
granular and multiphase flows, but WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-----------------------------------------------------------------------------*/
2022-12-10 01:32:54 +03:30
#include "AdamsBashforth3.hpp"
2022-09-05 01:56:29 +04:30
2025-01-20 14:55:12 +03:30
namespace pFlow
{
/// Range policy for integration kernel (alias)
using rpIntegration = Kokkos::RangePolicy<
DefaultExecutionSpace,
Kokkos::Schedule<Kokkos::Static>,
Kokkos::IndexType<uint32>
>;
bool intAllActive(
real dt,
realx3Field_D& y,
realx3PointField_D& dy,
realx3PointField_D& dy1,
2025-01-20 21:02:50 +03:30
realx3PointField_D& dy2,
real damping = 1.0)
2025-01-20 14:55:12 +03:30
{
auto d_dy = dy.deviceView();
auto d_y = y.deviceView();
auto d_dy1= dy1.deviceView();
auto d_dy2= dy2.deviceView();
auto activeRng = dy1.activeRange();
Kokkos::parallel_for(
"AdamsBashforth3::correct",
rpIntegration (activeRng.start(), activeRng.end()),
LAMBDA_HD(uint32 i){
d_y[i] += damping* dt*( static_cast<real>(23.0 / 12.0) * d_dy[i]
2025-01-20 14:55:12 +03:30
- static_cast<real>(16.0 / 12.0) * d_dy1[i]
+ static_cast<real>(5.0 / 12.0) * d_dy2[i]) ;
2025-01-20 14:55:12 +03:30
d_dy2[i] = d_dy1[i];
d_dy1[i] = d_dy[i];
});
Kokkos::fence();
return true;
}
bool intScattered
(
real dt,
realx3Field_D& y,
realx3PointField_D& dy,
realx3PointField_D& dy1,
2025-01-20 21:02:50 +03:30
realx3PointField_D& dy2,
real damping = 1.0
2025-01-20 14:55:12 +03:30
)
{
auto d_dy = dy.deviceView();
auto d_y = y.deviceView();
auto d_dy1 = dy1.deviceView();
auto d_dy2 = dy2.deviceView();
auto activeRng = dy1.activeRange();
const auto& activeP = dy1.activePointsMaskDevice();
Kokkos::parallel_for(
"AdamsBashforth3::correct",
2025-01-20 14:55:12 +03:30
rpIntegration (activeRng.start(), activeRng.end()),
LAMBDA_HD(uint32 i){
if( activeP(i))
{
d_y[i] += damping * dt*( static_cast<real>(23.0 / 12.0) * d_dy[i]
2025-01-20 14:55:12 +03:30
- static_cast<real>(16.0 / 12.0) * d_dy1[i]
+ static_cast<real>(5.0 / 12.0) * d_dy2[i]);
2025-01-20 14:55:12 +03:30
d_dy2[i] = d_dy1[i];
d_dy1[i] = d_dy[i];
}
});
Kokkos::fence();
return true;
}
}
2022-09-05 01:56:29 +04:30
//const real AB3_coef[] = { 23.0 / 12.0, 16.0 / 12.0, 5.0 / 12.0 };
pFlow::AdamsBashforth3::AdamsBashforth3
(
const word& baseName,
2025-01-20 14:55:12 +03:30
pointStructure& pStruct,
const word& method,
const realx3Field_D& initialValField
2022-09-05 01:56:29 +04:30
)
:
2025-01-20 14:55:12 +03:30
AdamsBashforth2(baseName, pStruct, method, initialValField),
dy2_
(
objectFile
(
groupNames(baseName,"dy2"),
pStruct.time().integrationFolder(),
objectFile::READ_IF_PRESENT,
objectFile::WRITE_ALWAYS
),
pStruct,
zero3,
zero3
)
2022-09-05 01:56:29 +04:30
{
2022-09-05 01:56:29 +04:30
}
2025-01-20 14:55:12 +03:30
void pFlow::AdamsBashforth3::updateBoundariesSlaveToMasterIfRequested()
2022-09-05 01:56:29 +04:30
{
2025-01-20 14:55:12 +03:30
AdamsBashforth2::updateBoundariesSlaveToMasterIfRequested();
dy2_.updateBoundariesSlaveToMasterIfRequested();
2022-09-05 01:56:29 +04:30
}
2025-01-20 14:55:12 +03:30
2022-09-05 01:56:29 +04:30
bool pFlow::AdamsBashforth3::correct
(
2025-01-20 14:55:12 +03:30
real dt,
realx3PointField_D& y,
2025-01-20 21:02:50 +03:30
realx3PointField_D& dy,
real damping
2022-09-05 01:56:29 +04:30
)
{
2025-01-20 14:55:12 +03:30
bool success = false;
if(y.isAllActive())
2022-09-05 01:56:29 +04:30
{
2025-01-20 21:02:50 +03:30
success = intAllActive(dt, y.field(), dy, dy1(), dy2(), damping);
2022-09-05 01:56:29 +04:30
}
else
{
2025-01-20 21:02:50 +03:30
success = intScattered(dt, y.field(), dy, dy1(), dy2(), damping);
2022-09-05 01:56:29 +04:30
}
2025-01-20 14:55:12 +03:30
success = success && boundaryList().correct(dt, y, dy);
return success;
2022-09-05 01:56:29 +04:30
}
2025-01-20 14:55:12 +03:30
bool pFlow::AdamsBashforth3::correctPStruct(
real dt,
pointStructure &pStruct,
realx3PointField_D &vel)
{
bool success = false;
if(dy2().isAllActive())
{
success = intAllActive(dt, pStruct.pointPosition(), vel, dy1(), dy2());
}
else
{
success = intScattered(dt, pStruct.pointPosition(), vel, dy1(), dy2());
}
success = success && boundaryList().correctPStruct(dt, pStruct, vel);
return success;
}
/*bool pFlow::AdamsBashforth3::hearChanges
(
const timeInfo &ti,
const message &msg,
const anyList &varList
)
{
if(msg.equivalentTo(message::ITEMS_INSERT))
{
return insertValues(varList, initialValField().deviceViewAll(), dy1()) &&
insertValues(varList, initialValField().deviceViewAll(), dy2());
}
else
{
return realx3PointField_D::hearChanges(ti, msg, varList);
}
}*/