Issue for particles in quad cell

Due to a high convergence value (1.0e-2) in phy2logQuad (variable conv),
    particles were being stuck in some elements, reaching a segmentation
    fault. The new limit (1.0e-4) should avoid this.
This commit is contained in:
Jorge Gonzalez 2023-02-09 15:32:04 +01:00
commit de1d4567f3
2 changed files with 3 additions and 3 deletions

View file

@ -524,7 +524,7 @@ MODULE moduleMesh2DCyl
conv = 1.D0
XiO = 0.D0
DO WHILE(conv > 1.D-2)
DO WHILE(conv > 1.D-4)
dPsi = self%dPsi(XiO, 4)
pDer = self%partialDer(4, dPsi)
detJ = self%detJac(pDer)