You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The calculation of lap_dummy(i,j) depends on values of lap_con which may not have been computed yet. This is different from the whole array version, where you compute the whole Laplacian first:
dfdcon = A*( 2.0*con*( 1.0- con )**2 &
-2.0*con**2*( 1.0- con ) )
dummy_con = dfdcon - grad_coef*Laplacian( con )
con = con + dt*mobility*Laplacian( dummy_con )
The text was updated successfully, but these errors were encountered:
Phase-field-Fortran-codes-using-whole-array/comparison/index_array.f90
Lines 82 to 88 in 1741245
The calculation of
lap_dummy(i,j)
depends on values oflap_con
which may not have been computed yet. This is different from the whole array version, where you compute the whole Laplacian first:The text was updated successfully, but these errors were encountered: