From 31d5cdedfc293f54db50a560861d666b517d8346 Mon Sep 17 00:00:00 2001 From: Christophe Pinte Date: Tue, 21 Nov 2023 16:32:48 +1100 Subject: [PATCH] Fixing long lines for gfortran --- src/cylindrical_grid.f90 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/cylindrical_grid.f90 b/src/cylindrical_grid.f90 index 4e59c1d6a..eea39bf8d 100644 --- a/src/cylindrical_grid.f90 +++ b/src/cylindrical_grid.f90 @@ -9,8 +9,8 @@ module cylindrical_grid public :: cell2cylindrical, cross_cylindrical_cell, pos_em_cellule_cyl, indice_cellule_cyl, test_exit_grid_cyl, & move_to_grid_cyl, define_cylindrical_grid, build_cylindrical_cell_mapping, cell_map, cell_map_i, cell_map_j,& cell_map_k, lexit_cell, r_lim, r_lim_2, r_lim_3, delta_z, r_grid, z_grid, phi_grid, tab_region, & - z_lim, w_lim, theta_lim, tan_theta_lim, tan_phi_lim, cos_phi_lim, sin_phi_lim, volume, l_dark_zone, zmax, delta_cell_dark_zone, & - ri_in_dark_zone, ri_out_dark_zone, zj_sup_dark_zone, zj_inf_dark_zone, l_is_dark_zone + z_lim, w_lim, theta_lim, tan_theta_lim, tan_phi_lim, cos_phi_lim, sin_phi_lim, volume, l_dark_zone, zmax, & + delta_cell_dark_zone, ri_in_dark_zone, ri_out_dark_zone, zj_sup_dark_zone, zj_inf_dark_zone, l_is_dark_zone real(kind=dp), parameter, public :: prec_grille=1.0e-14_dp @@ -235,7 +235,8 @@ subroutine define_cylindrical_grid() if (alloc_status > 0) call error('Allocation error z_lim') z_lim = 0.0 - allocate(w_lim(0:nz),theta_lim(0:nz),tan_theta_lim(0:nz),cos_theta_lim(0:nz),tan_phi_lim(n_az),cos_phi_lim(n_az),sin_phi_lim(n_az), stat=alloc_status) + allocate(w_lim(0:nz),theta_lim(0:nz),tan_theta_lim(0:nz),cos_theta_lim(0:nz),tan_phi_lim(n_az),& + cos_phi_lim(n_az),sin_phi_lim(n_az), stat=alloc_status) if (alloc_status > 0) call error('Allocation error tan_phi_lim') w_lim = 0.0 theta_lim=0.0