modify for coupling-cpp and hpp

This commit is contained in:
hamidrezanorouzi
2022-12-10 01:32:54 +03:30
parent 878c281d45
commit 8cc47b1c47
393 changed files with 1679 additions and 1679 deletions

View File

@ -1,6 +1,6 @@
set(source_files
sphereGranFlow.C
sphereGranFlow.cpp
)
set(link_lib Kokkos::kokkos phasicFlow Particles Geometry Property Interaction Interaction Utilities)

View File

@ -18,15 +18,15 @@ Licence:
-----------------------------------------------------------------------------*/
#include "property.H"
#include "geometry.H"
#include "sphereParticles.H"
#include "Insertions.H"
#include "systemControl.H"
#include "contactSearch.H"
#include "sphereInteraction.H"
#include "commandLine.H"
#include "readControlDict.H"
#include "property.hpp"
#include "geometry.hpp"
#include "sphereParticles.hpp"
#include "Insertions.hpp"
#include "systemControl.hpp"
#include "contactSearch.hpp"
#include "sphereInteraction.hpp"
#include "commandLine.hpp"
#include "readControlDict.hpp"
using pFlow::output;
using pFlow::endl;
@ -53,13 +53,13 @@ bool isCoupling = false;
if(!cmds.parse(argc, argv)) return 0;
// this should be palced in each main
#include "initialize_Control.H"
#include "initialize_Control.hpp"
#include "setProperty.H"
#include "setSurfaceGeometry.H"
#include "setProperty.hpp"
#include "setSurfaceGeometry.hpp"
#include "createDEMComponents.H"
#include "createDEMComponents.hpp"
Report(0)<<"\nStart of time loop . . .\n"<<endReport;
@ -101,7 +101,7 @@ if(!cmds.parse(argc, argv)) return 0;
Report(0)<<"\nEnd of time loop.\n"<<endReport;
// this should be palced in each main
#include "finalize.H"
#include "finalize.hpp"
}