Skip to content
Snippets Groups Projects
Commit 79b9e95b authored by Georg Pirrung's avatar Georg Pirrung
Browse files

added generator speed notch filter to avoid vibrations caused by the generator...

added generator speed notch filter to avoid vibrations caused by the generator torque in constant power operation
parent 3ebde57f
No related branches found
No related tags found
2 merge requests!34Simplified derated control,!31Check iteration
......@@ -121,7 +121,6 @@ subroutine init_regulation(array1, array2) bind(c, name='init_regulation')
! Drivetrain mode notch filters for pitch controller
DT_mode_filt%f0 = array1(10)
pwr_DT_mode_filt%f0 = DT_mode_filt%f0
DT_mode_filt_torque%f0 = 3.55
! Partial load control parameters
Kopt = array1(11)
PID_gen_var%Kpro = array1(12)
......@@ -274,6 +273,8 @@ subroutine init_regulation(array1, array2) bind(c, name='init_regulation')
SafetySystemVar%RysteVagtLevel = MoniVar%RysteVagtLevel*1.1_mk
! Gear Ratio
GearRatio = 1.0_mk
! Deactivate the filter on rotor speed for generator torque computation above rated
DT_mode_filt_torque%f0 = 0.0_mk
! Pitch devaiation monitor
DeltaPitchThreshold = 0.0_mk
TAve_Pitch = 0.0_mk
......@@ -327,7 +328,9 @@ subroutine init_regulation_advanced(array1, array2) bind(c,name='init_regulation
! ; where 'nnn' [s] is the period of the moving average and 'mmm' is threshold of the deviation [0.1 deg] (functionality is inactive if value $<$ 1,000,000)
! Gear ratio
! constant 76 ; Gear ratio used for the calculation of the LSS rotational speeds and the HSS generator torque reference [-] (Default 1 if zero)
!
! Rotor speed notch filter
! constant 77 ; Frequency of notch filter [Hz] applied on the rotor speed before computing torque above rated (constant power), if zero no notch filter used
! constant 78 ; Damping of notch filter [-] applied on the rotor speed before computing torque above rated (constant power), (Default 0.01 used if zero)
call init_regulation(array1, array2)
! Generator torque exclusion zone
if (array1(53).gt.0.0_mk) ExcluZone%Lwr = array1(53)
......@@ -364,6 +367,9 @@ subroutine init_regulation_advanced(array1, array2) bind(c,name='init_regulation
endif
! Gear ratio
if (array1(76).gt.0.0_mk) GearRatio = array1(76)
! Notch filter on rotor speed signal used for constant power tracking above rated
if (array1(77).gt.0.0_mk) DT_mode_filt_torque%f0 = array1(77)
if (array1(78).gt.0.0_mk) DT_mode_filt_torque%zeta2 = array1(78)
! Initialization
TimerExcl = -0.02_mk
return
......
......@@ -504,7 +504,11 @@ subroutine torquecontroller(GenSpeed, GenSpeedFilt, dGenSpeed_dtFilt, PitchMean,
!-----------------------------------------------------------------------------------------------
! Limits for full load
!-----------------------------------------------------------------------------------------------
GenSpeedFiltTorque=notch2orderfilt(deltat, stepno, DT_mode_filt_torque, Genspeed)
if (DT_mode_filt_torque%f0 .gt. 0.0_mk) then
GenSpeedFiltTorque=notch2orderfilt(deltat, stepno, DT_mode_filt_torque, Genspeed)
else
GenSpeedFiltTorque= Genspeed
endif
ConstantPowerTorque=min((GenTorqueRated*GenSpeedRef_full)/max(GenSpeedFiltTorque, GenSpeedRefMin),GenTorqueMax)
GenTorqueMin_full = GenTorqueRated*(1.0_mk-TorqueCtrlRatio) + ConstantPowerTorque*TorqueCtrlRatio
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment