Ask Your Question
0

Example deadband in Fortran Code

asked 2023-05-10 04:59:42 -0500

ramadhan gravatar image

Dear everyone, Is there any reference code for deadband operation in Fortran languange? I need it to make own UDM Thank you very much

edit retag flag offensive close merge delete

1 answer

Sort by » oldest newest most voted
0

answered 2023-05-10 06:45:52 -0500

perolofl gravatar image

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
edit flag offensive delete link more

Comments

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

ramadhan gravatar imageramadhan ( 2023-09-25 04:26:05 -0500 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

[hide preview]

Question Tools

Stats

Asked: 2023-05-10 04:59:42 -0500

Seen: 1,155 times

Last updated: May 10 '23