From 43ae4983ed56fbfc4c1e7aa3b031816280e83dad Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Mon, 15 Nov 2021 12:58:59 -0500 Subject: [PATCH] fixed misaligned/too short "writing..." statements --- src/grid/DAMASK_grid.f90 | 4 ++-- src/grid/spectral_utilities.f90 | 2 +- src/mesh/DAMASK_mesh.f90 | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/grid/DAMASK_grid.f90 b/src/grid/DAMASK_grid.f90 index 4e79bb6a8..5b3d6084b 100644 --- a/src/grid/DAMASK_grid.f90 +++ b/src/grid/DAMASK_grid.f90 @@ -317,7 +317,7 @@ program DAMASK_grid endif writeUndeformed: if (interface_restartInc < 1) then - print'(/,1x,a)', '... writing initial configuration to file ........................' + print'(/,1x,a)', '... writing initial configuration to file .................................' flush(IO_STDOUT) call CPFEM_results(0,0.0_pReal) endif writeUndeformed @@ -444,7 +444,7 @@ program DAMASK_grid call MPI_Allreduce(interface_SIGUSR1,signal,1,MPI_LOGICAL,MPI_LOR,MPI_COMM_WORLD,ierr) if (ierr /= 0) error stop 'MPI error' if (mod(inc,loadCases(l)%f_out) == 0 .or. signal) then - print'(/,1x,a)', '... writing results to file ......................................' + print'(/,1x,a)', '... writing results to file ...............................................' flush(IO_STDOUT) call CPFEM_results(totalIncsCounter,t) endif diff --git a/src/grid/spectral_utilities.f90 b/src/grid/spectral_utilities.f90 index da8c3f05e..89ce9a314 100644 --- a/src/grid/spectral_utilities.f90 +++ b/src/grid/spectral_utilities.f90 @@ -1094,7 +1094,7 @@ subroutine utilities_saveReferenceStiffness fileUnit,ierr if (worldrank == 0) then - print'(1x,a)', 'writing reference stiffness data required for restart to file'; flush(IO_STDOUT) + print'(/,1x,a)', '... writing reference stiffness data required for restart to file .........'; flush(IO_STDOUT) open(newunit=fileUnit, file=getSolverJobName()//'.C_ref',& status='replace',access='stream',action='write',iostat=ierr) if (ierr /=0) call IO_error(100,ext_msg='could not open file '//getSolverJobName()//'.C_ref') diff --git a/src/mesh/DAMASK_mesh.f90 b/src/mesh/DAMASK_mesh.f90 index 372cc26ca..14872bf15 100644 --- a/src/mesh/DAMASK_mesh.f90 +++ b/src/mesh/DAMASK_mesh.f90 @@ -237,7 +237,7 @@ program DAMASK_mesh write(statUnit,'(a)') 'Increment Time CutbackLevel Converged IterationsNeeded' ! statistics file end if - print'(/,1x,a)', '... writing initial configuration to file ........................' + print'(/,1x,a)', '... writing initial configuration to file .................................' flush(IO_STDOUT) call CPFEM_results(0,0.0_pReal) @@ -321,7 +321,7 @@ program DAMASK_mesh end if; flush(IO_STDOUT) if (mod(inc,loadCases(currentLoadCase)%outputFrequency) == 0) then ! at output frequency - print'(/,1x,a)', '... writing results to file ......................................' + print'(/,1x,a)', '... writing results to file ...............................................' call FEM_mechanical_updateCoords call CPFEM_results(totalIncsCounter,time) end if