You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I hope you’re doing well. I am currently working on implementing a fault in the pitch angle control system. The fault scenario involves Blade 1’s pitch angle being fixed at its exact value at 400 seconds and remaining stuck in that position. To achieve this, I attempted to modify the relevant source code in ServoDyn, specifically the UserSubs.f90 file and the PitchCntrl subroutine, as shown in the attached image. Additionally, I’ve also included the pitch control settings from the ServoDyn module for reference.
However, when I run the simulation on the 15 MW semi-submersible turbine model, I am not getting the expected results.
I intended for the Blade 1 pitch angle to behave exactly like the normal operation curve during the first 400 seconds, but it does not. I kindly ask for your guidance in resolving this issue.
Thank you very much for your help!
The text was updated successfully, but these errors were encountered:
The IEA Wind 15-MW RWT OpenFAST model makes use of the ROSCO controller, which would be called by setting PCMode = 5, but you have disabled the ROSCO pitch controller by setting PCMode = 3. If you want to use ROSCO up until the fault, you'll have to modify ROSCO directly, not UserSubs.f90.
The simulation time (ZTime) may not reach exactly 400 s (depending on the time step, DT). I would use some tolerance based on DT in the calculation.
Your FixedPitch variable is a local variable that you have not marked with the SAVE attribute, so, its value won't be saved between calls to your routine.
Hello,
I hope you’re doing well. I am currently working on implementing a fault in the pitch angle control system. The fault scenario involves Blade 1’s pitch angle being fixed at its exact value at 400 seconds and remaining stuck in that position. To achieve this, I attempted to modify the relevant source code in ServoDyn, specifically the UserSubs.f90 file and the PitchCntrl subroutine, as shown in the attached image. Additionally, I’ve also included the pitch control settings from the ServoDyn module for reference.
However, when I run the simulation on the 15 MW semi-submersible turbine model, I am not getting the expected results.
I intended for the Blade 1 pitch angle to behave exactly like the normal operation curve during the first 400 seconds, but it does not. I kindly ask for your guidance in resolving this issue.
Thank you very much for your help!
The text was updated successfully, but these errors were encountered: