Skip to content

Commit

Permalink
Fix by initializing
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalinen committed Aug 22, 2024
1 parent 640aee8 commit 44347da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fem/src/SolverUtils.F90
Original file line number Diff line number Diff line change
Expand Up @@ -14277,7 +14277,7 @@ SUBROUTINE BlockSolveExt(A,x,b,Solver)
END SUBROUTINE BlockSolveExt
END INTERFACE
!------------------------------------------------------------------------------

Params => Solver % Values

IF( ListGetLogical( Params,'Linear System Skip Complex',GotIt ) ) THEN
Expand Down Expand Up @@ -18063,6 +18063,7 @@ SUBROUTINE ChangeToHarmonicSystem( Solver, BackToReal )
! Set the harmonic system matrix
IF( EigenMode ) THEN
ALLOCATE(Aharm % MassValues(SIZE(Aharm % Values)))
Aharm % MassValues = 0.0_dp

DO k=1,n
kr = Aharm % Rows(2*(k-1)+1)
Expand Down

0 comments on commit 44347da

Please sign in to comment.