diff --git a/pythonbindings/src/gpu/submodules/boundary_conditions.cpp b/pythonbindings/src/gpu/submodules/boundary_conditions.cpp index 49f46449db808ba5a59c508db9036fa966fc9519..9ab758ffd6e9fc68e03eef40676508c093567df2 100644 --- a/pythonbindings/src/gpu/submodules/boundary_conditions.cpp +++ b/pythonbindings/src/gpu/submodules/boundary_conditions.cpp @@ -67,7 +67,7 @@ namespace boundary_conditions py::enum_<BoundaryConditionFactory::PrecursorBC>(parentModule, "PrecursorBC") .value("VelocityPrecursor", BoundaryConditionFactory::PrecursorBC::VelocityPrecursor) - .value("DistributionsPrecursor", BoundaryConditionFactory::PrecursorBC::VelocityPrecursor) + .value("DistributionsPrecursor", BoundaryConditionFactory::PrecursorBC::DistributionsPrecursor) .value("NotSpecified", BoundaryConditionFactory::PrecursorBC::NotSpecified); } } \ No newline at end of file diff --git a/src/gpu/GridGenerator/grid/GridBuilder/LevelGridBuilder.cpp b/src/gpu/GridGenerator/grid/GridBuilder/LevelGridBuilder.cpp index 057bb90ca97ec75aa61bd3df6393132064689b7f..0fd97f95817a73992347d33279978afdef87b0fc 100644 --- a/src/gpu/GridGenerator/grid/GridBuilder/LevelGridBuilder.cpp +++ b/src/gpu/GridGenerator/grid/GridBuilder/LevelGridBuilder.cpp @@ -245,7 +245,7 @@ void LevelGridBuilder::setNoSlipGeometryBoundaryCondition() } } -void LevelGridBuilder::setPrecursorBoundaryCondition(SideType sideType,SPtr<VelocityFileCollection> fileCollection, int nTRead, real velocityX, real velocityY, real velocityZ) +void LevelGridBuilder::setPrecursorBoundaryCondition(SideType sideType, SPtr<VelocityFileCollection> fileCollection, int nTRead, real velocityX, real velocityY, real velocityZ) { for (uint level = 0; level < getNumberOfGridLevels(); level++) {