@@ -809,6 +809,8 @@ subroutine setup(fileName, fileType)
809
809
810
810
! if there was an error in the BC setup stop
811
811
if (bcError) then
812
+ print * , ' pyHyp exited due to one or more issues with mesh boundary conditions. &
813
+ See above error printouts.'
812
814
stop
813
815
end if
814
816
@@ -908,7 +910,7 @@ subroutine setup(fileName, fileType)
908
910
! fullnPtr populated.
909
911
do i = 1 , nUnique
910
912
if (fullNPtr(1 , i) == 0 ) then
911
- print * , ' There was a general error with topology computation for node:' , uniquePts(:, i)
913
+ print * , ' ERROR: There was a general error with topology computation for node:' , uniquePts(:, i)
912
914
bcTopoError = .True.
913
915
end if
914
916
end do
@@ -918,18 +920,18 @@ subroutine setup(fileName, fileType)
918
920
! their fullnPtr populated.
919
921
do i = 1 , nUnique
920
922
if (fullTopoType(i) == topoEdge .and. fullBCType(1 , i) == BCDefault) then
921
- print * , ' There was a missing boundary condition for edge node:' , uniquePts(:, i)
923
+ print * , ' ERROR: There was a missing boundary condition for edge node:' , uniquePts(:, i)
922
924
bcTopoError = .True.
923
925
else if (fullTopoType(i) == topoCorner .and. (fullBCType(1 , i) == BCDefault .or. &
924
926
fullBCType(2 , i) == BCDefault)) then
925
- print * , ' There was a missing boundary condition for corner node:' , uniquePts(:, i)
927
+ print * , ' ERROR: There was a missing boundary condition for corner node:' , uniquePts(:, i)
926
928
bcTopoError = .True.
927
929
end if
928
930
end do
929
931
930
932
! if we ran into topology or BC errors, stop
931
933
if (bcTopoError) then
932
- print * , ' pyHyp exited. See above errors .'
934
+ print * , ' ERROR: pyHyp exited due to one or more issues with mesh topology . See above error printouts .'
933
935
stop
934
936
end if
935
937
0 commit comments