removed unused function arguments

This commit is contained in:
Pratheek Shanthraj 2014-10-13 17:52:33 +00:00
parent 5e16cdd14f
commit 45dffc704c
3 changed files with 6 additions and 9 deletions

View File

@ -211,7 +211,7 @@ subroutine damage_brittle_init(fileUnit)
if (any(numerics_integrator == 5_pInt)) &
allocate(damageState(phase)%RKCK45dotState (6,sizeDotState,NofMyPhase),source=0.0_pReal)
call damage_brittle_stateInit(phase,instance)
call damage_brittle_stateInit(phase)
call damage_brittle_aTolState(phase,instance)
endif
@ -221,12 +221,11 @@ end subroutine damage_brittle_init
!--------------------------------------------------------------------------------------------------
!> @brief sets the relevant NEW state values for a given instance of this damage
!--------------------------------------------------------------------------------------------------
subroutine damage_brittle_stateInit(phase,instance)
subroutine damage_brittle_stateInit(phase)
use material, only: &
damageState
implicit none
integer(pInt), intent(in) :: instance !< number specifying the instance of the damage
integer(pInt), intent(in) :: phase !< number specifying the phase of the damage
real(pReal), dimension(damageState(phase)%sizeState) :: tempState

View File

@ -210,7 +210,7 @@ subroutine damage_ductile_init(fileUnit)
if (any(numerics_integrator == 5_pInt)) &
allocate(damageState(phase)%RKCK45dotState (6,sizeDotState,NofMyPhase),source=0.0_pReal)
call damage_ductile_stateInit(phase,instance)
call damage_ductile_stateInit(phase)
call damage_ductile_aTolState(phase,instance)
endif
@ -220,12 +220,11 @@ end subroutine damage_ductile_init
!--------------------------------------------------------------------------------------------------
!> @brief sets the relevant NEW state values for a given instance of this damage
!--------------------------------------------------------------------------------------------------
subroutine damage_ductile_stateInit(phase,instance)
subroutine damage_ductile_stateInit(phase)
use material, only: &
damageState
implicit none
integer(pInt), intent(in) :: instance !< number specifying the instance of the damage
integer(pInt), intent(in) :: phase !< number specifying the phase of the damage
real(pReal), dimension(damageState(phase)%sizeState) :: tempState

View File

@ -210,7 +210,7 @@ subroutine damage_gurson_init(fileUnit)
if (any(numerics_integrator == 5_pInt)) &
allocate(damageState(phase)%RKCK45dotState (6,sizeDotState,NofMyPhase),source=0.0_pReal)
call damage_gurson_stateInit(phase,instance)
call damage_gurson_stateInit(phase)
call damage_gurson_aTolState(phase,instance)
endif
@ -220,12 +220,11 @@ end subroutine damage_gurson_init
!--------------------------------------------------------------------------------------------------
!> @brief sets the relevant NEW state values for a given instance of this damage
!--------------------------------------------------------------------------------------------------
subroutine damage_gurson_stateInit(phase,instance)
subroutine damage_gurson_stateInit(phase)
use material, only: &
damageState
implicit none
integer(pInt), intent(in) :: instance !< number specifying the instance of the damage
integer(pInt), intent(in) :: phase !< number specifying the phase of the damage
real(pReal), dimension(damageState(phase)%sizeState) :: tempState