mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-22 16:28:30 +00:00
modify for coupling-cpp and hpp
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
|
||||
list(APPEND SourceFiles
|
||||
entities/rotatingAxis/rotatingAxis.C
|
||||
fixedWall/fixedWall.C
|
||||
rotatingAxisMotion/rotatingAxisMotion.C
|
||||
entities/rotatingAxis/rotatingAxis.cpp
|
||||
fixedWall/fixedWall.cpp
|
||||
rotatingAxisMotion/rotatingAxisMotion.cpp
|
||||
)
|
||||
|
||||
set(link_libs Kokkos::kokkos phasicFlow)
|
||||
|
@ -18,8 +18,8 @@ Licence:
|
||||
|
||||
-----------------------------------------------------------------------------*/
|
||||
|
||||
#include "rotatingAxis.H"
|
||||
#include "dictionary.H"
|
||||
#include "rotatingAxis.hpp"
|
||||
#include "dictionary.hpp"
|
||||
|
||||
/*FUNCTION_HD
|
||||
pFlow::rotatingAxis::rotatingAxis()
|
@ -18,10 +18,10 @@ Licence:
|
||||
|
||||
-----------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef __rotatingAxis_H__
|
||||
#define __rotatingAxis_H__
|
||||
#ifndef __rotatingAxis_hpp__
|
||||
#define __rotatingAxis_hpp__
|
||||
|
||||
#include "line.H"
|
||||
#include "line.hpp"
|
||||
|
||||
namespace pFlow
|
||||
{
|
||||
@ -29,7 +29,7 @@ namespace pFlow
|
||||
class dictionary;
|
||||
class rotatingAxis;
|
||||
|
||||
#include "rotatingAxisFwd.H"
|
||||
#include "rotatingAxisFwd.hpp"
|
||||
|
||||
class rotatingAxis
|
||||
:
|
||||
@ -107,6 +107,6 @@ inline iIstream& operator >>(iIstream& is, rotatingAxis& ax)
|
||||
}
|
||||
|
||||
|
||||
#include "rotatingAxisI.H"
|
||||
#include "rotatingAxisI.hpp"
|
||||
|
||||
#endif
|
@ -18,9 +18,9 @@ Licence:
|
||||
|
||||
-----------------------------------------------------------------------------*/
|
||||
|
||||
#include "fixedWall.H"
|
||||
#include "dictionary.H"
|
||||
#include "vocabs.H"
|
||||
#include "fixedWall.hpp"
|
||||
#include "dictionary.hpp"
|
||||
#include "vocabs.hpp"
|
||||
|
||||
bool pFlow::fixedWall::readDictionary
|
||||
(
|
@ -18,14 +18,14 @@ Licence:
|
||||
|
||||
-----------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef __fixedWall_H__
|
||||
#define __fixedWall_H__
|
||||
#ifndef __fixedWall_hpp__
|
||||
#define __fixedWall_hpp__
|
||||
|
||||
|
||||
#include "types.H"
|
||||
#include "typeInfo.H"
|
||||
#include "Vectors.H"
|
||||
#include "uniquePtr.H"
|
||||
#include "types.hpp"
|
||||
#include "typeInfo.hpp"
|
||||
#include "Vectors.hpp"
|
||||
#include "uniquePtr.hpp"
|
||||
|
||||
|
||||
|
||||
@ -89,7 +89,7 @@ protected:
|
||||
|
||||
public:
|
||||
|
||||
TypeNameNV("fixedWall");
|
||||
TypeInfoNV("fixedWall");
|
||||
|
||||
// empty
|
||||
fixedWall();
|
||||
@ -167,4 +167,4 @@ public:
|
||||
|
||||
} // pFlow
|
||||
|
||||
#endif //__fixed_H__
|
||||
#endif //__fixed_hpp__
|
@ -18,9 +18,9 @@ Licence:
|
||||
|
||||
-----------------------------------------------------------------------------*/
|
||||
|
||||
#include "rotatingAxisMotion.H"
|
||||
#include "dictionary.H"
|
||||
#include "vocabs.H"
|
||||
#include "rotatingAxisMotion.hpp"
|
||||
#include "dictionary.hpp"
|
||||
#include "vocabs.hpp"
|
||||
|
||||
|
||||
bool pFlow::rotatingAxisMotion::readDictionary
|
@ -18,16 +18,16 @@ Licence:
|
||||
|
||||
-----------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef __rotatingAxisMotion_H__
|
||||
#define __rotatingAxisMotion_H__
|
||||
#ifndef __rotatingAxisMotion_hpp__
|
||||
#define __rotatingAxisMotion_hpp__
|
||||
|
||||
|
||||
#include "types.H"
|
||||
#include "typeInfo.H"
|
||||
#include "VectorDual.H"
|
||||
#include "Vectors.H"
|
||||
#include "List.H"
|
||||
#include "rotatingAxis.H"
|
||||
#include "types.hpp"
|
||||
#include "typeInfo.hpp"
|
||||
#include "VectorDual.hpp"
|
||||
#include "Vectors.hpp"
|
||||
#include "List.hpp"
|
||||
#include "rotatingAxis.hpp"
|
||||
|
||||
|
||||
namespace pFlow
|
||||
@ -104,7 +104,7 @@ protected:
|
||||
|
||||
public:
|
||||
|
||||
TypeNameNV("rotatingAxisMotion");
|
||||
TypeInfoNV("rotatingAxisMotion");
|
||||
|
||||
// empty
|
||||
FUNCTION_H
|
||||
@ -215,4 +215,4 @@ public:
|
||||
|
||||
} // pFlow
|
||||
|
||||
#endif //__rotatingAxisMotion_H__
|
||||
#endif //__rotatingAxisMotion_hpp__
|
Reference in New Issue
Block a user