Skip to content

Commit

Permalink
Fixing long lines for gfortran
Browse files Browse the repository at this point in the history
  • Loading branch information
cpinte committed Nov 21, 2023
1 parent 8d247d6 commit 31d5cde
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/cylindrical_grid.f90
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 31d5cde

Please sign in to comment.