CalculiX  2.13
A Free Software Three-Dimensional Structural Finite Element Program
sdvini.f File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine sdvini (statev, coords, nstatv, ncrds, noel, npt, layer, kspt)
 

Function/Subroutine Documentation

◆ sdvini()

subroutine sdvini ( real*8, dimension(nstatv)  statev,
real*8, dimension(ncrds)  coords,
integer  nstatv,
integer  ncrds,
integer  noel,
integer  npt,
integer  layer,
integer  kspt 
)
21 !
22 ! user subroutine sdvini
23 !
24 !
25 ! INPUT:
26 !
27 ! coords(1..3) global coordinates of the integration point
28 ! nstatv number of internal variables (must be
29 ! defined by the user with the *DEPVAR card)
30 ! ncrds number of coordinates
31 ! noel element number
32 ! npt integration point number
33 ! layer not used
34 ! kspt not used
35 !
36 ! OUTPUT:
37 !
38 ! statev(1..nstatv) initial value of the internal state
39 ! variables
40 !
41  implicit none
42 !
43  integer nstatv,ncrds,noel,npt,layer,kspt,i
44 !
45  real*8 statev(nstatv),coords(ncrds)
46 !
47 ! code for retrieving the internal state variables
48 !
49 c do i=1,13
50  do i=1,nstatv
51  statev(i)=1.d0
52  enddo
53  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)