Skip to content

Commit

Permalink
reduce problem size for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hverhelst committed Dec 10, 2024
1 parent 7096d5b commit d6b7fcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/aroundCylinder_NS_2D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion examples/flappingBeam_CFD3_NS_2Dt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d6b7fcc

Please sign in to comment.