pointStructure with boundaries, construction tested

This commit is contained in:
Hamidreza Norouzi
2023-12-17 15:27:05 +03:30
parent 143a586730
commit f1baff5a59
53 changed files with 1957 additions and 791 deletions

View File

@ -23,8 +23,8 @@ Licence:
// initilized and finalize should be placed in onc scope
REPORT(0)<<"Initializing host/device execution spaces . . . \n";
REPORT(1)<<"Host execution space is "<< greenText(pFlow::DefaultHostExecutionSpace::name())<<endREPORT;
REPORT(1)<<"Device execution space is "<<greenText(pFlow::DefaultExecutionSpace::name())<<endREPORT;
REPORT(1)<<"Host execution space is "<< Green_Text(pFlow::DefaultHostExecutionSpace::name())<<END_REPORT;
REPORT(1)<<"Device execution space is "<<Green_Text(pFlow::DefaultExecutionSpace::name())<<END_REPORT;
Kokkos::initialize( argc, argv );
{

View File

@ -24,10 +24,10 @@ Licence:
// initilized and finalize should be placed in onc scope
#include "initialize.hpp"
REPORT(0)<<"\nCreating Control repository . . ."<<endREPORT;
REPORT(0)<<"\nCreating Control repository . . ."<<END_REPORT;
pFlow::uniquePtr<pFlow::systemControl> ControlPtr = nullptr;
if(isCoupling)
/*if(isCoupling)
{
pFlow::readControlDict controlDict;
@ -36,13 +36,13 @@ if(isCoupling)
controlDict.startTime(),
controlDict.endTime(),
controlDict.saveInterval(),
controlDict.startTimeName()
controlDict.startTimeNreseame()
);
}
else
{
}*/
/*else
{*/
ControlPtr = pFlow::makeUnique<pFlow::systemControl>();
}
//}
auto& Control = ControlPtr();