cleaning up

Marc subroutine flux can be used for specifying volume flux boundary condition (dissipated plastic work) in thermomechanically coupled simulations
This commit is contained in:
Franz Roters 2017-02-08 10:02:56 +01:00
parent 2d26cfe7b8
commit 7081931c02
1 changed files with 3 additions and 3 deletions

View File

@ -385,7 +385,7 @@ end subroutine hypela2
!--------------------------------------------------------------------------------------------------
!> @brief solve the heat equation
!> @brief calculate internal heat generated due to inelastic energy dissipation
!--------------------------------------------------------------------------------------------------
subroutine flux(f,ts,n,time)
use prec, only: &
@ -406,9 +406,9 @@ subroutine flux(f,ts,n,time)
real(pReal), dimension(2), intent(out) :: &
f
! f(1) = materialpoint_heat(n(3),mesh_FEasCP('elem',n(1)))
call thermal_conduction_getSourceAndItsTangent(f(1), f(2), ts(3), n(3),mesh_FEasCP('elem',n(1)))
end subroutine flux
end subroutine flux
!--------------------------------------------------------------------------------------------------