flush helps to detect errors

This commit is contained in:
Martin Diehl 2020-01-26 21:50:43 +01:00
parent f546ffb3be
commit 0a1bac6787
2 changed files with 3 additions and 6 deletions

View File

@ -7,11 +7,8 @@ module damage_none
use material
implicit none
private
public
public :: &
damage_none_init
contains
!--------------------------------------------------------------------------------------------------
@ -21,7 +18,7 @@ subroutine damage_none_init
integer :: h,NofMyHomog
write(6,'(/,a)') ' <<<+- damage_'//DAMAGE_NONE_LABEL//' init -+>>>'; flush(6)
write(6,'(/,a)') ' <<<+- damage_'//DAMAGE_NONE_LABEL//' init -+>>>'; flush(6)
do h = 1, size(config_homogenization)
if (damage_type(h) /= DAMAGE_NONE_ID) cycle

View File

@ -18,7 +18,7 @@ module subroutine mech_none_init
h, &
NofMyHomog
write(6,'(/,a)') ' <<<+- homogenization_'//HOMOGENIZATION_NONE_label//' init -+>>>'
write(6,'(/,a)') ' <<<+- homogenization_'//HOMOGENIZATION_NONE_label//' init -+>>>'; flush(6)
Ninstance = count(homogenization_type == HOMOGENIZATION_NONE_ID)
if (iand(debug_level(debug_HOMOGENIZATION),debug_levelBasic) /= 0) &