avoid superfluous reporting

This commit is contained in:
Martin Diehl 2019-02-16 11:30:56 +01:00
parent efe9823e62
commit 77d60be127
5 changed files with 10 additions and 25 deletions

View File

@ -30,6 +30,11 @@ contains
!> @brief reports and sets working directory
!--------------------------------------------------------------------------------------------------
subroutine DAMASK_interface_init
#if __INTEL_COMPILER >= 1800
use, intrinsic :: iso_fortran_env, only: &
compiler_version, &
compiler_options
#endif
use ifport, only: &
CHDIR

View File

@ -43,6 +43,11 @@ contains
!> @brief reports and sets working directory
!--------------------------------------------------------------------------------------------------
subroutine DAMASK_interface_init
#if __INTEL_COMPILER >= 1800
use, intrinsic :: iso_fortran_env, only: &
compiler_version, &
compiler_options
#endif
use ifport, only: &
CHDIR

View File

@ -6,7 +6,6 @@
!> @brief Sets up the mesh for the solvers MSC.Marc, Abaqus and the spectral solver
!--------------------------------------------------------------------------------------------------
module mesh
use, intrinsic :: iso_c_binding
use prec, only: pReal, pInt
use mesh_base
@ -425,11 +424,6 @@ end subroutine tMesh_abaqus_init
!! Order and routines strongly depend on type of solver
!--------------------------------------------------------------------------------------------------
subroutine mesh_init(ip,el)
#if defined(__GFORTRAN__) || __INTEL_COMPILER >= 1800
use, intrinsic :: iso_fortran_env, only: &
compiler_version, &
compiler_options
#endif
use DAMASK_interface
use IO, only: &
IO_open_InputFile, &
@ -458,8 +452,6 @@ subroutine mesh_init(ip,el)
logical :: myDebug
write(6,'(/,a)') ' <<<+- mesh init -+>>>'
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
#include "compilation_info.f90"
mesh_unitlength = numerics_unitlength ! set physical extent of a length unit in mesh

View File

@ -169,11 +169,6 @@ end subroutine tMesh_grid_init
!! Order and routines strongly depend on type of solver
!--------------------------------------------------------------------------------------------------
subroutine mesh_init(ip,el)
#if defined(__GFORTRAN__) || __INTEL_COMPILER >= 1800
use, intrinsic :: iso_fortran_env, only: &
compiler_version, &
compiler_options
#endif
#include <petsc/finclude/petscsys.h>
use PETScsys
@ -206,9 +201,6 @@ subroutine mesh_init(ip,el)
logical :: myDebug
write(6,'(/,a)') ' <<<+- mesh init -+>>>'
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
#include "compilation_info.f90"
mesh_unitlength = numerics_unitlength ! set physical extent of a length unit in mesh

View File

@ -6,7 +6,6 @@
!> @brief Sets up the mesh for the solver MSC.Marc
!--------------------------------------------------------------------------------------------------
module mesh
use, intrinsic :: iso_c_binding
use prec, only: pReal, pInt
use mesh_base
@ -284,11 +283,6 @@ end subroutine tMesh_marc_init
!! Order and routines strongly depend on type of solver
!--------------------------------------------------------------------------------------------------
subroutine mesh_init(ip,el)
#if defined(__GFORTRAN__) || __INTEL_COMPILER >= 1800
use, intrinsic :: iso_fortran_env, only: &
compiler_version, &
compiler_options
#endif
use DAMASK_interface
use IO, only: &
IO_open_InputFile, &
@ -322,9 +316,6 @@ subroutine mesh_init(ip,el)
logical :: myDebug
write(6,'(/,a)') ' <<<+- mesh init -+>>>'
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
#include "compilation_info.f90"
mesh_unitlength = numerics_unitlength ! set physical extent of a length unit in mesh