From 29431eb8c5348f35a9513cc2ccfcc4d8b52a6dda Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sun, 12 Sep 2021 21:55:14 +0200 Subject: [PATCH] same reporting as in python --- src/grid/discretization_grid.f90 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/grid/discretization_grid.f90 b/src/grid/discretization_grid.f90 index 1758fd855..e16001feb 100644 --- a/src/grid/discretization_grid.f90 +++ b/src/grid/discretization_grid.f90 @@ -96,9 +96,9 @@ subroutine discretization_grid_init(restart) call MPI_Bcast(origin,3,MPI_DOUBLE,0,MPI_COMM_WORLD, ierr) if (ierr /= 0) error stop 'MPI error' - print'(/,a,3(i12 ))', ' cells a b c: ', grid - print'(a,3(es12.5))', ' size x y z: ', geomSize - print'(a,3(es12.5))', ' origin x y z: ', origin + print'(/,a,3(i12 ))', ' cells a b c: ', grid + print'(a,3(es12.5))', ' size x y z: ', geomSize + print'(a,3(es12.5))', ' origin x y z: ', origin if(worldsize>grid(3)) call IO_error(894, ext_msg='number of processes exceeds grid(3)')