From d6b7fcce506d8fcb3018a9a80ceae2d394545a97 Mon Sep 17 00:00:00 2001 From: Hugo Verhelst Date: Tue, 10 Dec 2024 17:44:07 +0100 Subject: [PATCH] reduce problem size for CI --- examples/aroundCylinder_NS_2D.cpp | 2 +- examples/flappingBeam_CFD3_NS_2Dt.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/aroundCylinder_NS_2D.cpp b/examples/aroundCylinder_NS_2D.cpp index 3f897e6..ece4d92 100644 --- a/examples/aroundCylinder_NS_2D.cpp +++ b/examples/aroundCylinder_NS_2D.cpp @@ -32,7 +32,7 @@ int main(int argc, char* argv[]){ real_t meanVelocity = 0.2; // inflow velocity real_t density = 1.; // space discretization - index_t numUniRef = 3; + index_t numUniRef = 1; //was 3 index_t numDegElev = 0; index_t numBLRef = 1; bool subgridOrTaylorHood = false; diff --git a/examples/flappingBeam_CFD3_NS_2Dt.cpp b/examples/flappingBeam_CFD3_NS_2Dt.cpp index 77a56d6..ef8ceb3 100644 --- a/examples/flappingBeam_CFD3_NS_2Dt.cpp +++ b/examples/flappingBeam_CFD3_NS_2Dt.cpp @@ -86,7 +86,7 @@ int main(int argc, char* argv[]){ index_t numBLRef = 1; bool subgridOrTaylorHood = false; // time integration - real_t timeSpan = 10; + real_t timeSpan = 0.01; // was 10 real_t timeStep = 0.01; real_t theta = 0.5; bool imexOrNewton = false;