Returning to previous version of moduleMesh.f90 #41

Merged
JorgeGonz merged 1 commit from issue/findCell into development 2023-02-10 18:54:50 +01:00
Showing only changes of commit 4e9a592982 - Show all commits

Returning to previous version of moduleMesh.f90

Having initialization in some variables was causing issues in 1D
geometry, so I reverted the file to one working.
Jorge Gonzalez 2023-02-10 18:53:19 +01:00

View file

@ -639,8 +639,8 @@ MODULE moduleMesh
CLASS(meshCell), INTENT(inout):: self
CLASS(particle), INTENT(inout), TARGET:: part
CLASS(meshCell), OPTIONAL, INTENT(in):: oldCell
REAL(8):: Xi(1:3) = 0.D0
CLASS(meshElement), POINTER:: neighbourElement => NULL()
REAL(8):: Xi(1:3)
CLASS(meshElement), POINTER:: neighbourElement
INTEGER:: sp
Xi = self%phy2log(part%r)