Skip to content

Commit

Permalink
FSI: Set ramping defaults to false
Browse files Browse the repository at this point in the history
Since we are moving to split meshes as the current strategy setting
ramping defaults to `False`.

I have been investigating why the temporal ramping is causing
simulations to fail since the bug fixes regarding hub motion, and I
can't find any issues with it at the moment. So it seems best to keep
that turned off as well.
  • Loading branch information
psakievich committed Nov 28, 2023
1 parent 532e64c commit 7dee849
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/aero/fsi/FSIturbine.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ struct DeflectionRampingParams
double thetaRampSpan_{10.0};
double startTimeTemporalRamp_{0.0};
double endTimeTemporalRamp_{0.0};
bool enableSpanRamping_{true};
bool enableThetaRamping_{true};
bool enableTemporalRamping_{true};
bool enableSpanRamping_{false};
bool enableThetaRamping_{false};
bool enableTemporalRamping_{false};
};

// TODO(psakiev) find a better place for this
Expand Down

0 comments on commit 7dee849

Please sign in to comment.