Skip to content
Snippets Groups Projects
Commit 1cd55db8 authored by Frederik Hennig's avatar Frederik Hennig
Browse files

small fix to satisfy the CI tests.

parent 1434b42f
Branches
Tags
No related merge requests found
...@@ -68,8 +68,7 @@ typedef lbm::CumulantMRTNoSlip NoSlip_T; ...@@ -68,8 +68,7 @@ typedef lbm::CumulantMRTNoSlip NoSlip_T;
/// Shear Flow Velocity Initialization /// /// Shear Flow Velocity Initialization ///
////////////////////////////////////////// //////////////////////////////////////////
void initShearFlowVelocityField(const shared_ptr< StructuredBlockForest >& blocks, void initShearFlowVelocityField(const shared_ptr< StructuredBlockForest >& blocks, const BlockDataID& velocityFieldId,
const BlockDataID& velocityFieldId,
const Config::BlockHandle& config) const Config::BlockHandle& config)
{ {
math::RealRandom< real_t > rng(config.getParameter< std::mt19937::result_type >("noiseSeed", 42)); math::RealRandom< real_t > rng(config.getParameter< std::mt19937::result_type >("noiseSeed", 42));
...@@ -182,7 +181,7 @@ int main(int argc, char** argv) ...@@ -182,7 +181,7 @@ int main(int argc, char** argv)
timeloop.addFuncAfterTimeStep(timing::RemainingTimeLogger(timeloop.getNrOfTimeSteps(), remainingTimeLoggerFrequency), timeloop.addFuncAfterTimeStep(timing::RemainingTimeLogger(timeloop.getNrOfTimeSteps(), remainingTimeLoggerFrequency),
"remaining time logger"); "remaining time logger");
int vtkWriteFrequency = 100; uint_t vtkWriteFrequency = uint_c(100);
if (vtkWriteFrequency > 0) if (vtkWriteFrequency > 0)
{ {
const std::string path = "vtk_out/tut03"; const std::string path = "vtk_out/tut03";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment