Skip to content
Snippets Groups Projects
Commit 2767d34e authored by Henrik Asmuth's avatar Henrik Asmuth
Browse files

Replace 0.f with const expr

parent 82070a91
No related branches found
No related tags found
1 merge request!170Kernel templetization and efficiency improvements
......@@ -38,6 +38,8 @@
#include <memory>
#include <array>
#include <lbm/constants/NumericConstants.h>
#include "gpu/GridGenerator/global.h"
#include "gpu/GridGenerator/grid/GridBuilder/GridBuilder.h"
......@@ -45,6 +47,8 @@
#include "gpu/GridGenerator/grid/GridInterface.h"
#include "gpu/GridGenerator/grid/NodeValues.h"
using namespace vf::lbm::constant;
struct Vertex;
class Grid;
class Transformator;
......@@ -64,8 +68,6 @@ enum class SideType;
class TransientBCInputFileReader;
class FileCollection;
class LevelGridBuilder : public GridBuilder
{
protected:
......@@ -85,7 +87,7 @@ public:
GRIDGENERATOR_EXPORT void setPeriodicBoundaryCondition(bool periodic_X, bool periodic_Y, bool periodic_Z);
GRIDGENERATOR_EXPORT void setNoSlipBoundaryCondition(SideType sideType);
GRIDGENERATOR_EXPORT void setPrecursorBoundaryCondition(SideType sideType, SPtr<FileCollection> fileCollection, int timeStepsBetweenReads,
real velocityX=0.0f, real velocityY=0.0f, real velocityZ=0.0f,
real velocityX=c0o1, real velocityY=c0o1, real velocityZ=c0o1,
std::vector<uint> fileLevelToGridLevelMap = {});
GRIDGENERATOR_EXPORT void setEnableFixRefinementIntoTheWall(bool enableFixRefinementIntoTheWall);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment