Example deadband in Fortran Code
Dear everyone, Is there any reference code for deadband operation in Fortran languange? I need it to make own UDM Thank you very much
First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
Dear everyone, Is there any reference code for deadband operation in Fortran languange? I need it to make own UDM Thank you very much
A deadband with limits +/- 0.1 in Fortran 90:
deadband_high = 0.1
deadband_low = -0.1
if (input > deadband_high) then
output = input-deadband_high
else if (input < deadband_low) then
output = input-deadband_low
else
output = 0.
end if
Thank you very much Dr Perolofl, Dr Perolofl, I have a question.do you have an example transformation dq frame to alpha-beta and then connected to current injection method in psse? I was made dq frame to alpha-beta but after fault it seems the value of alpha-beta conversion will diverge after fault
Asked: May 10 '3
Seen: 1,303 times
Last updated: May 10 '23
How to program a FACTS tripping in Fortran?
Is the demo exciter model (DEMOEX) available as fortran code somewhere?
Getting unresolved external symbol error during creation of dll file
(UDM) FORTRAN or FLECS code for the generator model
User defined model code in different fortran files