Skip to content

Commit

Permalink
ran tapenade
Browse files Browse the repository at this point in the history
  • Loading branch information
sseraj committed Oct 10, 2022
1 parent 1984517 commit a5666c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/adjoint/curveUtils_b.f90
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ SUBROUTINE COMPUTETANGENT_B(x1, x1b, x2, x2b, tangent, tangentb)
! EXECUTION
! Get the relative vectors for the bar element
x21 = x2 - x1
! Normalize vector (dot defined in Utilities.F90)
! Normalize vector (dot defined in utilities.F90)
dummyvec = x21
CALL DOT(x21, dummyvec, dotresult)
x21b = 0.0_8
Expand Down Expand Up @@ -181,7 +181,7 @@ SUBROUTINE COMPUTETANGENT(x1, x2, tangent)
! EXECUTION
! Get the relative vectors for the bar element
x21 = x2 - x1
! Normalize vector (dot defined in Utilities.F90)
! Normalize vector (dot defined in utilities.F90)
dummyvec = x21
CALL DOT(x21, dummyvec, dotresult)
tangent = x21/SQRT(dotresult)
Expand Down
4 changes: 2 additions & 2 deletions src/adjoint/curveUtils_d.f90
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ SUBROUTINE COMPUTETANGENT_D(x1, x1d, x2, x2d, tangent, tangentd)
! Get the relative vectors for the bar element
x21d = x2d - x1d
x21 = x2 - x1
! Normalize vector (dot defined in Utilities.F90)
! Normalize vector (dot defined in utilities.F90)
dummyvecd = x21d
dummyvec = x21
CALL DOT_D0(x21, x21d, dummyvec, dummyvecd, dotresult, dotresultd)
Expand Down Expand Up @@ -161,7 +161,7 @@ SUBROUTINE COMPUTETANGENT(x1, x2, tangent)
! EXECUTION
! Get the relative vectors for the bar element
x21 = x2 - x1
! Normalize vector (dot defined in Utilities.F90)
! Normalize vector (dot defined in utilities.F90)
dummyvec = x21
CALL DOT(x21, dummyvec, dotresult)
result1 = SQRT(dotresult)
Expand Down

0 comments on commit a5666c5

Please sign in to comment.