62 lines
2.6 KiB
Fortran
62 lines
2.6 KiB
Fortran
|
! Copyright 2011-13 Max-Planck-Institut für Eisenforschung GmbH
|
||
|
!
|
||
|
! This file is part of DAMASK,
|
||
|
! the Düsseldorf Advanced MAterial Simulation Kit.
|
||
|
!
|
||
|
! DAMASK is free software: you can redistribute it and/or modify
|
||
|
! it under the terms of the GNU General Public License as published by
|
||
|
! the Free Software Foundation, either version 3 of the License, or
|
||
|
! (at your option) any later version.
|
||
|
!
|
||
|
! DAMASK is distributed in the hope that it will be useful,
|
||
|
! but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
! GNU General Public License for more details.
|
||
|
!
|
||
|
! You should have received a copy of the GNU General Public License
|
||
|
! along with DAMASK. If not, see <http://www.gnu.org/licenses/>.
|
||
|
!
|
||
|
!--------------------------------------------------------------------------------------------------
|
||
|
! $Id$
|
||
|
!--------------------------------------------------------------------------------------------------
|
||
|
!> @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
|
||
|
!--------------------------------------------------------------------------------------------------
|
||
|
module homogenization_none
|
||
|
use prec, only: &
|
||
|
pInt
|
||
|
|
||
|
implicit none
|
||
|
private
|
||
|
|
||
|
public :: &
|
||
|
homogenization_none_init
|
||
|
|
||
|
contains
|
||
|
|
||
|
!--------------------------------------------------------------------------------------------------
|
||
|
!> @brief allocates all neccessary fields, reads information from material configuration file
|
||
|
!--------------------------------------------------------------------------------------------------
|
||
|
subroutine homogenization_none_init(fileUnit)
|
||
|
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
|
||
|
|
||
|
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
|