Skip to content

Commit

Permalink
Addressing Chris' comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ErolBa committed Dec 18, 2024
1 parent 291d58a commit 95174fa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 141 deletions.
140 changes: 0 additions & 140 deletions .gitlab-ci.yml

This file was deleted.

6 changes: 6 additions & 0 deletions src/dforce.f90
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@
!> information is then broadcasted to the MPI node \f$0\f$ in dforce() and the global force is evaluated. </li>
!> </ul>
!>
!> **prints out the force gradient matrix .hessian**
!>
!> <ul>
!> <li> Prints the 'hessian' matrix to a file '.sp.hessian' </li>
!> </ul>
!>
!> **construct derivatives of matrix equation**
!>
!> <ul>
Expand Down
3 changes: 2 additions & 1 deletion src/hesian.f90
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
!> \file
!> \brief Computes eigenvalues and eigenvectors of derivative matrix, \f$\nabla_{\bf xi}{\bf F}\f$.

!> \brief Computes eigenvalues and eigenvectors of derivative matrix, \f$\nabla_{\bf xi}{\bf F}\f$ and saves them to \c .ext.GF.ev and \c .ext.GF.ma
!> \brief Computes eigenvalues and eigenvectors of derivative matrix, \f$\nabla_{\bf xi}{\bf F}\f$
!> \ingroup grp_diagnostics grp_output
!>
!> @param[in] NGdof number of global degrees of freedom
Expand Down Expand Up @@ -94,6 +94,7 @@ subroutine hesian( NGdof, position, Mvol, mn, LGdof )

! Only makes sense to compute the Hessian if helicity is constrained
if(Lconstraint.ne.2) then
write(ounit, 'hesian only calculated when Lcons=2')
return
endif

Expand Down

0 comments on commit 95174fa

Please sign in to comment.