From 0df7422fad1db3078ef691b08822444f7a0ed131 Mon Sep 17 00:00:00 2001 From: Paul Cosgrove Date: Fri, 29 Sep 2023 18:12:22 +0100 Subject: [PATCH] Update transportOperatorDT_class.f90 Some typos in DT --- TransportOperator/transportOperatorDT_class.f90 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TransportOperator/transportOperatorDT_class.f90 b/TransportOperator/transportOperatorDT_class.f90 index ab959a347..341fef00a 100644 --- a/TransportOperator/transportOperatorDT_class.f90 +++ b/TransportOperator/transportOperatorDT_class.f90 @@ -44,9 +44,9 @@ subroutine deltaTracking(self, p, tally, thisCycle, nextCycle) class(particleDungeon), intent(inout) :: thisCycle class(particleDungeon), intent(inout) :: nextCycle real(defReal) :: majorant_inv, sigmaT, distance - character(100), parameter :: Here = 'deltaTracking (transportOIperatorDT_class.f90)' + character(100), parameter :: Here = 'deltaTracking (transportOperatorDT_class.f90)' - ! Get majornat XS inverse: 1/Sigma_majorant + ! Get majorant XS inverse: 1/Sigma_majorant majorant_inv = ONE / self % xsData % getMajorantXS(p) ! Should never happen! Prevents Inf distances @@ -58,7 +58,7 @@ subroutine deltaTracking(self, p, tally, thisCycle, nextCycle) ! Move partice in the geometry call self % geom % teleport(p % coords, distance) - ! If particle has leaked exit + ! If particle has leaked, exit if (p % matIdx() == OUTSIDE_FILL) then p % fate = LEAK_FATE p % isDead = .true.