Skip to content

Commit

Permalink
Comment cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhar-abbas committed Sep 20, 2019
1 parent 4d9f4d5 commit 1ca7f47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Functions.f90
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ REAL FUNCTION PIController(error, kp, ki, minValue, maxValue, DT, I0, reset, ins
!
IMPLICIT NONE

! Inputs
! Allocate Inputs
REAL(4), INTENT(IN) :: error
REAL(4), INTENT(IN) :: kp
REAL(4), INTENT(IN) :: ki
Expand All @@ -58,7 +58,7 @@ REAL FUNCTION PIController(error, kp, ki, minValue, maxValue, DT, I0, reset, ins
REAL(4), INTENT(IN) :: I0
LOGICAL, INTENT(IN) :: reset

! Local
! Allocate local variables
INTEGER(4) :: i ! Counter for making arrays
REAL(4) :: PTerm ! Proportional term
REAL(4), DIMENSION(99), SAVE :: ITerm = (/ (real(9999.9), i = 1,99) /) ! Integral term, current.
Expand Down

0 comments on commit 1ca7f47

Please sign in to comment.