@@ -2212,13 +2212,13 @@ subroutine setup_coupling_boundary_points()
22122212 call flush_IMAIN()
22132213
22142214 ! allocate points array
2215- allocate (coupling_points(7 ,num_coupling_points_total),stat= ier)
2215+ allocate (coupling_points(6 ,num_coupling_points_total),stat= ier)
22162216 if (ier /= 0 ) stop ' Error allocating coupling points array'
22172217 coupling_points(:,:) = 0.0_CUSTOM_REAL
22182218
22192219 ! reads in point infos
22202220 do ipoin = 1 ,num_coupling_points_total
2221- ! format: #x #y #z #nx #ny #nz #iproc
2221+ ! format: #x #y #z #nx #ny #nz
22222222 read (IIN) coupling_points(:,ipoin)
22232223 enddo
22242224
@@ -2234,13 +2234,13 @@ subroutine setup_coupling_boundary_points()
22342234
22352235 ! allocate arrays on other processes
22362236 if (.not. allocated (coupling_points)) then
2237- allocate (coupling_points(7 ,num_coupling_points_total),stat= ier)
2237+ allocate (coupling_points(6 ,num_coupling_points_total),stat= ier)
22382238 if (ier /= 0 ) stop ' Error allocating coupling points array'
22392239 coupling_points(:,:) = 0.0_CUSTOM_REAL
22402240 endif
22412241
22422242 ! broadcast point infos
2243- call bcast_all_cr(coupling_points,7 * num_coupling_points_total)
2243+ call bcast_all_cr(coupling_points,6 * num_coupling_points_total)
22442244
22452245 ! locate coupling points
22462246 call locate_coupling_points(num_coupling_points_total,coupling_points)
0 commit comments