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

Go to the source code of this file.

Functions/Subroutines

subroutine fsuper (time, t, a, b, h1, h2, h3, h4, h5, h6, func, funcp)
 

Function/Subroutine Documentation

◆ fsuper()

subroutine fsuper ( real*8  time,
real*8  t,
real*8  a,
real*8  b,
real*8  h1,
real*8  h2,
real*8  h3,
real*8  h4,
real*8  h5,
real*8  h6,
real*8  func,
real*8  funcp 
)
20 !
21  implicit none
22 !
23  real*8 time,t,a,b,h1,h2,h3,h4,h5,h6,fexm,fexp,func,funcp
24 !
25  fexm=dexp(h1*t)
26  fexp=dexp(-h2*t)
27 !
28 ! function
29 !
30  func=(a+b*time)*(fexm*h3+fexp*h4)
31  & -b*(fexm*(t*h3-h5)+fexp*(t*h4+h6))
32 !
33 ! derivative of the function
34 !
35  funcp=(a+b*time)*(fexm-fexp)-b*(fexm*(t-h3)-fexp*(t+h4))
36 
37 !
38  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)