updated material.config of tests, had too many slip systems defined.

simplified none homogenization
This commit is contained in:
Martin Diehl 2014-05-08 17:44:28 +00:00
parent 986926aaf2
commit 1298f6ea5e
2 changed files with 10 additions and 15 deletions

View File

@ -129,7 +129,7 @@ subroutine homogenization_init()
if (.not. IO_open_jobFile_stat(FILEUNIT,material_localFileExt)) & ! no local material configuration present...
call IO_open_file(FILEUNIT,material_configFile) ! ... open material.config file
if (any(homogenization_type == HOMOGENIZATION_NONE_ID)) &
call homogenization_none_init(FILEUNIT)
call homogenization_none_init()
if (any(homogenization_type == HOMOGENIZATION_ISOSTRAIN_ID)) &
call homogenization_isostrain_init(FILEUNIT)
if (any(homogenization_type == HOMOGENIZATION_RGC_ID)) &

View File

@ -3,12 +3,11 @@
!--------------------------------------------------------------------------------------------------
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
!> @brief Isostrain (full constraint Taylor assuption) homogenization scheme
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
!> @brief dummy homogenization homogenization scheme
!--------------------------------------------------------------------------------------------------
module homogenization_none
use prec, only: &
pInt
implicit none
private
@ -20,24 +19,20 @@ contains
!--------------------------------------------------------------------------------------------------
!> @brief allocates all neccessary fields, reads information from material configuration file
!--------------------------------------------------------------------------------------------------
subroutine homogenization_none_init(fileUnit)
subroutine homogenization_none_init()
use, intrinsic :: iso_fortran_env ! to get compiler_version and compiler_options (at least for gfortran 4.6 at the moment)
use IO
use material
use IO, only: &
IO_timeStamp
use material, only: &
HOMOGENIZATION_NONE_label
implicit none
integer(pInt), intent(in) :: fileUnit
integer :: &
maxNinstance ! no pInt (stores a system dependen value from 'count'
write(6,'(/,a)') ' <<<+- homogenization_'//HOMOGENIZATION_NONE_label//' init -+>>>'
write(6,'(a)') ' $Id$'
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
#include "compilation_info.f90"
maxNinstance = count(homogenization_type == HOMOGENIZATION_NONE_ID)
if (maxNinstance == 0) return
end subroutine homogenization_none_init
end module homogenization_none