FrontISTR 5.2.0
Large-scale structural analysis program with finit element method
Loading...
Searching...
No Matches
uyield.f90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
2! Copyright (c) 2019 FrontISTR Commons
3! This software is released under the MIT License, see LICENSE.txt
4!-------------------------------------------------------------------------------
8subroutine uelastoplasticmatrix( matl, stress, istat, fstat, D )
9 use hecmw
10 implicit none
11 real(kind=kreal), intent(in) :: matl(:)
12 real(kind=kreal), intent(in) :: stress(6)
13 integer, intent(in) :: istat
14 real(kind=kreal), intent(in) :: fstat(:)
15 real(kind=kreal), intent(out) :: d(:,:)
16end subroutine
17
19subroutine ubackwardeuler( matl, stress, istat, fstat )
20 use hecmw
21 implicit none
22 real(kind=kreal), intent(in) :: matl
23 real(kind=kreal), intent(inout) :: stress(6)
24 integer, intent(inout) :: istat
25 real(kind=kreal), intent(inout) :: fstat(:)
26end subroutine
Definition: hecmw.f90:6
subroutine uelastoplasticmatrix(matl, stress, istat, fstat, d)
This subroutine read in used-defined material properties tangent This subroutine calculates elastopla...
Definition: uyield.f90:9
subroutine ubackwardeuler(matl, stress, istat, fstat)
This subroutine does backward-Euler return calculation.
Definition: uyield.f90:20